/* CSS Variables for Color Palette */
:root {
    --light-gray: #eff3f4;
    --dark-purple: #3b2d9b;
    --bright-green: #7db86b;
    --medium-green: #44725d;
    --dark-green: #14241c;
    --black: #000000;
    --white: #ffffff;
    
    /* Font Families - Athena-inspired */
    --font-primary: 'Figtree', 'Inter', sans-serif;
    --font-heading: 'Playfair Display', 'Libre Caslon Display', serif;
    --font-futuristic: 'Orbitron', 'Space Mono', monospace;
    --font-mono: 'Space Mono', monospace;
    --font-handwritten: 'Kalam', cursive;
    
    /* Spacing System */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 18px;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    background: var(--black);
    color: var(--light-gray);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}

/* Mountain Range Background */
.mountain-range {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -3;
    pointer-events: none;
    opacity: 0.3;
    background: url('img/woods-background.png') no-repeat center top;
    background-size: cover;
    filter: blur(2px);
}



.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(3px 3px at 20px 30px, var(--bright-green), transparent),
        radial-gradient(2px 2px at 40px 70px, var(--light-gray), transparent),
        radial-gradient(1px 1px at 90px 40px, var(--medium-green), transparent),
        radial-gradient(2px 2px at 130px 80px, var(--bright-green), transparent),
        radial-gradient(1px 1px at 160px 30px, var(--light-gray), transparent),
        radial-gradient(2px 2px at 200px 50px, var(--medium-green), transparent),
        radial-gradient(1px 1px at 250px 20px, var(--bright-green), transparent);
    background-repeat: repeat;
    background-size: 300px 150px;
    animation: twinkle 6s ease-in-out infinite alternate;
    opacity: 0.8;
}

@keyframes twinkle {
    0% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
    100% { opacity: 0.4; transform: scale(1); }
}

/* Sacred Geometry Shapes */
.geometric-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border: 2px solid var(--bright-green);
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
    filter: blur(0.5px);
}

.shape-1 {
    top: 20%;
    left: 10%;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    animation-delay: 0s;
    background: radial-gradient(circle, rgba(123, 184, 107, 0.1) 0%, transparent 70%);
    box-shadow: 0 0 20px rgba(123, 184, 107, 0.2);
}

.shape-2 {
    top: 60%;
    right: 15%;
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 60px solid var(--bright-green);
    border-radius: 0;
    animation-delay: 2s;
    filter: drop-shadow(0 0 15px rgba(123, 184, 107, 0.3));
}

.shape-3 {
    bottom: 30%;
    left: 20%;
    width: 50px;
    height: 50px;
    transform: rotate(45deg);
    animation-delay: 4s;
    background: linear-gradient(45deg, rgba(123, 184, 107, 0.1), rgba(68, 114, 93, 0.1));
    box-shadow: 0 0 15px rgba(123, 184, 107, 0.2);
}

.shape-4 {
    top: 40%;
    right: 30%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--medium-green);
    animation-delay: 1s;
    background: radial-gradient(circle, rgba(68, 114, 93, 0.1) 0%, transparent 70%);
    box-shadow: 0 0 25px rgba(68, 114, 93, 0.3);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); opacity: 0.3; }
    50% { transform: translateY(-20px) rotate(180deg) scale(1.1); opacity: 0.5; }
}

/* Navigation - minimal */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(20, 36, 28, 0.92);
    backdrop-filter: blur(12px);
    z-index: 1000;
    padding: 0.875rem 0;
    border-bottom: 1px solid rgba(123, 184, 107, 0.15);
}

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

/* Nav logo – image only, no text */
.nav-logo-link {
    display: block;
    line-height: 0;
    text-decoration: none;
}

.nav-logo-img {
    display: block;
    height: 88px;
    width: 88px;
    object-fit: contain;
    object-position: center;
    filter: brightness(0) invert(1);
}

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

.nav-link {
    color: var(--light-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.025em;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

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

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

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

/* Nav link icons */
.nav-link-icon {
    display: inline-flex;
    align-items: center;
    margin-left: 0.25rem;
    opacity: 0.7;
}

.nav-link-icon svg {
    display: block;
}

/* Navigation CTA - stroke only, no gradient */
.nav-button {
    background: transparent;
    color: var(--bright-green) !important;
    padding: 0.6rem 1.25rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.025em;
    transition: all 0.3s ease;
    border: 2px solid var(--bright-green);
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-button::after {
    display: none;
}

.nav-button:hover {
    background: transparent;
    color: var(--light-gray) !important;
    border-color: var(--light-gray);
    transform: translateY(-1px);
}

.nav-button:active {
    transform: translateY(0);
}

.cta-icon {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
    padding-top: 8rem;
}

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

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(123, 184, 107, 0.15) 0%, rgba(68, 114, 93, 0.1) 30%, rgba(59, 45, 155, 0.05) 60%, transparent 80%);
    border-radius: 50%;
    animation: pulse-ring 4s ease-in-out infinite;
    filter: blur(1px);
}

.hero-glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 45, 155, 0.2) 0%, rgba(123, 184, 107, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    animation: pulse-ring 4s ease-in-out infinite reverse;
    filter: blur(2px);
}

@keyframes pulse-ring {
    0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.4; }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.2; }
    100% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.4; }
}

.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2xl);
}

.hero-copy {
    max-width: 600px;
    text-align: center;
}

.hero-title {
    font-family: var(--font-futuristic);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: var(--space-lg);
    line-height: 0.9;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    font-stretch: condensed;
}

.hero-title {
    color: var(--light-gray);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-family: var(--font-primary);
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: var(--light-gray);
    font-weight: 400;
    opacity: 0.9;
    line-height: 1.6;
    letter-spacing: 0.01em;
    margin-bottom: var(--space-sm);
}

.hero-marketerhire {
    margin: 0 0 var(--space-md) 0;
}

.hero-marketerhire-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    color: var(--light-gray);
    opacity: 0.9;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.hero-marketerhire-link:hover {
    opacity: 1;
    color: var(--bright-green);
}

.hero-marketerhire-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.hero-marketerhire-text {
    font-family: var(--font-heading);
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero-marketerhire-logo {
        height: 22px;
    }
}

.hero-location {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.9rem;
    color: var(--light-gray);
    opacity: 0.5;
    margin: 0;
}

.location-icon {
    display: inline-flex;
    color: var(--bright-green);
    opacity: 0.6;
}

.location-icon svg {
    display: block;
}

.location-text {
    font-family: var(--font-primary);
}

/* Hero services tags */
.hero-services {
    margin-top: var(--space-lg);
    text-align: center;
}

.hero-services-label {
    display: block;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--light-gray);
    opacity: 0.7;
    margin-bottom: var(--space-sm);
    letter-spacing: 0.02em;
}

.hero-services-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
    margin: 0;
    padding: 0;
}

.hero-services-tags li {
    margin: 0;
}

.hero-tag {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    border: 2px solid rgba(123, 184, 107, 0.5);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--light-gray);
    background: transparent;
    transition: all 0.25s ease;
    white-space: nowrap;
    cursor: pointer;
}

.hero-tag-icon {
    display: inline-flex;
    align-items: center;
    margin-left: 0.25rem;
    vertical-align: middle;
    opacity: 0.85;
}

.hero-tag:hover {
    border-color: var(--bright-green);
    color: var(--bright-green);
}

.hero-cta-container {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2em;
    margin: var(--space-md) 0;
    flex-wrap: wrap;
}

.hero-cta-question {
    font-family: var(--font-primary);
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    color: var(--light-gray);
    font-weight: 500;
    line-height: 1.3;
    margin: 0;
}

.hero-cta-brand {
    font-family: var(--font-futuristic);
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--bright-green);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1;
    margin: 0;
    text-shadow: 0 0 20px rgba(123, 184, 107, 0.4);
    animation: brand-glow 2s ease-in-out infinite alternate;
    position: relative;
}


@keyframes brand-glow {
    0% {
        text-shadow: 0 0 20px rgba(123, 184, 107, 0.4);
        transform: scale(1);
    }
    100% {
        text-shadow: 0 0 30px rgba(123, 184, 107, 0.6), 0 0 40px rgba(123, 184, 107, 0.3);
        transform: scale(1.02);
    }
}


/* Buttons - stroke heavy, no gradient */
.cta-button, .submit-button {
    position: relative;
    background: transparent;
    border: 2px solid var(--bright-green);
    color: var(--bright-green);
    padding: var(--space-md) var(--space-xl);
    font-size: 1rem;
    font-weight: 500;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: visible;
    font-family: var(--font-primary);
    letter-spacing: 0.01em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: var(--space-xl);
}

.section-header .cta-button {
    margin-top: var(--space-xl);
}

/* Circular Button - stroke only */
.circular-button {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--bright-green);
    background: transparent;
    color: var(--bright-green);
    position: relative;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: var(--space-xl);
}

.button-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    z-index: 2;
    position: relative;
}

.circular-button .button-text {
    font-family: var(--font-futuristic);
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.1;
    margin: 0;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
    color: inherit;
}

.bounce-arrow {
    color: currentColor;
    animation: bounce-down 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.cta-button:hover,
.submit-button:hover {
    background: transparent;
    color: var(--light-gray);
    border-color: var(--light-gray);
    transform: translateY(-1px);
}

/* Form success state (after submit) */
.form-success-message {
    padding: var(--space-lg) 0;
    text-align: center;
}

.form-success-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--light-gray);
    margin: 0 0 var(--space-sm) 0;
}

.form-success-subtitle {
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--light-gray);
    opacity: 0.9;
    margin: 0 0 var(--space-lg) 0;
    line-height: 1.3;
}

.form-success-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    cursor: pointer;
    margin-top: var(--space-md);
    padding: var(--space-md) var(--space-xl);
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid var(--bright-green);
    border-radius: 999px;
    color: var(--bright-green);
    background: transparent;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
}

.form-success-cta:hover {
    text-decoration: none;
    color: var(--light-gray);
    border-color: var(--light-gray);
    transform: translateY(-1px);
}

/* Circular Button Hover */
.circular-button:hover {
    transform: scale(1.03);
    border-color: var(--light-gray);
    color: var(--light-gray);
}

.circular-button:hover .button-text {
    color: inherit;
}

.circular-button:hover .bounce-arrow {
    transform: scale(1.1);
    animation-duration: 1.5s;
}

.circular-button:active {
    transform: scale(0.98);
}

@keyframes bounce-down {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-1px);
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Styles */
section {
    padding: var(--space-3xl) 0;
    position: relative;
}

/* Adjust specific sections for seamless flow */
.hero {
    padding-bottom: var(--space-2xl);
}

.about {
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-2xl);
}

.founder {
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-2xl);
}

.contact {
    padding-top: var(--space-2xl);
}

/* RYZ Definition – large hero-style word + dictionary-style definition */
.ryz-definition {
    padding: var(--space-3xl) 0;
    text-align: center;
}

.ryz-definition-word {
    font-family: var(--font-futuristic);
    font-size: clamp(4rem, 15vw, 11rem);
    font-weight: 900;
    color: var(--light-gray);
    line-height: 1;
    margin: 0 0 var(--space-xl) 0;
    letter-spacing: 0.02em;
}

.ryz-definition-block {
    max-width: 520px;
    margin: 0 auto;
    text-align: left;
}

.ryz-definition-pronunciation {
    font-family: var(--font-handwritten);
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 400;
    color: var(--light-gray);
    margin: 0 0 var(--space-sm) 0;
    opacity: 0.95;
}

.ryz-definition-pos {
    font-style: italic;
    opacity: 0.85;
}

.ryz-definition-text {
    font-family: var(--font-handwritten);
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
    font-weight: 400;
    color: var(--light-gray);
    line-height: 1.5;
    margin: 0;
    opacity: 0.95;
}

/* Client Logos – off-evergreen background, title, centered rows */
.client-logos {
    padding: var(--space-2xl) 0;
    background: #2f3832;
}

/* Why Choose Us – green background */
.why-choose-us {
    padding: var(--space-3xl) 0;
    background: var(--medium-green);
}

.why-choose-us-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 600;
    color: var(--light-gray);
    text-align: center;
    margin: 0 0 var(--space-2xl) 0;
}

.why-choose-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-us-card {
    background: rgba(20, 36, 28, 0.5);
    border: 1px solid rgba(123, 184, 107, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    backdrop-filter: blur(8px);
}

.why-choose-us-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--bright-green);
    margin: 0 0 var(--space-md) 0;
    line-height: 1.3;
}

.why-choose-us-card-subtitle {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--bright-green);
    margin: var(--space-lg) 0 var(--space-sm) 0;
    line-height: 1.3;
}

.why-choose-us-card-text {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--light-gray);
    opacity: 0.95;
    margin: 0;
}

.why-choose-us-bullets {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.why-choose-us-bullet {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.why-choose-us-bullet-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--bright-green);
    margin-top: 0.15em;
}

.why-choose-us-bullet-icon svg {
    display: block;
}

.why-choose-us-bullet span:last-child {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--light-gray);
    opacity: 0.95;
}

.why-choose-us-cta {
    display: inline-block;
    margin-top: var(--space-md);
    font-size: 1rem;
    font-weight: 600;
    color: var(--bright-green);
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.why-choose-us-cta:hover {
    color: var(--light-gray);
    opacity: 0.95;
}

@media (max-width: 900px) {
    .why-choose-us-grid {
        grid-template-columns: 1fr;
    }
}

.client-logos-title {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 600;
    color: var(--light-gray);
    text-align: center;
    margin: 0 auto var(--space-xl) auto;
    max-width: 600px;
}

.client-logos-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-xl);
    align-items: center;
    justify-items: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Row 1: three logos, one per two columns */
.client-logo-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
.client-logo-item:nth-child(2) { grid-column: 3 / 5; grid-row: 1; }
.client-logo-item:nth-child(3) { grid-column: 5 / 7; grid-row: 1; }

/* Row 2: two logos only – two cells centered */
.client-logo-item:nth-child(4) { grid-column: 2 / 4; grid-row: 2; }
.client-logo-item:nth-child(5) { grid-column: 4 / 6; grid-row: 2; }

/* Row 3: two logos centered */
.client-logo-item:nth-child(6) { grid-column: 2 / 4; grid-row: 3; }
.client-logo-item:nth-child(7) { grid-column: 4 / 6; grid-row: 3; }

.client-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
}

.client-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.client-logo-item img {
    width: auto;
    max-width: 140px;
    height: 56px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: filter 0.25s ease, opacity 0.25s ease;
}

.client-logo-item img:hover {
    filter: brightness(0) invert(1);
    opacity: 1;
}

/* BioBuddy can be taller (vertical logo) */
.client-logo-item:nth-child(5) img {
    height: 72px;
    max-height: 72px;
}

@media (max-width: 768px) {
    .client-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }

    .client-logo-item:nth-child(1),
    .client-logo-item:nth-child(2),
    .client-logo-item:nth-child(3),
    .client-logo-item:nth-child(4),
    .client-logo-item:nth-child(5),
    .client-logo-item:nth-child(6),
    .client-logo-item:nth-child(7) {
        grid-column: auto;
        grid-row: auto;
    }

    .client-logo-item img {
        max-width: 120px;
        height: 48px;
    }

    .client-logo-item:nth-child(5) img {
        height: 64px;
        max-height: 64px;
    }
}

@media (max-width: 480px) {
    .client-logos-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .client-logo-item img {
        max-width: 140px;
    }
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header .section-subtitle {
    margin-bottom: var(--space-sm);
}

.section-header .section-subtitle:last-of-type {
    margin-bottom: 0;
}

/* Page Dividers */
.page-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 3rem 2rem;
    position: relative;
    background: linear-gradient(135deg, rgba(20, 36, 28, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--bright-green) 20%, var(--medium-green) 50%, var(--bright-green) 80%, transparent 100%);
    opacity: 0.3;
}

.divider-icon {
    margin: 0 2rem;
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(125, 184, 107, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(125, 184, 107, 0.2);
    animation: pulse 3s ease-in-out infinite;
}

.divider-icon svg {
    display: block;
    filter: drop-shadow(0 0 8px rgba(125, 184, 107, 0.4));
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    color: var(--light-gray);
    margin-bottom: var(--space-sm);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.section-divider {
    width: 60px;
    height: 2px;
    background: var(--bright-green);
    margin: var(--space-md) auto 0;
    border-radius: 1px;
}

/* Growth Launch Pad Section */
.launch-pad {
    background: linear-gradient(135deg, rgba(20, 36, 28, 0.2) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.client-journey-title {
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 2.5vw, 1.6rem);
    font-weight: 600;
    color: var(--light-gray);
    margin: var(--space-xl) 0 var(--space-md) 0;
    line-height: 1.2;
}

.launch-pad-content {
    max-width: 1000px;
    margin: 0 auto;
}

.launch-pad-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.launch-pad-main {
    background: linear-gradient(135deg, rgba(123, 184, 107, 0.05) 0%, rgba(68, 114, 93, 0.03) 50%, rgba(59, 45, 155, 0.05) 100%);
    border: 2px solid rgba(123, 184, 107, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.launch-pad-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--bright-green), var(--medium-green), var(--dark-purple));
}

.launch-pad-badge {
    display: inline-block;
    background: var(--bright-green);
    color: var(--black);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-md);
}

.launch-pad-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--light-gray);
    margin-bottom: var(--space-sm);
    line-height: 1.2;
}

.launch-pad-description {
    color: var(--light-gray);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: var(--space-xl);
}

.launch-pad-price-section {
    margin-bottom: var(--space-xl);
    padding: var(--space-lg);
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-md);
    border: 1px solid rgba(123, 184, 107, 0.2);
}

.price-container {
    display: flex;
    align-items: baseline;
    gap: var(--space-xs);
    margin-bottom: var(--space-sm);
}

.price-currency {
    font-size: 1.5rem;
    color: var(--bright-green);
    font-weight: 600;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--bright-green);
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: var(--light-gray);
    opacity: 0.7;
    margin-left: var(--space-xs);
}

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

.value-text {
    color: var(--medium-green);
    font-weight: 500;
    font-size: 0.9rem;
}

.launch-pad-cta {
    text-align: center;
}

.launch-pad-button {
    width: 100%;
    padding: var(--space-md) var(--space-xl);
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
}

.launch-pad-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    color: var(--light-gray);
    opacity: 0.7;
    font-size: 0.9rem;
    margin: 0;
}

.launch-pad-guarantee svg {
    color: var(--bright-green);
}

/* Features Section */
.launch-pad-features {
    background: rgba(59, 45, 155, 0.05);
    border: 1px solid rgba(59, 45, 155, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    backdrop-filter: blur(10px);
}

.features-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--bright-green);
    margin-bottom: var(--space-lg);
    text-align: center;
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-sm);
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(123, 184, 107, 0.1);
    transition: all 0.3s ease;
}


/* Plain feature items (no bullet) – Audit & Strategy, Implementation & Support */
.card-content-plain .feature-item-plain {
    display: block;
    padding: var(--space-md) 0;
    border: none;
    border-radius: 0;
    background: transparent;
    border-bottom: 1px solid rgba(123, 184, 107, 0.12);
    transition: border-color 0.2s ease;
}

.card-content-plain .feature-item-plain:last-child {
    border-bottom: none;
}


.card-content-plain .feature-item-plain span {
    display: block;
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--light-gray);
    opacity: 0.95;
}

.feature-check {
    color: var(--bright-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    flex-shrink: 0;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--light-gray);
    margin-bottom: var(--space-xs);
    line-height: 1.3;
}

.feature-description {
    color: var(--light-gray);
    opacity: 0.8;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* About Section */
.about {
    background: linear-gradient(135deg, rgba(20, 36, 28, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%);
}

/* Partner Section */
.partner {
    background: linear-gradient(135deg, rgba(59, 45, 155, 0.15) 0%, rgba(20, 36, 28, 0.3) 100%);
    padding: var(--space-3xl) 0;
}

.partner-benefits {
    margin-top: 4rem;
}

.section-bar {
    background: linear-gradient(135deg, rgba(123, 184, 107, 0.1) 0%, rgba(68, 114, 93, 0.05) 100%);
    border: 1px solid rgba(123, 184, 107, 0.3);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
    margin-bottom: var(--space-xl);
    text-align: center;
}

.section-bar h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--bright-green);
    margin: 0;
}

.growth-launch-pad-intro {
    margin-bottom: var(--space-xl);
    max-width: 720px;
}

.growth-launch-pad-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--light-gray);
    opacity: 0.95;
    margin: 0 0 var(--space-md) 0;
}

.growth-launch-pad-alternative {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--light-gray);
    opacity: 0.9;
    margin: 0;
}

.growth-launch-pad-alternative .inline-cta,
.growth-launch-pad-alternative a {
    color: var(--bright-green);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(123, 184, 107, 0.5);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.growth-launch-pad-alternative .inline-cta:hover,
.growth-launch-pad-alternative a:hover {
    color: var(--light-gray);
    border-bottom-color: var(--bright-green);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-lg);
}

.membership-section {
    margin-top: var(--space-2xl);
}

/* Hero stats - below hero */
.hero-stats-wrap {
    padding: var(--space-2xl) 0;
    background: rgba(20, 36, 28, 0.4);
    border-top: 1px solid rgba(123, 184, 107, 0.1);
}

.hero-stats-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 600;
    color: var(--light-gray);
    text-align: center;
    margin: 0 0 var(--space-sm) 0;
}

.hero-stats-subtitle {
    font-size: 1.1rem;
    color: var(--light-gray);
    opacity: 0.9;
    text-align: center;
    margin: 0 0 var(--space-2xl) 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: var(--space-xl);
    max-width: 1000px;
    margin: 0 auto;
    align-items: stretch;
}

.stat-item {
    text-align: center;
    padding: var(--space-xl);
    background: linear-gradient(135deg, rgba(123, 184, 107, 0.05) 0%, rgba(68, 114, 93, 0.03) 100%);
    border: 2px solid rgba(123, 184, 107, 0.2);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}


.stat-number {
    font-family: var(--font-futuristic);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--bright-green);
    margin-bottom: var(--space-sm);
    line-height: 1;
    text-shadow: 0 0 20px rgba(123, 184, 107, 0.3);
}

.stat-label {
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--light-gray);
    opacity: 0.9;
    font-weight: 500;
    line-height: 1.4;
}

/* Quote-style stat (middle box, slightly wider) */
.stat-quote {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    padding: var(--space-xl) var(--space-2xl);
}

.stat-quote-text {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
    font-weight: 500;
    color: var(--light-gray);
    line-height: 1.6;
    margin: 0 0 var(--space-sm) 0;
}

.stat-quote-text::before {
    content: none;
}

.stat-quote-cite {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--bright-green);
    font-style: normal;
    font-weight: 500;
    opacity: 0.95;
}

/* Services Section */
.services-section {
    margin-top: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-column h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--light-gray);
    margin-bottom: 1.5rem;
    text-align: left;
}

.service-list {
    display: flex;
    flex-direction: column;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--light-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

.service-symbol {
    color: var(--bright-green);
    font-size: 0.65rem;
    line-height: 1;
    flex-shrink: 0;
    opacity: 0.9;
}

/* AI-Native Section */
.ai-native {
    background: linear-gradient(135deg, rgba(68, 114, 93, 0.2) 0%, rgba(20, 36, 28, 0.8) 100%);
    padding: 6rem 0;
}

.ai-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.ai-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.ai-text {
    color: var(--light-gray);
}

.ai-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--light-gray);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.ai-description {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: var(--light-gray);
    opacity: 0.9;
}

/* AI CTA - stroke style to match site CTAs */
.ai-cta-button.cta-button-stroke,
.ai-cta-button {
    background: transparent;
    color: var(--bright-green);
    border: 2px solid var(--bright-green);
    padding: 1rem 2rem;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-primary);
}

.ai-cta-button:hover {
    background: transparent;
    color: var(--light-gray);
    border-color: var(--light-gray);
    transform: translateY(-2px);
}

/* AI Dashboard */
.ai-dashboard {
    background: var(--light-gray);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    color: var(--dark-green);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(68, 114, 93, 0.2);
}

.dashboard-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hamburger {
    font-size: 1.2rem;
    cursor: pointer;
}

.breadcrumb {
    font-size: 0.875rem;
    color: var(--medium-green);
}

.dashboard-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.last-updated {
    font-size: 0.875rem;
    color: var(--medium-green);
}

.action-btn {
    background: none;
    border: 1px solid rgba(68, 114, 93, 0.2);
    color: var(--dark-green);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.action-btn:hover {
    background: rgba(68, 114, 93, 0.1);
}

.dashboard-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.dashboard-title h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--dark-green);
    margin: 0;
}

.new-btn {
    background: var(--bright-green);
    color: var(--dark-green);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.new-btn:hover {
    background: var(--medium-green);
    transform: translateY(-1px);
}

.campaigns-table {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 1rem;
    padding: 0.75rem 0;
    font-weight: 600;
    color: var(--dark-green);
    border-bottom: 2px solid rgba(68, 114, 93, 0.2);
}

.campaign-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 1rem;
    padding: 0.75rem 0;
    align-items: center;
    border-bottom: 1px solid rgba(68, 114, 93, 0.1);
}

.campaign-name {
    font-weight: 500;
    color: var(--dark-green);
}

.priority {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
}

.priority.high {
    background: rgba(255, 107, 107, 0.2);
    color: #d63031;
}

.priority.medium {
    background: rgba(255, 193, 7, 0.2);
    color: #e17055;
}

.priority.low {
    background: rgba(0, 184, 148, 0.2);
    color: #00b894;
}

.roi {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.roi-value {
    font-weight: 600;
    color: var(--dark-green);
}

.roi-bar {
    width: 100%;
    height: 6px;
    background: rgba(68, 114, 93, 0.2);
    border-radius: 3px;
    overflow: hidden;
}

.roi-fill {
    height: 100%;
    background: var(--bright-green);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.optimization {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.ai-automated {
    color: var(--bright-green);
}

.xp-led {
    color: var(--medium-green);
}

.ai-icon, .xp-icon {
    font-size: 1rem;
}

/* AI Opportunity Matrix (replaces dashboard) */
.ai-opportunity-matrix {
    background: var(--light-gray);
    color: var(--dark-green);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-2xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(68, 114, 93, 0.15);
}

.opportunity-section {
    margin-bottom: var(--space-2xl);
}

.opportunity-section:last-child {
    margin-bottom: 0;
}

.opportunity-section-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-green);
    margin: 0 0 var(--space-md) 0;
    padding-bottom: var(--space-xs);
    border-bottom: 2px solid var(--bright-green);
}

.opportunity-subtitle {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--medium-green);
}

.opportunity-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.opportunity-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(68, 114, 93, 0.15);
}

.opportunity-item:last-child {
    border-bottom: none;
}

.opportunity-item-title {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--dark-green);
    line-height: 1.3;
}

.opportunity-item-outcome {
    font-size: 0.95rem;
    color: var(--medium-green);
    line-height: 1.5;
    margin: 0;
}

.opportunity-item-outcome strong {
    color: var(--dark-green);
}

.about-description {
    font-size: 1.125rem;
    text-align: center;
    margin-bottom: var(--space-2xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--light-gray);
    opacity: 0.9;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.service-card {
    background: linear-gradient(135deg, rgba(123, 184, 107, 0.05) 0%, rgba(68, 114, 93, 0.03) 50%, rgba(59, 45, 155, 0.05) 100%);
    border: 2px solid rgba(123, 184, 107, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(123, 184, 107, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--bright-green);
    box-shadow: 0 25px 50px rgba(123, 184, 107, 0.25), 0 0 30px rgba(123, 184, 107, 0.1);
    background: linear-gradient(135deg, rgba(123, 184, 107, 0.1) 0%, rgba(68, 114, 93, 0.08) 50%, rgba(59, 45, 155, 0.1) 100%);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h4 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    margin-bottom: var(--space-sm);
    color: var(--bright-green);
    font-weight: 600;
    line-height: 1.3;
}

/* Founder Section – quote only */
.founder {
    background: linear-gradient(135deg, rgba(59, 45, 155, 0.1) 0%, rgba(20, 36, 28, 0.3) 100%);
}

.founder-quote-block {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding: var(--space-xl) 0;
}

.founder-quote-text {
    font-family: var(--font-heading);
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    color: var(--light-gray);
    line-height: 1.7;
    margin: 0 0 var(--space-md) 0;
}

.founder-quote-cite {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-style: normal;
    color: var(--bright-green);
    font-weight: 500;
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
    margin-top: var(--space-2xl);
}

.founder-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-lg);
}

.founder-image {
    position: relative;
    margin-bottom: var(--space-lg);
}

.profile-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(123, 184, 107, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-ring 3s ease-in-out infinite;
}

.profile-placeholder {
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, var(--bright-green) 0%, var(--medium-green) 50%, var(--dark-purple) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid rgba(123, 184, 107, 0.5);
    position: relative;
    z-index: 2;
    box-shadow: 0 0 30px rgba(123, 184, 107, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.profile-icon {
    font-size: 4rem;
}

.founder-name {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--bright-green) 0%, var(--light-gray) 50%, var(--medium-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-xs);
    line-height: 1.2;
    filter: drop-shadow(0 0 10px rgba(123, 184, 107, 0.3));
}

.founder-title {
    font-size: 1.125rem;
    color: var(--light-gray);
    margin-bottom: var(--space-lg);
    opacity: 0.7;
    font-weight: 400;
}

.founder-quote {
    font-size: 1.125rem;
    color: var(--light-gray);
    border-left: 3px solid var(--bright-green);
    padding-left: var(--space-md);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
    opacity: 0.9;
    font-family: var(--font-primary);
}

.founder-links {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    background: linear-gradient(135deg, rgba(123, 184, 107, 0.05) 0%, rgba(68, 114, 93, 0.03) 100%);
    border: 1px solid rgba(123, 184, 107, 0.3);
    border-radius: var(--radius-sm);
    color: var(--light-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    border-color: var(--bright-green);
    color: var(--bright-green);
    transform: translateY(-2px) scale(1.05);
    background: linear-gradient(135deg, rgba(123, 184, 107, 0.15) 0%, rgba(68, 114, 93, 0.1) 100%);
    box-shadow: 0 8px 25px rgba(123, 184, 107, 0.2);
}

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

/* Brands Section */
.brands-section {
    background: linear-gradient(135deg, rgba(20, 36, 28, 0.2) 0%, rgba(68, 114, 93, 0.1) 50%, rgba(59, 45, 155, 0.1) 100%);
    border: 2px solid rgba(68, 114, 93, 0.4);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.brands-title {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    color: var(--bright-green);
    margin-bottom: var(--space-md);
    text-align: center;
    font-weight: 600;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: var(--space-sm);
}

.brand-item {
    background: linear-gradient(135deg, rgba(123, 184, 107, 0.1) 0%, rgba(68, 114, 93, 0.05) 100%);
    border: 1px solid rgba(123, 184, 107, 0.3);
    border-radius: var(--radius-sm);
    padding: var(--space-sm);
    text-align: center;
    font-weight: 500;
    color: var(--light-gray);
    transition: all 0.3s ease;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.brand-item:hover {
    background: linear-gradient(135deg, rgba(123, 184, 107, 0.2) 0%, rgba(68, 114, 93, 0.1) 100%);
    transform: translateY(-2px) scale(1.05);
    border-color: var(--bright-green);
    box-shadow: 0 8px 25px rgba(123, 184, 107, 0.2);
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(20, 36, 28, 0.3) 100%);
}

.contact-content {
    max-width: 500px;
    margin: 0 auto;
}

.contact-form {
    background: linear-gradient(135deg, rgba(123, 184, 107, 0.05) 0%, rgba(68, 114, 93, 0.03) 50%, rgba(59, 45, 155, 0.05) 100%);
    border: 2px solid rgba(123, 184, 107, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-family: var(--font-primary);
    font-weight: 500;
    color: var(--bright-green);
    margin-bottom: var(--space-xs);
    font-size: 1rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: var(--space-md);
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(59, 45, 155, 0.3);
    border-radius: var(--radius-sm);
    color: var(--light-gray);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--bright-green);
    box-shadow: 0 0 0 3px rgba(123, 184, 107, 0.2), 0 0 20px rgba(123, 184, 107, 0.1);
    background: rgba(0, 0, 0, 0.4);
    transform: scale(1.02);
}

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

/* Checkbox Styles */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
}

.checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-sm);
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(123, 184, 107, 0.2);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.checkbox-item:hover {
    background: rgba(123, 184, 107, 0.05);
    border-color: rgba(123, 184, 107, 0.4);
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--bright-green);
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--light-gray);
    cursor: pointer;
    line-height: 1.4;
    margin: 0;
    font-weight: 400;
}

.checkbox-item:has(input:checked) {
    background: rgba(123, 184, 107, 0.1);
    border-color: var(--bright-green);
    box-shadow: 0 0 10px rgba(123, 184, 107, 0.2);
}

.checkbox-item:has(input:checked) .checkbox-label {
    color: var(--bright-green);
    font-weight: 500;
}

/* Footer – one-page SEO: brand, internal links, location, copyright */
.footer {
    background: var(--dark-green);
    padding: var(--space-xl) 0;
    border-top: 1px solid rgba(123, 184, 107, 0.15);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-lg);
}

.footer-brand {
    flex-shrink: 0;
}

.footer-logo-link {
    display: block;
    line-height: 0;
    text-decoration: none;
}

.footer-logo-img {
    display: block;
    height: 80px;
    width: 80px;
    object-fit: contain;
    object-position: center;
    filter: brightness(0) invert(1);
}

.footer-nav {
    display: flex;
    gap: var(--space-lg);
}

.footer-nav a {
    color: var(--light-gray);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.footer-nav a:hover {
    opacity: 1;
    color: var(--bright-green);
}

.footer-meta {
    text-align: right;
}

.footer-location,
.footer-copyright {
    color: var(--light-gray);
    opacity: 0.7;
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.5;
}

.footer-location-icon {
    display: inline-flex;
    vertical-align: middle;
    margin-right: 0.25rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .nav-logo-link {
        margin: 0 auto;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .founder-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-column h3 {
        text-align: center;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-quote {
        text-align: center;
    }
    
    .ai-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .ai-dashboard {
        padding: 1rem;
    }
    
    .ai-opportunity-matrix {
        padding: var(--space-lg) var(--space-md);
    }
    
    .opportunity-section-title {
        font-size: 1.1rem;
    }
    
    .table-header,
    .campaign-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .table-header .col,
    .campaign-row > div {
        padding: 0.5rem 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
        align-items: center;
    }

    .footer-nav {
        order: 0;
    }

    .footer-meta {
        text-align: center;
    }
    
    .hero-glow {
        width: 400px;
        height: 400px;
    }
    
    .hero-glow::before {
        width: 300px;
        height: 300px;
    }
    
    /* Clear fixed nav on mobile – nav stacks vertically so needs more top padding */
    .hero {
        padding-top: 14rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .hero {
        padding: 1rem;
        padding-top: 14rem;
    }
    
    section {
        padding: 3rem 0;
    }
}

/* Additional Animations */

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--dark-purple);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--bright-green);
}

/* Service tag modal */
.service-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    box-sizing: border-box;
}

.service-modal[hidden] {
    display: none !important;
}

.service-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
}

.service-modal-box {
    position: relative;
    width: 100%;
    max-width: 480px;
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
    background: linear-gradient(180deg, rgba(20, 36, 28, 0.98) 0%, rgba(10, 18, 14, 0.99) 100%);
    border: 2px solid rgba(123, 184, 107, 0.3);
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.service-modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 2;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
    color: var(--light-gray);
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(123, 184, 107, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.service-modal-close:hover {
    color: var(--bright-green);
    background: rgba(123, 184, 107, 0.15);
    border-color: var(--bright-green);
}

.service-modal-content {
    padding: 1.5rem 1.5rem 2rem;
}

.service-modal-image-wrap {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 1.25rem;
    background: #1a1a1a;
}

.service-modal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-modal-image.grayscale {
    filter: grayscale(100%);
}

.service-modal-heading {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-gray);
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.service-modal-embed-wrap {
    width: 100%;
    margin-bottom: 1.25rem;
}

.service-modal-embed {
    width: 100%;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-modal-embed .instagram-media {
    margin: 0 auto !important;
}

.service-modal-bio {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--light-gray);
    opacity: 0.9;
    margin: 0 0 1.5rem 0;
}

.service-modal-bio-html a {
    color: var(--bright-green);
    text-decoration: underline;
}

.service-modal-bio-html a:hover {
    color: var(--light-gray);
}

.service-modal-bio-html strong {
    font-weight: 700;
    color: var(--light-gray);
}

.service-modal-bio-html p {
    margin: 0 0 0.75rem 0;
}

.service-modal-bio-html p:last-child {
    margin-bottom: 0;
}

.service-modal-bio-html .service-modal-list {
    margin: 0.5rem 0 0 0;
    padding-left: 1.25rem;
    list-style: disc;
}

.service-modal-bio-html .service-modal-list li {
    margin-bottom: 0.35rem;
}

.service-modal-video {
    width: 100%;
    max-width: 100%;
    border-radius: var(--radius-md);
    background: #0a0a0a;
    display: block;
    margin: 0 0 1rem 0;
}

.service-modal-linkedin-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: #0A66C2;
    border: none;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.service-modal-linkedin-btn:hover {
    background: #004182;
    transform: translateY(-1px);
}

.service-modal-linkedin-btn[hidden] {
    display: none !important;
}

.service-modal-cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}

.service-modal-cta-row[hidden] {
    display: none !important;
}

.service-modal-get-in-touch-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--bright-green);
    background: transparent;
    border: 2px solid var(--bright-green);
    border-radius: 999px;
    text-decoration: none;
    transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.service-modal-get-in-touch-btn:hover {
    color: var(--dark-green);
    background: var(--bright-green);
}

.service-modal-get-in-touch-btn[hidden] {
    display: none !important;
}

@media (max-width: 480px) {
    .service-modal {
        padding: 0.75rem;
        align-items: flex-start;
        padding-top: 2rem;
    }
    .service-modal-box {
        max-height: calc(100vh - 2.5rem);
    }
    .service-modal-content {
        padding: 1.25rem 1rem 1.5rem;
    }
    .service-modal-close {
        top: 0.5rem;
        right: 0.5rem;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}
