/* =========================================================
   CrownTec — clean, light, professional theme
   Single stylesheet, no build step required.
   Brand colours live in :root — change them in one place.
   ========================================================= */

:root {
  --navy:      #0f2747;   /* deep brand navy            */
  --navy-700:  #1a3a63;
  --blue:      #2563eb;   /* primary accent (buttons)   */
  --blue-600:  #1d4ed8;
  --blue-50:   #eff5ff;
  --cyan:      #0ea5e9;

  --ink:       #0f1b2d;   /* main text                  */
  --slate:     #475569;   /* secondary text             */
  --slate-300: #94a3b8;
  --line:      #e2e8f0;   /* borders                    */
  --bg:        #ffffff;
  --bg-alt:    #f6f9fc;   /* alternating section bg      */
  --bg-soft:   #f1f5fb;

  --ok:        #16a34a;
  --warn:      #f59e0b;
  --danger:    #ef4444;

  --radius:    14px;
  --radius-lg: 20px;
  --shadow:    0 1px 2px rgba(15,39,71,.06), 0 8px 24px rgba(15,39,71,.06);
  --shadow-lg: 0 12px 40px rgba(15,39,71,.12);
  --maxw:      1140px;
  --ease:      cubic-bezier(.4,0,.2,1);
}

/* ---------- reset / base ---------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--blue-600); text-decoration: none; }
a:hover { text-decoration: underline; }
h1,h2,h3 { line-height: 1.15; letter-spacing: -.02em; color: var(--ink); }
ul { list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.muted { color: var(--slate); }
.eyebrow {
  text-transform: uppercase; letter-spacing: .12em; font-size: .78rem;
  font-weight: 700; color: var(--blue-600); margin-bottom: 10px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-weight: 600; font-size: 1rem; line-height: 1;
  padding: 14px 24px; border-radius: 10px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .15s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  text-decoration: none; white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-sm { padding: 10px 18px; font-size: .92rem; }
.btn-block { width: 100%; }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 6px 18px rgba(37,99,235,.28); }
.btn-primary:hover { background: var(--blue-600); box-shadow: 0 10px 26px rgba(37,99,235,.36); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue-600); }
.btn-outline { background: #fff; color: var(--blue-600); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue-50); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; }
.brand:hover { text-decoration: none; }
.brand-mark { border-radius: 8px; }
.brand-name { font-size: 1.35rem; color: var(--navy); letter-spacing: -.03em; }
.brand-accent { color: var(--blue); }

.nav { display: flex; align-items: center; }
.nav-menu { display: flex; align-items: center; gap: 6px; }
.nav-menu a {
  color: var(--slate); font-weight: 500; padding: 9px 14px; border-radius: 8px;
  transition: color .15s, background .15s;
}
.nav-menu a:hover { color: var(--navy); background: var(--bg-soft); text-decoration: none; }
.nav-menu .btn-primary { color: #fff; }
.nav-menu .btn-primary:hover { color: #fff; background: var(--blue-600); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0;
  cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 24px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: .25s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  background:
    radial-gradient(1100px 480px at 78% -8%, rgba(37,99,235,.10), transparent 60%),
    radial-gradient(800px 400px at 5% 0%, rgba(14,165,233,.08), transparent 55%),
    var(--bg);
  padding: 76px 0 64px;
}
.hero-inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 54px; align-items: center; }
.hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); font-weight: 800; margin-bottom: 18px; }
.lead { font-size: 1.15rem; color: var(--slate); max-width: 56ch; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-trust { display: flex; gap: 26px; flex-wrap: wrap; color: var(--slate); font-size: .96rem; }
.hero-trust strong { color: var(--navy); }

/* hero "terminal" card */
.hero-card {
  background: var(--navy); color: #dce8fb; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden; font-size: .94rem;
  border: 1px solid rgba(255,255,255,.06);
}
.hc-row { display: flex; align-items: center; gap: 8px; }
.hc-head { padding: 14px 18px; background: rgba(255,255,255,.04); border-bottom: 1px solid rgba(255,255,255,.07); }
.dot { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.dot-r { background: #ff5f57; } .dot-y { background: #febc2e; } .dot-g { background: #28c840; }
.hc-title { margin-left: 8px; color: var(--slate-300); font-family: ui-monospace, 'Cascadia Code', monospace; font-size: .82rem; }
.hc-body { padding: 20px 22px; }
.hc-body p { margin-bottom: 12px; display: flex; align-items: flex-start; gap: 10px; }
.hc-ok { color: #4ade80; font-weight: 700; }
.hc-status { margin-top: 6px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.08); color: #86efac; font-weight: 600; }
.pulse { width: 9px; height: 9px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 0 rgba(74,222,128,.6); animation: pulse 2s infinite; margin-top: 6px; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(74,222,128,.55); }
  70% { box-shadow: 0 0 0 9px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}

/* ---------- trust bar ---------- */
.trustbar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-alt); }
.trustbar-inner { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; padding: 18px 22px; }
.trust-label { color: var(--slate); font-size: .88rem; font-weight: 500; }
.trust-logos { display: flex; gap: 30px; flex-wrap: wrap; }
.trust-logos li { font-weight: 800; color: var(--navy-700); letter-spacing: .02em; opacity: .7; }

/* ---------- why choose us ---------- */
.why {
  padding: 54px 0;
  background: linear-gradient(180deg, #fff 0%, var(--blue-50) 100%);
  border-bottom: 1px solid var(--line);
}
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.why-item { text-align: center; padding: 8px; }
.why-icon {
  font-size: 1.7rem; width: 64px; height: 64px; display: grid; place-items: center;
  margin: 0 auto 14px; background: #fff; border-radius: 50%;
  box-shadow: 0 6px 18px rgba(15,39,71,.10); border: 1px solid #e6effd;
}
.why-item h3 { font-size: 1.1rem; margin-bottom: 6px; color: var(--navy); }
.why-item p { color: var(--slate); font-size: .94rem; max-width: 24ch; margin: 0 auto; }

/* ---------- sections ---------- */
.section { padding: 78px 0; }
.section--alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 46px; }
.section-head h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); font-weight: 800; margin-bottom: 12px; }
.section-sub { color: var(--slate); font-size: 1.08rem; }

/* ---------- service cards ---------- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.service-card {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 30px 26px; box-shadow: var(--shadow);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: #cfe0fb; }
.service-card--featured { border-color: var(--blue); box-shadow: 0 16px 40px rgba(37,99,235,.16); }
.svc-badge {
  position: absolute; top: -12px; right: 22px; background: var(--blue); color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 20px; box-shadow: 0 6px 14px rgba(37,99,235,.3);
}
.svc-icon { font-size: 2rem; width: 58px; height: 58px; display: grid; place-items: center;
  background: var(--blue-50); border-radius: 14px; margin-bottom: 16px; }
.service-card h3 { font-size: 1.35rem; margin-bottom: 6px; }
.svc-tag { color: var(--slate); margin-bottom: 18px; font-size: .98rem; }

.ticklist li {
  position: relative; padding-left: 28px; margin-bottom: 10px; color: var(--ink); font-size: .97rem;
}
.ticklist li::before {
  content: "✓"; position: absolute; left: 0; top: 0; color: var(--blue);
  font-weight: 800; background: var(--blue-50); width: 20px; height: 20px;
  border-radius: 50%; display: grid; place-items: center; font-size: .72rem;
}
.ticklist--sm li { font-size: .92rem; margin-bottom: 8px; }

/* ---------- product cards ---------- */
.product-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 28px; box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.prod-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.prod-icon { font-size: 2rem; width: 56px; height: 56px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--blue-50), #e8f6ff); border-radius: 14px; }
.prod-pill { background: #dcfce7; color: #166534; font-weight: 700; font-size: .72rem;
  padding: 6px 12px; border-radius: 20px; text-transform: uppercase; letter-spacing: .05em; }
.prod-pill--alt { background: #ede9fe; color: #6d28d9; }
.product-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.product-card p { color: var(--slate); margin-bottom: 16px; }
.product-card .ticklist { margin-bottom: 22px; }
.product-card .btn { margin-top: auto; align-self: flex-start; }

/* ---------- featured work ---------- */
.work-filters {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px;
}
.filter-btn {
  font: inherit; font-weight: 600; font-size: .92rem; cursor: pointer;
  padding: 9px 18px; border-radius: 30px; border: 1.5px solid var(--line);
  background: #fff; color: var(--slate);
  transition: background .15s var(--ease), color .15s, border-color .15s, transform .12s;
}
.filter-btn:hover { border-color: var(--blue); color: var(--blue-600); transform: translateY(-1px); }
.filter-btn.is-active {
  background: var(--blue); color: #fff; border-color: var(--blue);
  box-shadow: 0 6px 16px rgba(37,99,235,.28);
}
.work-group[hidden] { display: none; }
.work-group + .work-group { margin-top: 46px; }
.work-group-title {
  font-size: 1.15rem; color: var(--navy); font-weight: 700; margin-bottom: 20px;
  padding-bottom: 12px; border-bottom: 2px solid var(--blue-50);
  display: flex; align-items: center; gap: 10px;
}
.work-group-title::before {
  content: ""; width: 22px; height: 4px; border-radius: 4px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.work-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s;
}
.work-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: #cfe0fb; }

.work-cover {
  position: relative; height: 132px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-700));
}
.work-cover::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 16px 16px; opacity: .5;
}
.work-emoji { font-size: 2.6rem; position: relative; z-index: 1;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.3)); }
.work-cat {
  position: absolute; top: 12px; left: 12px; z-index: 1;
  background: rgba(255,255,255,.16); backdrop-filter: blur(4px); color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 20px; border: 1px solid rgba(255,255,255,.18);
}
/* cover colour variants */
.wc-blue   { background: linear-gradient(135deg, #1d4ed8, #2563eb); }
.wc-violet { background: linear-gradient(135deg, #5b21b6, #7c3aed); }
.wc-sky    { background: linear-gradient(135deg, #0369a1, #0ea5e9); }
.wc-deep   { background: linear-gradient(135deg, #0f2747, #1e3a8a); }
.wc-teal   { background: linear-gradient(135deg, #0f766e, #14b8a6); }

.work-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.work-body h3 { font-size: 1.22rem; margin-bottom: 8px; }
.work-body p { color: var(--slate); font-size: .96rem; margin-bottom: 16px; }
.work-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 18px; }
.work-tags li {
  font-size: .76rem; font-weight: 600; color: var(--navy-700);
  background: var(--blue-50); border: 1px solid #dbeafe; padding: 4px 10px; border-radius: 6px;
}
.work-link { margin-top: auto; font-weight: 600; font-size: .95rem; color: var(--blue-600); }
.work-link:hover { text-decoration: none; color: var(--blue); }

/* invitation tile */
.work-card--cta {
  background: linear-gradient(135deg, var(--blue-50), #eef6ff);
  border-style: dashed; border-color: #bcd4fb;
}
.work-cta-body { justify-content: center; text-align: center; align-items: center; }
.work-cta-body .work-emoji { font-size: 2.2rem; filter: none; margin-bottom: 6px; }
.work-cta-body p { max-width: 30ch; }
.work-cta-body .btn { margin-top: auto; }

/* ---------- about ---------- */
.about-grid { display: grid; grid-template-columns: 1.4fr .6fr; gap: 50px; align-items: center; }
.about-copy h2 { margin-bottom: 18px; }
.about-copy p { color: var(--slate); margin-bottom: 16px; max-width: 60ch; }
.about-copy .btn { margin-top: 8px; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 18px; text-align: center; box-shadow: var(--shadow); }
.stat-num { display: block; font-size: 1.8rem; font-weight: 800; color: var(--blue-600); letter-spacing: -.03em; }
.stat-lbl { color: var(--slate); font-size: .86rem; }

/* ---------- process / steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px 22px; box-shadow: var(--shadow); position: relative; }
.step-num { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px;
  background: var(--navy); color: #fff; font-weight: 800; font-size: 1.1rem; margin-bottom: 14px; }
.step h3 { font-size: 1.12rem; margin-bottom: 6px; }
.step p { color: var(--slate); font-size: .95rem; }

/* ---------- faq ---------- */
.faq-wrap { max-width: 820px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 4px 22px; box-shadow: var(--shadow); transition: border-color .2s; }
.faq-item[open] { border-color: #cfe0fb; }
.faq-item summary {
  cursor: pointer; font-weight: 600; padding: 16px 28px 16px 0; position: relative;
  list-style: none; color: var(--navy); font-size: 1.05rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--blue); font-weight: 400; transition: transform .2s;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { color: var(--slate); padding: 0 0 18px; }

/* ---------- contact ---------- */
.section--contact { background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: start; }
.contact-copy h2 { margin-bottom: 14px; }
.contact-copy > p { color: var(--slate); margin-bottom: 26px; }
.contact-list { display: flex; flex-direction: column; gap: 14px; }
.contact-list li { display: flex; align-items: center; gap: 12px; font-size: 1.02rem; }
.ci { font-size: 1.2rem; width: 40px; height: 40px; display: grid; place-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: 10px; }

.contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px; box-shadow: var(--shadow-lg); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 7px; color: var(--navy); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px;
  font: inherit; color: var(--ink); background: #fff; transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,.14);
}
.field textarea { resize: vertical; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.form-note { margin-top: 14px; font-size: .92rem; min-height: 1.2em; }
.form-note.ok { color: var(--ok); font-weight: 600; }
.form-note.err { color: var(--danger); font-weight: 600; }
.form-privacy { margin-top: 12px; font-size: .82rem; color: var(--slate-300); text-align: center; }

/* ---------- pricing ribbon ---------- */
.pricing-ribbon { background: linear-gradient(180deg, var(--blue-50), #fff); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 30px 0; }
.pricing-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.pr-item { display: flex; align-items: center; gap: 14px; }
.pr-icon { font-size: 1.5rem; width: 50px; height: 50px; flex-shrink: 0; display: grid; place-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); }
.pr-item strong { display: block; color: var(--navy); font-size: 1rem; }
.pr-item span { color: var(--slate); font-size: .9rem; }

/* ---------- pricing section ---------- */
.rate-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 760px; margin: 0 auto 20px; }
.rate-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px 26px; box-shadow: var(--shadow); text-align: center; }
.rate-label { font-weight: 700; color: var(--navy); display: block; margin-bottom: 6px; }
.rate-price { font-size: 2.1rem; font-weight: 800; color: var(--blue-600); display: block; letter-spacing: -.02em; }
.rate-price span { font-size: 1rem; color: var(--slate); font-weight: 600; }
.rate-card p { color: var(--slate); font-size: .92rem; margin-top: 10px; }
.price-chips { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 56px; color: var(--navy-700); font-weight: 600; font-size: .94rem; }

.plans-title { text-align: center; font-size: 1.5rem; color: var(--navy); margin-bottom: 4px; }
.plans-sub { text-align: center; color: var(--slate); margin-bottom: 32px; }
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.plan-card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px 26px; box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.plan-card--featured { border-color: var(--blue); box-shadow: 0 16px 40px rgba(37,99,235,.16); }
.plan-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; padding: 6px 14px; border-radius: 20px; white-space: nowrap;
  box-shadow: 0 6px 14px rgba(37,99,235,.3); }
.plan-card h4 { font-size: 1.25rem; color: var(--navy); margin-bottom: 10px; }
.plan-price { font-size: 2.4rem; font-weight: 800; color: var(--ink); letter-spacing: -.03em; margin-bottom: 20px; }
.plan-price span { font-size: .9rem; color: var(--slate); font-weight: 600; letter-spacing: 0; }
.plan-card .ticklist { margin-bottom: 24px; }
.plan-card .btn { margin-top: auto; }
.price-note { text-align: center; color: var(--slate); font-size: .9rem; margin-top: 28px; }

/* ---------- testimonials ---------- */
.testimonials {
  padding: 78px 0;
  background: linear-gradient(135deg, var(--navy) 0%, #16365f 100%);
  position: relative; overflow: hidden;
}
.testimonials::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 22px 22px; opacity: .6;
}
.testimonials > .container { position: relative; z-index: 1; }
.section-head--light h2 { color: #fff; }
.eyebrow--light { color: var(--cyan); }
.section-sub--light { color: #b9cae4; }
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg); padding: 26px 24px; backdrop-filter: blur(4px);
}
.quote-card .stars { color: #fbbf24; font-size: 1.05rem; letter-spacing: 2px; margin-bottom: 12px; }
.quote-card blockquote { color: #e7eefb; font-size: 1.02rem; line-height: 1.6; margin-bottom: 18px; }
.quote-card figcaption { display: flex; flex-direction: column; gap: 2px; }
.q-name { color: #fff; font-weight: 700; }
.q-meta { color: #95a9c6; font-size: .85rem; }
.testi-cta { text-align: center; margin-top: 40px; }

/* ---------- sticky mobile CTA ---------- */
.mobile-cta {
  display: none; position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 60;
  text-align: center; padding: 15px; border-radius: 12px;
  background: var(--blue); color: #fff; font-weight: 700;
  box-shadow: 0 8px 28px rgba(37,99,235,.45);
}
.mobile-cta:hover { text-decoration: none; color: #fff; }

/* ---------- active nav link ---------- */
.nav-menu a.active { color: var(--blue-600); background: var(--blue-50); }
.nav-menu .btn-primary.active { color: #fff; background: var(--blue-600); }

/* ---------- footer ---------- */
.site-footer { background: var(--navy); color: #cdd9ec; padding: 46px 0 30px; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr; gap: 24px; align-items: start; }
.site-footer .brand-name { color: #fff; font-size: 1.3rem; }
.site-footer .brand-accent { color: var(--cyan); }
.foot-brand .muted { color: #95a9c6; margin-top: 8px; max-width: 40ch; }
.foot-links { display: flex; gap: 22px; flex-wrap: wrap; justify-content: flex-end; }
.foot-links a { color: #cdd9ec; font-weight: 500; }
.foot-links a:hover { color: #fff; }
.copyright { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.1); margin-top: 26px;
  padding-top: 20px; color: #8da4c4; font-size: .88rem; }

/* ---------- responsive ---------- */
@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { order: -1; max-width: 460px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .cards-3 { grid-template-columns: 1fr; }
  .cards-2 { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: absolute; top: 70px; left: 0; right: 0; flex-direction: column; align-items: stretch;
    background: #fff; border-bottom: 1px solid var(--line); padding: 12px 18px 18px; gap: 4px;
    box-shadow: var(--shadow-lg); transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .2s var(--ease), transform .2s var(--ease);
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-menu a { padding: 12px 14px; }
  .nav-menu .btn-primary { margin-top: 6px; text-align: center; }
  .footer-inner { grid-template-columns: 1fr; }
  .foot-links { justify-content: flex-start; }
  .pricing-inner { grid-template-columns: 1fr; gap: 18px; }
  .quotes { grid-template-columns: 1fr; }
  .rate-row { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; }
  .mobile-cta { display: block; }
  body { padding-bottom: 78px; } /* room for the sticky button */
}
@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .hero-trust { gap: 18px; }
  .section { padding: 58px 0; }
}

/* ---------- reveal-on-scroll (progressive enhancement) ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- jobs board ---------- */
.jobs-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.job-card {
  background: var(--card, #fff); border: 1px solid var(--line, #e2e8f0);
  border-radius: 14px; padding: 22px; display: flex; flex-direction: column; gap: 10px;
  box-shadow: 0 1px 3px rgba(16,24,40,.06);
}
.job-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.job-head h3 { margin: 0; font-size: 1.1rem; }
.job-type {
  font-size: .72rem; text-transform: uppercase; letter-spacing: .04em; font-weight: 700;
  background: #eef4ff; color: #1f6feb; padding: 3px 9px; border-radius: 999px; white-space: nowrap;
}
.job-loc { margin: 0; color: var(--muted, #66748a); font-size: .9rem; }
.job-summary { margin: 0; font-weight: 600; }
.job-desc { margin: 0; color: var(--muted, #66748a); font-size: .95rem; }
.job-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.job-tag { font-size: .78rem; background: #f1f3f6; color: #55617a; padding: 2px 9px; border-radius: 999px; }
.job-card .btn { margin-top: auto; align-self: flex-start; }

/* apply modal */
.apply-overlay {
  position: fixed; inset: 0; background: rgba(16,24,40,.5);
  display: grid; place-items: center; padding: 20px; z-index: 100;
}
.apply-modal {
  background: #fff; border-radius: 16px; padding: 26px; width: 100%; max-width: 440px;
  position: relative; max-height: 90vh; overflow: auto;
}
.apply-modal h3 { margin: 0 0 16px; padding-right: 30px; }
.apply-close {
  position: absolute; top: 14px; right: 14px; border: 0; background: none;
  font-size: 1.1rem; cursor: pointer; color: var(--muted, #66748a); line-height: 1;
}
.form-note.ok { color: #1a8f4c; }
.form-note.err { color: #c02626; }
