/* ============================================
   HEART HARMONICS V2 - COSMIC LOVE EDITION
   100% Original Design - Mystical Theme
   ============================================ */

:root {
    /* Cosmic Color Palette */
    --cosmic-deep: #1a0a2e;
    --cosmic-purple: #3d1a5c;
    --cosmic-magenta: #9b2b77;
    --cosmic-pink: #e84a8a;
    --cosmic-coral: #ff6b9d;
    --cosmic-gold: #ffd700;
    --cosmic-light: #fff0f5;
    --cosmic-cream: #fef9f3;
    
    /* Text Colors */
    --ink-dark: #1a1a2e;
    --ink-body: #2d2a3e;
    --ink-soft: #6b6580;
    --ink-lighter: #9590a8;
    
    /* Functional */
    --pure-white: #ffffff;
    --glow-pink: rgba(232, 74, 138, 0.3);
    --glow-gold: rgba(255, 215, 0, 0.4);
    
    /* Shadows & Effects */
    --shadow-dreamy: 0 8px 32px rgba(157, 43, 119, 0.15);
    --shadow-lifted: 0 16px 48px rgba(157, 43, 119, 0.2);
    --shadow-cosmic: 0 4px 24px rgba(26, 10, 46, 0.12);
    
    /* Gradients */
    --grad-cosmic: linear-gradient(135deg, #3d1a5c 0%, #9b2b77 50%, #e84a8a 100%);
    --grad-sunrise: linear-gradient(135deg, #e84a8a 0%, #ff6b9d 50%, #ffd700 100%);
    --grad-mystic: linear-gradient(180deg, #fef9f3 0%, #fff0f5 50%, #fef9f3 100%);
    --grad-night: linear-gradient(135deg, #1a0a2e 0%, #3d1a5c 100%);
    
    /* Spacing */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 40px;
    --space-xl: 64px;
    --space-xxl: 100px;
    
    /* Borders */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --radius-full: 9999px;
    
    /* Transitions */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --duration-fast: 0.2s;
    --duration-normal: 0.35s;
    --duration-slow: 0.5s;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    background: var(--cosmic-cream);
    color: var(--ink-body);
    line-height: 1.75;
    overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY - EXACT SIZES FROM SPEC
   Desktop: Base 24px | H1 46px | H2 40px | Subtitle 22px
   Mobile: Base 24px | H1 36px | H2 32px | Subtitle 20px
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', 'Times New Roman', serif;
    font-weight: 600;
    color: var(--ink-dark);
    line-height: 1.25;
    letter-spacing: 0.02em;
}

h1 { font-size: 46px; } /* Hero Title */
h2 { font-size: 40px; } /* Section Titles */
h3 { font-size: 32px; }
h4 { font-size: 22px; }

p {
    font-size: 24px; /* Base font - INCREASED */
    color: #000000; /* Z BLACK - Pure Black */
    line-height: 1.85;
    margin-bottom: 1.25em;
    font-weight: 400;
}

a {
    color: var(--cosmic-magenta);
    text-decoration: none;
    transition: color var(--duration-fast) var(--ease-smooth);
}

a:hover {
    color: var(--cosmic-pink);
}

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

/* ============================================
   LAYOUT CONTAINERS
   ============================================ */
.wrapper {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.wrapper--narrow {
    max-width: 820px;
}

.wrapper--wide {
    max-width: 1320px;
}

/* ============================================
   TOP ANNOUNCEMENT STRIP
   ============================================ */
.announcement-strip {
    background: var(--grad-cosmic);
    color: var(--pure-white);
    padding: 14px var(--space-md);
    text-align: center;
    font-size: 15px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.announcement-strip em {
    color: var(--cosmic-gold);
    font-style: normal;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background: var(--grad-mystic);
    padding: var(--space-xxl) 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 60%;
    height: 160%;
    background: radial-gradient(ellipse, var(--glow-pink) 0%, transparent 70%);
    pointer-events: none;
    animation: floatGlow 8s ease-in-out infinite;
}

@keyframes floatGlow {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    50% { transform: translate(-20px, 20px) scale(1.1); opacity: 0.8; }
}

.hero__inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: var(--grad-sunrise);
    color: var(--cosmic-deep);
    padding: 10px 28px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-lg);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { box-shadow: 0 4px 20px var(--glow-gold); }
    50% { box-shadow: 0 8px 40px var(--glow-gold); }
}

.hero__title {
    font-size: 46px;
    color: var(--cosmic-deep);
    margin-bottom: var(--space-md);
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.hero__title span {
    background: var(--grad-cosmic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: 22px; /* Hero Subtitle - Desktop */
    color: var(--ink-soft);
    max-width: 680px;
    margin: 0 auto var(--space-xl);
    font-style: italic;
}

.hero__visual {
    max-width: 620px;
    margin: 0 auto var(--space-xl);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lifted);
    transform: perspective(1000px) rotateX(2deg);
    transition: transform var(--duration-slow) var(--ease-smooth);
}

.hero__visual:hover {
    transform: perspective(1000px) rotateX(0deg) scale(1.02);
}

.hero__visual img {
    width: 100%;
    border-radius: var(--radius-lg);
}

/* ============================================
   PRICING DISPLAY
   ============================================ */
.pricing-box {
    text-align: center;
    margin: var(--space-lg) 0;
}

.pricing-box__old {
    font-size: 22px;
    color: var(--ink-lighter);
    text-decoration: line-through;
    margin-right: var(--space-sm);
    font-family: 'Cinzel', serif;
}

.pricing-box__current {
    font-size: 56px;
    font-weight: 700;
    color: var(--cosmic-magenta);
    font-family: 'Cinzel', serif;
}

.pricing-box__current sup {
    font-size: 28px;
    vertical-align: super;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 18px 48px;
    border-radius: var(--radius-full);
    font-family: 'Cinzel', serif;
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-smooth);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.6s ease;
}

.btn:hover::after {
    left: 100%;
}

.btn--primary {
    background: var(--grad-cosmic);
    color: var(--pure-white);
    box-shadow: var(--shadow-dreamy);
}

.btn--primary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lifted);
    color: var(--pure-white);
}

.btn--golden {
    background: var(--grad-sunrise);
    color: var(--cosmic-deep);
    box-shadow: 0 8px 32px var(--glow-gold);
}

.btn--golden:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px var(--glow-gold);
    color: var(--cosmic-deep);
}

/* ============================================
   FEATURE BADGES
   ============================================ */
.trust-signals {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-sm);
    max-width: 720px;
    margin: var(--space-xl) auto 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--pure-white);
    padding: 14px 18px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-cosmic);
}

.trust-item__icon {
    font-size: 22px;
}

.trust-item__text {
    font-size: 14px;
    color: var(--ink-body);
    font-weight: 500;
}

/* ============================================
   SECTION LAYOUTS
   ============================================ */
.section {
    padding: var(--space-xxl) 0;
}

.section--cream {
    background: var(--cosmic-cream);
}

.section--white {
    background: var(--pure-white);
}

.section--blush {
    background: var(--cosmic-light);
}

.section--dark {
    background: var(--grad-night);
}

.section__header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section__header h2 {
    color: var(--cosmic-deep);
    margin-bottom: var(--space-sm);
}

.section--dark .section__header h2 {
    color: var(--pure-white);
}

.section__header p {
    font-size: 22px; /* Section subtitle */
    color: #000000; /* Z BLACK */
    max-width: 580px;
    margin: 0 auto;
}

.section--dark .section__header p {
    color: rgba(255,255,255,0.75);
}

/* ============================================
   ABOUT / WHAT IS SECTION
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.about-grid__media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lifted);
}

.about-grid__media img {
    width: 100%;
}

.about-grid__content h3 {
    color: var(--cosmic-magenta);
    margin-bottom: var(--space-md);
}

/* ============================================
   TORUS FIELD DISPLAY
   ============================================ */
.torus-showcase {
    text-align: center;
}

.torus-showcase__image {
    max-width: 520px;
    margin: var(--space-lg) auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.torus-showcase__image img {
    width: 100%;
}

/* ============================================
   STEPS / HOW IT WORKS
   ============================================ */
.steps-list {
    max-width: 880px;
    margin: 0 auto;
}

.step-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    background: var(--pure-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
    box-shadow: var(--shadow-cosmic);
    transition: all var(--duration-normal) var(--ease-smooth);
    border-left: 4px solid var(--cosmic-magenta);
}

.step-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-dreamy);
}

.step-card__number {
    width: 56px;
    height: 56px;
    background: var(--grad-cosmic);
    color: var(--pure-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-card__content h4 {
    color: var(--cosmic-magenta);
    margin-bottom: var(--space-xs);
}

.step-card__content p {
    margin-bottom: 0;
    font-size: 22px; /* Step content */
    color: #000000; /* Z BLACK */
}

/* ============================================
   PROBLEM CARDS
   ============================================ */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.problem-card {
    background: var(--pure-white);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--cosmic-coral);
    box-shadow: var(--shadow-cosmic);
}

.problem-card p {
    font-size: 22px; /* Problem Cards - Desktop */
    color: #000000; /* Z BLACK */
    margin-bottom: 0;
}

/* ============================================
   SCIENCE PROOF
   ============================================ */
.science-visual {
    max-width: 680px;
    margin: var(--space-lg) auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-dreamy);
}

.science-visual img {
    width: 100%;
}

/* ============================================
   BENEFITS GRID
   ============================================ */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.benefit-tile {
    background: var(--pure-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-cosmic);
    transition: all var(--duration-normal) var(--ease-smooth);
    border: 2px solid transparent;
}

.benefit-tile:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-dreamy);
    border-color: var(--cosmic-pink);
}

.benefit-tile__icon {
    width: 72px;
    height: 72px;
    background: var(--cosmic-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    font-size: 32px;
}

.benefit-tile h4 {
    color: var(--cosmic-magenta);
    margin-bottom: var(--space-xs);
    font-size: 22px;
}

.benefit-tile p {
    font-size: 22px; /* Benefits List - Desktop */
    color: #000000; /* Z BLACK */
    margin-bottom: 0;
}

/* ============================================
   SOLUTION CHECKLIST
   ============================================ */
.solutions-list {
    max-width: 780px;
    margin: 0 auto;
}

.solution-row {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    background: var(--pure-white);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
    box-shadow: var(--shadow-cosmic);
}

.solution-row__check {
    width: 32px;
    height: 32px;
    background: var(--grad-sunrise);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cosmic-deep);
    font-weight: 700;
    flex-shrink: 0;
    font-size: 14px;
}

.solution-row p {
    margin-bottom: 0;
    font-size: 22px; /* Solution Benefits - Desktop */
    color: #000000; /* Z BLACK */
}

/* ============================================
   EXPERT QUOTES
   ============================================ */
.experts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    max-width: 880px;
    margin: 0 auto;
}

.expert-card {
    background: var(--pure-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    text-align: center;
}

.expert-card h4 {
    color: var(--cosmic-magenta);
    margin-bottom: 4px;
    font-size: 17px;
}

.expert-card__title {
    font-size: 13px;
    color: var(--ink-lighter);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.expert-card p {
    font-size: 20px; /* Doctor Cards - Desktop */
    color: #000000; /* Z BLACK */
    font-style: italic;
    margin-bottom: 0;
}

/* ============================================
   PACKAGE / BONUSES
   ============================================ */
.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.package-card {
    background: var(--pure-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-dreamy);
    transition: all var(--duration-normal) var(--ease-smooth);
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lifted);
}

.package-card__image {
    height: 200px;
    overflow: hidden;
}

.package-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-card__image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
}

.package-card__image--placeholder.cosmic {
    background: var(--grad-cosmic);
}

.package-card__image--placeholder.golden {
    background: var(--grad-sunrise);
}

.package-card__body {
    padding: var(--space-md);
}

.package-card__tag {
    display: inline-block;
    background: var(--grad-sunrise);
    color: var(--cosmic-deep);
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-xs);
}

.package-card__body h4 {
    color: var(--cosmic-magenta);
    margin-bottom: var(--space-xs);
    font-size: 21px;
}

.package-card__body p {
    font-size: 18px;
    color: #000000; /* Z BLACK */
    margin-bottom: 0;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.testimonial-card {
    background: var(--pure-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-cosmic);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 12px;
    left: 20px;
    font-size: 56px;
    color: var(--cosmic-light);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card__text {
    position: relative;
    z-index: 1;
}

.testimonial-card__text p {
    font-size: 20px; /* Testimonials - Desktop */
    color: #000000; /* Z BLACK */
    font-style: italic;
    margin-bottom: var(--space-md);
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card__avatar {
    width: 48px;
    height: 48px;
    background: var(--grad-cosmic);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    font-weight: 700;
    font-family: 'Cinzel', serif;
}

.testimonial-card__name {
    font-weight: 700;
    color: var(--cosmic-magenta);
    font-size: 14px;
}

.testimonial-card__location {
    font-size: 12px;
    color: var(--ink-lighter);
}

.testimonial-card__stars {
    color: var(--cosmic-gold);
    font-size: 13px;
    margin-top: 2px;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list {
    max-width: 780px;
    margin: 0 auto;
}

.faq-item {
    background: var(--pure-white);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
    box-shadow: var(--shadow-cosmic);
    overflow: hidden;
}

.faq-item__question {
    padding: 22px var(--space-md);
    font-size: 22px; /* FAQ Questions - Desktop */
    font-weight: 600;
    font-family: 'Cinzel', serif;
    color: #000000; /* Z BLACK */
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background var(--duration-fast) var(--ease-smooth);
}

.faq-item__question:hover {
    background: var(--cosmic-light);
}

.faq-item__icon {
    font-size: 24px;
    color: var(--cosmic-magenta);
    transition: transform var(--duration-normal) var(--ease-smooth);
}

.faq-item.is-open .faq-item__icon {
    transform: rotate(45deg);
}

.faq-item__answer {
    padding: 0 var(--space-md);
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-item.is-open .faq-item__answer {
    padding: 0 var(--space-md) 22px;
    max-height: 500px;
}

.faq-item__answer p {
    font-size: 22px; /* FAQ Answers - Desktop */
    color: #000000; /* Z BLACK */
    margin-bottom: 0;
}

/* ============================================
   GUARANTEE BADGE
   ============================================ */
.guarantee {
    background: var(--cosmic-light);
    padding: var(--space-xl) 0;
    text-align: center;
}

.guarantee__box {
    max-width: 620px;
    margin: 0 auto;
    background: var(--pure-white);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-dreamy);
    border: 3px solid var(--cosmic-gold);
}

.guarantee__icon {
    width: 80px;
    height: 80px;
    background: var(--grad-sunrise);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    font-size: 36px;
}

.guarantee__box h3 {
    color: var(--cosmic-magenta);
    margin-bottom: var(--space-sm);
}

.guarantee__box p {
    font-size: 20px;
    color: #000000; /* Z BLACK */
    margin-bottom: 0;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta {
    background: var(--grad-night);
    padding: var(--space-xxl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><circle cx="40" cy="40" r="35" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>') repeat;
    background-size: 80px 80px;
}

.final-cta__inner {
    position: relative;
    z-index: 2;
}

.final-cta h2 {
    color: var(--pure-white);
    margin-bottom: var(--space-md);
    font-size: 42px;
}

.final-cta p {
    color: rgba(255,255,255,0.85);
    max-width: 620px;
    margin: 0 auto var(--space-lg);
}

.final-cta__visual {
    max-width: 560px;
    margin: 0 auto var(--space-lg);
}

.final-cta__visual img {
    width: 100%;
    border-radius: var(--radius-lg);
}

.final-cta .pricing-box__old {
    color: rgba(255,255,255,0.5);
}

.final-cta .pricing-box__current {
    color: var(--cosmic-gold);
    font-size: 64px;
}

.final-cta__note {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-top: var(--space-md);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--cosmic-deep);
    color: var(--pure-white);
    padding: var(--space-xl) 0 var(--space-lg);
}

.footer__inner {
    text-align: center;
}

.footer__logo {
    font-family: 'Cinzel', serif;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.footer__links {
    margin-bottom: var(--space-md);
}

.footer__links a {
    color: rgba(255,255,255,0.75);
    margin: 0 var(--space-sm);
    font-size: 14px;
}

.footer__links a:hover {
    color: var(--cosmic-gold);
}

.footer__disclaimer {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    max-width: 780px;
    margin: 0 auto;
    line-height: 1.7;
}

.footer__copy {
    margin-top: var(--space-md);
    font-size: 12px;
    color: rgba(255,255,255,0.4);
}

/* ============================================
   FLOATING ORDER BUTTON
   ============================================ */
.floating-order {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: none;
}

.floating-order .btn {
    padding: 14px 28px;
    font-size: 15px;
    animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 6px 28px var(--glow-pink);
    }
    50% { 
        transform: scale(1.06);
        box-shadow: 0 10px 40px var(--glow-pink);
    }
}

/* ============================================
   PURCHASE NOTIFICATION
   ============================================ */
.purchase-alert {
    position: fixed;
    bottom: 28px;
    left: 28px;
    background: var(--pure-white);
    padding: 18px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lifted);
    display: none;
    align-items: center;
    gap: var(--space-sm);
    z-index: 999;
    animation: alertSlide 0.5s var(--ease-smooth);
    border-left: 4px solid var(--cosmic-gold);
    max-width: 340px;
}

@keyframes alertSlide {
    from { transform: translateX(-120%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.purchase-alert__icon {
    width: 44px;
    height: 44px;
    background: var(--grad-sunrise);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.purchase-alert__content {
    flex: 1;
}

.purchase-alert__title {
    font-weight: 700;
    color: var(--cosmic-magenta);
    font-size: 14px;
}

.purchase-alert__time {
    font-size: 12px;
    color: var(--ink-lighter);
}

.purchase-alert__close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--ink-lighter);
    padding: 0;
    line-height: 1;
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (max-width: 992px) {
    html { font-size: 18px; }
    h1 { font-size: 38px; }
    h2 { font-size: 34px; }
    h3 { font-size: 28px; }
    
    .benefits-grid,
    .testimonials-grid,
    .package-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .about-grid__media {
        order: -1;
    }
    
    .trust-signals {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   RESPONSIVE - MOBILE - EXACT FONT SIZES
   ============================================ */
@media (max-width: 768px) {
    /* Hide announcement on mobile */
    .announcement-strip {
        display: none;
    }
    
    /* Base font 24px on mobile too */
    html { font-size: 24px; }
    
    /* Hero Title: 36px on mobile */
    h1 { font-size: 36px; }
    .hero__title { font-size: 36px; }
    
    /* Section Titles: 32px on mobile */
    h2 { font-size: 32px; }
    
    h3 { font-size: 26px; }
    h4 { font-size: 20px; }
    
    /* Base font: 24px on mobile - Z BLACK */
    p { 
        font-size: 22px; 
        color: #000000;
    }
    
    /* Hero Subtitle: 20px on mobile */
    .hero__subtitle { font-size: 20px; }
    
    .section { padding: var(--space-xl) 0; }
    
    .benefits-grid,
    .testimonials-grid,
    .package-grid,
    .problems-grid,
    .experts-grid,
    .trust-signals {
        grid-template-columns: 1fr;
    }
    
    .step-card {
        flex-direction: column;
        text-align: center;
    }
    
    .step-card__number {
        margin: 0 auto;
    }
    
    .btn {
        padding: 16px 36px;
        font-size: 16px;
        width: 100%;
        max-width: 320px;
    }
    
    .pricing-box__current {
        font-size: 48px;
    }
    
    .final-cta .pricing-box__current {
        font-size: 54px;
    }
    
    .final-cta h2 {
        font-size: 32px;
    }
    
    /* Show floating button on mobile */
    .floating-order {
        display: block;
        bottom: 15px;
        right: 15px;
        left: 15px;
    }
    
    .floating-order .btn {
        width: 100%;
    }
    
    .purchase-alert {
        left: 15px;
        right: 15px;
        max-width: none;
    }
    
    /* Testimonials: 20px on mobile - Z BLACK */
    .testimonial-card__text p { 
        font-size: 20px; 
        color: #000000;
    }
    
    /* FAQ Questions: 20px on mobile - Z BLACK */
    .faq-item__question { 
        font-size: 20px; 
        color: #000000;
    }
    
    /* FAQ Answers: 20px on mobile - Z BLACK */
    .faq-item__answer p { 
        font-size: 20px; 
        color: #000000;
    }
    
    /* Package/Bonus cards */
    .package-card__body h4 { font-size: 20px; }
    .package-card__body p { 
        font-size: 18px; 
        color: #000000;
    }
    
    /* Benefits List: 20px on mobile - Z BLACK */
    .benefit-tile h4 { font-size: 20px; }
    .benefit-tile p { 
        font-size: 20px; 
        color: #000000;
    }
    
    /* Problem Cards: 20px on mobile - Z BLACK */
    .problem-card p { 
        font-size: 20px; 
        color: #000000;
    }
    
    /* Solution Benefits: 20px on mobile - Z BLACK */
    .solution-row p { 
        font-size: 20px; 
        color: #000000;
    }
    
    /* Step content - Z BLACK */
    .step-card__content p { 
        font-size: 20px; 
        color: #000000;
    }
    
    /* Doctor/Expert Cards: 18px on mobile - Z BLACK */
    .expert-card p { 
        font-size: 18px; 
        color: #000000;
    }
    
    /* Section header - Z BLACK */
    .section__header p {
        font-size: 20px;
        color: #000000;
    }
    
    /* Guarantee box - Z BLACK */
    .guarantee__box p {
        font-size: 18px;
        color: #000000;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 30px; }
    h2 { font-size: 26px; }
    
    .hero__title { font-size: 30px; }
    
    .wrapper {
        padding: 0 var(--space-sm);
    }
    
    .package-card__image {
        height: 160px;
    }
}

/* Print Styles */
@media print {
    .floating-order,
    .purchase-alert {
        display: none !important;
    }
}
