/* =============================================================
   Datavanced Landing — light editorial theme
   Cream + coral + indigo, serif display headlines (Fraunces)
   ============================================================= */

:root {
    --bg: #f5faf8;          /* soft mint off-white */
    --bg-alt: #e9f3ee;      /* deeper mint band */
    --surface: #ffffff;
    --surface-alt: #f0f7f3;
    --border: #d8e6df;
    --border-strong: #0F172A;
    --text: #0F172A;        /* slate-900 — matches logo "data" text */
    --text-muted: #475569;  /* slate-600 — matches logo tagline */
    --text-dim: #94a3b8;    /* slate-400 */

    --primary: #10B981;     /* emerald — logo green */
    --primary-dark: #059669;
    --indigo: #0EA5E9;      /* sky cyan — logo cyan */
    --indigo-light: #0284c7;
    --mustard: #FACC15;     /* warm yellow accent */
    --green: #10B981;

    --brand-grad: linear-gradient(135deg, #0EA5E9 0%, #10B981 100%);

    --google-blue: #4285F4;
    --google-red: #EA4335;
    --google-yellow: #FBBC05;
    --google-green: #34A853;

    --radius: 14px;
    --radius-lg: 22px;
    --shadow-sm: 0 2px 6px rgba(15,23,42,.05);
    --shadow-md: 0 12px 28px -16px rgba(15,23,42,.18);
    --shadow-lg: 0 30px 60px -28px rgba(15,23,42,.28);
    --shadow-paper: 0 1px 0 rgba(15,23,42,.04), 0 18px 30px -22px rgba(15,23,42,.25);
    --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ----------------- Typography ----------------- */
h1, h2, h3, h4 {
    font-family: 'Fraunces', 'Times New Roman', Georgia, serif;
    color: var(--text);
    letter-spacing: -0.015em;
    line-height: 1.1;
    margin: 0 0 .5rem;
    font-weight: 600;
}
h1 {
    font-size: clamp(2.6rem, 5.4vw, 4.25rem);
    font-weight: 600;
    font-variation-settings: "opsz" 144, "SOFT" 50;
}
h2 {
    font-size: clamp(2rem, 3.8vw, 3rem);
    font-weight: 600;
    font-variation-settings: "opsz" 96;
}
h3 { font-size: 1.35rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

h1 em, h2 em {
    font-style: italic;
    font-weight: 500;
    background: var(--brand-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

p { margin: 0 0 1rem; color: var(--text-muted); }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--indigo);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: .78rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.eyebrow-dot {
    display: inline-block;
    width: 8px; height: 8px;
    background: var(--primary);
    border-radius: 50%;
}
.eyebrow .google-g { font-size: 1rem; }

/* ----------------- Buttons ----------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: .95rem;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
    white-space: nowrap;
}
.btn-lg { padding: 15px 28px; font-size: 1rem; }
.btn-sm { padding: 9px 16px; font-size: .85rem; }
.btn-block { width: 100%; justify-content: center; }

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 8px 20px -8px rgba(255,90,60,.55);
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 14px 28px -8px rgba(255,90,60,.7);
}

.btn-outline {
    background: #fff;
    color: var(--text);
    border-color: var(--border-strong);
    box-shadow: 4px 4px 0 var(--text);
}
.btn-outline:hover {
    transform: translate(-2px,-2px);
    box-shadow: 6px 6px 0 var(--text);
}
.btn-outline .rating {
    display: inline-flex; gap: 2px; margin-left: 6px;
    color: var(--mustard); font-size: .78rem;
}

.btn-dark {
    background: var(--text);
    color: #fff;
    border-color: var(--text);
}
.btn-dark:hover {
    background: var(--indigo);
    border-color: var(--indigo);
    transform: translateY(-2px);
}

.google-cta {
    background: #fff !important;
    color: var(--text) !important;
    border: 1.5px solid var(--border-strong);
    box-shadow: 4px 4px 0 var(--text);
}
.google-cta:hover {
    transform: translate(-2px,-2px);
    box-shadow: 6px 6px 0 var(--text);
    background: var(--bg) !important;
}

.google-g {
    background: linear-gradient(135deg, #4285F4 0%, #34A853 33%, #FBBC05 66%, #EA4335 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.badge--coral {
    background: var(--primary);
    color: #fff;
}

/* ----------------- Header ----------------- */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(250,246,238,.85);
    backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid transparent;
    transition: border-color .2s, background .2s;
}
.site-header.scrolled {
    border-color: var(--border);
    background: rgba(250,246,238,.96);
}
.nav-container {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
}
.brand {
    display: inline-flex; align-items: center; gap: 12px;
    color: var(--text);
    transition: transform .15s;
}
.brand:hover { transform: translateY(-1px); }
.brand-logo {
    display: block;
    height: 40px;
    width: auto;
    max-width: 100%;
}
.brand-icon {
    display: block;
    width: 44px; height: 44px;
    border-radius: 12px;
    box-shadow: 3px 3px 0 rgba(255,255,255,.18);
}
.brand-text {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 1.3rem;
}
.brand--light { color: #fff; }
.brand--light .brand-text { color: #fff; }

.primary-nav {
    display: flex; align-items: center; gap: 4px;
}
.primary-nav a {
    color: var(--text-muted);
    padding: 8px 14px; border-radius: 999px;
    font-weight: 500; font-size: .92rem;
    transition: color .15s, background .15s;
}
.primary-nav a:hover { color: var(--text); background: rgba(26,29,46,.06); }
.primary-nav .nav-cta {
    background: var(--text);
    color: #fff !important;
    margin-left: 8px;
    padding: 9px 20px;
    box-shadow: 3px 3px 0 var(--primary);
    transition: transform .15s, box-shadow .15s;
}
.primary-nav .nav-cta:hover {
    transform: translate(-1px,-1px);
    box-shadow: 4px 4px 0 var(--primary);
    background: var(--text) !important;
}

.nav-toggle {
    display: none;
    background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span {
    display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0;
}

/* ----------------- Hero ----------------- */
.hero {
    position: relative;
    overflow: hidden;
    padding: clamp(60px, 8vw, 110px) 0 clamp(80px, 10vw, 140px);
}
.hero-deco { position: absolute; inset: 0; pointer-events: none; }
.sun {
    position: absolute;
    top: -120px; right: -80px;
    width: 380px; height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #a7f3d0 0%, #10B981 55%, transparent 75%);
    opacity: .55;
    filter: blur(6px);
}
.squiggle {
    position: absolute;
    bottom: 32px; left: 6%;
    width: 180px; height: 22px;
    color: var(--primary);
    opacity: .55;
}

.hero-grid {
    position: relative; z-index: 1;
    display: grid; gap: 60px;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
}

.lede {
    font-size: 1.18rem;
    color: var(--text-muted);
    margin: 22px 0 36px;
    max-width: 36rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-trust {
    margin-top: 40px;
    display: flex; align-items: center; flex-wrap: wrap; gap: 18px;
    color: var(--text-dim); font-size: .9rem;
}
.trust-label {
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: .75rem;
    font-weight: 600;
    color: var(--text-dim);
}
.trust-flags { display: inline-flex; gap: 18px; flex-wrap: wrap; }
.trust-flags span {
    color: var(--text);
    font-weight: 600;
    font-size: .92rem;
    position: relative;
    padding-left: 14px;
}
.trust-flags span::before {
    content: "";
    position: absolute; left: 0; top: 50%;
    transform: translateY(-50%);
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

/* ----------------- Hero visual: paper cards ----------------- */
.hero-visual { position: relative; min-height: 460px; }

.paper-card {
    position: absolute;
    background: #fff;
    border: 1.5px solid var(--text);
    border-radius: 14px;
    box-shadow: 6px 6px 0 var(--text);
    padding: 22px;
    transition: transform .25s ease;
}
.paper-card:hover { transform: translate(-2px,-2px); }

.paper-card--review {
    top: 0; right: 20px;
    width: 320px;
    transform: rotate(-2deg);
}
.paper-card--review:hover { transform: rotate(-2deg) translate(-2px,-2px); }
.paper-card--metrics {
    bottom: 60px; left: 0;
    width: 240px;
    transform: rotate(2deg);
    background: var(--mustard);
    border-color: var(--text);
}
.paper-card--metrics:hover { transform: rotate(2deg) translate(-2px,-2px); }
.paper-card--tech {
    bottom: 0; right: 30px;
    width: 280px;
    transform: rotate(-1deg);
    background: var(--indigo);
    color: #fff;
    border-color: var(--text);
}
.paper-card--tech:hover { transform: rotate(-1deg) translate(-2px,-2px); }
.paper-card--tech .card-tag { color: #fff; opacity: .85; }
.paper-card--tech .tech-bubble {
    background: #fff;
    color: var(--text);
    border-color: rgba(255,255,255,.2);
}

.paper-tape {
    position: absolute; top: -12px; left: 50%;
    transform: translateX(-50%) rotate(-3deg);
    width: 80px; height: 22px;
    background: rgba(16,185,129,.35);
    border: 1px dashed rgba(16,185,129,.7);
    border-radius: 2px;
}

.review-head {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 14px;
}
.review-head .google-g.big { font-size: 2rem; }
.review-head strong { display: block; font-family: 'Fraunces', serif; font-size: 1.25rem; color: var(--text); }
.review-head .t-stars { color: var(--mustard); font-size: .9rem; display: inline-flex; gap: 2px; }

.paper-card--review p {
    color: var(--text);
    font-size: .95rem;
    margin-bottom: 14px;
    font-family: 'Fraunces', serif;
    font-style: italic;
}

.review-author { display: flex; align-items: center; gap: 10px; padding-top: 12px; border-top: 1px solid var(--border); }
.review-author .t-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    color: #fff; display: inline-flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: .85rem;
}
.review-author strong { display: block; color: var(--text); font-size: .9rem; font-family: 'Inter', sans-serif; }
.review-author span { color: var(--text-dim); font-size: .8rem; }

.card-tag {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: .72rem; font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--text);
    margin-bottom: 14px;
    opacity: .7;
}
.metric { margin-bottom: 12px; }
.metric:last-child { margin-bottom: 0; }
.metric-value {
    display: block;
    font-family: 'Fraunces', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
}
.metric .plus { color: var(--primary); }
.metric-label {
    display: block;
    font-size: .85rem;
    color: var(--text);
    margin-top: 4px;
    opacity: .85;
}

.tech-row { display: flex; gap: 8px; flex-wrap: wrap; }
.tech-bubble {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--surface-alt);
    border: 1.5px solid var(--text);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    color: var(--text);
}

/* ----------------- Stats ----------------- */
.stats {
    background: var(--text);
    color: #fff;
}
.stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    padding: 56px 24px;
    gap: 24px;
    text-align: center;
}
.stat { display: flex; flex-direction: column; align-items: center; }
.stat-num {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}
.stat-suffix {
    font-family: 'Fraunces', serif;
    font-size: 1.8rem; color: var(--mustard); margin-left: 2px; font-weight: 700;
}
.stat-label {
    color: rgba(255,255,255,.7);
    font-size: .92rem;
    margin-top: 10px;
    letter-spacing: .04em;
}

/* ----------------- Sections ----------------- */
section.services { background: var(--bg); padding: clamp(80px, 10vw, 130px) 0; }
section.expertise { background: var(--bg-alt); padding: clamp(80px, 10vw, 130px) 0; }
section.ai-band { background: var(--bg); padding: clamp(80px, 10vw, 130px) 0; }
section.industries { background: var(--bg-alt); padding: clamp(80px, 10vw, 130px) 0; }
section.technologies { background: var(--bg); padding: clamp(80px, 10vw, 130px) 0; }
section.leadership { background: var(--bg-alt); padding: clamp(80px, 10vw, 130px) 0; }
section.reviews { background: var(--bg); padding: clamp(80px, 10vw, 130px) 0; }

.section-head { max-width: 760px; margin: 0 auto 64px; text-align: center; }
.section-sub { color: var(--text-muted); font-size: 1.08rem; }

/* services cards */
.cards-grid {
    display: grid; gap: 22px;
    grid-template-columns: repeat(3, 1fr);
}
.card {
    padding: 36px 32px;
    background: #fff;
    border: 1.5px solid var(--text);
    border-radius: 18px;
    box-shadow: 6px 6px 0 var(--text);
    transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover {
    transform: translate(-3px,-3px);
    box-shadow: 9px 9px 0 var(--text);
}
.card-icon {
    width: 56px; height: 56px; border-radius: 14px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: #fff;
    margin-bottom: 22px;
    border: 1.5px solid var(--text);
}
.icon--coral { background: var(--primary); }
.icon--indigo { background: var(--indigo); }
.icon--mustard { background: var(--mustard); color: var(--text); }

/* expertise grid */
.expertise-grid {
    display: grid; gap: 1px;
    grid-template-columns: repeat(3, 1fr);
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
}
.expertise-card {
    padding: 36px 32px;
    background: var(--bg-alt);
    transition: background .2s;
}
.expertise-card:hover { background: #fff; }
.expertise-card i {
    color: var(--primary);
    font-size: 1.6rem;
    margin-bottom: 18px;
    width: 52px; height: 52px;
    border-radius: 14px;
    display: inline-flex; align-items: center; justify-content: center;
    background: #fff;
    border: 1.5px solid var(--text);
}
.expertise-card p { font-size: .95rem; }

/* industries */
.industries-grid {
    display: grid; gap: 22px;
    grid-template-columns: repeat(4, 1fr);
}
.industry {
    padding: 32px 24px;
    background: #fff;
    border: 1.5px solid var(--text);
    border-radius: 18px;
    text-align: center;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 5px 5px 0 var(--text);
}
.industry:hover { transform: translate(-3px,-3px); box-shadow: 8px 8px 0 var(--text); }
.industry i {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 16px;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--bg);
    border: 1.5px solid var(--text);
    display: inline-flex; align-items: center; justify-content: center;
}
.industry p { font-size: .92rem; }

/* technology chips */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 12px;
}
.tech-chip {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 18px;
    background: #fff;
    border: 1.5px solid var(--text);
    border-radius: 999px;
    color: var(--text);
    font-weight: 500; font-size: .92rem;
    transition: transform .15s, background .15s, color .15s;
}
.tech-chip:hover {
    transform: translateY(-2px);
    background: var(--text);
    color: #fff;
}
.tech-chip:hover i { color: var(--primary); }
.tech-chip i { font-size: 1.1rem; color: var(--primary); width: 22px; text-align: center; transition: color .15s; }

/* ----------------- AI band ----------------- */
.ai-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 60px;
    align-items: center;
}
.ai-copy .eyebrow {
    background: var(--text);
    color: var(--mustard);
    padding: 8px 14px;
    border-radius: 999px;
}
.ai-copy .eyebrow i { color: var(--mustard); }
.ai-copy h2 { margin-top: 14px; }
.ai-copy h2 em { color: var(--indigo-light); }

.ai-bullets {
    list-style: none; padding: 0;
    margin: 32px 0 32px;
    display: grid; gap: 18px;
}
.ai-bullets li {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 16px;
    align-items: start;
}
.ai-bullets li > i {
    width: 44px; height: 44px;
    border-radius: 14px;
    background: var(--bg-alt);
    color: var(--primary);
    border: 1.5px solid var(--text);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.05rem;
}
.ai-bullets li strong {
    display: block;
    color: var(--text);
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 2px;
}
.ai-bullets li span {
    color: var(--text-muted);
    font-size: .95rem;
    line-height: 1.5;
}

.ai-visual {
    position: relative;
    min-height: 460px;
}
.ai-chat-card {
    position: relative;
    background: var(--text);
    color: #fff;
    border: 1.5px solid var(--text);
    border-radius: 22px;
    box-shadow: 8px 8px 0 var(--primary);
    padding: 22px;
    max-width: 440px;
    margin-left: auto;
}
.ai-chat-head {
    display: flex; align-items: center; gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    margin-bottom: 18px;
}
.ai-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--mustard));
    color: var(--text);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    border: 1.5px solid #fff;
}
.ai-chat-head strong { display: block; color: #fff; font-family: 'Inter', sans-serif; }
.ai-status {
    display: inline-flex; align-items: center; gap: 6px;
    color: rgba(255,255,255,.65);
    font-size: .82rem;
}
.status-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 3px rgba(47,158,110,.25);
    animation: aiPulse 2s ease-in-out infinite;
}
@keyframes aiPulse {
    0%,100% { box-shadow: 0 0 0 3px rgba(47,158,110,.25); }
    50%     { box-shadow: 0 0 0 6px rgba(47,158,110,.05); }
}

.ai-msg {
    padding: 14px 16px;
    border-radius: 16px;
    margin-bottom: 12px;
    font-size: .95rem;
    line-height: 1.5;
    max-width: 90%;
}
.ai-msg--user {
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.92);
    border-bottom-right-radius: 4px;
    margin-left: auto;
}
.ai-msg--bot {
    background: linear-gradient(135deg, #0EA5E9, #10B981);
    color: #fff;
    border-bottom-left-radius: 4px;
}
.ai-msg--bot strong { color: #fff; }
.ai-msg--bot ol {
    margin: 8px 0;
    padding-left: 22px;
}
.ai-msg--bot li { margin: 4px 0; }
.ai-msg--bot em { font-style: normal; opacity: .8; font-size: .85em; }

.ai-typing {
    display: inline-flex; gap: 4px;
    padding: 12px 14px;
    background: rgba(255,255,255,.08);
    border-radius: 16px;
    border-bottom-left-radius: 4px;
}
.ai-typing span {
    width: 7px; height: 7px;
    background: rgba(255,255,255,.6);
    border-radius: 50%;
    animation: aiTyping 1.4s ease-in-out infinite;
}
.ai-typing span:nth-child(2) { animation-delay: .2s; }
.ai-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes aiTyping {
    0%,60%,100% { transform: translateY(0); opacity: .5; }
    30%         { transform: translateY(-4px); opacity: 1; }
}

.ai-chip {
    position: absolute;
    background: #fff;
    color: var(--text);
    border: 1.5px solid var(--text);
    border-radius: 999px;
    padding: 10px 16px;
    font-size: .85rem;
    font-weight: 600;
    box-shadow: 4px 4px 0 var(--text);
    display: inline-flex; align-items: center; gap: 8px;
}
.ai-chip i { color: var(--primary); }
.ai-chip--a {
    top: 10px; left: -10px;
    transform: rotate(-3deg);
    background: var(--mustard);
}
.ai-chip--b {
    bottom: 30px; left: 20px;
    transform: rotate(2deg);
}

/* ----------------- Leadership: featured CEO + team leaders ----------------- */
.ceo-card {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    padding: 48px;
    background: #fff;
    border: 1.5px solid var(--text);
    border-radius: 28px;
    box-shadow: 8px 8px 0 var(--text);
    margin-bottom: 80px;
    overflow: hidden;
    align-items: center;
}
.ceo-deco {
    position: absolute;
    top: -60px; right: -60px;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: var(--primary);
    opacity: .12;
}
.ceo-avatar {
    width: 160px; height: 160px;
    border-radius: 28px;
    background: linear-gradient(135deg, #0EA5E9, #10B981);
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 3.2rem;
    border: 1.5px solid var(--text);
    box-shadow: 5px 5px 0 var(--text);
    flex-shrink: 0;
}
.ceo-content { position: relative; z-index: 1; }
.ceo-content h3 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 3.4vw, 2.6rem);
    margin: 14px 0 8px;
}
.ceo-location {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--indigo);
    font-weight: 600;
    font-size: .92rem;
    margin-bottom: 16px;
}
.ceo-location i { color: var(--primary); }
.ceo-quote {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--text);
    line-height: 1.5;
    margin-bottom: 22px;
    max-width: 56ch;
}

.team-leaders-head {
    text-align: center;
    margin-bottom: 36px;
}
.team-leaders-head h3 {
    font-size: 1.6rem;
    color: var(--text);
    margin-bottom: 6px;
}
.team-leaders-head p {
    color: var(--text-muted);
    font-size: 1rem;
    margin: 0;
}

.leaders-grid {
    display: grid; gap: 22px;
    grid-template-columns: repeat(3, 1fr);
}
.leader {
    padding: 32px 28px;
    background: #fff;
    border: 1.5px solid var(--text);
    border-radius: 18px;
    text-align: center;
    box-shadow: 5px 5px 0 var(--text);
    transition: transform .2s, box-shadow .2s;
}
.leader:hover { transform: translate(-3px,-3px); box-shadow: 8px 8px 0 var(--text); }
.leader-avatar {
    width: 72px; height: 72px; border-radius: 50%;
    margin: 0 auto 18px;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-size: 1.2rem;
    border: 1.5px solid var(--text);
    box-shadow: 3px 3px 0 var(--text);
    font-family: 'Fraunces', serif;
}
.leader h3 { margin-bottom: 6px; }
.leader-role {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--indigo);
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 14px;
}
.leader-role i { color: var(--primary); }
.leader p {
    font-size: .92rem;
    font-family: 'Fraunces', serif;
    font-style: italic;
    color: var(--text);
}

/* ----------------- Reviews ----------------- */
.reviews-head {
    display: grid; gap: 24px;
    grid-template-columns: 1fr auto;
    align-items: end;
    margin-bottom: 48px;
}
.testimonials-grid {
    display: grid; gap: 22px;
    grid-template-columns: repeat(3, 1fr);
}
.testimonial {
    padding: 28px;
    background: #fff;
    border: 1.5px solid var(--text);
    border-radius: 18px;
    display: flex; flex-direction: column; gap: 16px;
    box-shadow: 5px 5px 0 var(--text);
    transition: transform .2s, box-shadow .2s;
}
.testimonial:hover { transform: translate(-3px,-3px); box-shadow: 8px 8px 0 var(--text); }
.t-stars { color: var(--mustard); display: flex; gap: 3px; }
.testimonial p {
    color: var(--text);
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.5;
    flex: 1;
}
.t-author { display: flex; align-items: center; gap: 12px; padding-top: 12px; border-top: 1px solid var(--border); }
.t-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    color: #fff; display: inline-flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: .9rem;
    border: 1.5px solid var(--text);
}
.t-author strong { display: block; color: var(--text); font-size: .95rem; font-family: 'Inter', sans-serif; }
.t-author span { color: var(--text-dim); font-size: .82rem; }

.review-cta-card {
    background: var(--primary);
    color: #fff;
    text-align: center; align-items: center; justify-content: center;
}
.review-cta-card h3 { color: #fff; }
.review-cta-card p { color: rgba(255,255,255,.92); font-style: normal; font-family: 'Inter', sans-serif; font-size: .95rem; }
.review-cta-card .google-g.big {
    font-size: 2.4rem;
    background: #fff;
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
}
.review-cta-card .btn-primary {
    background: var(--text);
    color: #fff;
    box-shadow: 0 6px 16px -6px rgba(0,0,0,.4);
}
.review-cta-card .btn-primary:hover { background: var(--indigo); }

/* ----------------- CTA Band / Contact ----------------- */
.cta-band {
    padding: clamp(80px, 10vw, 130px) 0;
    background: var(--text);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: "";
    position: absolute;
    top: -100px; left: -100px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: var(--primary);
    opacity: .12;
}
.cta-band::after {
    content: "";
    position: absolute;
    bottom: -120px; right: -80px;
    width: 360px; height: 360px;
    border-radius: 50%;
    background: var(--indigo);
    opacity: .25;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band h2 em { color: var(--mustard); }
.cta-band .eyebrow { color: var(--mustard); }
.cta-band .eyebrow-dot { background: var(--primary); }
.cta-band .section-sub { color: rgba(255,255,255,.7); }

.cta-grid {
    display: grid; gap: 60px;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}
.cta-bullets { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 14px; }
.cta-bullets li {
    display: flex; align-items: center; gap: 14px;
    color: rgba(255,255,255,.92);
    font-size: 1rem;
}
.cta-bullets i {
    color: var(--text);
    width: 26px; height: 26px;
    background: var(--mustard);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: .75rem;
    flex-shrink: 0;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 36px 0 0;
    display: grid;
    gap: 18px;
}
.contact-info li {
    display: flex;
    align-items: center;
    gap: 16px;
}
.contact-info .contact-icon {
    width: 46px; height: 46px;
    border-radius: 14px;
    background: var(--mustard);
    color: var(--text);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.05rem;
    border: 1.5px solid #fff;
    flex-shrink: 0;
}
.contact-info .contact-label {
    display: block;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--mustard);
    margin-bottom: 2px;
}
.contact-info a {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    transition: color .15s;
}
.contact-info a:hover { color: var(--mustard); }

.footer-contact {
    list-style: none; padding: 0; margin: 0;
    display: grid; gap: 12px;
}
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255,255,255,.65);
    line-height: 1.4;
}
.footer-contact i {
    color: var(--primary);
    margin-top: 4px;
    font-size: .9rem;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}
.footer-contact a {
    color: rgba(255,255,255,.85);
    transition: color .15s;
}
.footer-contact a:hover { color: var(--mustard); }

.contact-card {
    background: #fff;
    color: var(--text);
    border: 1.5px solid var(--text);
    border-radius: 22px;
    padding: 36px;
    box-shadow: 8px 8px 0 var(--primary);
}
.contact-card h3 { margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-card label {
    display: block;
    color: var(--text-muted);
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 14px;
}
.contact-card input,
.contact-card textarea {
    margin-top: 6px;
    width: 100%;
    background: var(--surface-alt);
    border: 1.5px solid var(--border);
    color: var(--text);
    border-radius: 10px;
    padding: 12px 14px;
    font: inherit;
    transition: border-color .15s, box-shadow .15s, background .15s;
}
.contact-card input::placeholder,
.contact-card textarea::placeholder { color: var(--text-dim); }
.contact-card input:focus,
.contact-card textarea:focus {
    outline: none;
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255,90,60,.18);
}
.contact-card textarea { resize: vertical; min-height: 110px; }
.form-foot { color: var(--text-dim); font-size: .85rem; margin-top: 18px; text-align: center; }
.form-foot a { color: var(--text); font-weight: 700; }

/* ----------------- Footer ----------------- */
.site-footer {
    background: var(--text);
    color: rgba(255,255,255,.65);
    padding: 64px 0 24px;
}
.footer-grid {
    display: grid; gap: 40px;
    grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
    margin-bottom: 40px;
}
.site-footer h4 { color: #fff; margin-bottom: 14px; font-family: 'Inter', sans-serif; font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: .14em; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.site-footer ul a { color: rgba(255,255,255,.65); transition: color .15s; }
.site-footer ul a:hover { color: var(--mustard); }
.footer-tagline { color: rgba(255,255,255,.6); margin-top: 14px; max-width: 280px; }
.footer-tag {
    color: rgba(255,255,255,.45);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .28em;
    margin-top: 10px;
}
.footer-bottom {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.55); font-size: .9rem;
}
.footer-social { display: inline-flex; gap: 10px; }
.footer-social a {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    display: inline-flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.7);
    transition: color .15s, border-color .15s, background .15s, transform .15s;
}
.footer-social a:hover {
    color: var(--text);
    background: var(--mustard);
    border-color: var(--mustard);
    transform: translateY(-2px);
}

/* ----------------- Reveal animation ----------------- */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ----------------- Responsive ----------------- */
@media (max-width: 980px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-visual { order: -1; min-height: 380px; max-width: 480px; margin: 0 auto; }
    .ai-grid { grid-template-columns: 1fr; gap: 50px; }
    .ai-visual { min-height: auto; }
    .ai-chat-card { margin: 0 auto; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); padding: 40px 24px; gap: 28px; }
    .cards-grid { grid-template-columns: 1fr; }
    .expertise-grid { grid-template-columns: repeat(2, 1fr); }
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
    .leaders-grid { grid-template-columns: 1fr; gap: 22px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .reviews-head { grid-template-columns: 1fr; }
    .cta-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }

    .ceo-card { grid-template-columns: 1fr; gap: 28px; padding: 36px; text-align: center; }
    .ceo-avatar { margin: 0 auto; width: 130px; height: 130px; font-size: 2.6rem; }
    .ceo-quote { margin-left: auto; margin-right: auto; }
}

@media (max-width: 720px) {
    .brand-logo { height: 32px; }

    .primary-nav {
        position: absolute; top: 72px; left: 0; right: 0;
        flex-direction: column; align-items: stretch;
        background: var(--bg);
        border-bottom: 1px solid var(--border);
        padding: 14px 18px;
        gap: 4px;
        transform: translateY(-10px);
        opacity: 0; pointer-events: none;
        transition: opacity .2s, transform .2s;
    }
    .primary-nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
    .primary-nav a { width: 100%; padding: 12px 14px; }
    .primary-nav .nav-cta { margin-left: 0; text-align: center; justify-content: center; }
    .nav-toggle { display: block; }

    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 18px; padding: 32px 14px; }
    .expertise-grid, .industries-grid { grid-template-columns: 1fr; }
    .ceo-card { padding: 28px 22px; }
    .ceo-avatar { width: 110px; height: 110px; font-size: 2.2rem; }

    .paper-card--review { right: 0; width: 280px; }
    .paper-card--metrics { left: 0; width: 200px; bottom: 80px; }
    .paper-card--tech { right: 10px; width: 240px; }
}
