/* ========================================
   NANO DEFENSE PRO - PREMIUM LUXURY THEME
   Mobile-First Responsive Design
   ======================================== */

/* ========================================
   RESET & BASE STYLES
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

ul, ol {
    list-style: none;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
    color: #000000;
}

/* Mobile Typography */
h1 {
    font-size: 28px;
    margin-bottom: 20px;
}

h2 {
    font-size: 24px;
    margin-bottom: 16px;
}

h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* Tablet Typography */
@media (min-width: 768px) {
    h1 {
        font-size: 40px;
        margin-bottom: 24px;
    }
    
    h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    h3 {
        font-size: 24px;
        margin-bottom: 16px;
    }
    
    h4 {
        font-size: 20px;
        margin-bottom: 12px;
    }
}

/* Desktop Typography */
@media (min-width: 1024px) {
    h1 {
        font-size: 48px;
        margin-bottom: 28px;
    }
    
    h2 {
        font-size: 36px;
        margin-bottom: 24px;
    }
    
    h3 {
        font-size: 28px;
        margin-bottom: 18px;
    }
}

p {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.7;
}

.gradient-text {
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   CONTAINER & LAYOUT
   ======================================== */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 480px) {
    .container {
        padding: 0 20px;
    }
}

@media (min-width: 768px) {
    .container {
        padding: 0 30px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 40px;
    }
}

@media (min-width: 1440px) {
    .container {
        padding: 0 60px;
    }
}

section {
    padding: 60px 0;
}

@media (min-width: 768px) {
    section {
        padding: 80px 0;
    }
}

@media (min-width: 1024px) {
    section {
        padding: 100px 0;
    }
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .section-title {
        margin-bottom: 60px;
    }
}

.text-center {
    text-align: center;
}

/* ========================================
   NAVIGATION
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
}

.navbar.scrolled .logo span,
.navbar.scrolled .nav-link {
    color: #ffffff;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

@media (min-width: 768px) {
    .nav-wrapper {
        padding: 20px 0;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 18px;
    color: #000000;
}

@media (min-width: 768px) {
    .logo {
        font-size: 22px;
    }
}

.logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

@media (min-width: 768px) {
    .logo img {
        width: 50px;
        height: 50px;
    }
}

.nav-menu {
    display: none;
    gap: 30px;
    align-items: center;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: #000000;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 12px 28px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    color: #000000;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* Mobile Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

@media (min-width: 768px) {
    .hamburger {
        display: none;
    }
}

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: #000000;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.nav-menu.mobile-active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.98);
    padding: 30px 20px;
    gap: 20px;
    animation: slideDown 0.3s ease;
}

.nav-menu.mobile-active .nav-link {
    color: #ffffff;
    font-size: 18px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   BUTTONS & CTA
   ======================================== */

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    min-height: 48px;
    text-align: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .cta-button {
        padding: 18px 42px;
        font-size: 18px;
    }
}

.cta-primary {
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    color: #000000;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.cta-primary:active {
    transform: scale(0.98);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    }
    50% {
        box-shadow: 0 15px 45px rgba(212, 175, 55, 0.6);
    }
}

.pulse-strong {
    animation: pulseStrong 1.5s infinite;
}

@keyframes pulseStrong {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 20px 50px rgba(212, 175, 55, 0.7);
    }
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    padding-top: 100px;
    background: linear-gradient(180deg, #FAFAFA 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero {
        padding-top: 120px;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(244, 208, 63, 0.05) 100%);
    z-index: 0;
}

.hero-grid {
    display: grid;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

@media (min-width: 1024px) {
    .hero-grid {
        gap: 80px;
    }
}

.hero-image {
    order: -1;
    position: relative;
}

@media (min-width: 768px) {
    .hero-image {
        order: 0;
    }
}

.product-showcase {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.product-showcase img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.15));
}

@media (min-width: 768px) {
    .product-showcase img {
        max-width: 500px;
    }
}

@media (min-width: 1024px) {
    .product-showcase img {
        max-width: 600px;
    }
}

.floating-badge {
    position: absolute;
    top: 10%;
    right: 0;
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    color: #000000;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
    animation: bounce 3s ease-in-out infinite;
}

@media (min-width: 768px) {
    .floating-badge {
        padding: 12px 24px;
        font-size: 15px;
    }
}

.floating-badge.badge-2 {
    top: auto;
    bottom: 20%;
    right: auto;
    left: 0;
    animation-delay: 1.5s;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.hero-content {
    text-align: left;
}

.hero-title {
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-description p {
    color: #4a4a4a;
    margin-bottom: 20px;
}

.benefits-list {
    margin: 30px 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    padding: 12px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(5px);
}

.benefit-item .emoji {
    font-size: 24px;
    flex-shrink: 0;
}

.benefit-item span:last-child {
    font-weight: 500;
    color: #2a2a2a;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #4a4a4a;
}

@media (min-width: 768px) {
    .trust-item {
        font-size: 15px;
    }
}



/* ========================================
   WHY CHOOSE SECTION
   ======================================== */

.why-choose {
    background: #000000;
    color: #ffffff;
}

.why-choose .section-title {
    color: #ffffff;
}

.features-grid {
    display: grid;
    gap: 24px;
}

@media (min-width: 576px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 30px 24px;
    text-align: center;
    transition: all 0.4s ease;
}

@media (min-width: 768px) {
    .feature-card {
        padding: 40px 30px;
    }
}

.feature-card:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #D4AF37;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon img {
    width: 70px;
    height: 70px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .feature-icon img {
        width: 80px;
        height: 80px;
    }
}

.feature-card h3 {
    color: #D4AF37;
    margin-bottom: 12px;
    font-size: 20px;
}

@media (min-width: 768px) {
    .feature-card h3 {
        font-size: 22px;
    }
}

.feature-card p {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .feature-card p {
        font-size: 15px;
    }
}

/* ========================================
   STANDOUT FEATURES SECTION
   ======================================== */

.standout-features {
    background: linear-gradient(180deg, #FAFAFA 0%, #FFFFFF 100%);
}

.standout-grid {
    display: grid;
    gap: 30px;
}

@media (min-width: 768px) {
    .standout-grid {
        gap: 40px;
    }
}

.standout-item {
    background: #ffffff;
    border: 2px solid rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    transition: all 0.4s ease;
}

@media (min-width: 768px) {
    .standout-item {
        padding: 40px;
    }
}

.standout-item:hover {
    border-color: #D4AF37;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    transform: translateY(-5px);
}

.standout-number {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    color: #000000;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.standout-item h3 {
    margin-bottom: 16px;
    margin-top: 20px;
}

.standout-item p {
    color: #4a4a4a;
    line-height: 1.8;
}

/* ========================================
   WHAT IS SECTION
   ======================================== */

.what-is {
    background: #FFFFFF;
}

.what-is-grid {
    display: grid;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .what-is-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

.what-is-content p {
    color: #4a4a4a;
    margin-bottom: 20px;
}

.what-is-image {
    order: -1;
}

@media (min-width: 768px) {
    .what-is-image {
        order: 0;
    }
}

.what-is-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */

.how-it-works {
    background: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
    color: #ffffff;
}

.how-it-works .section-title {
    color: #ffffff;
}

.how-description {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.how-description p {
    color: #cccccc;
    margin-bottom: 20px;
}

.steps-container {
    max-width: 1000px;
    margin: 0 auto;
}

.step-item {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

@media (min-width: 768px) {
    .step-item {
        grid-template-columns: 80px 1fr;
        gap: 30px;
    }
}

.step-item:nth-child(1) { animation-delay: 0.1s; }
.step-item:nth-child(2) { animation-delay: 0.2s; }
.step-item:nth-child(3) { animation-delay: 0.3s; }
.step-item:nth-child(4) { animation-delay: 0.4s; }
.step-item:nth-child(5) { animation-delay: 0.5s; }
.step-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    margin: 0 auto;
}

@media (min-width: 768px) {
    .step-number {
        width: 80px;
        height: 80px;
        font-size: 32px;
        margin: 0;
    }
}

.step-content h3 {
    color: #D4AF37;
    margin-bottom: 12px;
}

.step-content p {
    color: #cccccc;
    line-height: 1.8;
}

/* ========================================
   REVIEWS SECTION
   ======================================== */

.reviews {
    background: linear-gradient(180deg, #FAFAFA 0%, #FFFFFF 100%);
}

.reviews-grid {
    display: grid;
    gap: 24px;
}

@media (min-width: 576px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

.review-card {
    background: #ffffff;
    border: 2px solid rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.review-card:hover {
    border-color: #D4AF37;
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
    transform: translateY(-10px);
}

.review-header {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.review-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #D4AF37;
}

@media (min-width: 768px) {
    .review-header img {
        width: 80px;
        height: 80px;
    }
}

.review-info h4 {
    margin-bottom: 4px;
    font-size: 18px;
}

.review-info p {
    color: #666666;
    font-size: 14px;
    margin-bottom: 8px;
}

.rating img {
    width: 100px;
}

@media (min-width: 768px) {
    .rating img {
        width: 120px;
    }
}

.review-text {
    color: #4a4a4a;
    font-style: italic;
    line-height: 1.7;
}

/* ========================================
   RESEARCH BACKED SECTION
   ======================================== */

.research-backed {
    background: #000000;
    color: #ffffff;
}

.research-backed .section-title {
    color: #ffffff;
}

.research-intro {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
    color: #cccccc;
    font-size: 17px;
    line-height: 1.8;
}

.research-points {
    max-width: 900px;
    margin: 0 auto;
}

.research-points li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    color: #cccccc;
    line-height: 1.8;
}

.research-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #D4AF37;
    font-weight: 700;
    font-size: 20px;
}

.research-points strong {
    color: #D4AF37;
}

/* ========================================
   PRICING SECTION
   ======================================== */

.pricing {
    background: linear-gradient(180deg, #FAFAFA 0%, #FFFFFF 100%);
}

.pricing-subtitle {
    text-align: center;
    color: #4a4a4a;
    font-size: 17px;
    margin-bottom: 40px;
}

.countdown-timer {
    max-width: 600px;
    margin: 0 auto 40px;
}

@media (min-width: 768px) {
    .countdown-timer {
        margin: 0 auto 50px;
    }
}

.timer-wrapper {
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

@media (min-width: 768px) {
    .timer-wrapper {
        border-radius: 20px;
        padding: 30px;
    }
}

.timer-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .timer-label {
        font-size: 20px;
        margin-bottom: 15px;
    }
}

.timer-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

@media (min-width: 768px) {
    .timer-display {
        gap: 15px;
    }
}

.timer-segment {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-segment span:first-child {
    font-size: 40px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: #000000;
    line-height: 1;
}

@media (min-width: 480px) {
    .timer-segment span:first-child {
        font-size: 52px;
    }
}

@media (min-width: 768px) {
    .timer-segment span:first-child {
        font-size: 60px;
    }
}

.timer-text {
    font-size: 11px;
    color: #000000;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

@media (min-width: 768px) {
    .timer-text {
        font-size: 14px;
        letter-spacing: 1px;
    }
}

.timer-colon {
    font-size: 40px;
    font-weight: 700;
    color: #000000;
    line-height: 1;
}

@media (min-width: 480px) {
    .timer-colon {
        font-size: 52px;
    }
}

@media (min-width: 768px) {
    .timer-colon {
        font-size: 60px;
    }
}

.pricing-grid {
    display: grid;
    gap: 24px;
    margin-bottom: 40px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .pricing-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (min-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

.pricing-card {
    background: #ffffff;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

@media (min-width: 480px) {
    .pricing-card {
        padding: 28px 24px;
    }
}

@media (min-width: 768px) {
    .pricing-card {
        padding: 36px 28px;
    }
}

.pricing-card.featured {
    border-color: #D4AF37;
    border-width: 3px;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.05) 0%, #ffffff 100%);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.pricing-card:hover {
    border-color: #D4AF37;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
    transform: translateY(-10px);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.pricing-label {
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .pricing-label {
        font-size: 14px;
    }
}

.pricing-label.popular {
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    color: #000000;
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .pricing-card h3 {
        font-size: 28px;
    }
}

.supply-text {
    color: #666666;
    font-size: 15px;
    margin-bottom: 20px;
}

.pricing-image {
    margin: 20px 0;
}

.pricing-image img {
    max-width: 140px;
    margin: 0 auto;
}

@media (min-width: 480px) {
    .pricing-image img {
        max-width: 160px;
    }
}

@media (min-width: 768px) {
    .pricing-image img {
        max-width: 200px;
    }
}

.price-per-bottle {
    font-size: 40px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: #D4AF37;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .price-per-bottle {
        font-size: 48px;
    }
}

.price-per-bottle span {
    font-size: 20px;
    color: #666666;
}

.total-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.old-price {
    font-size: 20px;
    color: #999999;
    text-decoration: line-through;
}

.new-price {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
}

@media (min-width: 768px) {
    .new-price {
        font-size: 36px;
    }
}

.pricing-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.badge {
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    color: #000000;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .badge {
        font-size: 13px;
    }
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    color: #000000;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

@media (min-width: 768px) {
    .pricing-btn {
        font-size: 18px;
        padding: 18px 28px;
    }
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.payment-text {
    font-size: 12px;
    color: #666666;
    text-align: center;
    font-weight: 500;
}

.rating-section {
    text-align: center;
    margin-top: 30px;
}

.rating-section img {
    max-width: 180px;
    margin: 0 auto 12px;
}

@media (min-width: 768px) {
    .rating-section img {
        max-width: 200px;
    }
}

.rating-section p {
    color: #666666;
    font-size: 15px;
}

/* ========================================
   INGREDIENTS SECTION
   ======================================== */

.ingredients {
    background: #FFFFFF;
}

.ingredients-grid {
    display: grid;
    gap: 24px;
}

@media (min-width: 768px) {
    .ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (min-width: 992px) {
    .ingredients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.ingredient-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, #ffffff 100%);
    border: 2px solid rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
}

.ingredient-card:hover {
    border-color: #D4AF37;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
}

.ingredient-header h3 {
    color: #D4AF37;
    margin-bottom: 16px;
}

.ingredient-card p {
    color: #4a4a4a;
    line-height: 1.7;
}

/* ========================================
   SCIENTIFIC EVIDENCE SECTION
   ======================================== */

.scientific-evidence {
    background: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
    color: #ffffff;
}

.scientific-evidence .section-title {
    color: #ffffff;
}

.evidence-content {
    max-width: 900px;
    margin: 0 auto;
}

.evidence-content p {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 24px;
}

.evidence-content a {
    color: #D4AF37;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.evidence-content a:hover {
    border-bottom-color: #D4AF37;
}

.evidence-note {
    background: rgba(212, 175, 55, 0.1);
    border-left: 4px solid #D4AF37;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.evidence-note p {
    color: #ffffff;
}

/* ========================================
   GUARANTEE SECTION
   ======================================== */

.guarantee {
    background: linear-gradient(180deg, #FAFAFA 0%, #FFFFFF 100%);
}

.guarantee-grid {
    display: grid;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .guarantee-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

.guarantee-image {
    text-align: center;
}

.guarantee-image img {
    max-width: 300px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .guarantee-image img {
        max-width: 400px;
    }
}

.guarantee-point {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.guarantee-icon {
    flex-shrink: 0;
}

.guarantee-point h3 {
    color: #D4AF37;
    margin-bottom: 12px;
}

.guarantee-point p {
    color: #4a4a4a;
    line-height: 1.7;
}

/* ========================================
   BENEFITS SECTION
   ======================================== */

.benefits {
    background: #FFFFFF;
}

.benefits-content {
    max-width: 900px;
    margin: 0 auto;
}

.benefits-content p {
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 24px;
}

/* ========================================
   ORDER PROCESS SECTION
   ======================================== */

.order-process {
    background: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
    color: #ffffff;
}

.order-process .section-title {
    color: #ffffff;
}

.process-image {
    max-width: 900px;
    margin: 0 auto 50px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.process-steps {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.4s ease;
}

.process-step:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #D4AF37;
    transform: translateX(10px);
}

.step-badge {
    display: inline-block;
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    color: #000000;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
}

.process-step h3 {
    color: #D4AF37;
    margin-bottom: 12px;
}

.process-step p {
    color: #cccccc;
    line-height: 1.8;
}

.security-info {
    max-width: 900px;
    margin: 40px auto 0;
    padding: 30px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
}

.security-info p {
    color: #ffffff;
    margin-bottom: 20px;
}

.security-info p:last-child {
    margin-bottom: 0;
}

.security-info strong {
    color: #D4AF37;
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq {
    background: linear-gradient(180deg, #FAFAFA 0%, #FFFFFF 100%);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border: 2px solid rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #D4AF37;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
}

@media (min-width: 768px) {
    .faq-question {
        padding: 24px 30px;
        font-size: 18px;
    }
}

.faq-question:hover {
    color: #D4AF37;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: #4a4a4a;
    line-height: 1.8;
}

@media (min-width: 768px) {
    .faq-answer p {
        padding: 0 30px 30px;
    }
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */

.final-cta {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #ffffff;
}

.final-cta-content {
    display: grid;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .final-cta-content {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

.final-cta-image img {
    max-width: 500px;
    margin: 0 auto;
}

.final-cta-text {
    text-align: center;
}

@media (min-width: 768px) {
    .final-cta-text {
        text-align: left;
    }
}

.final-cta-text h2 {
    color: #ffffff;
    margin-bottom: 30px;
}

.final-price {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.final-old-price {
    font-size: 18px;
    color: #999999;
    text-decoration: line-through;
}

.final-new-price {
    font-size: 42px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: #D4AF37;
}

@media (min-width: 768px) {
    .final-new-price {
        font-size: 52px;
    }
}

.final-savings {
    font-size: 16px;
    color: #D4AF37;
    font-weight: 600;
}

.final-guarantees {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cccccc;
    font-size: 14px;
}

@media (min-width: 768px) {
    .guarantee-badge {
        font-size: 15px;
    }
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: #000000;
    color: #cccccc;
    padding: 60px 0 30px;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-links a {
    color: #D4AF37;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #F4D03F;
}

.footer-disclaimer {
    text-align: center;
    margin-bottom: 30px;
    padding: 0 20px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #999999;
}

@media (min-width: 768px) {
    .footer-disclaimer p {
        font-size: 14px;
    }
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    color: #D4AF37;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #D4AF37;
    color: #000000;
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.copyright p {
    font-size: 13px;
    color: #666666;
}

@media (min-width: 768px) {
    .copyright p {
        font-size: 14px;
    }
}

/* ========================================
   SCROLL TO TOP BUTTON
   ======================================== */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
}

.scroll-to-top svg {
    stroke: #000000;
}

/* ========================================
   PURCHASE NOTIFICATION
   ======================================== */

.purchase-notification {
    position: fixed;
    bottom: 30px;
    left: 20px;
    background: #ffffff;
    border: 2px solid #D4AF37;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    max-width: 320px;
    z-index: 998;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.4s ease;
}

@media (min-width: 768px) {
    .purchase-notification {
        max-width: 400px;
    }
}

.purchase-notification.show {
    opacity: 1;
    transform: translateY(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-icon {
    flex-shrink: 0;
}

.notification-text {
    font-size: 13px;
    color: #333333;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .notification-text {
        font-size: 14px;
    }
}

.notification-text strong {
    color: #D4AF37;
}

/* ========================================
   AOS ANIMATIONS
   ======================================== */

[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-down"] {
    transform: translateY(-50px);
}

[data-aos="fade-down"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

[data-aos="flip-left"] {
    transform: perspective(1000px) rotateY(-20deg);
}

[data-aos="flip-left"].aos-animate {
    transform: perspective(1000px) rotateY(0);
}

/* ========================================
   PREFERS REDUCED MOTION
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.d-none {
    display: none;
}

.d-block {
    display: block;
}

@media (max-width: 767px) {
    .d-md-none {
        display: none;
    }
}

@media (min-width: 768px) {
    .d-md-block {
        display: block;
    }
}
/* Mobile-First CSS - Enhanced for Better Mobile Experience */
@import url('/mnt/user-data/outputs/styles.css');

/* CRITICAL MOBILE FIXES */
* {
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Container Improvements */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 30px;
    }
}

/* PRICING SECTION - MATCH REFERENCE IMAGE */
.pricing-card {
    background: #ffffff;
    border: 2px solid #E5E5E5;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .pricing-card {
        padding: 30px 24px;
    }
}

.pricing-card.featured {
    border-color: #D4AF37;
    border-width: 3px;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.03) 0%, #ffffff 100%);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

/* Pricing Badges - Match Reference */
.pricing-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 16px 0;
}

.badge {
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    color: #000000;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (min-width: 768px) {
    .badge {
        font-size: 14px;
        padding: 14px 24px;
    }
}

/* Add to Cart Button - Text Based */
.pricing-cta {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    color: #000000;
    padding: 16px 24px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    margin: 16px 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

/* Payment Methods Text */
.payment-logos {
    font-size: 11px;
    color: #666666;
    text-align: center;
    margin-top: 12px;
    padding: 8px 0;
}

@media (min-width: 768px) {
    .payment-logos {
        font-size: 12px;
    }
}

/* Price Display - Match Reference */
.price-per-bottle {
    font-size: 36px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: #D4AF37;
    margin: 16px 0 8px;
    line-height: 1;
}

@media (min-width: 768px) {
    .price-per-bottle {
        font-size: 48px;
    }
}

.price-per-bottle span {
    font-size: 18px;
    color: #666666;
    font-weight: 400;
}

.total-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.old-price {
    font-size: 18px;
    color: #999999;
    text-decoration: line-through;
    font-weight: 400;
}

.new-price {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
}

@media (min-width: 768px) {
    .new-price {
        font-size: 36px;
    }
}

/* Mobile Grid - Stack Vertically */
.pricing-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

@media (min-width: 576px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (min-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* Remove Featured Card Scale on Mobile */
@media (max-width: 991px) {
    .pricing-card.featured {
        transform: none !important;
    }
}

/* Mobile Navigation Improvements */
.navbar {
    padding: 0;
}

.nav-wrapper {
    padding: 12px 0;
}

@media (min-width: 768px) {
    .nav-wrapper {
        padding: 20px 0;
    }
}

/* Mobile Menu Full Width */
.nav-menu.mobile-active {
    width: 100%;
    left: 0;
    right: 0;
}

/* Hero Section Mobile Fix */
.hero {
    padding-top: 80px;
    padding-bottom: 40px;
}

@media (min-width: 768px) {
    .hero {
        padding-top: 120px;
        padding-bottom: 60px;
    }
}

.hero-grid {
    gap: 30px;
}

@media (min-width: 768px) {
    .hero-grid {
        gap: 60px;
    }
}

/* Product Image Responsive */
.product-showcase img,
.pricing-image img,
.what-is-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
}

/* Floating Badges - Adjust for Mobile */
.floating-badge {
    font-size: 11px;
    padding: 6px 14px;
}

@media (min-width: 768px) {
    .floating-badge {
        font-size: 14px;
        padding: 12px 24px;
    }
}

/* Benefits List Mobile */
.benefit-item {
    padding: 10px;
    font-size: 14px;
}

@media (min-width: 768px) {
    .benefit-item {
        padding: 12px;
        font-size: 16px;
    }
}

/* Trust Badges Mobile */
.trust-badges {
    gap: 16px;
}

.trust-item {
    font-size: 13px;
}

@media (min-width: 768px) {
    .trust-item {
        font-size: 15px;
    }
}

/* Section Padding Mobile */
section {
    padding: 40px 0;
}

@media (min-width: 768px) {
    section {
        padding: 60px 0;
    }
}

@media (min-width: 1024px) {
    section {
        padding: 80px 0;
    }
}

/* Countdown Timer Mobile */
.timer-wrapper {
    padding: 20px;
}

@media (min-width: 768px) {
    .timer-wrapper {
        padding: 30px;
    }
}

.timer-segment span:first-child {
    font-size: 36px;
}

@media (min-width: 768px) {
    .timer-segment span:first-child {
        font-size: 60px;
    }
}

/* Review Cards Mobile */
.review-card {
    padding: 20px;
}

@media (min-width: 768px) {
    .review-card {
        padding: 30px;
    }
}

/* FAQ Mobile */
.faq-question {
    padding: 16px 20px;
    font-size: 15px;
}

@media (min-width: 768px) {
    .faq-question {
        padding: 24px 30px;
        font-size: 18px;
    }
}

/* Footer Mobile */
.footer {
    padding: 40px 0 20px;
}

@media (min-width: 768px) {
    .footer {
        padding: 60px 0 30px;
    }
}

/* Button Touch Targets */
.cta-button,
.pricing-cta,
.nav-cta,
button {
    min-height: 48px;
    min-width: 48px;
}

/* Prevent Text Selection on Buttons */
.cta-button,
.pricing-cta,
button {
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

/* Image Load Optimization */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Remove Horizontal Overflow */
body, html {
    max-width: 100%;
    overflow-x: hidden;
}

.container, section, div {
    max-width: 100%;
}

/* Fix Any Potential Overflow */
* {
    max-width: 100%;
}

/* Improve Touch Response */
a, button, .cta-button {
    -webkit-tap-highlight-color: rgba(212, 175, 55, 0.3);
}

/* Remove Section 3 Styles */
.pricing-preview {
    display: none;
}

/* ADDITIONAL PRICING BUTTON FIXES */
.pricing-btn {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    color: #000000;
    padding: 16px 24px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    margin: 16px 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    min-height: 48px;
    border: none;
    cursor: pointer;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #F4D03F 0%, #D4AF37 100%);
}

.payment-text {
    font-size: 11px;
    color: #666666;
    text-align: center;
    margin-top: 12px;
    padding: 8px 0;
}

@media (min-width: 768px) {
    .pricing-btn {
        font-size: 17px;
        padding: 18px 28px;
    }
    
    .payment-text {
        font-size: 12px;
    }
}

/* Mobile Pricing Improvements */
@media (max-width: 575px) {
    .pricing-grid {
        grid-template-columns: 1fr !important;
    }
    
    .pricing-card {
        margin-bottom: 20px;
    }
    
    .pricing-card.featured {
        transform: none !important;
        order: -1; /* Show featured first on mobile */
    }
}

/* Hide Section 3 */
#pricing-preview {
    display: none !important;
}
