/* =============================================
   HEART HARMONICS V3 - ROSE GOLD ELEGANCE
   100% Original Design | SEO Optimized
   Bing & Google Compliant | USA Focused
   ============================================= */

:root {
    /* Rose Gold Palette */
    --rose-deep: #6B2D5C;
    --rose-primary: #9E4B6C;
    --rose-light: #D4848C;
    --rose-blush: #F5E1E4;
    --gold-rich: #C9A227;
    --gold-shimmer: #E8D48B;
    --gold-pale: #FBF6E3;
    
    /* Backgrounds */
    --bg-ivory: #FFFDF8;
    --bg-warm: #FEF9F4;
    --bg-soft: #FFF8F6;
    
    /* Text - Z BLACK */
    --text-black: #000000;
    --text-heading: #1C1C1C;
    --text-subtle: #4A4A4A;
    
    /* Pure White */
    --white: #FFFFFF;
    
    /* Effects */
    --glow-rose: rgba(158, 75, 108, 0.25);
    --glow-gold: rgba(201, 162, 39, 0.35);
    --shadow-soft: 0 6px 24px rgba(107, 45, 92, 0.12);
    --shadow-medium: 0 12px 40px rgba(107, 45, 92, 0.18);
    --shadow-strong: 0 20px 60px rgba(107, 45, 92, 0.22);
    
    /* Gradients */
    --grad-rose: linear-gradient(135deg, #6B2D5C 0%, #9E4B6C 50%, #D4848C 100%);
    --grad-gold: linear-gradient(135deg, #C9A227 0%, #E8D48B 50%, #C9A227 100%);
    --grad-warm: linear-gradient(180deg, #FFFDF8 0%, #FEF9F4 50%, #FFF8F6 100%);
    --grad-night: linear-gradient(135deg, #1C1C1C 0%, #6B2D5C 100%);
    
    /* Spacing */
    --gap-xs: 10px;
    --gap-sm: 18px;
    --gap-md: 28px;
    --gap-lg: 48px;
    --gap-xl: 72px;
    --gap-xxl: 110px;
    
    /* Radius */
    --round-sm: 10px;
    --round-md: 18px;
    --round-lg: 28px;
    --round-full: 100px;
    
    /* Animation */
    --motion: cubic-bezier(0.4, 0, 0.2, 1);
    --speed: 0.35s;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 24px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Crimson Pro', 'Georgia', serif;
    background: #FFFDF8;
    color: #000000;
    line-height: 1.8;
    overflow-x: hidden;
}

/* =============================================
   TYPOGRAPHY - LARGE READABLE FONTS
   ============================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Marcellus', 'Times New Roman', serif;
    font-weight: 400;
    color: #1C1C1C;
    line-height: 1.3;
}

h1 { font-size: 48px; }
h2 { font-size: 42px; }
h3 { font-size: 34px; }
h4 { font-size: 26px; }

p {
    font-size: 24px;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 1.3em;
}

a {
    color: #9E4B6C;
    text-decoration: none;
    transition: color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
    color: #6B2D5C;
}

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

/* =============================================
   LAYOUT
   ============================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

.container--slim {
    max-width: 860px;
}

/* =============================================
   TOP BAR
   ============================================= */
.top-bar {
    background: linear-gradient(135deg, #6B2D5C 0%, #9E4B6C 50%, #D4848C 100%);
    color: #FFFFFF;
    padding: 16px 28px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}

.top-bar strong {
    color: #E8D48B;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-area {
    background: linear-gradient(180deg, #FFFDF8 0%, #FEF9F4 50%, #FFF8F6 100%);
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}

.hero-area::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 65%;
    height: 180%;
    background: radial-gradient(ellipse, rgba(158, 75, 108, 0.25) 0%, transparent 65%);
    pointer-events: none;
    animation: gentleFloat 10s ease-in-out infinite;
}

@keyframes gentleFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.08); }
}

.hero-area__inner {
    position: relative;
    z-index: 5;
    text-align: center;
}

.hero-area__label {
    display: inline-block;
    background: linear-gradient(135deg, #C9A227 0%, #E8D48B 50%, #C9A227 100%);
    color: #6B2D5C;
    padding: 12px 32px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 48px;
    animation: softPulse 3s ease-in-out infinite;
}

@keyframes softPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(201, 162, 39, 0.35); transform: scale(1); }
    50% { box-shadow: 0 8px 35px rgba(201, 162, 39, 0.35); transform: scale(1.03); }
}

.hero-area__heading {
    font-size: 48px;
    color: #6B2D5C;
    margin-bottom: 28px;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
}

.hero-area__heading em {
    font-style: italic;
    background: linear-gradient(135deg, #6B2D5C 0%, #9E4B6C 50%, #D4848C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-area__tagline {
    font-size: 24px;
    color: #4A4A4A;
    max-width: 720px;
    margin: 0 auto 72px;
    font-style: italic;
}

.hero-area__image {
    max-width: 640px;
    margin: 0 auto 72px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(107, 45, 92, 0.22);
}

.hero-area__image img {
    width: 100%;
    border-radius: 28px;
}

/* =============================================
   PRICING
   ============================================= */
.price-block {
    text-align: center;
    margin: 48px 0;
}

.price-block__was {
    font-size: 26px;
    color: #4A4A4A;
    text-decoration: line-through;
    margin-right: 16px;
}

.price-block__now {
    font-size: 60px;
    font-weight: 700;
    color: #9E4B6C;
    font-family: 'Marcellus', 'Times New Roman', serif;
}

.price-block__now sup {
    font-size: 30px;
    vertical-align: super;
}

/* =============================================
   BUTTONS
   ============================================= */
.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 52px;
    border-radius: 100px;
    font-family: 'Marcellus', 'Times New Roman', serif;
    font-size: 19px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

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

.action-btn:hover::before {
    left: 100%;
}

.action-btn--rose {
    background: linear-gradient(135deg, #6B2D5C 0%, #9E4B6C 50%, #D4848C 100%);
    color: #FFFFFF;
    box-shadow: 0 12px 40px rgba(107, 45, 92, 0.18);
}

.action-btn--rose:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(107, 45, 92, 0.22);
    color: #FFFFFF;
}

.action-btn--gold {
    background: linear-gradient(135deg, #C9A227 0%, #E8D48B 50%, #C9A227 100%);
    color: #6B2D5C;
    box-shadow: 0 8px 30px rgba(201, 162, 39, 0.35);
}

.action-btn--gold:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 45px rgba(201, 162, 39, 0.35);
    color: #6B2D5C;
}

/* =============================================
   TRUST BADGES
   ============================================= */
.trust-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 780px;
    margin: 72px auto 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #FFFFFF;
    padding: 16px 20px;
    border-radius: 18px;
    box-shadow: 0 6px 24px rgba(107, 45, 92, 0.12);
}

.trust-badge__icon {
    font-size: 26px;
}

.trust-badge__label {
    font-size: 15px;
    color: #000000;
    font-weight: 500;
}

/* =============================================
   SECTIONS
   ============================================= */
.content-section {
    padding: 110px 0;
}

.content-section--ivory {
    background: #FFFDF8;
}

.content-section--white {
    background: #FFFFFF;
}

.content-section--blush {
    background: #FFF8F6;
}

.content-section--dark {
    background: linear-gradient(135deg, #1C1C1C 0%, #6B2D5C 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-header h2 {
    color: #6B2D5C;
    margin-bottom: 16px;
}

.content-section--dark .section-header h2 {
    color: #FFFFFF;
}

.section-header p {
    font-size: 22px;
    color: #000000;
    max-width: 620px;
    margin: 0 auto;
}

.content-section--dark .section-header p {
    color: rgba(255,255,255,0.85);
}

/* =============================================
   WHAT IS SECTION
   ============================================= */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.about-layout__visual {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(107, 45, 92, 0.18);
}

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

.about-layout__text h3 {
    color: #9E4B6C;
    margin-bottom: 28px;
}

.about-layout__text p {
    font-size: 22px;
    color: #000000;
}

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

.torus-display__visual {
    max-width: 540px;
    margin: 48px auto;
    border-radius: 28px;
    overflow: hidden;
}

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

.torus-display p {
    font-size: 22px;
    color: #000000;
}

/* =============================================
   PROCESS STEPS
   ============================================= */
.process-list {
    max-width: 920px;
    margin: 0 auto;
}

.process-item {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    background: #FFFFFF;
    padding: 48px;
    border-radius: 28px;
    margin-bottom: 28px;
    box-shadow: 0 6px 24px rgba(107, 45, 92, 0.12);
    border-left: 5px solid #9E4B6C;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-item:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 40px rgba(107, 45, 92, 0.18);
}

.process-item__num {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6B2D5C 0%, #9E4B6C 50%, #D4848C 100%);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Marcellus', serif;
    font-size: 26px;
    font-weight: 700;
    flex-shrink: 0;
}

.process-item__info h4 {
    color: #9E4B6C;
    margin-bottom: 10px;
}

.process-item__info p {
    margin-bottom: 0;
    font-size: 22px;
    color: #000000;
}

/* =============================================
   CHALLENGE CARDS
   ============================================= */
.challenge-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.challenge-card {
    background: #FFFFFF;
    padding: 28px;
    border-radius: 18px;
    border-left: 5px solid #D4848C;
    box-shadow: 0 6px 24px rgba(107, 45, 92, 0.12);
}

.challenge-card p {
    font-size: 22px;
    color: #000000;
    margin-bottom: 0;
}

/* =============================================
   RESEARCH PROOF
   ============================================= */
.research-visual {
    max-width: 720px;
    margin: 48px auto;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(107, 45, 92, 0.18);
}

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

/* =============================================
   ADVANTAGE TILES
   ============================================= */
.advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.advantage-tile {
    background: #FFFFFF;
    padding: 48px;
    border-radius: 28px;
    text-align: center;
    box-shadow: 0 6px 24px rgba(107, 45, 92, 0.12);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.advantage-tile:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(107, 45, 92, 0.18);
    border-color: #D4848C;
}

.advantage-tile__symbol {
    width: 78px;
    height: 78px;
    background: #F5E1E4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-size: 36px;
}

.advantage-tile h4 {
    color: #9E4B6C;
    margin-bottom: 12px;
    font-size: 22px;
}

.advantage-tile p {
    font-size: 20px;
    color: #000000;
    margin-bottom: 0;
}

/* =============================================
   OUTCOME LIST
   ============================================= */
.outcome-list {
    max-width: 820px;
    margin: 0 auto;
}

.outcome-item {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    background: #FFFFFF;
    padding: 28px;
    border-radius: 18px;
    margin-bottom: 16px;
    box-shadow: 0 6px 24px rgba(107, 45, 92, 0.12);
}

.outcome-item__mark {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #C9A227 0%, #E8D48B 50%, #C9A227 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B2D5C;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 16px;
}

.outcome-item p {
    margin-bottom: 0;
    font-size: 22px;
    color: #000000;
}

/* =============================================
   AUTHORITY QUOTES
   ============================================= */
.authority-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 920px;
    margin: 0 auto;
}

.authority-card {
    background: #FFFFFF;
    padding: 48px;
    border-radius: 28px;
    text-align: center;
}

.authority-card h4 {
    color: #9E4B6C;
    margin-bottom: 6px;
    font-size: 20px;
}

.authority-card__role {
    font-size: 14px;
    color: #4A4A4A;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.authority-card p {
    font-size: 20px;
    color: #000000;
    font-style: italic;
    margin-bottom: 0;
}

/* =============================================
   PACKAGE SHOWCASE
   ============================================= */
.package-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.package-item {
    background: #FFFFFF;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(107, 45, 92, 0.18);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.package-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(107, 45, 92, 0.22);
}

.package-item__visual {
    height: 210px;
    overflow: hidden;
}

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

.package-item__visual--icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 68px;
}

.package-item__visual--rose {
    background: linear-gradient(135deg, #6B2D5C 0%, #9E4B6C 50%, #D4848C 100%);
}

.package-item__visual--gold {
    background: linear-gradient(135deg, #C9A227 0%, #E8D48B 50%, #C9A227 100%);
}

.package-item__details {
    padding: 28px;
}

.package-item__label {
    display: inline-block;
    background: linear-gradient(135deg, #C9A227 0%, #E8D48B 50%, #C9A227 100%);
    color: #6B2D5C;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.package-item__details h4 {
    color: #9E4B6C;
    margin-bottom: 10px;
    font-size: 21px;
}

.package-item__details p {
    font-size: 18px;
    color: #000000;
    margin-bottom: 0;
}

/* =============================================
   REVIEWS GRID
   ============================================= */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.review-card {
    background: #FFFFFF;
    padding: 48px;
    border-radius: 28px;
    box-shadow: 0 6px 24px rgba(107, 45, 92, 0.12);
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    left: 24px;
    font-size: 60px;
    color: #F5E1E4;
    font-family: Georgia, serif;
    line-height: 1;
}

.review-card__body {
    position: relative;
    z-index: 2;
}

.review-card__body p {
    font-size: 20px;
    color: #000000;
    font-style: italic;
    margin-bottom: 28px;
}

.review-card__person {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-card__avatar {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #6B2D5C 0%, #9E4B6C 50%, #D4848C 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 18px;
}

.review-card__name {
    font-weight: 700;
    color: #9E4B6C;
    font-size: 16px;
}

.review-card__place {
    font-size: 13px;
    color: #4A4A4A;
}

.review-card__rating {
    color: #C9A227;
    font-size: 14px;
    margin-top: 4px;
}

/* =============================================
   QUESTIONS ACCORDION
   ============================================= */
.questions-list {
    max-width: 820px;
    margin: 0 auto;
}

.question-item {
    background: #FFFFFF;
    border-radius: 18px;
    margin-bottom: 16px;
    box-shadow: 0 6px 24px rgba(107, 45, 92, 0.12);
    overflow: hidden;
}

.question-item__header {
    padding: 24px 28px;
    font-size: 22px;
    font-weight: 600;
    font-family: 'Marcellus', serif;
    color: #000000;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.question-item__header:hover {
    background: #F5E1E4;
}

.question-item__toggle {
    font-size: 28px;
    color: #9E4B6C;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.question-item.active .question-item__toggle {
    transform: rotate(45deg);
}

.question-item__body {
    padding: 0 28px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.45s ease;
}

.question-item.active .question-item__body {
    padding: 0 28px 24px;
    max-height: 600px;
}

.question-item__body p {
    font-size: 22px;
    color: #000000;
    margin-bottom: 0;
}

/* =============================================
   PROMISE SECTION
   ============================================= */
/* =============================================
   FINAL CALL TO ACTION (includes guarantee)
   ============================================= */
.final-offer {
    background: linear-gradient(135deg, #1C1C1C 0%, #6B2D5C 100%);
    padding: 110px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.final-offer__inner {
    position: relative;
    z-index: 5;
}

.final-offer__inner > p {
    color: #FFFFFF;
    max-width: 640px;
    margin: 0 auto 48px;
    font-size: 24px;
}

.final-offer h2 {
    color: #FFFFFF;
    margin-bottom: 28px;
    font-size: 44px;
}

.final-offer__visual {
    max-width: 580px;
    margin: 0 auto 48px;
}

.final-offer__visual img {
    width: 100%;
    border-radius: 28px;
}

.final-offer .price-block__was {
    color: rgba(255,255,255,0.55);
}

.final-offer .price-block__now {
    color: #E8D48B;
    font-size: 68px;
}

.final-offer__note {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    margin-top: 28px;
}

/* Promise/Guarantee Box inside Final Offer */
.final-offer .promise-box {
    max-width: 660px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 48px;
    border-radius: 28px;
    box-shadow: 0 12px 40px rgba(107, 45, 92, 0.18);
    border: 4px solid #C9A227;
}

.final-offer .promise-box__symbol {
    width: 88px;
    height: 88px;
    background: linear-gradient(135deg, #C9A227 0%, #E8D48B 50%, #C9A227 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-size: 40px;
}

.final-offer .promise-box h3 {
    color: #9E4B6C;
    margin-bottom: 16px;
}

.final-offer .promise-box p {
    font-size: 20px;
    color: #000000;
    margin-bottom: 0;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: #1C1C1C;
    color: #FFFFFF;
    padding: 72px 0 48px;
}

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

.site-footer__brand {
    font-family: 'Marcellus', serif;
    font-size: 28px;
    margin-bottom: 28px;
}

.site-footer__nav {
    margin-bottom: 28px;
}

.site-footer__nav a {
    color: rgba(255,255,255,0.8);
    margin: 0 16px;
    font-size: 15px;
}

.site-footer__nav a:hover {
    color: #E8D48B;
}

.site-footer__legal {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    max-width: 820px;
    margin: 0 auto;
    line-height: 1.7;
}

.site-footer__copy {
    margin-top: 28px;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

/* =============================================
   MOBILE ORDER BUTTON
   ============================================= */
.mobile-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: none;
}

.mobile-cta .action-btn {
    padding: 16px 30px;
    font-size: 16px;
    animation: ctaPulse 2.5s infinite;
}

@keyframes ctaPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 6px 30px rgba(158, 75, 108, 0.25);
    }
    50% { 
        transform: scale(1.07);
        box-shadow: 0 10px 45px rgba(158, 75, 108, 0.25);
    }
}

/* =============================================
   NOTIFICATION POPUP
   ============================================= */
.notification-popup {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #FFFFFF;
    padding: 20px 26px;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(107, 45, 92, 0.22);
    display: none;
    align-items: center;
    gap: 16px;
    z-index: 9998;
    animation: popIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 5px solid #C9A227;
    max-width: 360px;
}

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

.notification-popup__icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #C9A227 0%, #E8D48B 50%, #C9A227 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.notification-popup__info {
    flex: 1;
}

.notification-popup__title {
    font-weight: 700;
    color: #9E4B6C;
    font-size: 15px;
}

.notification-popup__time {
    font-size: 13px;
    color: #4A4A4A;
}

.notification-popup__dismiss {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #4A4A4A;
    padding: 0;
    line-height: 1;
}

/* =============================================
   TABLET RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    h1 { font-size: 42px; }
    h2 { font-size: 36px; }
    h3 { font-size: 30px; }
    
    .hero-area__heading { font-size: 42px; }
    
    .advantage-grid,
    .reviews-grid,
    .package-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-layout__visual {
        order: -1;
    }
    
    .trust-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =============================================
   MOBILE RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
    /* Hide top bar on mobile */
    .top-bar {
        display: none;
    }
    
    html { font-size: 22px; }
    
    h1 { font-size: 36px; }
    h2 { font-size: 32px; }
    h3 { font-size: 26px; }
    h4 { font-size: 22px; }
    
    p { 
        font-size: 22px;
        color: #000000;
    }
    
    .hero-area__heading { font-size: 36px; }
    .hero-area__tagline { font-size: 20px; }
    
    .content-section { padding: 72px 0; }
    
    .advantage-grid,
    .reviews-grid,
    .package-showcase,
    .challenge-grid,
    .authority-grid,
    .trust-row {
        grid-template-columns: 1fr;
    }
    
    .process-item {
        flex-direction: column;
        text-align: center;
    }
    
    .process-item__num {
        margin: 0 auto;
    }
    
    .action-btn {
        padding: 18px 40px;
        font-size: 17px;
        width: 100%;
        max-width: 340px;
    }
    
    .price-block__now { font-size: 52px; }
    .final-offer .price-block__now { font-size: 58px; }
    .final-offer h2 { font-size: 34px; }
    
    /* Show mobile CTA */
    .mobile-cta {
        display: block;
        bottom: 16px;
        right: 16px;
        left: 16px;
    }
    
    .mobile-cta .action-btn {
        width: 100%;
    }
    
    .notification-popup {
        left: 16px;
        right: 16px;
        max-width: none;
    }
    
    /* Mobile font sizes - Z BLACK */
    .review-card__body p { font-size: 20px; color: #000000; }
    .question-item__header { font-size: 20px; color: #000000; }
    .question-item__body p { font-size: 20px; color: #000000; }
    .package-item__details h4 { font-size: 20px; }
    .package-item__details p { font-size: 18px; color: #000000; }
    .advantage-tile h4 { font-size: 20px; }
    .advantage-tile p { font-size: 20px; color: #000000; }
    .challenge-card p { font-size: 20px; color: #000000; }
    .outcome-item p { font-size: 20px; color: #000000; }
    .process-item__info p { font-size: 20px; color: #000000; }
    .authority-card p { font-size: 18px; color: #000000; }
    .section-header p { font-size: 20px; color: #000000; }
    .promise-box p { font-size: 18px; color: #000000; }
    .about-layout__text p { font-size: 20px; color: #000000; }
    .torus-display p { font-size: 20px; color: #000000; }
}

@media (max-width: 480px) {
    h1 { font-size: 32px; }
    h2 { font-size: 28px; }
    
    .hero-area__heading { font-size: 32px; }
    
    .container { padding: 0 18px; }
    
    .package-item__visual { height: 170px; }
}

/* Print */
@media print {
    .mobile-cta, .notification-popup { display: none !important; }
}
