*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --teal: #049DBF; --teal-light: #05b8e0; --teal-dark: #037a96;
  --navy: #0E1626; --navy-mid: #162035; --navy-light: #1e2d4a;
  --ice: #F0F9FC; --white-smoke: #F2F2F2; --white: #ffffff;
  --text-muted: #6b7a99; --text-body: #2d3a52;
  --border: rgba(4,157,191,0.15); --border-light: rgba(14,22,38,0.08);
  --ff-display: 'Plus Jakarta Sans', sans-serif; --ff-body: 'Inter', sans-serif;
  --max-w: 1200px; --radius-sm: 6px; --radius-md: 12px; --radius-lg: 20px;
}
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
body { font-family: var(--ff-body); font-size: 16px; line-height: 1.6; color: var(--text-body); background: var(--white); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
section[id] { scroll-margin-top: 80px; }

/* ===== NAV ===== */
nav { position: sticky; top: 0; z-index: 100; background: rgba(14,22,38,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(4,157,191,0.2); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; max-width: var(--max-w); margin: 0 auto; padding: 0 32px; position: relative; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-img { width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0; }
.logo-text { font-family: var(--ff-display); font-size: 19px; font-weight: 800; color: var(--white); letter-spacing: -0.5px; white-space: nowrap; }
.logo-text span { color: var(--teal); }

.nav-links { list-style: none; display: flex; align-items: center; gap: 32px; }
.nav-links a { color: rgba(255,255,255,0.72); text-decoration: none; font-size: 14px; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--teal); }
.nav-cta { background: var(--teal); color: var(--white) !important; padding: 8px 20px; border-radius: var(--radius-sm); font-weight: 600 !important; font-size: 14px !important; text-decoration: none; transition: background .2s; }
.nav-cta:hover { background: var(--teal-light) !important; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: var(--white); z-index: 220; position: relative; }
.nav-toggle svg { width: 24px; height: 24px; display: block; }
.nav-overlay { display: none; }
.drawer-close { display: none; }

@media (max-width: 880px) {
  .nav-toggle { display: block; }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(320px, 82vw);
    background: var(--navy);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 88px 28px 32px;
    margin: 0;
    transform: translateX(100%);
    transition: transform .32s cubic-bezier(.22,1,.36,1);
    overflow-y: auto;
    z-index: 210;
    box-shadow: -8px 0 40px rgba(0,0,0,0.35);
    border-left: 1px solid rgba(4,157,191,0.15);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li { width: 100%; flex: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-links li:last-child { border-bottom: none; margin-top: 16px; }
  .nav-links a { display: block; width: 100%; padding: 16px 4px; font-size: 16px; }
  .nav-links .nav-cta { text-align: center; padding: 14px; margin-top: 4px; }

  .drawer-close {
    display: flex; align-items: center; justify-content: center;
    position: absolute; top: 20px; right: 24px;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.8);
    cursor: pointer;
  }
  .drawer-close svg { width: 16px; height: 16px; }

  .nav-overlay {
    display: block; position: fixed; inset: 0;
    background: rgba(0,0,0,0); pointer-events: none;
    z-index: 200; transition: background .32s ease;
  }
  .nav-overlay.open { background: rgba(0,0,0,0.45); pointer-events: auto; }
}

/* ===== HERO ===== */
.hero { background: var(--navy); padding: 100px 0 80px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(4,157,191,0.12) 0%, transparent 70%); pointer-events: none; }
.hero::after { content: ''; position: absolute; bottom: -100px; left: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(4,157,191,0.06) 0%, transparent 70%); pointer-events: none; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(4,157,191,0.12); border: 1px solid rgba(4,157,191,0.3); color: var(--teal); padding: 6px 14px; border-radius: 100px; font-size: 12px; font-weight: 600; letter-spacing: .8px; text-transform: uppercase; margin-bottom: 24px; }
.pulse-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(.8); } }
.hero h1 { font-family: var(--ff-display); font-size: clamp(32px,5vw,52px); font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; color: var(--white); margin-bottom: 20px; }
.hero h1 .accent { color: var(--teal); }
.hero-sub { font-size: 18px; line-height: 1.65; color: rgba(255,255,255,0.62); margin-bottom: 36px; max-width: 480px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.btn-primary { background: var(--teal); color: var(--white); padding: 14px 28px; border-radius: var(--radius-sm); font-family: var(--ff-body); font-size: 15px; font-weight: 600; text-decoration: none; border: none; cursor: pointer; transition: background .2s, transform .1s; display: inline-block; }
.btn-primary:hover { background: var(--teal-light); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: rgba(255,255,255,0.82); padding: 14px 28px; border-radius: var(--radius-sm); font-family: var(--ff-body); font-size: 15px; font-weight: 500; text-decoration: none; border: 1px solid rgba(255,255,255,0.2); cursor: pointer; transition: border-color .2s, color .2s; display: inline-block; }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.5); font-size: 13px; }
.trust-icon { width: 18px; height: 18px; background: rgba(4,157,191,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--teal); font-size: 10px; flex-shrink: 0; }
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; min-width: 0; }
.dashboard-card { background: var(--navy-mid); border: 1px solid rgba(4,157,191,0.2); border-radius: var(--radius-lg); padding: 24px; width: 100%; max-width: 420px; }
.dash-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.dash-title { font-family: var(--ff-display); font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.5); letter-spacing: .5px; text-transform: uppercase; }
.dash-badge { background: rgba(4,157,191,0.15); color: var(--teal); padding: 3px 10px; border-radius: 100px; font-size: 11px; font-weight: 600; }
.metric-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.metric-box { background: var(--navy-light); border-radius: var(--radius-md); padding: 16px; border: 1px solid rgba(255,255,255,0.04); min-width: 0; }
.metric-label { font-size: 11px; color: rgba(255,255,255,0.38); letter-spacing: .5px; margin-bottom: 6px; text-transform: uppercase; }
.metric-val { font-family: var(--ff-display); font-size: 26px; font-weight: 700; color: var(--white); line-height: 1; }
.metric-delta { font-size: 11px; color: #34d399; margin-top: 4px; }
.ai-pipeline { background: var(--navy-light); border-radius: var(--radius-md); padding: 16px; border: 1px solid rgba(4,157,191,0.1); margin-bottom: 16px; }
.pipeline-label { font-size: 11px; color: rgba(255,255,255,0.38); letter-spacing: .5px; margin-bottom: 12px; text-transform: uppercase; }
.pipeline-steps { display: flex; align-items: center; gap: 6px; }
.pip-step { flex: 1; height: 6px; border-radius: 3px; background: rgba(255,255,255,0.06); position: relative; overflow: hidden; }
.pip-fill { height: 100%; border-radius: 3px; background: var(--teal); animation: fillBar 3s ease-in-out infinite alternate; }
@keyframes fillBar { from { width: 30%; } to { width: 95%; } }
.pip-step:nth-child(1) .pip-fill { background: #34d399; animation-delay: 0s; width: 100%; }
.pip-step:nth-child(2) .pip-fill { background: var(--teal); animation-delay: .3s; }
.pip-step:nth-child(3) .pip-fill { background: var(--teal); animation-delay: .6s; }
.pip-step:nth-child(4) .pip-fill { background: rgba(255,255,255,0.3); width: 40%; animation: none; }
.activity-row { display: flex; gap: 8px; align-items: center; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.activity-row:last-child { border-bottom: none; padding-bottom: 0; }
.act-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.act-text { font-size: 13px; color: rgba(255,255,255,0.6); flex: 1; }
.act-time { font-size: 11px; color: rgba(255,255,255,0.25); }

/* ===== CLIENTS ===== */
.clients { background: var(--white-smoke); padding: 32px 0; border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.clients-label { font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); text-align: center; margin-bottom: 24px; }
.client-logos { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.client-logo { font-family: var(--ff-display); font-size: 15px; font-weight: 700; color: #b0bac8; letter-spacing: -.3px; opacity: .7; }

/* ===== SERVICES ===== */
.services { padding: 96px 0; background: var(--white); }
.section-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--teal); margin-bottom: 12px; }
.section-title { font-family: var(--ff-display); font-size: clamp(26px,4vw,40px); font-weight: 800; letter-spacing: -1px; line-height: 1.15; color: var(--navy); margin-bottom: 16px; }
.section-sub { font-size: 17px; color: var(--text-muted); max-width: 560px; line-height: 1.65; margin-bottom: 56px; }
.services-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 2px; background: var(--border-light); border-radius: var(--radius-lg); overflow: hidden; }
.service-card { background: var(--white); padding: 36px 32px; transition: background .2s; cursor: pointer; min-width: 0; }
.service-card:hover { background: var(--ice); }
.svc-icon { width: 48px; height: 48px; border-radius: var(--radius-md); background: var(--ice); border: 1px solid rgba(4,157,191,0.2); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 20px; }
.svc-title { font-family: var(--ff-display); font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.svc-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.svc-link { font-size: 13px; font-weight: 600; color: var(--teal); text-decoration: none; display: inline-flex; align-items: center; gap: 4px; transition: gap .15s; }
.svc-link:hover { gap: 8px; }

/* ===== STATS ===== */
.stats { background: var(--navy); padding: 72px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 2px; background: rgba(255,255,255,0.06); border-radius: var(--radius-lg); overflow: hidden; }
.stat-box { background: var(--navy-mid); padding: 40px 24px; text-align: center; min-width: 0; }
.stat-number { font-family: var(--ff-display); font-size: clamp(28px,4vw,48px); font-weight: 800; color: var(--white); letter-spacing: -2px; line-height: 1; margin-bottom: 8px; }
.stat-number span { color: var(--teal); }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.45); }

/* ===== INDUSTRIES ===== */
.industries { padding: 96px 0; background: var(--white-smoke); }
.industries-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 16px; margin-top: 56px; }
.industry-card { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: 28px 24px; transition: border-color .2s, box-shadow .2s; cursor: pointer; min-width: 0; }
.industry-card:hover { border-color: var(--teal); box-shadow: 0 0 0 1px rgba(4,157,191,0.15), 0 8px 24px rgba(4,157,191,0.08); }
.ind-icon { font-size: 28px; margin-bottom: 12px; }
.ind-name { font-family: var(--ff-display); font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.ind-desc { font-size: 13px; color: var(--text-muted); line-height: 1.55; }

/* ===== WHY US ===== */
.why { padding: 96px 0; background: var(--white); }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-visual { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); border-radius: var(--radius-lg); padding: 40px; border: 1px solid rgba(4,157,191,0.15); min-width: 0; }
.why-metric { display: flex; align-items: center; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.why-metric:last-child { border-bottom: none; padding-bottom: 0; }
.metric-icon-box { width: 40px; height: 40px; border-radius: 10px; background: rgba(4,157,191,0.15); display: flex; align-items: center; justify-content: center; color: var(--teal); font-size: 18px; flex-shrink: 0; }
.metric-info { flex: 1; min-width: 0; }
.metric-name { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.metric-bar-wrap { height: 4px; background: rgba(255,255,255,0.06); border-radius: 2px; overflow: hidden; }
.metric-bar { height: 100%; background: var(--teal); border-radius: 2px; }
.metric-pct { font-family: var(--ff-display); font-size: 15px; font-weight: 700; color: var(--white); min-width: 36px; text-align: right; }
.why-points { list-style: none; }
.why-points li { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.why-point-icon { width: 36px; height: 36px; border-radius: 10px; background: var(--ice); border: 1px solid rgba(4,157,191,0.2); display: flex; align-items: center; justify-content: center; color: var(--teal); font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.why-point-text h4 { font-family: var(--ff-display); font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.why-point-text p { font-size: 14px; color: var(--text-muted); line-height: 1.55; }

/* ===== CASE STUDIES ===== */
.cases { padding: 96px 0; background: var(--ice); }
.cases-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 24px; margin-top: 56px; }
.case-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-light); min-width: 0; }
.case-header { background: var(--navy); padding: 32px; }
.case-tag { background: rgba(4,157,191,0.2); color: var(--teal); font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 100px; letter-spacing: .5px; text-transform: uppercase; display: inline-block; margin-bottom: 12px; }
.case-company { font-family: var(--ff-display); font-size: 22px; font-weight: 800; color: var(--white); }
.case-body { padding: 28px 32px; }
.case-challenge { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 24px; }
.case-results { display: flex; gap: 20px; flex-wrap: wrap; }
.case-result { flex: 1; min-width: 80px; }
.result-val { font-family: var(--ff-display); font-size: clamp(20px,3vw,28px); font-weight: 800; color: var(--teal); letter-spacing: -1px; }
.result-label { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ===== TECH STACK ===== */
.techstack { padding: 72px 0; background: var(--white); }
.tech-grid { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 40px; justify-content: center; }
.tech-pill { background: var(--white-smoke); border: 1px solid var(--border-light); border-radius: 100px; padding: 8px 20px; font-size: 13px; font-weight: 600; color: var(--text-body); display: flex; align-items: center; gap: 8px; transition: border-color .2s, color .2s; }
.tech-pill:hover { border-color: var(--teal); color: var(--teal); }
.tech-pill-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 96px 0; background: var(--navy); }
.testimonials .section-title { color: var(--white); }
.testimonials .section-sub { color: rgba(255,255,255,0.45); }
.testi-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 20px; margin-top: 56px; }
.testi-card { background: var(--navy-mid); border: 1px solid rgba(4,157,191,0.12); border-radius: var(--radius-lg); padding: 32px; min-width: 0; }
.testi-quote { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: rgba(4,157,191,0.2); display: flex; align-items: center; justify-content: center; font-family: var(--ff-display); font-weight: 700; font-size: 14px; color: var(--teal); flex-shrink: 0; }
.testi-name { font-family: var(--ff-display); font-weight: 700; font-size: 14px; color: var(--white); }
.testi-role { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 2px; }

/* ===== CTA ===== */
.cta-section { padding: 96px 0; background: var(--ice); }
.cta-box { background: var(--navy); border-radius: var(--radius-lg); padding: 72px 64px; display: grid; grid-template-columns: 1fr auto; gap: 64px; align-items: center; position: relative; overflow: hidden; }
.cta-box::before { content: ''; position: absolute; right: -80px; top: -80px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(4,157,191,0.15) 0%, transparent 70%); }
.cta-title { font-family: var(--ff-display); font-size: clamp(24px,4vw,36px); font-weight: 800; color: var(--white); letter-spacing: -1px; line-height: 1.15; margin-bottom: 12px; }
.cta-sub { font-size: 16px; color: rgba(255,255,255,0.5); line-height: 1.6; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; min-width: 220px; position: relative; z-index: 1; }
.btn-primary-lg { background: var(--teal); color: var(--white); padding: 16px 32px; border-radius: var(--radius-sm); font-family: var(--ff-display); font-size: 15px; font-weight: 700; text-decoration: none; text-align: center; border: none; cursor: pointer; transition: background .2s; white-space: nowrap; }
.btn-primary-lg:hover { background: var(--teal-light); }
.btn-outline-lg { background: transparent; color: rgba(255,255,255,0.7); padding: 16px 32px; border-radius: var(--radius-sm); font-family: var(--ff-display); font-size: 15px; font-weight: 600; text-decoration: none; text-align: center; border: 1px solid rgba(255,255,255,0.15); cursor: pointer; transition: border-color .2s, color .2s; white-space: nowrap; }
.btn-outline-lg:hover { border-color: var(--teal); color: var(--teal); }

/* ===== CONTACT FORM ===== */
.contact { padding: 96px 0; background: var(--white); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; }
.contact-info { padding-top: 8px; }
.contact-info .section-title { margin-bottom: 16px; }
.contact-info .section-sub { margin-bottom: 40px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.contact-detail-icon { width: 44px; height: 44px; border-radius: var(--radius-md); background: var(--ice); border: 1px solid rgba(4,157,191,0.2); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-detail-text strong { display: block; font-family: var(--ff-display); font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.contact-detail-text span { font-size: 14px; color: var(--text-muted); }
.contact-response-note { display: flex; align-items: center; gap: 10px; background: var(--ice); border: 1px solid rgba(4,157,191,0.2); border-radius: var(--radius-md); padding: 14px 18px; margin-top: 36px; }
.response-dot { width: 8px; height: 8px; border-radius: 50%; background: #34d399; flex-shrink: 0; animation: pulse 2s infinite; }
.response-note-text { font-size: 13px; color: var(--text-muted); }
.response-note-text strong { color: var(--navy); font-weight: 600; }
.contact-form-wrap { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 48px; box-shadow: 0 4px 32px rgba(14,22,38,0.06); min-width: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 24px; }
.form-group:last-of-type { margin-bottom: 0; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 8px; letter-spacing: .1px; }
.form-label .req { color: var(--teal); margin-left: 2px; }
.form-input, .form-select, .form-textarea { width: 100%; background: var(--white-smoke); border: 1px solid rgba(14,22,38,0.1); border-radius: var(--radius-sm); padding: 12px 16px; font-family: var(--ff-body); font-size: 14px; color: var(--navy); outline: none; transition: border-color .2s, background .2s, box-shadow .2s; appearance: none; }
.form-input::placeholder, .form-textarea::placeholder { color: #a0aec0; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--teal); background: var(--white); box-shadow: 0 0 0 3px rgba(4,157,191,0.1); }
.form-input.error, .form-select.error, .form-textarea.error { border-color: #e53e3e; box-shadow: 0 0 0 3px rgba(229,62,62,0.1); }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a0aec0' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; cursor: pointer; }
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.form-error-msg { font-size: 12px; color: #e53e3e; margin-top: 6px; display: none; }
.form-error-msg.visible { display: block; }
.form-checkbox-wrap { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 28px; }
.form-checkbox { width: 18px; height: 18px; border: 1.5px solid rgba(14,22,38,0.2); border-radius: 4px; cursor: pointer; flex-shrink: 0; margin-top: 1px; accent-color: var(--teal); }
.form-checkbox-label { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.form-checkbox-label a { color: var(--teal); text-decoration: none; }
.form-submit { width: 100%; background: var(--teal); color: var(--white); border: none; border-radius: var(--radius-sm); padding: 16px 32px; font-family: var(--ff-display); font-size: 16px; font-weight: 700; cursor: pointer; transition: background .2s, transform .1s; letter-spacing: -.2px; }
.form-submit:hover { background: var(--teal-light); transform: translateY(-1px); }
.form-submit:active { transform: translateY(0); }
.form-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.form-success { display: none; text-align: center; padding: 48px 32px; }
.form-success.visible { display: block; }
.form-success-icon { width: 64px; height: 64px; border-radius: 50%; background: rgba(52,211,153,0.12); border: 1px solid rgba(52,211,153,0.3); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 28px; }
.form-success-title { font-family: var(--ff-display); font-size: 24px; font-weight: 800; color: var(--navy); margin-bottom: 10px; letter-spacing: -.5px; }
.form-success-sub { font-size: 15px; color: var(--text-muted); line-height: 1.6; }
.form-banner { display: none; align-items: center; gap: 10px; border-radius: var(--radius-md); padding: 14px 18px; margin-bottom: 24px; font-size: 14px; }
.form-banner.visible { display: flex; }
.form-banner.success { background: rgba(52,211,153,0.1); border: 1px solid rgba(52,211,153,0.3); color: #0f6e56; }
.form-banner.error { background: rgba(229,62,62,0.08); border: 1px solid rgba(229,62,62,0.25); color: #a32d2d; }

footer { background: #080f1a; padding: 64px 0 32px; border-top: 1px solid rgba(4,157,191,0.1); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo-img { width: 28px; height: 28px; border-radius: 7px; }
.footer-logo-text { font-family: var(--ff-display); font-size: 19px; font-weight: 800; color: var(--white); }
.footer-logo-text span { color: var(--teal); }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.35); line-height: 1.6; max-width: 280px; }
.footer-col-title { font-family: var(--ff-display); font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--teal); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.25); }
.footer-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.badge { border: 1px solid rgba(4,157,191,0.25); border-radius: 6px; padding: 4px 10px; font-size: 11px; font-weight: 600; color: var(--teal); letter-spacing: .3px; }

/* ============ RESPONSIVE BREAKPOINTS ============ */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .services-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .industries-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .testi-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .stats-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .cta-box { grid-template-columns: 1fr; text-align: center; padding: 56px 40px; }
  .cta-actions { align-items: center; margin: 0 auto; }
}

@media (max-width: 880px) {
  .hero { padding: 40px 0 56px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-sub { max-width: 100%; }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { padding: 32px 24px; }
  .cases-grid { grid-template-columns: 1fr; }
  .client-logos { gap: 28px; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .stats-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .testi-grid { grid-template-columns: 1fr; }
  .services, .industries, .why, .cases, .testimonials, .cta-section, .contact { padding: 64px 0; }
  .section-sub { margin-bottom: 36px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .hero-trust { gap: 14px; }
  .case-body { padding: 24px 20px; }
  .case-header { padding: 24px 20px; }
  .case-results { gap: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px) {
  .industries-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas a { text-align: center; }
}
