/* Reset & Base Styles */
:root {
    --color-bg: #FDFBF7;
    /* Warmer, richer cream */
    --color-white: #FFFFFF;
    --color-text-primary: #2C2C2C;
    /* Softer black */
    --color-text-secondary: #5A5A5A;
    --color-accent: #B8860B;
    /* Dark Goldenrod - richer gold */
    --color-accent-hover: #DAA520;
    /* Goldenrod */
    --color-light-accent: #F9F4E8;
    --color-gradient-start: #FDFBF7;
    --color-gradient-end: #F0E6D2;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --spacing-section: 100px;
    --container-width: 1200px;
    --border-radius: 16px;
    /* More modern rounded corners */
    --shadow-soft: 0 15px 35px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 25px 50px rgba(184, 134, 11, 0.15);
    /* Gold-tinted shadow */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: var(--color-text-primary);
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 24px;
    font-weight: 700;
    background: linear-gradient(45deg, #2C2C2C, #5A5A5A);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    display: inline-block;
}

/* Decorative underline for H2 */
h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--color-accent);
    margin: 15px auto 0;
    border-radius: 2px;
}

h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    font-weight: 600;
}

p {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--border-radius);
}

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

/* Buttons */
/* Buttons (Irresistibly Clickable Animation) */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #DFB879 0%, #B8860B 100%);
    /* Richer Gold Gradient */
    color: var(--color-white);
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(184, 134, 11, 0.4),
        0 0 0 4px rgba(184, 134, 11, 0.1);
    /* Subtle ring */
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    animation: gentlePulse 3s infinite;
}

/* Shine effect sweeping across */
.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: skewX(-20deg);
    animation: shineButton 4s infinite 2s;
    /* Delays for rhythm */
}

/* Hover State */
.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(184, 134, 11, 0.6),
        0 0 0 8px rgba(184, 134, 11, 0.2);
    /* Expanding ring */
    background: linear-gradient(135deg, #EAC88B 0%, #DAA520 100%);
}

.cta-button:active {
    transform: translateY(-2px) scale(0.98);
    /* Click press effect */
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.4);
}

.cta-button .arrow-icon {
    margin-left: 12px;
    font-size: 1.3rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.cta-button:hover .arrow-icon {
    transform: translateX(8px);
    animation: bounceRight 1s infinite alternate;
}

/* Animation Keyframes */
@keyframes gentlePulse {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(184, 134, 11, 0.4);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 15px 35px rgba(184, 134, 11, 0.5);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(184, 134, 11, 0.4);
    }
}

@keyframes shineButton {
    0% {
        left: -150%;
    }

    20% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

@keyframes bounceRight {
    0% {
        transform: translateX(5px);
    }

    100% {
        transform: translateX(10px);
    }
}

.cta-button.large {
    padding: 24px 60px;
    font-size: 1.4rem;
    /* Larger button usually needs slightly adjusted pulse */
}

.cta-container {
    text-align: center;
    margin-top: 50px;
}

/* 1. Hero Section (Premium Redesign) */
.hero-section {
    padding: 140px 0 100px;
    background-color: #FDFBF7;
    min-height: 95vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Animated Background Mesh */
.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    filter: blur(80px);
    opacity: 0.6;
}

.shape {
    position: absolute;
    border-radius: 50%;
    animation: floatingMesh 20s infinite alternate ease-in-out;
}

.shape-1 {
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(197, 160, 101, 0.4) 0%, rgba(255, 255, 255, 0) 70%);
}

.shape-2 {
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    animation-delay: -5s;
}

@keyframes floatingMesh {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, 40px) scale(1.1);
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

/* Text Styling */
.hero-tag-wrapper {
    margin-bottom: 24px;
}

.hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(197, 160, 101, 0.3);
    color: var(--color-accent);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(197, 160, 101, 0.1);
}

.hero-text h1 {
    font-size: 3.8rem;
    line-height: 1.15;
    margin-bottom: 24px;
    background: linear-gradient(45deg, #1a1a1a, #4a4a4a);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text h1 em {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--color-accent);
    -webkit-text-fill-color: var(--color-accent);
    /* Override gradient */
    font-weight: 400;
}

.highlight-text {
    position: relative;
    white-space: nowrap;
    z-index: 1;
    color: #1a1a1a;
    -webkit-text-fill-color: #1a1a1a;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 15px;
    background-color: rgba(197, 160, 101, 0.2);
    z-index: -1;
    transform: skewX(-10deg);
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    max-width: 90%;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.hero-cta-wrapper-mobile {
    display: none;
}

.trust-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #666;
    background: rgba(255, 255, 255, 0.5);
    padding: 8px 16px;
    border-radius: 20px;
}

/* Image & Floating Cards */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-frame {
    position: relative;
    border-radius: 200px 200px 20px 20px;
    /* Arch shape */
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
    border: 8px solid rgba(255, 255, 255, 0.8);
    width: 100%;
    max-width: 450px;
    height: 600px;
    transform: rotate(-2deg);
    transition: transform 0.5s ease;
}

.hero-image-wrapper:hover .image-frame {
    transform: rotate(0deg);
}

.main-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Floating Glass Cards */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 15px 20px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
    animation: floatCard 6s ease-in-out infinite;
}

.card-1 {
    top: 15%;
    left: -20px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 10%;
    right: -10px;
    animation-delay: 3s;
}

@keyframes floatCard {

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

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

.floating-card .icon {
    font-size: 1.5rem;
    background: #FFF8E7;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.floating-card .content {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.floating-card strong {
    font-size: 0.95rem;
    color: var(--color-text-primary);
}

.floating-card span {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
}

.floating-card .stars {
    color: #FFD700;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

/* 2. Social Proof Badge */
.social-proof-badge {
    background-color: var(--color-white);
    padding: 30px 0;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(to right, #FFF8E7, #FFF);
    padding: 12px 30px;
    border-radius: 50px;
    color: var(--color-accent);
    font-weight: 700;
    border: 1px solid rgba(197, 160, 101, 0.2);
    box-shadow: 0 5px 15px rgba(197, 160, 101, 0.1);
}

.badge-icon {
    margin-right: 10px;
    font-size: 1.4rem;
    color: #FFD700;
    /* Gold star */
}

.badge-text {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

#lives-counter {
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    /* Prevents jumping */
    color: #B8860B;
    font-size: 1.25rem;
}

/* Shine Animation */
.badge {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to right, #FFF8E7, #FFF);
    z-index: 1;
}

.badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

/* 3. Exclusion Bar (Scrolling Text) */
.exclusion-bar {
    background-color: #1A1A1A;
    color: rgba(255, 255, 255, 0.9);
    padding: 16px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    font-family: var(--font-body);
}

.scrolling-text {
    display: inline-block;
    animation: scroll 60s linear infinite;
    padding-left: 100%;
}

.scrolling-text span {
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* 4. Pain Points (Premium Dark Starry Redesign) */
.pain-points {
    padding: 120px 0;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    position: relative;
    overflow: hidden;
    color: var(--color-white);
}

#gold-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.8;
}

.pain-points .section-content {
    position: relative;
    z-index: 1;
    /* Above canvas */
}

/* Title in Dark Section */
.pain-points h2 {
    color: var(--color-white);
    margin-bottom: 60px;
}

.pain-points h2::after {
    background-color: var(--color-accent);
    box-shadow: 0 0 15px var(--color-accent);
    /* Glowing underline */
}

.pain-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.pain-list li {
    display: flex;
    align-items: flex-start;
    padding: 35px;
    background: rgba(255, 255, 255, 0.03);
    /* Dark glass */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* Very subtle border */
    color: rgba(255, 255, 255, 0.9);
}

.pain-list li:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(184, 134, 11, 0.5);
    /* Gold border on hover */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
        inset 0 0 20px rgba(184, 134, 11, 0.05);
    /* Inner glow */
}

.pain-list li p {
    color: rgba(255, 255, 255, 0.85);
    /* Overriding default p color */
    font-size: 1.15rem;
    margin-bottom: 0;
}

.pain-list .icon {
    color: #FF6B6B;
    /* Softer red/coral for dark bg */
    font-size: 1.5rem;
    margin-right: 25px;
    flex-shrink: 0;
    background: rgba(255, 107, 107, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.2);
    border: 1px solid rgba(255, 107, 107, 0.2);
    transition: all 0.4s ease;
}

.pain-list li:hover .icon {
    transform: rotate(90deg);
    background: rgba(255, 107, 107, 0.2);
    box-shadow: 0 0 30px rgba(255, 107, 107, 0.4);
}

/* 5. Solution (Premium Dark Starry Match) */
.solution {
    padding: 120px 0;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    position: relative;
    overflow: hidden;
    color: var(--color-white);
}

#solution-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.8;
}

.solution .section-content {
    position: relative;
    z-index: 1;
}

.solution h2 {
    color: var(--color-white);
    margin-bottom: 60px;
}

.solution h2::after {
    background-color: var(--color-accent);
    box-shadow: 0 0 15px var(--color-accent);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    padding: 20px 0;
    /* Space for hover effects */
}

.pillar-card {
    background: rgba(255, 255, 255, 0.03);
    /* Dark glass */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 50px 40px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pillar-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(184, 134, 11, 0.5);
    /* Gold */
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5),
        inset 0 0 20px rgba(184, 134, 11, 0.05);
}

.pillar-card h3 {
    color: var(--color-accent);
    margin-bottom: 24px;
    font-size: 1.8rem;
    text-shadow: 0 0 10px rgba(184, 134, 11, 0.2);
}

.pillar-card p {
    color: rgba(255, 255, 255, 0.85);
}

/* 6. Benefits */
/* 6. Benefits (Premium Dark Starry Match) */
.benefits {
    padding: 120px 0;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    position: relative;
    overflow: hidden;
    color: var(--color-white);
}

#benefits-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.8;
}

.benefits .section-content {
    position: relative;
    z-index: 1;
}

.benefits h2 {
    color: var(--color-white);
    margin-bottom: 60px;
}

.benefits h2::after {
    background-color: var(--color-accent);
    box-shadow: 0 0 15px var(--color-accent);
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    padding: 35px;
    background: rgba(255, 255, 255, 0.03);
    /* Dark glass */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.benefits-list li:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(184, 134, 11, 0.5);
    /* Gold */
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5),
        inset 0 0 20px rgba(184, 134, 11, 0.05);
}

.benefits-list li p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    margin-bottom: 0;
}

.benefits-list .icon {
    color: var(--color-accent);
    /* Gold checkmarks match theme perfectly */
    font-size: 1.4rem;
    margin-right: 20px;
    flex-shrink: 0;
    background: rgba(184, 134, 11, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(184, 134, 11, 0.2);
    border: 1px solid rgba(184, 134, 11, 0.2);
}

.benefits-list li:hover .icon {
    background: rgba(184, 134, 11, 0.2);
    box-shadow: 0 0 25px rgba(184, 134, 11, 0.4);
}

/* 7. Testimonials (Dopaminergic Premium Design) */
.testimonials {
    padding: 120px 0;
    /* Keeping the light/warm background as requested */
    background: linear-gradient(135deg, #FFFDF9 0%, #F9F4E8 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative background elements for dynamism */
.testimonials::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(197, 160, 101, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    /* Slightly smaller min-width */
    gap: 40px;
    padding: 0 10px;
    /* Reset padding */
    justify-content: center;
    /* Center the grid items */
}

.testimonial-card {
    background: #FFFFFF;
    padding: 45px 35px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

/* Dynamic top border strip */
.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #C5A065, #F0E6D2);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(184, 134, 11, 0.15);
}

.testimonial-card:hover::after {
    transform: scaleX(1);
}

.testimonial-card:hover .testimonial-img {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--color-accent);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    border: 3px solid rgba(197, 160, 101, 0.3);
    padding: 3px;
    /* Creates a double border gap */
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-info .author {
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 2px;
    font-size: 1.1rem;
}

.testimonial-info .location {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    margin-bottom: 4px;
}

.stars {
    color: #FFD700;
    font-size: 1rem;
    letter-spacing: 2px;
}

.testimonial-card .quote {
    font-style: italic;
    color: var(--color-text-secondary);
    line-height: 1.8;
    position: relative;
    z-index: 1;
    font-size: 1.05rem;
}

/* Large quote mark behind text */
.testimonial-card::before {
    content: '“';
    font-family: var(--font-heading);
    font-size: 8rem;
    color: rgba(197, 160, 101, 0.08);
    /* Lighter and larger */
    position: absolute;
    top: 20px;
    right: 20px;
    line-height: 1;
    font-weight: 700;
    pointer-events: none;
    transition: transform 0.4s ease;
}

.testimonial-card:hover::before {
    transform: rotate(15deg) scale(1.1);
    color: rgba(197, 160, 101, 0.12);
}

/* 8. Authority */
/* 8. Authority (Premium Aesthetic Redesign) */
.authority {
    padding: 120px 0;
    background-color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.authority-bg-decoration {
    position: absolute;
    top: 50%;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(197, 160, 101, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: 0;
}

.authority-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Image Styling */
.authority-image-wrapper {
    position: relative;
}

.authority-image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 20px 20px 0px rgba(197, 160, 101, 0.2);
    /* Offset block shadow */
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.authority-image-frame img {
    width: 100%;
    display: block;
    transition: transform 0.7s ease;
    filter: sepia(10%);
    /* Slight vintage warmth */
}

.authority-image-wrapper:hover img {
    transform: scale(1.05);
    filter: sepia(0%);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--color-white);
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(197, 160, 101, 0.2);
    animation: float 6s ease-in-out infinite;
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent);
    font-family: var(--font-heading);
    line-height: 1;
}

.experience-badge .label {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Text Styling */
.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(197, 160, 101, 0.1);
    color: var(--color-accent);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.authority-text h2 {
    text-align: left;
    margin-bottom: 30px;
    font-size: 3rem;
}

.authority-text h2::after {
    margin: 15px 0 0;
}

.bio-content p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.highlight-intro {
    font-size: 1.3rem !important;
    color: var(--color-text-primary) !important;
    border-left: 4px solid var(--color-accent);
    padding-left: 20px;
    font-style: italic;
    font-family: var(--font-heading);
}

.authority-credentials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.credential-item .icon {
    font-size: 1.5rem;
    animation: none;
    /* Disable breathing for these specific icons if preferred */
}

.credential-item span:last-child {
    font-weight: 600;
    color: var(--color-text-primary);
}

.signature {
    font-family: 'Playfair Display', serif;
    /* Use heading font or import a script font */
    font-size: 2.5rem;
    color: var(--color-accent);
    opacity: 0.8;
    transform: rotate(-5deg);
    margin-top: 20px;
}

.authority-text h2 {
    text-align: left;
    margin-bottom: 30px;
}

.authority-text h2::after {
    margin: 15px 0 0;
    /* Align underline left */
}

.authority-text p {
    font-size: 1.15rem;
    margin-bottom: 30px;
}

/* 9. Process */
/* 9. Process (Premium Journey Timeline) */
.process {
    padding: 120px 0;
    background-color: #FDFBF7;
    /* Warm sophisticated light bg */
    position: relative;
    overflow: hidden;
}

.process-bg-decoration {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(#C5A065 1px, transparent 1px),
        radial-gradient(#C5A065 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
    opacity: 0.03;
    z-index: 0;
}

.section-header-center {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--color-accent);
    padding-bottom: 5px;
}

.process h2 {
    font-size: 2.8rem;
    color: var(--color-text-primary);
}

.process h2::after {
    display: none;
    /* Custom subtitle used instead */
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

/* Connecting Line */
.timeline-line {
    position: absolute;
    top: 40px;
    /* Aligns with marker center */
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(197, 160, 101, 0.3) 10%,
            rgba(197, 160, 101, 0.3) 90%,
            transparent 100%);
    z-index: 0;
}

.step-card {
    background-color: var(--color-white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
    margin-top: 40px;
    /* Space for marker to sit on top */
}

.step-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(197, 160, 101, 0.15);
    border-color: rgba(197, 160, 101, 0.2);
}

.step-marker {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    /* Soft shadow to lift off line */
    z-index: 2;
    transition: all 0.4s ease;
    border: 4px solid #FDFBF7;
    /* blend with section bg */
}

.step-card:hover .step-marker {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 15px 30px rgba(197, 160, 101, 0.2);
}

.step-marker .number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-accent);
    font-family: var(--font-heading);
}

.step-content h3 {
    margin-top: 35px;
    font-size: 1.5rem;
    color: var(--color-text-primary);
    margin-bottom: 15px;
}

.step-content p {
    color: var(--color-text-secondary);
    line-height: 1.6;
    font-size: 1.05rem;
}

/* 10. Final CTA */
.final-cta {
    padding: 120px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('images/ana-hero.png');
    /* Use hero image as bg with overlay */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax bg */
    color: var(--color-white);
    text-align: center;
}

.final-cta h2 {
    color: var(--color-white);
    margin-bottom: 24px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.final-cta p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.3rem;
}

/* 11. Footer */
footer {
    padding: 60px 0;
    background-color: #111;
    color: #666;
    text-align: center;
    font-size: 0.9rem;
    border-top: 1px solid #222;
}

footer p {
    margin-bottom: 0;
    color: #666;
}

/* Responsive Design */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .hero-section {
        background: var(--color-bg);
        padding: 80px 0;
    }

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

    .hero-text {
        padding-right: 0;
    }

    .hero-image,
    .authority-image {
        order: -1;
        /* Image on top on mobile */
        max-width: 600px;
        margin: 0 auto;
    }

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

    .authority-text h2::after {
        margin: 15px auto 0;
    }

    .scrolling-text {
        animation-duration: 15s;
    }
}

/* Animations & Interactivity */

/* Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes breathe {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.04);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

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

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

/* Reveal Classes (Scroll Animation) */
.reveal {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* Enhanced Buttons */
.cta-button {
    position: relative;
    overflow: hidden;
    /* Bouncy spring */
    z-index: 1;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
    z-index: -1;
}

.cta-button:hover::after {
    left: 100%;
    transition: 0.7s ease-in-out;
}

/* Breathing Icons */
.icon,
.badge-icon,
.arrow-icon {
    display: inline-block;
    animation: breathe 4s ease-in-out infinite;
}

/* 3D Cards & Depth */
.testimonial-card,
.step-card {
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease;
    will-change: transform;
    background: var(--color-white);
    /* Ensure background for 3D */
}

.pillar-card,
.benefits-list li {
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease;
    will-change: transform;
}

/* Specific Card Hover Shadows (Directional) */
.pillar-card:hover,
.testimonial-card:hover,
.step-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.05);
    /* Deeper shadow */
}

/* Hero Section Enhancements */
.hero-text {
    /* Initial state for JS to reveal */
    opacity: 0;
    transform: translateX(-30px);
    transition: all 1s ease-out;
}

.hero-text.active {
    opacity: 1;
    transform: translateX(0);
}

.hero-image {
    opacity: 0;
    transform: translateX(30px);
    transition: all 1s ease-out;
    perspective: 1000px;
}

.hero-image.active {
    opacity: 1;
    transform: translateX(0);
}

.hero-image img,
.authority-image img {
    transition: transform 0.1s linear;
    /* For smooth parallax */
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.15);
    /* Premium soft shadow */
}

/* Section Titles Animation */
.section-title {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.section-title.active {
    opacity: 1;
    transform: translateY(0);
}

/* List Items (Pain Points & Benefits) */


/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.4rem;
        /* Adjusted to be smaller than desktop but appropriate for h1 */
    }

    h2 {
        font-size: 1.8rem;
    }

    .cta-button {
        width: 100%;
    }

    .benefits-list {
        grid-template-columns: 1fr;
        /* Force single column on mobile */
        width: 100%;
        padding: 0 10px;
        /* Prevent edge touching */
    }

    .benefits-list li {
        flex-direction: column;
        text-align: center;
        /* Premium Mobile Card Design */
        background: rgba(255, 255, 255, 0.04) !important;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 20px;
        padding: 40px 20px;
        margin: 0 auto;
        /* Center in grid if needed, though 1fr handles it */
        width: 100%;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .benefits-list li .icon {
        margin: 0 auto 20px;
        /* Center icon with space below */
        width: 60px;
        /* Larger icon on mobile for impact */
        height: 60px;
        font-size: 1.5rem;
    }

    .pain-list li {
        /* Ensure dark glass on mobile */
        flex-direction: column;
        text-align: left;
        /* Keep text aligned left for better readability on cards, or center if preferred. Premium usually left or center. Center aligns with icon. */
        text-align: center;
        background: rgba(255, 255, 255, 0.03) !important;
        /* Force dark glass */
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .pain-list {
        grid-template-columns: 1fr;
        /* Single column on mobile */
    }

    .pain-list .icon,
    .benefits-list .icon {
        margin: 0 auto 16px;
    }

    .reveal {
        transition-duration: 0.5s;
        /* Faster on mobile */
    }

    /* Disable complex 3D tilts on mobile for performance/usability */
    .pillar-card,
    .testimonial-card,
    .step-card,
    .benefits-list li {
        transform: none !important;
    }

    .pillar-card {
        background: rgba(255, 255, 255, 0.03) !important;
        border: 1px solid rgba(255, 255, 255, 0.05);
        transform: none !important;
        margin-bottom: 20px;
    }

    .pillar-card h3 {
        color: var(--color-accent);
        /* Ensure Gold title */
    }

    .pillar-card p {
        color: rgba(255, 255, 255, 0.9) !important;
        /* Ensure readable white text */
    }

    /* Testimonials mobile fix */
    .testimonials-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }

    /* Mobile-only CTA visibility */
    .hero-text .hero-cta-wrapper {
        display: none !important;
    }

    .hero-container>.hero-cta-wrapper-mobile {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-top: 30px;
    }

    .hero-container>.hero-cta-wrapper-mobile .cta-button {
        width: 100%;
        max-width: 350px;
    }

    /* Hero Mobile Adjustments */
    .hero-text {
        text-align: center;
    }

    .hero-text p {
        margin: 0 auto 30px;
    }

    .hero-cta-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cta-button.large {
        padding: 18px 30px;
        /* Reduced from 24px 60px */
        font-size: 1.1rem;
        /* Reduced from 1.4rem */
        width: 100%;
        /* Ensure it doesn't overflow but is responsive */
        max-width: 350px;
        /* Cap width for better aesthetic */
    }

    .trust-indicator {
        justify-content: center;
    }

    /* Adjust floating cards position on mobile to right margin */
    .hero-image-wrapper {
        width: fit-content;
        margin: 0 auto;
    }

    .hero-image-wrapper .floating-card {
        padding: 10px 15px;
        text-align: right;
        /* Align text to right if needed */
        flex-direction: row-reverse;
        /* Icons/Stars on right side perhaps? No, keep standard */
    }

    .hero-image-wrapper .card-1 {
        top: auto;
        bottom: 85px;
        /* Stacked above card-2 */
        left: auto;
        right: -10px;
        /* Aligned to right margin */
        transform: none;
        width: max-content;
        animation: none;
    }

    .hero-image-wrapper .card-2 {
        bottom: 25px;
        left: auto;
        right: -10px;
        /* Aligned to right margin */
        transform: none;
        width: max-content;
        animation: none;
    }

    /* Authority Mobile */
    .authority-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .authority-text h2 {
        text-align: center;
        font-size: 2.2rem;
    }

    .authority-text h2::after {
        margin: 15px auto 0;
    }

    .highlight-intro {
        text-align: left;
        font-size: 1.15rem !important;
    }

    .experience-badge {
        right: 0;
        bottom: -20px;
        padding: 15px 20px;
    }

    .experience-badge .years {
        font-size: 2rem;
    }

    .authority-credentials {
        grid-template-columns: 1fr;
        justify-items: center;
        /* Center credentials on mobile */
    }

    .signature {
        display: block;
        margin: 0 auto;
    }

    /* Process Mobile */
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 60px;
        /* More gap for markers */
        margin-top: 20px;
    }

    .timeline-line {
        display: none;
        /* Hide horizontal line on mobile */
    }

    .step-card {
        margin-top: 0;
        padding-top: 50px;
    }
}