/* ========================================
   DesignCase — Consulting Website v2
   Color: DesignCase Blue (#00aeef) + Warm Slate + Amber Accent
   Fonts: Inter (body), Playfair Display (headings)
   ======================================== */

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

:root {
    --blue: #00aeef;
    --blue-dark: #0095cc;
    --blue-light: #e8f4fd;
    --blue-muted: #d0ecfa;
    --navy: #1e3a5f;
    --navy-light: #24456e;
    --amber: #f5a623;
    --amber-light: #f7b94d;
    --white: #ffffff;
    --off-white: #f8fafb;
    --cream: #f5f7f9;
    --gray-100: #e5e9ed;
    --gray-200: #d1d5db;
    --gray-300: #a0a8b4;
    --gray-500: #5f6b7a;
    --text: #2d3748;
    --text-light: #4a5568;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    --max-width: 1140px;
    --section-pad: 72px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

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

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

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

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--navy);
}

.section-sub {
    font-size: 1.125rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

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

.btn-primary:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 174, 239, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--gray-200);
}

.btn-outline:hover {
    border-color: var(--blue);
    color: var(--blue);
}

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

/* --- NAV --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.nav.scrolled {
    padding: 10px 0;
    box-shadow: 0 1px 12px rgba(0,0,0,0.06);
    border-bottom-color: var(--gray-100);
}

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

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

.nav-logo img {
    height: 36px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

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

.nav-cta {
    background: var(--blue) !important;
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: 6px;
    font-weight: 600 !important;
}

.nav-cta:hover {
    background: var(--blue-dark) !important;
}

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* --- HERO — Split Layout --- */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    padding-top: 72px;
}

.hero-text {
    display: flex;
    align-items: center;
    padding: 60px 24px 60px 0;
}

.hero-text-inner {
    max-width: 540px;
    margin-left: auto;
    padding-left: 24px;
}

.hero-eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--blue);
    margin-bottom: 20px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3.4rem;
    line-height: 1.12;
    color: var(--navy);
    margin-bottom: 24px;
}

.hero-accent {
    color: var(--blue);
}

.hero-bridge {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}

.hero-sub {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--text-light);
    margin-bottom: 36px;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- TRUST BAR --- */
.trust-bar {
    background: var(--navy);
    padding: 28px 0;
}

.trust-credentials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.trust-badge-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 4px;
}

.trust-badge-org {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.02em;
}

/* Trust logos row */
.trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.trust-logos img {
    height: 32px;
    max-width: 120px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s;
}

.trust-logos img:hover {
    opacity: 0.8;
}

.trust-tagline {
    text-align: center;
    margin-top: 16px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.45);
}

/* --- THINKING-FIRST --- */
.thinking {
    background: var(--off-white);
}

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

.thinking-content h2 {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 24px;
}

.thinking-lead {
    font-size: 1.15rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 16px;
}

.thinking-lead em {
    color: var(--blue-dark);
    font-style: italic;
}

.thinking-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 16px;
}

.thinking-content p strong {
    color: var(--navy);
}

/* Thinking sidebar (timeline + photo) */
.thinking-sidebar {
    position: sticky;
    top: 120px;
}

.thinking-timeline {
    padding: 28px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--gray-100);
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
}

.timeline-item:last-of-type {
    border-bottom: none;
}

.timeline-year {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gray-300);
    min-width: 40px;
}

.timeline-tool {
    font-size: 0.93rem;
    font-weight: 500;
    color: var(--text);
}

.timeline-item.active {
    background: var(--blue-light);
    margin: 0 -28px;
    padding: 12px 28px;
    border-radius: 6px;
    border-bottom: none;
}

.timeline-item.active .timeline-year {
    color: var(--blue);
}

.timeline-item.active .timeline-tool {
    color: var(--blue-dark);
    font-weight: 700;
}

.timeline-constant {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 2px solid var(--blue);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    text-align: center;
    line-height: 1.5;
}

/* --- SERVICES --- */
.services {
    background: var(--white);
}

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

.service-card {
    padding: 36px 28px;
    border: 1px solid var(--gray-100);
    border-radius: 10px;
    transition: all 0.25s ease;
}

.service-card:hover {
    border-color: var(--blue);
    box-shadow: 0 8px 30px rgba(0, 174, 239, 0.08);
    transform: translateY(-3px);
}

.service-icon {
    width: 40px;
    height: 40px;
    color: var(--blue);
    margin-bottom: 18px;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--navy);
}

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

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

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

.about-image img {
    border-radius: 10px;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 3/4;
    box-shadow: 0 20px 60px rgba(30, 58, 95, 0.12);
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    line-height: 1.25;
    color: var(--navy);
    margin-bottom: 24px;
}

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

.about-content p strong {
    color: var(--navy);
}

.credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.credential {
    background: var(--navy);
    color: var(--blue-light);
    padding: 7px 14px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* --- PROOF --- */
.proof {
    background: var(--white);
}

.testimonial {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.testimonial blockquote {
    position: relative;
    padding: 0;
    border: none;
}

.testimonial blockquote::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--blue);
    line-height: 0;
    position: absolute;
    top: 30px;
    left: -10px;
    opacity: 0.25;
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 20px;
    padding: 0 20px;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: var(--blue);
    font-size: 0.9rem;
}

.clients-section {
    margin-bottom: 50px;
}

.clients-title {
    text-align: center;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gray-300);
    margin-bottom: 28px;
    font-weight: 600;
}

.logo-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
    padding: 24px 0;
    margin-bottom: 24px;
}

.logo-strip img {
    height: 40px;
    max-width: 140px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-strip img:hover {
    transform: scale(1.08);
}

/* Client text grid (below logos) */
.clients-text-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 20px;
    padding: 16px 0;
}

.clients-text-grid span {
    font-size: 0.85rem;
    color: var(--gray-300);
    font-weight: 500;
    position: relative;
}

.clients-text-grid span:not(:last-child)::after {
    content: '·';
    margin-left: 20px;
    color: var(--gray-200);
}

/* Photo grid */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 20px;
}

.photo-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
}

/* --- URGENCY (stats moved down) --- */
.urgency {
    padding: 0;
}

.urgency-bg {
    background: var(--navy);
    color: var(--white);
    padding: var(--section-pad) 0;
}

.urgency .section-header h2 {
    color: var(--white);
}

.urgency .section-sub {
    color: rgba(255,255,255,0.7);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
    margin-bottom: 50px;
}

.stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--amber);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}

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

.urgency-cta p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 24px;
}

.urgency-cta p strong {
    color: var(--white);
}

/* --- 3-STEP PLAN --- */
.plan {
    background: var(--off-white);
}

.plan-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.plan-step {
    flex: 1;
    text-align: center;
    padding: 0 28px;
}

.plan-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.plan-step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--navy);
}

.plan-step p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.7;
}

.plan-connector {
    width: 60px;
    height: 2px;
    background: var(--gray-100);
    margin-top: 28px;
    flex-shrink: 0;
}

/* --- AI READINESS AUDIT --- */
.audit-section {
    background: var(--off-white);
}

/* Entry form */
.audit-entry-form {
    max-width: 440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.audit-entry-form input {
    padding: 16px 20px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text);
    transition: border-color 0.2s;
    background: var(--white);
}

.audit-entry-form input:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.1);
}

.audit-entry-form input::placeholder {
    color: var(--gray-300);
}

.audit-entry-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray-300);
    font-style: italic;
    margin-top: 4px;
}

/* Progress bar */
.audit-progress-bar {
    width: 100%;
    height: 4px;
    background: var(--gray-100);
    border-radius: 4px;
    margin-bottom: 32px;
    overflow: hidden;
}

.audit-progress-fill {
    height: 100%;
    background: var(--blue);
    border-radius: 4px;
    width: 0%;
    transition: width 0.4s ease;
}

/* Scan status */
.audit-scan-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 40px;
}

.scan-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue);
    animation: scan-pulse 1.5s ease-in-out infinite;
}

.audit-scan-status.scan-done .scan-dot {
    background: #22c55e;
    animation: none;
}

@keyframes scan-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
}

/* Question container */
#audit-question-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.audit-question {
    animation: audit-fade-in 0.35s ease;
}

@keyframes audit-fade-in {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

.audit-question-number {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--blue);
    margin-bottom: 12px;
}

.audit-question h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 28px;
}

.audit-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.audit-card {
    padding: 20px 24px;
    border: 2px solid var(--gray-100);
    border-radius: 10px;
    background: var(--white);
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.audit-card:hover {
    border-color: var(--blue);
    box-shadow: 0 4px 16px rgba(0, 174, 239, 0.08);
    transform: translateY(-1px);
}

.audit-card.selected {
    border-color: var(--blue);
    background: var(--blue-light);
}

.audit-card-indicator {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid var(--gray-200);
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.audit-card.selected .audit-card-indicator {
    border-color: var(--blue);
    background: var(--blue);
}

.audit-card.selected .audit-card-indicator::after {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
}

.audit-card-text {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.5;
}

.audit-card.selected .audit-card-text {
    color: var(--navy);
    font-weight: 600;
}

/* Teaching moment (shown after selection) */
.audit-teaching {
    margin-top: 20px;
    padding: 16px 20px;
    background: var(--blue-light);
    border-radius: 8px;
    border-left: 3px solid var(--blue);
    text-align: left;
    font-size: 0.88rem;
    color: var(--navy);
    line-height: 1.6;
    animation: audit-fade-in 0.3s ease;
}

/* === RESULTS === */

/* Score summary header */
.audit-score-summary {
    background: var(--navy);
    color: var(--white);
    border-radius: 16px;
    padding: 48px 40px;
    text-align: center;
    margin-bottom: 32px;
}

/* Hero layout: score+stage left, radar right */
.audit-hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 32px;
}

.audit-hero-left {
    display: flex;
    align-items: center;
    gap: 28px;
}

.audit-hero-radar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.audit-hero-radar .radar-chart {
    max-width: 300px;
    width: 100%;
    height: auto;
}

.audit-score-ring-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.audit-score-ring {
    position: relative;
    width: 160px;
    height: 160px;
}

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

.audit-score-ring .ring-bg {
    fill: none;
    stroke: rgba(255,255,255,0.1);
    stroke-width: 8;
}

.audit-score-ring .ring-fill {
    fill: none;
    stroke: var(--blue);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 0 408;
    transition: stroke-dasharray 1.2s ease;
}

.audit-score-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.audit-score-value .score-num {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    color: var(--white);
}

.audit-score-value .score-denom {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

.audit-score-info {
    text-align: left;
}

.audit-stage-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--blue);
    margin-bottom: 8px;
}

.audit-stage-name {
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 12px;
}

.audit-stage-desc {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    max-width: 340px;
}

.audit-benchmark {
    margin-top: 12px;
    font-size: 0.82rem;
    color: var(--amber);
    font-weight: 600;
}

/* Dimension breakdown */
.audit-dimensions {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--gray-100);
    padding: 36px;
    margin-bottom: 32px;
}

.audit-dimensions h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 28px;
}

.audit-dimension {
    display: grid;
    grid-template-columns: 200px 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
}

.audit-dimension:last-child {
    border-bottom: none;
}

.audit-dimension-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
}

.audit-dimension-bar {
    height: 10px;
    background: var(--gray-100);
    border-radius: 10px;
    overflow: hidden;
}

.audit-dimension-fill {
    height: 100%;
    border-radius: 10px;
    transition: width 0.8s ease;
}

.audit-dimension-fill[data-score="1"] { background: var(--amber); width: 33%; }
.audit-dimension-fill[data-score="2"] { background: var(--blue); width: 66%; }
.audit-dimension-fill[data-score="3"] { background: var(--navy); width: 100%; }

.audit-dimension-score {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-500);
    min-width: 30px;
    text-align: right;
}

/* AI Site scan results */
.audit-site-scan {
    border-radius: 16px;
    border: 1px solid var(--gray-100);
    padding: 36px;
    margin-bottom: 32px;
    background: var(--white);
}

.audit-site-scan h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.audit-site-scan-sub {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 24px;
}

.audit-keyword-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.audit-keyword-stat {
    text-align: center;
    padding: 16px 12px;
    background: var(--off-white);
    border-radius: 10px;
}

.audit-keyword-count {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 4px;
}

.audit-keyword-count.zero {
    color: var(--amber);
}

.audit-keyword-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.audit-ai-insights {
    padding: 20px 24px;
    background: var(--off-white);
    border-radius: 10px;
    border-left: 3px solid var(--blue);
}

.audit-ai-insights h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.audit-ai-insights ul {
    list-style: none;
    padding: 0;
}

.audit-ai-insights li {
    padding: 6px 0;
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
}

.audit-ai-insights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue);
}

/* Competitive Landscape */
.audit-competitor-landscape {
    border-radius: 16px;
    padding: 36px;
    margin-bottom: 32px;
    background: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.audit-competitor-landscape::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: rgba(0, 174, 239, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.competitor-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 8px;
}

.competitor-icon {
    width: 32px;
    height: 32px;
    color: var(--blue);
    flex-shrink: 0;
}

.competitor-icon svg {
    width: 100%;
    height: 100%;
}

.competitor-header h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--white);
    margin: 0;
}

.competitor-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
}

.competitor-insights {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

.competitor-insight-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.competitor-insight-marker {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue);
    flex-shrink: 0;
    margin-top: 7px;
}

.competitor-insight-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.65;
    margin: 0;
}

.competitor-cta {
    padding: 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    text-align: center;
}

.competitor-cta p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.65;
    margin-bottom: 16px;
}

.competitor-cta p strong {
    color: var(--white);
}

.competitor-cta .btn {
    display: inline-block;
}

/* Gap callout */
.audit-gap-callout {
    padding: 28px 32px;
    border: 2px solid var(--amber);
    border-radius: 12px;
    background: #fffbf0;
    margin-bottom: 32px;
}

.audit-gap-callout h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.audit-gap-callout p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

.audit-gap-callout strong {
    color: var(--navy);
}

/* Board Brief */
.board-brief {
    max-width: 700px;
    margin: 0 auto 32px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 4px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    padding: 48px 44px;
}

.board-brief-header {
    text-align: center;
    padding-bottom: 24px;
    margin-bottom: 28px;
    border-bottom: 2px solid var(--gray-100);
}

.board-brief-school {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 4px;
}

.board-brief-subtitle {
    font-size: 0.85rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.board-brief-date {
    font-size: 0.82rem;
    color: var(--gray-300);
    margin-top: 4px;
}

.board-brief h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin: 24px 0 12px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-100);
}

.board-brief h4:first-of-type {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.board-brief p, .board-brief li {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

.board-brief ul {
    padding-left: 20px;
    margin: 8px 0;
}

.board-brief li {
    margin-bottom: 6px;
}

.board-brief-footer {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 2px solid var(--gray-100);
    text-align: center;
    font-size: 0.82rem;
    color: var(--gray-300);
}

/* Board brief branded — dynamic school colors via CSS vars */
.board-brief-branded {
    border-top: 4px solid var(--school-primary, var(--navy));
}

/* Action buttons below results */
.audit-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Email capture (revealed on click) */
.audit-email-capture {
    max-width: 480px;
    margin: 0 auto 40px;
    text-align: center;
}

.audit-email-capture p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

.audit-email-form {
    display: flex;
    gap: 10px;
}

.audit-email-form input {
    flex: 1;
    padding: 14px 18px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
}

.audit-email-form input:focus {
    outline: none;
    border-color: var(--blue);
}

/* Final CTA */
.audit-final-cta {
    text-align: center;
    padding: 40px;
    background: var(--navy);
    border-radius: 16px;
    color: var(--white);
}

.audit-final-cta h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.audit-final-cta p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Loading / finalizing state */
.audit-finalizing {
    text-align: center;
    padding: 60px 20px;
}

.audit-finalizing p {
    font-size: 1.1rem;
    color: var(--gray-500);
    margin-top: 16px;
}

.audit-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--gray-100);
    border-top-color: var(--blue);
    border-radius: 50%;
    animation: audit-spin 0.8s linear infinite;
    margin: 0 auto;
}

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

/* Questions layout — sidebar + main */
.audit-questions-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.audit-questions-main {
    min-width: 0;
}

/* Live scan sidebar */
.audit-scan-sidebar {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 16px;
    height: fit-content;
    max-height: 480px;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 100px;
}

.scan-sidebar-header {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--navy);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--gray-100);
}

.scan-live-feed {
    flex: 1;
    overflow-y: auto;
    min-height: 120px;
    max-height: 280px;
    margin-bottom: 12px;
}

.scan-feed-item {
    font-size: 0.8rem;
    color: var(--gray-500);
    padding: 6px 0;
    border-bottom: 1px solid var(--gray-50, #f9fafb);
    animation: feed-slide-in 0.3s ease;
}

.scan-feed-scanning { color: var(--blue); }
.scan-feed-found { color: #22c55e; }
.scan-feed-warn { color: var(--amber); }
.scan-feed-done { color: var(--navy); font-weight: 600; }

@keyframes feed-slide-in {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

.scan-sidebar-add {
    border-top: 1px solid var(--gray-100);
    padding-top: 12px;
}

.scan-sidebar-add p {
    font-size: 0.78rem;
    color: var(--gray-500);
    margin-bottom: 6px;
}

.scan-sidebar-add input {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    font-size: 0.82rem;
    margin-bottom: 6px;
    font-family: var(--font-body);
}

.scan-sidebar-add input:focus {
    outline: none;
    border-color: var(--blue);
}

.btn-small {
    padding: 6px 14px;
    font-size: 0.78rem;
    width: 100%;
}

/* Radar chart */
.audit-radar-wrap {
    text-align: center;
    margin-bottom: 32px;
}

.audit-radar-wrap h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 16px;
}

.audit-radar-container {
    display: flex;
    justify-content: center;
}

.radar-chart {
    max-width: 400px;
    width: 100%;
    height: auto;
}

.radar-polygon {
    transition: all 0.8s ease;
}

.radar-chart.radar-animate .radar-polygon {
    animation: radar-bloom 1s ease forwards;
}

@keyframes radar-bloom {
    from {
        opacity: 0;
        transform: scale(0.3);
        transform-origin: center;
    }
    to {
        opacity: 1;
        transform: scale(1);
        transform-origin: center;
    }
}

/* Quick Win Opportunity */
.audit-sayshow-gap {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #f0f9ff;
    border: 2px solid var(--blue);
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.audit-sayshow-icon {
    width: 32px;
    height: 32px;
    background: var(--blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.audit-sayshow-gap h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.audit-sayshow-gap p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Board Brief branding */
.board-brief-dc-logo {
    max-height: 36px;
    margin: 0 auto 16px;
    display: block;
}

.board-brief-radar {
    text-align: center;
    margin: 16px 0 24px;
}

.board-brief-radar .radar-chart {
    max-width: 220px;
}

/* Brief hero: radar + score side by side */
.brief-hero {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-100);
}

.brief-hero-radar .radar-chart {
    max-width: 200px;
    width: 200px;
    height: auto;
}

.brief-hero-info {
    min-width: 0;
}

.brief-score-line {
    margin-bottom: 4px;
}

.brief-score-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}

.brief-score-of {
    font-size: 1rem;
    color: var(--gray-300);
    font-weight: 600;
}

.brief-stage-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.brief-stage-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.brief-benchmark {
    font-size: 0.8rem;
    color: var(--amber);
    font-weight: 600;
    margin: 6px 0 0;
}

/* Dimension grid: 2 columns */
.brief-dims-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 24px;
    margin: 8px 0 4px;
}

.brief-dim-item {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 0.85rem;
    padding: 4px 0;
    border-bottom: 1px solid var(--gray-100);
}

.brief-dim-name {
    font-weight: 600;
    color: var(--navy);
    min-width: 80px;
}

.brief-dim-score {
    font-weight: 700;
    color: var(--blue);
    white-space: nowrap;
}

.brief-dim-status {
    color: var(--text-light);
    font-size: 0.8rem;
}

.board-brief ol {
    padding-left: 20px;
    margin: 8px 0;
}

.board-brief ol li {
    margin-bottom: 6px;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Print stylesheet — 2 pages max, no orphans */
@media print {
    body > *:not(.audit-section) { display: none !important; }
    .audit-section { padding: 0; }
    #audit-entry, #audit-questions { display: none !important; }
    .audit-score-summary, .audit-dimensions, .audit-site-scan,
    .audit-gap-callout, .audit-actions, .audit-email-capture,
    .audit-final-cta, .audit-radar-wrap, .audit-sayshow-gap,
    .audit-competitor-landscape { display: none !important; }

    .board-brief {
        box-shadow: none;
        border: none;
        margin: 0;
        padding: 28px 40px;
        max-width: 100%;
        font-size: 10pt;
    }

    .board-brief-header {
        margin-bottom: 16px;
        padding-bottom: 14px;
    }
    .board-brief-dc-logo {
        max-height: 36px !important;
        margin-bottom: 8px !important;
    }
    .board-brief-school {
        font-size: 1.3rem;
        margin-bottom: 2px;
    }
    .board-brief-subtitle {
        font-size: 0.75rem;
    }
    .board-brief-date {
        font-size: 0.7rem;
    }

    /* Hero: radar + score side by side in print */
    .brief-hero {
        display: grid;
        grid-template-columns: 180px 1fr;
        gap: 20px;
        align-items: center;
        margin-bottom: 14px;
        padding-bottom: 12px;
    }
    .brief-hero-radar .radar-chart {
        max-width: 170px !important;
        width: 170px !important;
    }
    .brief-score-num { font-size: 1.8rem; }
    .brief-stage-name { font-size: 1.2rem; margin-bottom: 4px; }
    .brief-stage-desc { font-size: 9pt; line-height: 1.4; }
    .brief-benchmark { font-size: 8pt; }

    /* Compact dimension grid */
    .brief-dims-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2px 20px;
        margin: 4px 0 8px;
    }
    .brief-dim-item {
        padding: 2px 0;
        font-size: 9pt;
    }

    /* Section headings */
    .board-brief h4 {
        font-size: 10pt;
        margin: 14px 0 6px;
        padding-top: 10px;
        page-break-after: avoid;
    }
    .board-brief h4:first-of-type {
        margin-top: 0;
        padding-top: 0;
    }

    /* Body text */
    .board-brief p, .board-brief li {
        font-size: 9pt;
        line-height: 1.5;
    }
    .board-brief ul, .board-brief ol {
        margin: 4px 0;
    }
    .board-brief li {
        margin-bottom: 3px;
    }

    /* Page 2 content — force page break */
    .brief-page-two {
        page-break-before: always;
    }

    /* Prevent orphaned sections */
    .brief-page-two h4 {
        page-break-after: avoid;
    }
    .brief-page-two p, .brief-page-two ol, .brief-page-two ul {
        page-break-inside: avoid;
    }

    /* Footer */
    .board-brief-footer {
        page-break-inside: avoid;
        margin-top: 20px;
        padding-top: 12px;
    }
    .board-brief-footer img {
        max-height: 24px !important;
    }
}

/* --- FORMS --- */
.form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.guide .form input,
.guide .form textarea,
.cta .form input,
.cta .form textarea {
    padding: 14px 18px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    background: rgba(255,255,255,0.08);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.2s;
}

.guide .form input::placeholder,
.guide .form textarea::placeholder,
.cta .form input::placeholder,
.cta .form textarea::placeholder {
    color: rgba(255,255,255,0.4);
}

.guide .form input:focus,
.guide .form textarea:focus,
.cta .form input:focus,
.cta .form textarea:focus {
    outline: none;
    border-color: var(--blue);
    background: rgba(255,255,255,0.12);
}

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

.form .btn {
    width: 100%;
    text-align: center;
}

/* Success state */
.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--white);
}

.form-success p {
    color: rgba(255,255,255,0.7);
}

/* --- CTA (Contact) --- */
.cta {
    background: var(--navy);
    color: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 16px;
}

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

.cta-form-container {
    max-width: 480px;
    margin: 0 auto;
}

.cta-form .btn {
    margin-top: 4px;
}

.cta-note {
    margin-top: 24px;
    font-size: 0.9rem;
    color: var(--gray-300);
}

.cta-note a {
    color: var(--blue);
    text-decoration: underline;
}

.cta-note a:hover {
    color: var(--blue-light);
}

/* --- FOOTER --- */
.footer {
    background: #132640;
    color: rgba(255,255,255,0.5);
    padding: 50px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    display: inline-block;
}

.footer-logo img {
    height: 30px;
    width: auto;
}

.footer-brand p {
    font-size: 0.85rem;
    margin-top: 4px;
}

.footer-credentials {
    display: flex;
    gap: 24px;
    font-size: 0.8rem;
}

.footer-links {
    display: flex;
    gap: 24px;
    font-size: 0.85rem;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    font-size: 0.8rem;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr 1fr;
    }

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

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

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

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

    .photo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-pad: 52px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    /* Nav mobile */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-top: 1px solid var(--gray-100);
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Hero mobile — stack vertically */
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-text {
        padding: 40px 24px;
        order: 1;
    }

    .hero-text-inner {
        max-width: 100%;
        margin-left: 0;
        padding-left: 0;
    }

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

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

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

    .hero-ctas .btn {
        text-align: center;
    }

    .hero-image {
        order: 2;
        max-height: 350px;
    }

    /* Trust bar mobile */
    .trust-credentials {
        gap: 24px;
    }

    .trust-badge-org {
        font-size: 0.85rem;
    }

    /* Thinking mobile */
    .thinking-layout {
        grid-template-columns: 1fr;
    }

    .thinking-sidebar {
        position: static;
    }

    /* Services mobile */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* About mobile */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image img {
        aspect-ratio: 4/3;
        max-height: 350px;
    }

    .about-content h2 {
        font-size: 1.5rem;
    }

    /* Stats mobile */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

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

    /* Logo strip mobile */
    .logo-strip {
        gap: 20px;
    }

    .logo-strip img {
        height: 32px;
    }

    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .photo-grid img {
        height: 150px;
    }

    /* Plan mobile */
    .plan-grid {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .plan-connector {
        width: 2px;
        height: 40px;
        margin: 0;
    }

    .plan-step {
        padding: 20px;
    }

    /* Audit mobile */
    .audit-questions-layout {
        grid-template-columns: 1fr;
    }
    .audit-scan-sidebar {
        order: -1;
        max-height: 200px;
        position: static;
    }
    .audit-score-ring-wrap {
        flex-direction: column;
        gap: 24px;
    }
    .audit-hero-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .audit-hero-left {
        flex-direction: column;
        text-align: center;
    }
    .audit-hero-radar .radar-chart {
        max-width: 240px;
    }
    .audit-score-info {
        text-align: center;
    }
    .audit-score-stage-desc {
        max-width: 100%;
    }
    .brief-dims-grid {
        grid-template-columns: 1fr;
    }
    .brief-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .audit-dimension {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    .audit-dimension-score {
        text-align: left;
    }
    .audit-keyword-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .board-brief {
        padding: 32px 24px;
    }
    .audit-email-form {
        flex-direction: column;
    }
    .audit-actions {
        flex-direction: column;
        align-items: center;
    }
    .audit-sayshow-gap {
        flex-direction: column;
        text-align: center;
    }
    .audit-competitor-landscape {
        padding: 28px 20px;
    }
    .competitor-cta {
        padding: 18px 16px;
    }
    .radar-chart {
        max-width: 260px;
    }

    /* CTA mobile */
    .cta-content h2 {
        font-size: 2rem;
    }

    /* Footer mobile */
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-credentials {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .trust-credentials {
        gap: 16px;
    }

    .trust-badge {
        flex: 0 0 calc(50% - 8px);
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

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

    .stat-label {
        font-size: 0.78rem;
    }

    .thinking-content h2 {
        font-size: 1.8rem;
    }

    .credentials {
        flex-direction: column;
    }

    .clients-text-grid {
        gap: 6px 12px;
    }
}

/* --- ANIMATIONS --- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
