/* === VARIABLES === */
:root {
    --navy: #0B1D3A;
    --navy-light: #132D54;
    --navy-dark: #060F1F;
    --blue: #1E5EAB;
    --blue-light: #2B7CE9;
    --gold: #D4A535;
    --gold-light: #E8BC4A;
    --gold-dark: #A37B1F;
    --slate: #3D4F65;
    --gray-100: #F8F9FB;
    --gray-200: #ECEEF2;
    --gray-300: #D5D9E0;
    --gray-400: #9AA3B1;
    --gray-500: #5A6577;
    --white: #FFFFFF;
    --cream: #FAF8F4;
    --green: #1B8A5A;
    --green-light: #E8F5EE;
    --red: #C23B3B;
    --red-light: #FDF0F0;

    --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Instrument Serif', Georgia, serif;

    --shadow-sm: 0 1px 3px rgba(11,29,58,0.06);
    --shadow-md: 0 4px 20px rgba(11,29,58,0.08);
    --shadow-lg: 0 12px 40px rgba(11,29,58,0.10);
    --shadow-xl: 0 24px 60px rgba(11,29,58,0.14);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 30px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-sans);
    color: var(--navy);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* === ACCESSIBILITY === */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 10000;
    padding: 12px 24px;
    background: var(--gold);
    color: var(--navy-dark);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    transition: top 0.2s;
}

.skip-link:focus {
    top: 16px;
}

/* Visible focus indicators for keyboard navigation */
*:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
}

/* Reduced motion for vestibular disorders */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .animate-in {
        opacity: 1 !important;
        transform: none !important;
    }

    .hero-bg {
        transform: none !important;
    }
}

/* Visually hidden but accessible to screen readers */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Form labels - visually hidden but accessible */
.contact-form label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.form-group {
    position: relative;
}

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

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
    line-height: 1.15;
    font-weight: 700;
}

h1 { font-family: var(--font-display); font-weight: 400; }

h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.1;
}

h3 {
    font-family: var(--font-sans);
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.92rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    border: 2px solid transparent;
    font-family: var(--font-sans);
    letter-spacing: 0.2px;
    position: relative;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy-dark);
    border-color: var(--gold);
    box-shadow: 0 2px 8px rgba(212,165,53,0.2);
}

.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212,165,53,0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}

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

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

/* === NAVBAR === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(11,29,58,0.95);
    backdrop-filter: blur(12px);
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-img {
    height: 56px;
    width: auto;
    background: white;
    border-radius: 8px;
    padding: 6px 14px;
    transition: all 0.3s ease;
    object-fit: contain;
}

.navbar.scrolled .logo-img {
    height: 44px;
    padding: 4px 10px;
}

.logo-img-footer {
    height: 60px;
    background: rgba(255,255,255,0.95);
    border-radius: 8px;
    padding: 6px 14px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: rgba(255,255,255,0.8);
    font-size: 0.88rem;
    font-weight: 500;
    transition: color 0.2s;
}

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

.nav-cta {
    padding: 10px 22px;
    font-size: 0.88rem;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
}

/* === HERO === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('hero-bg.jpg') center center / cover no-repeat;
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(6,15,31,0.88) 0%,
        rgba(11,29,58,0.78) 40%,
        rgba(11,29,58,0.7) 60%,
        rgba(6,15,31,0.85) 100%
    );
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--navy-dark));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: rgba(201,152,46,0.12);
    border: 1px solid rgba(201,152,46,0.25);
    border-radius: 50px;
    color: var(--gold-light);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 28px;
    letter-spacing: 0.3px;
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    color: var(--white);
    margin-bottom: 28px;
    letter-spacing: -0.02em;
    line-height: 1.05;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold-light);
}

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: rgba(255,255,255,0.78);
    max-width: 620px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: -0.02em;
}

.stat-label {
    display: block;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.12);
}

/* === SECTION STYLES === */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold-dark);
    margin-bottom: 18px;
    position: relative;
    padding-left: 24px;
}

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

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

.section-header p {
    color: var(--gray-500);
    font-size: 1.05rem;
    margin-top: 16px;
}

/* === SERVICES GRID === */
.services {
    background: var(--cream);
    position: relative;
}

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

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

.service-card {
    background: var(--white);
    padding: 36px 30px;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

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

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(30,94,171,0.08), rgba(201,152,46,0.08));
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    color: var(--blue);
}

.service-icon svg {
    width: 30px;
    height: 30px;
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--gray-500);
    font-size: 0.92rem;
    line-height: 1.6;
}

.service-card-cta {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-color: transparent;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card-cta h3 {
    color: var(--gold-light);
    font-size: 1.3rem;
}

.service-card-cta p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
}

.service-card-cta:hover {
    transform: translateY(-4px);
}

/* === HOW IT WORKS === */
.how-it-works {
    background: var(--white);
}

.steps {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.step {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(11,29,58,0.2);
}

.step-content h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    padding-top: 4px;
}

.step-content p {
    color: var(--gray-500);
    font-size: 0.95rem;
}

.step-connector {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--navy), var(--gold));
    margin-left: 31px;
    margin-top: 8px;
    margin-bottom: 8px;
}

/* === COMPARISON === */
.comparison {
    background: var(--cream);
    position: relative;
}

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

.comparison-table {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.comparison-col {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    border: 2px solid var(--gray-200);
}

.comparison-good {
    border-color: var(--green);
    background: var(--green-light);
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.comparison-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
}

.comparison-good .comparison-header {
    border-bottom-color: rgba(27,138,90,0.2);
}

.comparison-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 auto 12px;
}

.comparison-icon.bad {
    background: var(--red-light);
    color: var(--red);
}

.comparison-icon.good {
    background: rgba(27,138,90,0.15);
    color: var(--green);
}

.comparison-col h3 {
    font-size: 1.15rem;
}

.comparison-col ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.comparison-col li {
    font-size: 0.92rem;
    color: var(--gray-500);
    padding-left: 24px;
    position: relative;
}

.comparison-bad li::before {
    content: '\2013';
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 700;
}

.comparison-good li {
    color: var(--navy);
    font-weight: 500;
}

.comparison-good li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
}

/* === BRAND PROTECTION === */
.brand-protection {
    background: var(--white);
}

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

.brand-protection-content h2 {
    margin-bottom: 20px;
}

.brand-protection-content > p {
    color: var(--gray-500);
    margin-bottom: 32px;
    font-size: 1.02rem;
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--slate);
}

.check-list li::before {
    content: '\2713';
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--green-light);
    color: var(--green);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 1px;
}

.brand-protection-visual {
    display: flex;
    justify-content: center;
}

.shield-graphic {
    position: relative;
    width: 280px;
    height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.shield-icon {
    color: var(--navy);
    z-index: 2;
}

.shield-icon svg {
    width: 100px;
    height: 120px;
}

.shield-label {
    font-weight: 700;
    color: var(--navy);
    margin-top: 16px;
    font-size: 1.1rem;
    z-index: 2;
}

.shield-rings {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(30,94,171,0.1);
}

.ring-1 { width: 200px; height: 200px; }
.ring-2 { width: 260px; height: 260px; }
.ring-3 { width: 320px; height: 320px; }

/* === CONSULTING === */
.consulting {
    background: var(--cream);
    position: relative;
}

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

.consulting-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.consulting-card {
    background: var(--white);
    padding: 36px 32px;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.consulting-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.consulting-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 400;
    color: var(--gray-200);
    margin-bottom: 12px;
    line-height: 1;
    font-style: italic;
}

.consulting-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.consulting-card p {
    color: var(--gray-500);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* === OUTCOMES === */
.outcomes {
    background: var(--navy);
    color: var(--white);
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.outcome {
    text-align: center;
}

.outcome-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--gold);
}

.outcome-icon svg {
    width: 40px;
    height: 40px;
}

.outcome h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.outcome p {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* === ABOUT === */
.about {
    background: var(--white);
}

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

.about-content h2 {
    margin-bottom: 24px;
}

.about-content > p {
    color: var(--gray-500);
    font-size: 1rem;
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
}

.value strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.value span {
    font-size: 0.88rem;
    color: var(--gray-500);
}

.about-visual {
    display: flex;
    justify-content: center;
}

.about-card {
    width: 280px;
    height: 320px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
}

.about-card-inner {
    text-align: center;
}

.about-years {
    font-family: var(--font-display);
    font-size: 6rem;
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
    letter-spacing: -0.04em;
}

.about-years-label {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    margin-top: 8px;
}

/* === SUSTAINABILITY === */
.sustainability {
    background: linear-gradient(135deg, #0d3520 0%, #1a5c38 100%);
    color: var(--white);
}

.sustainability-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.sustainability-content h2 {
    margin-bottom: 20px;
}

.sustainability-content > p {
    color: rgba(255,255,255,0.75);
    font-size: 1.05rem;
    margin-bottom: 48px;
    line-height: 1.7;
}

.sustainability-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.sus-stat {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sus-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--gold-light);
}

.sus-icon svg {
    width: 24px;
    height: 24px;
}

.sus-stat span {
    font-size: 0.92rem;
    font-weight: 500;
}

/* === CLIENTS === */
.clients {
    background: var(--white);
}

.client-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.client-type {
    text-align: center;
    padding: 40px 24px;
}

.client-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--blue);
    background: rgba(30,94,171,0.06);
    border-radius: 50%;
}

.client-icon svg {
    width: 44px;
    height: 44px;
}

.client-type h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.client-type p {
    color: var(--gray-500);
    font-size: 0.92rem;
}

/* === CHANNEL MAP === */
.channel-map {
    background: var(--white);
}

.channel-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.channel-box {
    text-align: center;
    padding: 28px 24px;
    border-radius: var(--radius-md);
    min-width: 200px;
}

.channel-box strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.channel-box span {
    font-size: 0.82rem;
    opacity: 0.75;
}

.channel-box-primary {
    background: var(--gray-100);
    border: 2px dashed var(--gray-300);
    color: var(--navy);
}

.channel-box-irp {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 32px 28px;
}

.channel-hub-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    color: var(--gold);
}

.channel-hub-icon svg {
    width: 48px;
    height: 48px;
}

.channel-box-irp strong {
    color: var(--gold);
    font-size: 1.3rem;
}

.channel-arrow {
    color: var(--gold);
    flex-shrink: 0;
}

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

.channel-destinations {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.channel-dest {
    background: var(--green-light);
    color: var(--green);
    font-weight: 600;
    font-size: 0.88rem;
    padding: 10px 20px;
    border-radius: 50px;
    text-align: center;
    border: 1px solid rgba(27,138,90,0.15);
}

.channel-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    background: rgba(30,94,171,0.05);
    border-radius: var(--radius-sm);
    max-width: 600px;
    margin: 0 auto;
    color: var(--slate);
    font-size: 0.9rem;
}

.channel-note svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--green);
}

/* === RECOVERY ESTIMATOR === */
.estimator {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    color: var(--white);
}

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

.estimator-content h2 {
    margin-bottom: 20px;
}

.estimator-content > p {
    color: rgba(255,255,255,0.65);
    font-size: 1.02rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.estimator-disclaimer {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    font-style: italic;
}

.estimator-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px;
    box-shadow: var(--shadow-xl);
}

.estimator-card h3 {
    color: var(--navy);
    font-size: 1.2rem;
    margin-bottom: 24px;
}

.estimator-field {
    margin-bottom: 18px;
}

.estimator-field label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--slate);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.estimator-field select,
.estimator-field input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--navy);
    background: var(--white);
}

.estimator-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239AA3B1' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.estimator-field input:focus,
.estimator-field select:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(30,94,171,0.1);
}

.estimator-result {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
    text-align: center;
}

.result-header {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
    margin-bottom: 12px;
}

.result-range {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.result-low, .result-high {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--green);
    letter-spacing: -0.02em;
}

.result-separator {
    font-size: 0.92rem;
    color: var(--gray-400);
    font-weight: 500;
}

.result-vs {
    display: flex;
    gap: 16px;
    margin-bottom: 8px;
}

.result-vs-item {
    flex: 1;
    background: var(--gray-100);
    padding: 12px;
    border-radius: var(--radius-sm);
    text-align: center;
}

.result-vs-label {
    display: block;
    font-size: 0.78rem;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.result-vs-value {
    font-weight: 700;
    font-size: 0.95rem;
}

.result-vs-good {
    color: var(--green);
}

/* === FAQ === */
.faq {
    background: var(--cream);
    position: relative;
}

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

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    text-align: left;
    gap: 16px;
}

.faq-chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s;
    color: var(--gray-400);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

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

.faq-answer p {
    padding: 0 28px 22px;
    color: var(--gray-500);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* === CONTACT === */
.contact {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    color: var(--white);
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-content h2 {
    margin-bottom: 20px;
}

.contact-content > p {
    color: rgba(255,255,255,0.65);
    font-size: 1.02rem;
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--gold);
}

.contact-item strong {
    display: block;
    font-size: 0.92rem;
}

.contact-item a {
    color: rgba(255,255,255,0.7);
    font-size: 0.92rem;
    transition: color 0.2s;
}

.contact-item a:hover {
    color: var(--gold);
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-xl);
}

.contact-form h3 {
    font-family: var(--font-display);
    color: var(--navy);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.92rem;
    color: var(--navy);
    transition: border-color 0.2s;
    background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(30,94,171,0.1);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239AA3B1' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

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

.contact-form .btn {
    margin-top: 8px;
}

/* === FOOTER === */
.footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.6);
    padding: 32px 0 24px;
}

.footer-compact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-compact .logo-img-footer {
    height: 44px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 24px;
}

.footer-nav a {
    font-size: 0.84rem;
    font-weight: 500;
    transition: color 0.2s;
}

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

.footer-contact-line {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.84rem;
}

.footer-contact-line a {
    transition: color 0.2s;
}

.footer-contact-line a:hover {
    color: var(--gold);
}

.footer-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    font-size: 0.78rem;
}

.footer-american {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.3px;
}

.flag-icon {
    width: 22px;
    height: 11px;
    border-radius: 2px;
    flex-shrink: 0;
}

/* === NOISE TEXTURE === */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

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

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

.animate-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .comparison-good {
        transform: scale(1);
        order: -1;
    }

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

    .brand-protection-visual {
        order: -1;
    }

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

    .about-visual {
        order: -1;
    }

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

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

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

    .channel-flow {
        flex-direction: column;
    }

    .channel-arrow svg {
        transform: rotate(90deg);
    }

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

@media (max-width: 768px) {
    section {
        padding: 72px 0;
    }

    .nav-links, .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--navy);
        padding: 24px;
        gap: 20px;
        box-shadow: var(--shadow-lg);
    }

    .hero {
        min-height: auto;
        padding: 140px 0 80px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }

    .hero-stats .stat {
        display: flex;
        align-items: center;
        gap: 12px;
    }

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

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

    .outcomes-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .client-types {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .sustainability-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .contact-form-wrapper {
        padding: 28px 24px;
    }

    .footer-contact-line {
        flex-direction: column;
        gap: 6px;
    }

    .footer-dot {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 120px 0 60px;
    }

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

    .hero-actions .btn {
        width: 100%;
    }

    h2 {
        font-size: 1.6rem;
    }

    .step {
        gap: 20px;
    }

    .step-number {
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }

    .step-connector {
        margin-left: 23px;
    }
}
