/* ═══════════════════════════════════════════════════════════════
   PRATISH SHARMA — VEDIC YOGA SQUEEZE PAGE
   Premium Design System & Complete Styles
   ═══════════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─── */
:root {
    /* Colors */
    --saffron: #C75B12;
    --saffron-light: #E07B3A;
    --saffron-dark: #9A4400;
    --gold: #D4A843;
    --gold-light: #E8C76B;
    --charcoal: #1A1A1A;
    --charcoal-light: #2D2D2D;
    --cream: #FAF3E8;
    --cream-dark: #EDE0CC;
    --sage: #5D7B6F;
    --sage-light: #7A9A8D;
    --terracotta: #B85C38;
    --warm-white: #FEFCF8;
    --warm-gray: #8A8278;
    --dark-overlay: rgba(26, 26, 26, 0.85);

    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-max: 1240px;

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.18);
    --shadow-glow: 0 0 60px rgba(199, 91, 18, 0.15);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background-color: var(--warm-white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s var(--ease-out-expo);
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-padding) 0;
    position: relative;
}

/* ─── TYPOGRAPHY ─── */
.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--saffron);
    margin-bottom: 16px;
    position: relative;
    padding-left: 36px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 24px;
    height: 1.5px;
    background: var(--saffron);
    transform: translateY(-50%);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--charcoal);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--warm-gray);
    max-width: 640px;
    margin: 0 auto 48px;
    line-height: 1.8;
}

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

.text-gradient {
    background: linear-gradient(135deg, var(--saffron), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-highlight {
    color: var(--saffron);
}

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

.section-header .section-tag {
    display: block;
    text-align: center;
    padding-left: 0;
}

.section-header .section-tag::before {
    display: none;
}

/* ─── ANIMATIONS ─── */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0;
    }
}

@keyframes scroll-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 32px;
    border-radius: 60px;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--saffron), var(--saffron-light));
    color: white;
    box-shadow: 0 4px 20px rgba(199, 91, 18, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(199, 91, 18, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--saffron);
    padding: 14px 0;
    font-weight: 600;
}

.btn-secondary:hover {
    color: var(--saffron-dark);
    transform: translateX(4px);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.1);
    color: var(--charcoal);
    border: 1.5px solid rgba(26, 26, 26, 0.15);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--saffron);
    color: var(--saffron);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--charcoal);
    border: 1.5px solid var(--charcoal);
}

.btn-outline:hover {
    background: var(--charcoal);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
}

.btn-xl {
    padding: 22px 52px;
    font-size: 1.15rem;
}

.btn-block {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 18px 32px;
}

.btn-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s var(--ease-out-expo);
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease-out-expo);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(254, 252, 248, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 48px;
    transition: height 0.3s var(--ease-out-expo);
}

.navbar.scrolled .nav-logo img {
    height: 40px;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--saffron);
    transition: width 0.3s var(--ease-out-expo);
}

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

.nav-link:hover {
    color: var(--saffron);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 28px;
    height: 2px;
    background: var(--charcoal);
    transition: all 0.3s var(--ease-out-expo);
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(170deg, var(--cream) 0%, var(--warm-white) 40%, #FFF5EB 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(199, 91, 18, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 168, 67, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(93, 123, 111, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.hero-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(199, 91, 18, 0.08);
    color: var(--saffron-dark);
    padding: 10px 20px;
    border-radius: 60px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    border: 1px solid rgba(199, 91, 18, 0.12);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5.5vw, 4.2rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--charcoal);
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--warm-gray);
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-mini-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.mini-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--warm-gray);
}

.mini-stat-icon {
    font-size: 1.1rem;
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    position: relative;
    z-index: 2;
    max-height: 580px;
    width: auto;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.1));
}

.hero-image-glow {
    position: absolute;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(199, 91, 18, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.hero-image-ring {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 1px solid rgba(199, 91, 18, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: pulse-ring 4s ease-in-out infinite;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
}

.hero-scroll-indicator span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--warm-gray);
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--warm-gray);
    border-bottom: 2px solid var(--warm-gray);
    transform: rotate(45deg);
    animation: scroll-bounce 2s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════════════════════════════ */
.trust-bar {
    background: var(--charcoal);
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}

.trust-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.trust-item {
    padding: 16px;
}

.trust-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 300;
    color: var(--gold);
    display: inline;
    line-height: 1;
}

.trust-plus {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold);
    opacity: 0.7;
}

.trust-label {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
}

/* ═══════════════════════════════════════════════════════════════
   PROBLEM SECTION
   ═══════════════════════════════════════════════════════════════ */
.section-problem {
    background: var(--warm-white);
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.problem-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.problem-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    transition: transform 0.6s var(--ease-out-expo);
}

.problem-image:hover img {
    transform: scale(1.03);
}

.image-accent {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--saffron), var(--gold));
    border-radius: var(--radius-md);
    z-index: -1;
    opacity: 0.3;
}

.problem-content p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--charcoal-light);
    margin-bottom: 20px;
}

.problem-content strong {
    color: var(--charcoal);
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════════════════════ */
.section-about {
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.about-bg-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 40%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.06;
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: start;
}

.about-lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--charcoal-light);
    margin-bottom: 20px;
}

.about-quote {
    margin: 36px 0;
    padding: 28px 32px;
    border-left: 3px solid var(--saffron);
    background: rgba(199, 91, 18, 0.04);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.about-quote p {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--charcoal) !important;
    margin-bottom: 12px !important;
}

.about-quote cite {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-style: normal;
    color: var(--saffron);
    font-weight: 600;
}

.about-credentials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 36px;
}

.credential {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--warm-white);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s var(--ease-out-expo);
}

.credential:hover {
    transform: translateY(-2px);
}

.credential-icon {
    font-size: 1.3rem;
}

/* About Video */
.video-wrapper {
    position: sticky;
    top: 120px;
}

.video-placeholder {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 3/4;
}

.video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.6s var(--ease-out-expo);
}

.video-placeholder:hover .video-thumb {
    transform: scale(1.05);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s var(--ease-out-expo);
}

.video-play-btn svg {
    width: 28px;
    height: 28px;
    margin-left: 4px;
    color: var(--saffron);
}

.video-placeholder:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.video-play-btn.large {
    width: 88px;
    height: 88px;
}

.video-play-btn.large svg {
    width: 36px;
    height: 36px;
}

.video-caption {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 20px;
    border-radius: 60px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════════
   VEDIC YOGA SECTION (PILLARS)
   ═══════════════════════════════════════════════════════════════ */
.section-vedic {
    background: var(--warm-white);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.pillar-card {
    background: var(--warm-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-lg);
    padding: 48px 36px;
    text-align: center;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(199, 91, 18, 0.03));
    opacity: 0;
    transition: opacity 0.4s;
}

.pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(199, 91, 18, 0.1);
}

.pillar-card:hover::before {
    opacity: 1;
}

.pillar-featured {
    background: var(--charcoal);
    border-color: transparent;
    color: white;
}

.pillar-featured::before {
    background: linear-gradient(180deg, transparent 60%, rgba(212, 168, 67, 0.08));
}

.pillar-featured .pillar-subtitle {
    color: var(--gold);
}

.pillar-featured .pillar-desc {
    color: rgba(255, 255, 255, 0.7);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    color: var(--saffron);
}

.pillar-featured .pillar-icon {
    color: var(--gold);
}

.pillar-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.pillar-subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--saffron);
    margin-bottom: 20px;
    font-weight: 600;
}

.pillar-desc {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--warm-gray);
}

/* ═══════════════════════════════════════════════════════════════
   BENEFITS SECTION
   ═══════════════════════════════════════════════════════════════ */
.section-benefits {
    background: linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 56px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    transition: all 0.4s var(--ease-out-expo);
    box-shadow: var(--shadow-sm);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(199, 91, 18, 0.15);
}

.benefit-icon {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--charcoal);
}

.benefit-card p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--warm-gray);
}

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

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS SECTION
   ═══════════════════════════════════════════════════════════════ */
.section-testimonials {
    background: var(--charcoal);
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    pointer-events: none;
}

.section-testimonials .section-tag {
    color: var(--gold);
}

.section-testimonials .section-tag::before {
    display: none;
}

.section-testimonials .section-header .section-tag {
    display: block;
}

.section-testimonials .section-title {
    color: white;
}

.section-testimonials .text-highlight {
    color: var(--gold);
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s var(--ease-out-expo);
    gap: 32px;
    width: max-content;
}

.testimonial-card {
    width: calc((var(--container-max) - 48px - 64px) / 3);
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 40px;
    flex-shrink: 0;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.2rem;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--saffron), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: white;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(212, 168, 67, 0.4);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-name {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
}

.testimonial-location {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 48px;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease-out-expo);
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.carousel-dot.active {
    background: var(--gold);
    width: 28px;
    border-radius: 5px;
}

/* ═══════════════════════════════════════════════════════════════
   PACKAGES SECTION
   ═══════════════════════════════════════════════════════════════ */
.section-packages {
    background: var(--warm-white);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}

.package-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-lg);
    padding: 44px 36px;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

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

.package-featured {
    background: var(--charcoal);
    color: white;
    border-color: transparent;
    transform: scale(1.04);
    box-shadow: var(--shadow-xl);
}

.packages-single {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
}

.packages-single .package-featured {
    transform: none;
}

.packages-single .package-featured:hover {
    transform: translateY(-6px);
}

.price-was {
    display: block;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
    margin-bottom: 4px;
    font-weight: 400;
}

.price-now {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.price-cents {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
}

.package-guarantee {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 16px;
}

.package-featured:hover {
    transform: scale(1.04) translateY(-6px);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: -32px;
    background: linear-gradient(135deg, var(--saffron), var(--gold));
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 40px;
    transform: rotate(45deg);
}

.package-tier {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--saffron);
}

.package-featured .package-tier {
    color: var(--gold);
}

.package-name {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 500;
    margin: 8px 0 20px;
}

.package-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.package-featured .package-price {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--saffron);
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1;
}

.price-period {
    font-size: 0.9rem;
    color: var(--warm-gray);
    margin-left: 4px;
}

.package-featured .price-period {
    color: rgba(255, 255, 255, 0.5);
}

.package-features {
    list-style: none;
    margin-bottom: 36px;
}

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.93rem;
    line-height: 1.5;
}

.feature-check {
    color: var(--sage);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.feature-x {
    color: rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    margin-top: 1px;
}

.feature-disabled {
    opacity: 0.4;
}

.package-featured .feature-x {
    color: rgba(255, 255, 255, 0.2);
}

.package-featured .btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--saffron-light));
}

.package-featured .btn-primary:hover {
    box-shadow: 0 8px 30px rgba(212, 168, 67, 0.4);
}

.package-featured .feature-check {
    color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════════
   VIDEO SECTION
   ═══════════════════════════════════════════════════════════════ */
.section-video {
    background: var(--cream);
}

.video-section-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.video-section-content p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--charcoal-light);
    margin-bottom: 20px;
}

.video-section-player .video-placeholder {
    aspect-ratio: 16/10;
}

.video-embed-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

/* ═══════════════════════════════════════════════════════════════
   GALLERY SECTION
   ═══════════════════════════════════════════════════════════════ */
.section-gallery {
    background: var(--warm-white);
    padding-bottom: 80px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(26, 26, 26, 0.7));
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

.gallery-large {
    grid-column: span 2;
}

.gallery-large img {
    height: 320px;
}

.gallery-tall {
    grid-row: span 2;
}

.gallery-tall img {
    height: 100%;
    min-height: 536px;
    object-position: top;
}

/* ═══════════════════════════════════════════════════════════════
   FAQ SECTION
   ═══════════════════════════════════════════════════════════════ */
.section-faq {
    background: var(--cream);
}

.faq-layout {
    display: grid;
    grid-template-columns: 0.4fr 0.6fr;
    gap: 80px;
    align-items: start;
}

.faq-header {
    position: sticky;
    top: 120px;
}

.faq-header p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--warm-gray);
    margin-bottom: 24px;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--charcoal);
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--saffron);
}

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.4s var(--ease-out-expo);
    color: var(--saffron);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-out-expo), padding 0.5s var(--ease-out-expo);
    padding: 0 0;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 0 24px;
}

.faq-answer p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--warm-gray);
}

/* ═══════════════════════════════════════════════════════════════
   FINAL CTA SECTION
   ═══════════════════════════════════════════════════════════════ */
.section-final-cta {
    padding: 140px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.final-cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.08;
}

.section-final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(170deg, var(--cream) 0%, rgba(250, 243, 232, 0.97) 50%, var(--cream) 100%);
    z-index: 0;
}

.final-cta-content {
    position: relative;
    z-index: 1;
}

.section-final-cta .section-tag {
    display: block;
    padding-left: 0;
    text-align: center;
}

.section-final-cta .section-tag::before {
    display: none;
}

.final-cta-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--warm-gray);
    max-width: 560px;
    margin: 0 auto 36px;
}

.urgency-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.urgency-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(199, 91, 18, 0.06);
    border: 1px solid rgba(199, 91, 18, 0.12);
    padding: 12px 24px;
    border-radius: 60px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--saffron-dark);
}

.urgency-icon {
    font-size: 1.1rem;
}

.final-cta-guarantee {
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--warm-gray);
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}

.footer-logo {
    height: 44px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease-out-expo);
}

.social-link:hover {
    background: var(--saffron);
    border-color: var(--saffron);
    transform: translateY(-2px);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.footer-links-col h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 500;
}

.footer-links-col ul {
    list-style: none;
}

.footer-links-col li {
    padding: 6px 0;
    font-size: 0.9rem;
}

.footer-links-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN
   ═══════════════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-mini-stats {
        justify-content: center;
    }

    .hero-img {
        max-height: 420px;
    }

    .problem-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-credentials {
        grid-template-columns: 1fr 1fr;
    }

    .video-wrapper {
        position: static;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .pillar-featured {
        order: -1;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-card {
        width: calc(50vw - 60px);
    }

    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin: 0 auto;
    }

    .package-featured {
        transform: none;
        order: -1;
    }

    .package-featured:hover {
        transform: translateY(-6px);
    }

    .video-section-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-tall {
        grid-row: span 1;
    }

    .gallery-tall img {
        min-height: 260px;
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-header {
        position: static;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

/* Mobile */
@media (max-width: 640px) {
    :root {
        --section-padding: 64px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--warm-white);
        flex-direction: column;
        justify-content: center;
        gap: 32px;
        padding: 40px;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
        transition: right 0.4s var(--ease-out-expo);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero-title {
        font-size: clamp(2rem, 7vw, 2.8rem);
    }

    .hero-img {
        max-height: 340px;
    }

    .hero-image-glow {
        width: 260px;
        height: 260px;
    }

    .hero-image-ring {
        width: 300px;
        height: 300px;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .trust-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .trust-number {
        font-size: 2.2rem;
    }

    .problem-image img {
        height: 320px;
    }

    .about-credentials {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        width: calc(100vw - 48px);
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-large {
        grid-column: span 1;
    }

    .gallery-large img,
    .gallery-item img {
        height: 220px;
    }

    .urgency-badges {
        flex-direction: column;
        align-items: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .btn-lg {
        padding: 16px 32px;
        font-size: 1rem;
    }

    .btn-xl {
        padding: 18px 40px;
        font-size: 1.05rem;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta-group .btn {
        width: 100%;
        justify-content: center;
    }
}

/* High-res screens */
@media (min-width: 1400px) {
    .container {
        max-width: 1360px;
    }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .floating {
        animation: none;
    }

    .hero-image-ring {
        animation: none;
    }

    .scroll-arrow {
        animation: none;
    }
}