/* =========================================
   CREATIVELY GROW - Design System
   Colors: Sage #4e5a4e | Cream #f9f8eb | Orange #ef7938
   ========================================= */

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

:root {
    --sage: #4e5a4e;
    --sage-dark: #3d473d;
    --sage-light: #5d6b5d;
    --cream: #f9f8eb;
    --orange: #ef7938;
    --orange-hover: #d96a2d;
    --orange-light: rgba(239, 121, 56, 0.1);
    --black: #1a1a1a;
    --white: #ffffff;
    --gray: #666666;

    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;

    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.25);

    --transition: all 0.3s ease;

    /* Glass Effect Variables */
    --glass-bg: rgba(255, 255, 255, 0.4);
    --glass-bg-dark: rgba(78, 90, 78, 0.6);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    --glass-blur: blur(50px);
    --glass-blur-heavy: blur(80px);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--black);
    background-color: var(--cream);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.1;
}

.highlight {
    color: var(--orange);
}

/* Buttons - iOS Style */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background-color: var(--orange);
    color: var(--white);
}

.btn-primary:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.btn-secondary {
    background-color: var(--sage);
    color: var(--white);
}

.btn-secondary:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.btn-outline {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--cream);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.25);
}

.btn-call {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--sage);
    border: none;
}

.btn-call:hover {
    background-color: white;
    transform: scale(1.02);
}

.btn-full {
    width: 100%;
}

/* =========================================
   NAVIGATION
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(78, 90, 78, 0.5);
    backdrop-filter: blur(60px) saturate(180%);
    -webkit-backdrop-filter: blur(60px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: rgba(78, 90, 78, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    width: 180px;
    height: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--orange);
    transition: width 0.3s ease;
}

.nav-links a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--orange);
}

.nav-cta {
    background-color: var(--orange);
    padding: 0.75rem 1.5rem;
}

.nav-cta:hover {
    background-color: var(--orange-hover) !important;
    color: var(--white) !important;
}

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

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--cream);
    transition: var(--transition);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1920&q=80');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(78, 90, 78, 0.95) 0%, rgba(61, 71, 61, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.hero-headline {
    font-family: var(--font-body);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 1rem;
    text-transform: none;
    letter-spacing: -0.02em;
}

.hero-subtext {
    font-size: 1.1rem;
    color: var(--cream);
    opacity: 0.85;
    max-width: 550px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--cream);
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--cream);
    border-bottom: 2px solid var(--cream);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.services {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(60px) saturate(180%);
    -webkit-backdrop-filter: blur(60px) saturate(180%);
    padding: 6rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-body);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 600;
    text-transform: none;
    color: var(--sage);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(60px) saturate(180%);
    -webkit-backdrop-filter: blur(60px) saturate(180%);
    border-radius: 24px;
    position: relative;
    transition: all 0.2s ease;
    overflow: hidden;
}

.service-card:hover {
    transform: scale(1.02);
}

.service-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 1.5rem;
}

.service-number {
    display: none;
}

.service-title {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--sage);
    margin-bottom: 0.5rem;
    text-transform: none;
}

.service-description {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--orange);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.service-link:hover {
    gap: 0.5rem;
}

.service-link span {
    transition: transform 0.2s ease;
}

.service-link:hover span {
    transform: translateX(3px);
}

/* =========================================
   ADDITIONAL SERVICES
   ========================================= */
.additional-services {
    background: rgba(78, 90, 78, 0.85);
    backdrop-filter: blur(60px) saturate(180%);
    -webkit-backdrop-filter: blur(60px) saturate(180%);
    padding: 6rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.additional-container {
    max-width: 1200px;
    margin: 0 auto;
}

.additional-services .section-title {
    color: var(--cream);
    text-align: center;
    margin-bottom: 3rem;
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.additional-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(60px) saturate(180%);
    -webkit-backdrop-filter: blur(60px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 3px solid var(--orange);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition);
}

.additional-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.4);
}

.additional-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

.additional-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--orange);
}

.additional-card h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    color: var(--cream);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.additional-card p {
    color: var(--cream);
    opacity: 0.8;
    font-size: 0.9rem;
}

/* =========================================
   CONTENT SHOWCASE (PHONE MOCKUPS)
   ========================================= */
.content-showcase {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(60px) saturate(180%);
    -webkit-backdrop-filter: blur(60px) saturate(180%);
    padding: 6rem 2rem;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.content-showcase-container {
    max-width: 1400px;
    margin: 0 auto;
}

.content-showcase-header {
    text-align: center;
    margin-bottom: 4rem;
}

.content-subtitle {
    font-size: 1.125rem;
    color: var(--gray);
    max-width: 600px;
    margin: 1rem auto 0;
}

.phone-mockups {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.phone-mockup {
    flex: 0 0 auto;
    width: 280px;
    overflow: hidden;
    position: relative;
}

.phone-mockup:nth-child(1) { transition-delay: 0.1s; }
.phone-mockup:nth-child(2) { transition-delay: 0.15s; }
.phone-mockup:nth-child(3) { transition-delay: 0.2s; }
.phone-mockup:nth-child(4) { transition-delay: 0.25s; }

.phone-mockup img {
    width: 100%;
    height: auto;
    display: block;
}

/* Staggered heights for visual interest */
.phone-mockup:nth-child(1) { margin-top: 2rem; }
.phone-mockup:nth-child(2) { margin-top: 0; }
.phone-mockup:nth-child(3) { margin-top: 3rem; }
.phone-mockup:nth-child(4) { margin-top: 1rem; }

/* =========================================
   STATS SECTION
   ========================================= */
.stats {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(60px) saturate(180%);
    -webkit-backdrop-filter: blur(60px) saturate(180%);
    padding: 4rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--orange);
}

.stat-label {
    font-size: 1rem;
    color: var(--sage);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* =========================================
   EXPERIENCE AI SECTION
   ========================================= */
.experience-ai {
    background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.experience-ai::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(239, 121, 56, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.experience-ai-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.experience-ai-content .section-label {
    color: var(--orange);
    margin-bottom: 1rem;
}

.experience-ai-content .section-title {
    color: var(--cream);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
}

.experience-ai-description {
    color: rgba(249, 248, 235, 0.9);
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.experience-ai-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--cream);
    font-size: 1.05rem;
    text-align: left;
}

.benefit-icon {
    color: var(--orange);
    font-size: 0.6rem;
}

.experience-ai-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-large {
    padding: 1.1rem 2.5rem;
    font-size: 1.05rem;
}

.btn-outline-dark {
    background-color: transparent;
    color: var(--cream);
    border: 2px solid rgba(249, 248, 235, 0.5);
}

.btn-outline-dark:hover {
    background-color: rgba(249, 248, 235, 0.1);
    border-color: var(--cream);
}

.experience-ai-subtext {
    color: rgba(249, 248, 235, 0.6);
    font-size: 0.95rem;
    font-style: italic;
}

/* =========================================
   PRICING PLANS SECTION
   ========================================= */
.plans {
    background-color: var(--sage);
    padding: 6rem 2rem;
}

.plans-container {
    max-width: 1200px;
    margin: 0 auto;
}

.plans-header {
    text-align: center;
    margin-bottom: 4rem;
}

.plans-pain-point {
    color: var(--cream);
    opacity: 0.9;
    font-size: 1.1rem;
    margin-top: 1rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.plans .section-label {
    color: var(--orange);
}

.plans .section-title {
    color: var(--cream);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}

.plan-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(60px) saturate(180%);
    -webkit-backdrop-filter: blur(60px) saturate(180%);
    padding: 2rem;
    border-radius: 24px;
    position: relative;
    transition: all 0.2s ease;
}

.plan-card:hover {
    transform: scale(1.02);
}

.plan-card.featured {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.02);
}

.plan-card.featured:hover {
    transform: scale(1.04);
}

.plan-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: rgba(78, 90, 78, 0.1);
    color: var(--sage);
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
}

.plan-badge.popular {
    background-color: rgba(239, 121, 56, 0.15);
    color: var(--orange);
}

.plan-badge.enterprise {
    background-color: rgba(78, 90, 78, 0.1);
    color: var(--sage);
}

.plan-name {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--sage);
    margin-bottom: 0.25rem;
    margin-top: 2rem;
    text-transform: none;
}

.plan-tagline {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-style: normal;
}

.plan-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.plan-features li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray);
    font-size: 0.85rem;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 500;
    font-size: 0.8rem;
}

.plan-features li strong {
    color: var(--sage);
    font-weight: 600;
}

.plan-note {
    font-size: 0.8rem;
    color: var(--orange);
    font-weight: 500;
    margin-bottom: 1rem;
    text-align: center;
}

/* Plans Footer */
.plans-footer {
    margin-top: 4rem;
    text-align: center;
    padding: 2rem;
    background-color: rgba(255,255,255,0.05);
    border-radius: 4px;
}

.plans-footer h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--cream);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.plans-benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--cream);
}

.benefit-item svg {
    width: 24px;
    height: 24px;
    stroke: var(--orange);
}

/* =========================================
   LOGO SCROLLER SECTION
   ========================================= */
.logo-scroller {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(60px) saturate(180%);
    -webkit-backdrop-filter: blur(60px) saturate(180%);
    padding: 2rem 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.logo-track {
    display: flex;
    width: max-content;
    animation: scroll-logos 30s linear infinite;
}

.logo-slide {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 0 1.5rem;
}

.logo-slide img {
    height: 50px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.logo-slide img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* =========================================
   TESTIMONIALS SECTION
   ========================================= */
.testimonials {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(60px) saturate(180%);
    -webkit-backdrop-filter: blur(60px) saturate(180%);
    padding: 6rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.testimonials-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonials .section-title {
    margin-bottom: 3rem;
}

.testimonial-slider {
    position: relative;
    min-height: 300px;
}

.testimonial-card {
    display: none;
}

.testimonial-card.active {
    display: block;
}

.testimonial-card {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-card.active {
    opacity: 1;
}

.testimonial-content {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(60px) saturate(180%);
    -webkit-backdrop-filter: blur(60px) saturate(180%);
    border-radius: 24px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-content::before {
    display: none;
}

.testimonial-content p {
    font-size: 1rem;
    color: var(--sage);
    font-style: normal;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--orange);
}

.testimonial-author div {
    text-align: left;
}

.testimonial-author strong {
    display: block;
    color: var(--sage);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--gray);
    font-size: 0.9rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--sage);
    opacity: 0.3;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.dot:hover {
    opacity: 0.6;
}

.dot.active {
    opacity: 1;
    background-color: var(--orange);
    transform: scale(1.2);
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact {
    background: linear-gradient(135deg, rgba(78, 90, 78, 0.85) 0%, rgba(61, 71, 61, 0.85) 100%);
    backdrop-filter: blur(60px) saturate(180%);
    -webkit-backdrop-filter: blur(60px) saturate(180%);
    padding: 6rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-content {
    text-align: center;
    margin-bottom: 3rem;
}

.contact .section-label {
    color: var(--orange);
}

.contact-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--cream);
    margin-bottom: 1rem;
}

.contact-subtext {
    font-size: 1.125rem;
    color: var(--cream);
    opacity: 0.9;
}

.contact-form {
    background-color: transparent;
    padding: 0;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--sage);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 2px solid var(--cream);
    background-color: var(--cream);
    transition: var(--transition);
    appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234e5a4e' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
    padding-right: 3rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--orange);
    background-color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: rgba(61, 71, 61, 0.9);
    backdrop-filter: blur(60px) saturate(180%);
    -webkit-backdrop-filter: blur(60px) saturate(180%);
    padding: 2rem 2rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    width: 200px;
    height: auto;
    margin-bottom: 0.75rem;
}

.footer-tagline {
    color: var(--cream);
    opacity: 0.7;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--cream);
    text-decoration: none;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--orange);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255,255,255,0.1);
    color: var(--cream);
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--orange);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    padding-top: 1rem;
    text-align: center;
}

/* =========================================
   FREE OFFER BANNER
   ========================================= */
.free-offer-banner {
    background: linear-gradient(135deg, rgba(239, 121, 56, 0.85) 0%, rgba(217, 106, 45, 0.85) 100%);
    backdrop-filter: blur(60px) saturate(180%);
    -webkit-backdrop-filter: blur(60px) saturate(180%);
    padding: 4rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.free-offer-container {
    max-width: 800px;
    margin: 0 auto;
}

.free-offer-badge {
    display: inline-block;
    background-color: var(--white);
    color: var(--orange);
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.5rem 1.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
}

.free-offer-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.free-offer-headline .highlight {
    color: var(--cream);
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 5px;
}

.free-offer-text {
    color: var(--white);
    font-size: 1.125rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.free-offer-banner .btn-primary {
    background-color: var(--white);
    color: var(--orange);
    font-size: 1.1rem;
    padding: 1.25rem 2.5rem;
}

.free-offer-banner .btn-primary:hover {
    background-color: var(--cream);
    transform: translateY(-3px);
}

/* =========================================
   STICKY CTA BAR
   ========================================= */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.sticky-cta-bar.visible {
    transform: translateY(0);
}

.sticky-cta-bar.hidden {
    transform: translateY(100%);
}

.back-to-top-link {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.75rem;
    background: rgba(78, 90, 78, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.4rem 0.8rem;
    border-radius: 8px 8px 0 0;
    margin-left: 1rem;
    transition: background 0.3s ease;
}

.back-to-top-link:hover {
    background: rgba(78, 90, 78, 0.9);
}

.sticky-cta-inner {
    width: 100%;
    background: rgba(78, 90, 78, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: 0 -4px 30px rgba(0,0,0,0.1);
}

.sticky-cta-btn {
    padding: 0.75rem 1.5rem;
    white-space: nowrap;
}

.sticky-cta-close {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--cream);
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.sticky-cta-close:hover {
    opacity: 1;
}

/* =========================================
   LIVE CHAT WIDGET
   ========================================= */
.chat-widget {
    position: fixed;
    bottom: 100px;
    right: 2rem;
    z-index: 997;
}

.chat-widget-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--orange);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
}

.chat-widget-btn:hover {
    background-color: var(--orange-hover);
    transform: scale(1.1);
}

.chat-widget-btn svg {
    width: 28px;
    height: 28px;
    color: var(--white);
    stroke: var(--white);
}

.chat-widget-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 22px;
    height: 22px;
    background-color: var(--sage);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.chat-widget-popup {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 320px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.chat-widget-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.chat-popup-header {
    background-color: var(--sage);
    color: var(--cream);
    padding: 1rem 1.5rem;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.chat-popup-close {
    background: none;
    border: none;
    color: var(--cream);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
}

.chat-popup-body {
    padding: 1.5rem;
}

.chat-popup-body p {
    margin-bottom: 1rem;
    color: var(--black);
}

.chat-popup-body p:first-child {
    font-size: 1.25rem;
}

/* =========================================
   EXIT INTENT POPUP
   ========================================= */
.exit-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.exit-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.exit-popup {
    background-color: var(--white);
    max-width: 500px;
    width: 100%;
    padding: 3rem;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    text-align: center;
}

.exit-popup-overlay.active .exit-popup {
    transform: scale(1);
}

.exit-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--gray);
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.exit-popup-close:hover {
    color: var(--black);
}

.exit-popup-badge {
    display: inline-block;
    background-color: var(--orange);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
}

.exit-popup h3 {
    font-size: 2rem;
    color: var(--sage);
    margin-bottom: 1rem;
}

.exit-popup p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.exit-popup-benefits {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--cream);
}

.exit-popup-benefits li {
    padding: 0.5rem 0;
    color: var(--sage);
    font-weight: 500;
}

.exit-popup-cta {
    font-size: 1.1rem;
    padding: 1.25rem 2rem;
}

.exit-popup-disclaimer {
    font-size: 0.8rem;
    color: var(--gray);
    opacity: 0.8;
    margin-top: 1rem;
    margin-bottom: 0;
}

.footer-copyright {
    color: var(--cream);
    opacity: 0.5;
    font-size: 0.875rem;
}

/* =========================================
   BACK TO TOP BUTTON
   ========================================= */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    background-color: var(--orange);
    color: var(--white);
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

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

.back-to-top:hover {
    background-color: var(--orange-hover);
    transform: translateY(-5px);
}

/* =========================================
   ANIMATIONS
   ========================================= */
.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

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

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Staggered animations for grid items */
.services-grid .animate-on-scroll:nth-child(1) { transition-delay: 0.1s; }
.services-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.2s; }
.services-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.3s; }
.services-grid .animate-on-scroll:nth-child(4) { transition-delay: 0.4s; }

.additional-grid .animate-on-scroll:nth-child(1) { transition-delay: 0.1s; }
.additional-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.2s; }
.additional-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.3s; }
.additional-grid .animate-on-scroll:nth-child(4) { transition-delay: 0.4s; }

.plans-grid .animate-on-scroll:nth-child(1) { transition-delay: 0.1s; }
.plans-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.2s; }
.plans-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.3s; }

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 1024px) {
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .plan-card.featured {
        transform: none;
    }

    .plan-card.featured:hover {
        transform: translateY(-10px);
    }

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

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

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background-color: var(--sage);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .hero {
        padding: 6rem 1.5rem 3rem;
    }

    .hero-headline {
        font-size: 2.25rem;
    }

    .hero-subtext {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

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

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

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

    .experience-ai {
        padding: 4rem 1.5rem;
    }

    .experience-ai-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .experience-ai-cta .btn {
        width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer {
        padding: 0.75rem 1rem 0.5rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: center;
        padding-bottom: 0.5rem;
        border-bottom: none;
    }

    .footer-brand {
        margin-bottom: 0.25rem;
    }

    .footer-logo {
        width: 100px;
        margin-bottom: 0.25rem;
    }

    .footer-tagline {
        display: none;
    }

    .footer-links {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }

    .footer-links a {
        font-size: 0.75rem;
    }

    .footer-social {
        justify-content: center;
        gap: 0.5rem;
    }

    .footer-social a {
        width: 28px;
        height: 28px;
    }

    .footer-social svg {
        width: 14px;
        height: 14px;
    }

    .footer-bottom {
        padding-top: 0.5rem;
    }

    .footer-copyright {
        font-size: 0.65rem;
    }

    .plans-benefits {
        flex-direction: column;
        gap: 1rem;
    }

    .testimonial-slider {
        min-height: auto;
    }

    .testimonial-content {
        padding: 1.5rem;
    }

    .testimonial-content::before {
        font-size: 4rem;
    }

    .testimonial-content p {
        font-size: 1rem;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-author div {
        text-align: center;
    }

    /* Phone mockups mobile */
    .phone-mockups {
        gap: 1rem;
    }

    .phone-mockup {
        width: 200px;
    }

    .phone-mockup:nth-child(1),
    .phone-mockup:nth-child(2),
    .phone-mockup:nth-child(3),
    .phone-mockup:nth-child(4) {
        margin-top: 0;
    }

    /* Sticky CTA mobile - compact version */
    .sticky-cta-bar {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 9999 !important;
    }

    .back-to-top-link {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
        margin-left: 0.75rem;
    }

    .sticky-cta-inner {
        padding: 0.5rem 1rem;
        justify-content: space-between;
    }

    .sticky-cta-inner .btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        flex: 1;
        max-width: none;
        text-align: center;
    }

    .sticky-cta-close {
        position: static;
        transform: none;
        font-size: 1.2rem;
        padding: 0 0.25rem;
    }

    /* Hide original back-to-top button on mobile (using the one in sticky bar instead) */
    .back-to-top {
        display: none !important;
    }

    /* Chat widget mobile */
    .chat-widget {
        bottom: 80px;
        right: 1rem;
    }

    .chat-widget-popup {
        width: 280px;
        right: -1rem;
    }

    /* Exit popup mobile */
    .exit-popup {
        padding: 2rem;
    }

    .exit-popup h3 {
        font-size: 1.5rem;
    }

    /* Free offer banner mobile */
    .free-offer-banner {
        padding: 3rem 1.5rem;
    }

    .free-offer-headline {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .phone-mockup {
        width: 160px;
    }

    .hero-headline {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .service-card {
        margin: 0 -0.5rem;
    }

    .service-content {
        padding: 1.5rem;
    }

    .service-number {
        font-size: 2rem;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-suffix {
        font-size: 1.5rem;
    }

    .plan-card {
        padding: 1.5rem;
    }
}

/* =========================================
   WEBSITE ANALYZER SECTION
   ========================================= */
.analyzer-section {
    background-color: var(--cream);
    padding: 4rem 1.5rem;
    border-top: 1px solid rgba(78, 90, 78, 0.1);
    border-bottom: 1px solid rgba(78, 90, 78, 0.1);
}

.analyzer-container {
    max-width: 64rem;
    margin: 0 auto;
}

.analyzer-header {
    text-align: center;
    margin-bottom: 2rem;
}

.analyzer-subtitle {
    font-size: 1.125rem;
    color: var(--gray);
    margin-top: 0.5rem;
}

.analyzer-subtext {
    color: var(--gray);
    margin-top: 0.5rem;
}

.analyzer-form-wrapper {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.analyzer-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.analyzer-arrow-left {
    left: -80px;
    animation: bounceRight 1s ease-in-out infinite;
}

.analyzer-arrow-right {
    right: -80px;
    animation: bounceLeft 1s ease-in-out infinite;
}

@keyframes bounceRight {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-50%) translateX(10px); }
}

@keyframes bounceLeft {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-50%) translateX(-10px); }
}

.analyzer-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(60px) saturate(180%);
    -webkit-backdrop-filter: blur(60px) saturate(180%);
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
}

.analyzer-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.analyzer-input {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.75rem;
    border: 2px solid var(--cream);
    background-color: var(--cream);
    font-size: 0.875rem;
    transition: border-color 0.2s ease;
    font-family: var(--font-body);
}

.analyzer-input:focus {
    border-color: var(--orange);
    outline: none;
}

.analyzer-error {
    color: #ef4444;
    font-size: 0.875rem;
}

.analyzer-disclaimer {
    text-align: center;
    font-size: 0.75rem;
    color: #999;
    margin-top: 0.5rem;
}

.analyzer-loading {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 1.5rem;
}

.analyzer-spinner {
    width: 2.5rem;
    height: 2.5rem;
    border: 4px solid rgba(239, 121, 56, 0.2);
    border-top-color: var(--orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.analyzer-loading-text {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    color: var(--sage);
    margin-top: 1rem;
}

.analyzer-loading-subtext {
    color: var(--gray);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Results Section */
.analyzer-results {
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.analyzer-results-card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid rgba(78, 90, 78, 0.1);
}

.analyzer-results-header {
    background-color: var(--sage);
    padding: 2rem;
    text-align: center;
    color: white;
}

.analyzer-results-header h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.analyzer-results-header p {
    opacity: 0.9;
    font-size: 0.875rem;
}

.analyzer-results-body {
    padding: 2rem;
}

.analyzer-headline {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 2rem;
    text-align: center;
}

.analyzer-score-circle {
    position: relative;
    width: 10rem;
    height: 10rem;
    margin: 0 auto 2.5rem;
}

.analyzer-score-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.analyzer-score-value {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.analyzer-score-value span:first-child {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--sage);
}

.analyzer-score-value span:last-child {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray);
}

.analyzer-metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.analyzer-metric-item {
    background: rgba(249, 248, 235, 0.5);
    padding: 1rem;
    border-radius: 0.75rem;
    text-align: center;
}

.analyzer-metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--sage);
}

.analyzer-metric-label {
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: 0.25rem;
}

.analyzer-metric-weight {
    font-size: 0.625rem;
    color: #999;
}

.analyzer-issues,
.analyzer-wins,
.analyzer-upgrades {
    margin-bottom: 2rem;
}

.analyzer-section-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    color: var(--sage);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.analyzer-issue-card {
    background: #fef2f2;
    padding: 1.25rem;
    border-radius: 0.75rem;
    border-left: 4px solid #f87171;
    margin-bottom: 0.75rem;
}

.analyzer-issue-card h5 {
    font-weight: 700;
    color: #7f1d1d;
    margin-bottom: 0.25rem;
}

.analyzer-issue-card p {
    font-size: 0.875rem;
    color: #b91c1c;
}

.analyzer-win-card {
    background: #f0fdf4;
    padding: 1.25rem;
    border-radius: 0.75rem;
    border: 1px solid #bbf7d0;
    margin-bottom: 0.75rem;
}

.analyzer-win-card h5 {
    font-weight: 700;
    color: #14532d;
    margin-bottom: 0.25rem;
}

.analyzer-win-card p {
    font-size: 0.875rem;
    color: #15803d;
}

.analyzer-impact-badge {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.125rem 0.5rem;
    border-radius: 0.25rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.analyzer-impact-high { background: #16a34a; color: white; }
.analyzer-impact-medium { background: #eab308; color: white; }
.analyzer-impact-low { background: #9ca3af; color: white; }

.analyzer-upgrades-box {
    background: rgba(239, 121, 56, 0.05);
    border: 1px solid rgba(239, 121, 56, 0.2);
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.analyzer-upgrade-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--gray);
}

.analyzer-upgrade-item svg {
    color: var(--orange);
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.analyzer-cta-box {
    background: rgba(78, 90, 78, 0.05);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
}

.analyzer-cta-box > p:first-child {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.analyzer-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.analyzer-cta-disclaimer {
    font-size: 0.75rem;
    color: #999;
}

.analyzer-back {
    text-align: center;
    margin-top: 2rem;
}

.analyzer-back-link {
    color: var(--sage);
    text-decoration: underline;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.analyzer-back-link:hover {
    color: var(--orange);
}

@media (min-width: 640px) {
    .analyzer-cta-buttons {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .analyzer-metrics-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .analyzer-results-body {
        padding: 3rem;
    }
}

@media (max-width: 640px) {
    .analyzer-section {
        overflow: visible;
    }

    .analyzer-form-wrapper {
        padding: 0 35px;
    }

    .analyzer-arrow {
        display: block;
    }

    .analyzer-arrow-left {
        left: 0;
    }

    .analyzer-arrow-right {
        right: 0;
    }

    .analyzer-arrow svg {
        width: 24px;
        height: 24px;
    }
}
