/* ============================================================
   North Haven Code — styles.css
   Palette: white + deep navy + electric blue, coastal cyan accent
   Display: Space Grotesk | Body: Inter | Code accents: JetBrains Mono
   ============================================================ */

:root {
  /* Brand */
  --navy-900: #0A1226;
  --navy-850: #0C1730;
  --navy-800: #0E1B3A;
  --blue-700: #0C56E6;
  --blue-600: #1466FF;
  --blue-500: #2D7BFF;
  --cyan-400: #36CFFF;
  --cyan-300: #6FDDFF;

  /* Neutrals */
  --ink: #0B1B33;
  --slate: #4A5A72;
  --slate-light: #7A8AA3;
  --line: #E4EAF2;
  --bg: #FFFFFF;
  --bg-soft: #F4F7FB;

  /* Tokens */
  --maxw: 1140px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(11, 27, 51, .06), 0 4px 16px rgba(11, 27, 51, .06);
  --shadow-md: 0 8px 30px rgba(11, 27, 51, .10);
  --shadow-blue: 0 10px 30px rgba(20, 102, 255, .30);
  --ease: cubic-bezier(.22, .61, .36, 1);

  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }
:focus-visible { outline: 3px solid var(--blue-500); outline-offset: 3px; border-radius: 4px; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: 84px 0; }
.section--soft { background: var(--bg-soft); }
.section--dark {
  background: radial-gradient(120% 120% at 80% 0%, var(--navy-800) 0%, var(--navy-900) 60%);
  color: #fff;
}

/* Code-bracket eyebrow — the signature device */
.eyebrow {
  font-family: var(--font-mono);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--blue-600);
  display: inline-flex;
  gap: .4em;
  margin-bottom: 18px;
}
.eyebrow::before { content: "</"; color: var(--cyan-400); }
.eyebrow::after  { content: "/>"; color: var(--cyan-400); }
.section--dark .eyebrow { color: var(--cyan-300); }
.section--dark .eyebrow::before,
.section--dark .eyebrow::after { color: var(--blue-500); }

.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

h1, h2, h3 { font-family: var(--font-display); line-height: 1.08; letter-spacing: -.02em; font-weight: 700; }
h2 { font-size: clamp(1.9rem, 4.6vw, 2.9rem); }
h3 { font-size: 1.25rem; letter-spacing: -.01em; }
.lead { font-size: 1.12rem; color: var(--slate); }
.section--dark .lead { color: #B9C6DD; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  padding: 15px 26px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(20,102,255,.42); }
.btn-secondary {
  background: #fff; color: var(--ink); border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { transform: translateY(-2px); border-color: var(--blue-500); color: var(--blue-700); }
.btn-ghost-light {
  background: rgba(255,255,255,.06); color: #fff;
  border-color: rgba(255,255,255,.22);
  backdrop-filter: blur(4px);
}
.btn-ghost-light:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.nav.scrolled { border-bottom-color: var(--line); box-shadow: 0 4px 20px rgba(11,27,51,.05); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 700; }
.brand img { width: 38px; height: 38px; }
.brand-text { font-size: 1.06rem; letter-spacing: -.01em; line-height: 1; }
.brand-text small { display: block; font-family: var(--font-mono); font-size: .56rem; font-weight: 500; letter-spacing: .04em; color: var(--blue-600); margin-top: 3px; white-space: nowrap; }

.nav-links { display: none; align-items: center; gap: 30px; }
.nav-links a { font-size: .96rem; font-weight: 500; color: var(--slate); transition: color .2s; position: relative; }
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--blue-600); transition: width .25s var(--ease);
}
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: none; align-items: center; gap: 16px; }
.nav-phone { font-family: var(--font-display); font-weight: 500; color: var(--ink); display: inline-flex; align-items: center; gap: 7px; }
.nav-phone svg { color: var(--blue-600); }

.nav-toggle {
  display: inline-flex; flex-direction: column; gap: 5px;
  background: none; border: 0; padding: 10px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 70px 0 auto 0; z-index: 99;
  background: #fff; border-bottom: 1px solid var(--line);
  padding: 14px 22px 26px;
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: transform .3s var(--ease), opacity .25s;
  box-shadow: var(--shadow-md);
}
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu a { display: block; padding: 14px 4px; font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin-top: 18px; }
.mobile-menu .nav-phone { margin-top: 16px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(130% 120% at 78% -10%, var(--navy-800) 0%, var(--navy-900) 55%, #07101f 100%);
  color: #fff;
  padding: 78px 0 90px;
}
/* faint code-grid atmosphere */
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(54,207,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(54,207,255,.05) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(circle at 75% 15%, #000, transparent 70%);
          mask-image: radial-gradient(circle at 75% 15%, #000, transparent 70%);
  pointer-events: none;
}
.hero-glow {
  position: absolute; width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(20,102,255,.34), transparent 65%);
  top: -160px; right: -120px; filter: blur(8px); pointer-events: none;
}
.hero-inner { position: relative; display: grid; gap: 46px; align-items: center; }

.hero-eyebrow { color: var(--cyan-300); }
.hero h1 {
  font-size: clamp(2.05rem, 5.4vw, 3.4rem);
  margin: 4px 0 6px;
}
.hero h1 .typed { color: var(--cyan-400); border-right: 2px solid var(--cyan-400); padding-right: 2px; display: inline-block; min-height: 1em; cursor: pointer; transition: opacity .2s; }
.hero h1 .typed:hover { opacity: .82; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 5px; }
.hero h1 .typed:focus-visible { outline: 2px solid var(--cyan-400); outline-offset: 4px; border-radius: 4px; }
.hero p.lead { max-width: 540px; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.price-tag { font-family: var(--font-mono); font-weight: 700; }

.trust-strip {
  display: flex; flex-wrap: wrap; gap: 14px 28px;
  margin-top: 40px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.trust-item { display: flex; align-items: center; gap: 9px; font-size: .9rem; color: #C4D1E6; }
.trust-item svg { color: var(--cyan-400); flex-shrink: 0; }

/* Hero visual — terminal card */
.hero-visual { position: relative; }
.terminal {
  background: linear-gradient(180deg, #0d1830, #091327);
  border: 1px solid rgba(120,170,255,.18);
  border-radius: 14px;
  box-shadow: 0 30px 70px rgba(0,0,0,.5);
  overflow: hidden;
}
.terminal-bar { display: flex; align-items: center; gap: 7px; padding: 13px 16px; background: rgba(255,255,255,.03); border-bottom: 1px solid rgba(255,255,255,.07); }
.terminal-bar i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.dot-r { background: #ff5f57; } .dot-y { background: #febc2e; } .dot-g { background: #28c840; }
.terminal-bar span { margin-left: 8px; font-family: var(--font-mono); font-size: .72rem; color: #7e90b3; }
.terminal-body { padding: 20px 18px 24px; font-family: var(--font-mono); font-size: .82rem; line-height: 1.85; }
.terminal-body .ln { color: #8aa0c6; }
.c-key { color: var(--cyan-400); } .c-str { color: #7fe0a0; } .c-prop { color: #b79bff; } .c-num { color: #ffcf6b; }
.terminal-result {
  margin-top: 16px; padding: 13px 14px; border-radius: 10px;
  background: rgba(20,102,255,.12); border: 1px solid rgba(54,207,255,.25);
  color: #d7e6ff; font-size: .8rem; display: flex; align-items: center; gap: 9px;
}
.terminal-result b { color: #fff; }

/* ============================================================
   LOGO MARQUEE / TRUST
   ============================================================ */
.who { text-align: center; }
.who p { font-family: var(--font-mono); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--slate-light); margin-bottom: 18px; }
.who-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 12px; }
.who-tag { font-family: var(--font-display); font-weight: 500; font-size: .92rem; color: var(--ink); padding: 8px 16px; border: 1px solid var(--line); border-radius: 999px; background: #fff; }

/* ============================================================
   SERVICES
   ============================================================ */
.grid { display: grid; gap: 22px; }
.cards { grid-template-columns: 1fr; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: #cfe0ff; }
.card-icon {
  width: 52px; height: 52px; border-radius: 13px;
  display: grid; place-items: center; margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(20,102,255,.12), rgba(54,207,255,.12));
  color: var(--blue-600);
}
.card h3 { margin-bottom: 9px; }
.card p { color: var(--slate); font-size: .98rem; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { grid-template-columns: 1fr; align-items: stretch; }
.plan {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px 28px;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.plan:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.plan--feature {
  background: radial-gradient(120% 120% at 50% 0%, var(--navy-800), var(--navy-900));
  color: #fff; border-color: transparent; box-shadow: var(--shadow-blue);
}
.plan-flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-mono); font-size: .68rem; font-weight: 700; letter-spacing: .08em;
  background: linear-gradient(135deg, var(--cyan-400), var(--blue-500));
  color: #06122c; padding: 6px 14px; border-radius: 999px; white-space: nowrap;
}
.plan-name { font-family: var(--font-display); font-weight: 500; font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; color: var(--blue-600); }
.plan--feature .plan-name { color: var(--cyan-300); }
.plan-price { font-family: var(--font-display); font-weight: 700; font-size: 2.7rem; letter-spacing: -.02em; margin: 8px 0 2px; }
.plan-price small { font-size: .9rem; font-weight: 500; color: var(--slate-light); letter-spacing: 0; }
.plan--feature .plan-price small { color: #9fb2d4; }
.plan-sub { font-size: .9rem; color: var(--slate); margin-bottom: 22px; }
.plan--feature .plan-sub { color: #b9c6dd; }
.plan-list { display: grid; gap: 12px; margin-bottom: 26px; flex: 1; }
.plan-list li { display: flex; gap: 11px; align-items: flex-start; font-size: .95rem; color: var(--slate); }
.plan--feature .plan-list li { color: #d7e1f1; }
.plan-list svg { color: var(--blue-600); flex-shrink: 0; margin-top: 3px; }
.plan--feature .plan-list svg { color: var(--cyan-400); }
.pricing-note { text-align: center; margin-top: 28px; font-size: .92rem; color: var(--slate-light); }

/* ============================================================
   PROCESS
   ============================================================ */
.steps { grid-template-columns: 1fr; counter-reset: step; }
.step { position: relative; padding: 28px 26px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); background: rgba(255,255,255,.03); }
.step-num {
  font-family: var(--font-mono); font-weight: 700; font-size: .82rem;
  color: var(--cyan-400); margin-bottom: 14px; display: inline-block;
}
.step h3 { color: #fff; font-size: 1.15rem; }
.step p { color: #aab9d4; font-size: .94rem; margin-top: 7px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; gap: 40px; align-items: center; }
.about-card {
  background: radial-gradient(120% 120% at 30% 10%, var(--navy-800), var(--navy-900));
  border-radius: var(--radius); padding: 40px 34px; color: #fff;
  box-shadow: var(--shadow-md); position: relative; overflow: hidden;
}
.about-card::after {
  content: "</>"; position: absolute; right: -10px; bottom: -30px;
  font-family: var(--font-mono); font-weight: 700; font-size: 8rem;
  color: rgba(54,207,255,.07);
}
.about-card img { width: 84px; height: 84px; margin-bottom: 22px; }
.about-card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.about-card p { color: #c4d1e6; }
.about-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; margin-top: 28px; }
.about-stat { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 16px; }
.about-stat b { font-family: var(--font-display); font-size: 1.6rem; display: block; }
.about-stat span { font-size: .82rem; color: #9fb2d4; }
.about-copy h2 { margin-bottom: 18px; }
.about-copy p { color: var(--slate); margin-bottom: 16px; }
.about-copy .signoff { font-family: var(--font-display); font-weight: 500; color: var(--ink); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; gap: 40px; }
.contact-cta h2 { margin-bottom: 14px; }
.contact-cta .lead { margin-bottom: 28px; }
.contact-methods { display: grid; gap: 14px; }
.contact-method { display: flex; align-items: center; gap: 14px; padding: 16px 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); transition: border-color .2s, transform .2s; }
.contact-method:hover { border-color: var(--blue-500); transform: translateY(-2px); }
.contact-method .ic { width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center; background: linear-gradient(135deg, rgba(20,102,255,.12), rgba(54,207,255,.12)); color: var(--blue-600); flex-shrink: 0; }
.contact-method b { font-family: var(--font-display); display: block; font-size: 1rem; }
.contact-method span { font-size: .86rem; color: var(--slate-light); }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-md); }
.form-row { display: grid; gap: 16px; }
.field label { display: block; font-family: var(--font-display); font-weight: 500; font-size: .86rem; margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 13px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--bg-soft); transition: border-color .2s, background .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--blue-500); background: #fff; box-shadow: 0 0 0 4px rgba(45,123,255,.12); }
.field textarea { resize: vertical; min-height: 120px; }
.form-status { font-size: .92rem; margin-top: 14px; min-height: 1.2em; }
.form-status.ok { color: #15803d; }
.form-status.err { color: #b91c1c; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy-900); color: #fff; padding: 56px 0 30px; }
.footer-top { display: grid; gap: 34px; }
.footer-brand img { width: 150px; margin-bottom: 16px; }
.footer-brand p { color: #9fb2d4; font-size: .92rem; max-width: 320px; }
.footer-col h4 { font-family: var(--font-display); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--cyan-300); margin-bottom: 16px; }
.footer-col a { display: block; color: #b9c6dd; padding: 6px 0; font-size: .94rem; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-wrap: wrap; gap: 8px; justify-content: space-between; font-size: .84rem; color: #7e90b3; }
.footer-bottom .mono { font-family: var(--font-mono); }

/* ============================================================
   ADDED COMPONENTS (v2): hero highlight, trust grid, portfolio,
   care plan, contact dropdown + location
   ============================================================ */

/* Hero headline highlight (replaces the typed word) */
.hero h1 .hl { color: var(--cyan-400); white-space: nowrap; }

/* ---- Trust highlights grid ---- */
.trust-highlights {
  display: grid; grid-template-columns: 1fr; gap: 14px;
  max-width: 760px; margin: 0 auto;
}
.trust-highlights li {
  display: flex; align-items: center; gap: 13px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 16px 18px; font-family: var(--font-display); font-weight: 500; font-size: 1rem;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.trust-highlights li:hover { transform: translateY(-3px); border-color: #cfe0ff; box-shadow: var(--shadow-md); }
.trust-highlights svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--blue-600);
  background: linear-gradient(135deg, rgba(20,102,255,.12), rgba(54,207,255,.12)); border-radius: 7px; padding: 4px; }

/* ---- Portfolio / Work ---- */
.work-grid { grid-template-columns: 1fr; }
.work-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.work-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: #cfe0ff; }
.work-shot { position: relative; overflow: hidden; background: var(--navy-900); aspect-ratio: 4 / 3; }
.work-shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.work-card:hover .work-shot img { transform: scale(1.04); }
.work-body { padding: 22px 22px 24px; }
.work-body h3 { font-size: 1.12rem; margin-bottom: 14px; }
.work-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.work-tags li {
  font-family: var(--font-mono); font-size: .72rem; color: var(--slate);
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: 999px; padding: 5px 11px;
}
.work-cta { text-align: center; margin-top: 40px; }

/* ---- Hosting & Care Plan (monthly add-on) ---- */
.care {
  position: relative; margin-top: 26px;
  background: radial-gradient(130% 130% at 12% 0%, var(--navy-800), var(--navy-900));
  color: #fff; border-radius: var(--radius); padding: 34px 30px 30px;
  box-shadow: var(--shadow-blue); overflow: hidden;
}
.care::after {
  content: "</>"; position: absolute; right: 4px; bottom: -26px;
  font-family: var(--font-mono); font-weight: 700; font-size: 7rem; color: rgba(54,207,255,.07);
}
.care-flag {
  position: absolute; top: 18px; right: 22px;
  font-family: var(--font-mono); font-size: .66rem; font-weight: 700; letter-spacing: .08em;
  background: linear-gradient(135deg, var(--cyan-400), var(--blue-500)); color: #06122c;
  padding: 6px 13px; border-radius: 999px;
}
.care-head { display: grid; gap: 18px; align-items: center; margin-bottom: 22px; }
.care .plan-name { color: var(--cyan-300); }
.care-price { font-family: var(--font-display); font-weight: 700; font-size: 2.6rem; letter-spacing: -.02em; margin: 6px 0 2px; }
.care-price small { font-size: .95rem; font-weight: 500; color: #9fb2d4; letter-spacing: 0; }
.care-sub { color: #b9c6dd; font-size: .96rem; max-width: 460px; }
.care-btn { align-self: start; white-space: nowrap; }
.care-list { display: grid; grid-template-columns: 1fr; gap: 12px; position: relative; z-index: 1; }
.care-list li { display: flex; align-items: center; gap: 11px; font-size: .95rem; color: #d7e1f1; }
.care-list svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--cyan-400); }

/* ---- Contact: location line + select + optional label ---- */
.contact-loc {
  display: flex; gap: 11px; align-items: flex-start; margin-top: 22px;
  font-size: .95rem; color: var(--slate);
}
.contact-loc svg { color: var(--blue-600); flex-shrink: 0; margin-top: 3px; }
.contact-loc b { color: var(--ink); }
.field select {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 13px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--bg-soft); cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234A5A72' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  transition: border-color .2s, background-color .2s, box-shadow .2s;
}
.field select:focus { outline: none; border-color: var(--blue-500); background-color: #fff; box-shadow: 0 0 0 4px rgba(45,123,255,.12); }
.field .opt { color: var(--slate-light); font-weight: 400; }
.footer-tag { font-family: var(--font-display); font-weight: 500; color: #fff !important; margin-bottom: 8px; }

/* ============================================================
   ADDED COMPONENTS (v3): guarantee, founder, CTA band, FAQ,
   browser-frame portfolio mockups
   ============================================================ */

/* ---- Guarantee ---- */
.guarantee-sec { padding-top: 64px; padding-bottom: 64px; }
.guarantee { display: grid; gap: 32px; align-items: center; }
.guarantee-copy h2 { margin-bottom: 14px; }
.guarantee-list { display: grid; grid-template-columns: 1fr; gap: 14px; }
.guarantee-list li {
  display: flex; align-items: center; gap: 13px;
  font-family: var(--font-display); font-weight: 500; font-size: 1rem; color: var(--ink);
  background: linear-gradient(135deg, rgba(20,102,255,.05), rgba(54,207,255,.05));
  border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 15px 18px;
  transition: transform .25s var(--ease), border-color .25s;
}
.guarantee-list li:hover { transform: translateY(-3px); border-color: #cfe0ff; }
.guarantee-list svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--blue-600); }

/* ---- Portfolio: browser-frame mockups with real photos ---- */
.work-shot { position: relative; overflow: hidden; background: var(--navy-900); }
.work-bar {
  display: flex; align-items: center; gap: 6px; height: 34px; padding: 0 13px;
  background: #0c1730; border-bottom: 1px solid rgba(255,255,255,.06);
}
.work-bar i { width: 9px; height: 9px; border-radius: 50%; display: block; }
.work-bar em {
  margin-left: 10px; font-family: var(--font-mono); font-style: normal;
  font-size: .68rem; color: #7e90b3;
  background: rgba(255,255,255,.05); padding: 3px 12px; border-radius: 999px;
}
.work-shot img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block; transition: transform .5s var(--ease); background: var(--navy-800); }
.work-card:hover .work-shot img { transform: scale(1.04); }
.work-desc { color: var(--slate); font-size: .94rem; margin-bottom: 16px; }
.work-cta { text-align: center; margin-top: 44px; }
.work-note { font-family: var(--font-mono); font-size: .76rem; color: var(--slate-light); margin-bottom: 16px; }

/* ---- Meet the Founder ---- */
.founder-grid { display: grid; gap: 38px; align-items: center; }
.founder-photo { position: relative; max-width: 420px; margin: 0 auto; }
.founder-photo img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-md); aspect-ratio: 1 / 1; object-fit: cover; }
.founder-badge {
  position: absolute; left: 16px; bottom: 16px;
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.95); backdrop-filter: blur(6px);
  color: var(--ink); font-family: var(--font-display); font-weight: 500; font-size: .82rem;
  padding: 8px 14px; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.founder-badge svg { color: var(--blue-600); }
.founder-copy h2 { margin-bottom: 16px; }
.founder-copy p { color: var(--slate); margin-bottom: 14px; }
.founder-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 22px 0 26px; }
.founder-list li { display: flex; align-items: center; gap: 10px; font-size: .95rem; font-weight: 500; color: var(--ink); }
.founder-list svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--blue-600); }

/* ---- CTA band ---- */
.cta-band {
  background: radial-gradient(130% 130% at 15% 0%, var(--navy-800), var(--navy-900));
  color: #fff;
}
.cta-band-inner {
  display: grid; gap: 24px; align-items: center;
  padding: 52px 0;
}
.cta-band h2 { font-size: clamp(1.6rem, 3.6vw, 2.2rem); margin-bottom: 8px; }
.cta-band p { color: #b9c6dd; }
.cta-band-btns { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---- FAQ ---- */
.faq-wrap { max-width: 820px; }
.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  overflow: hidden; transition: border-color .25s, box-shadow .25s;
}
.faq-item[open] { border-color: #cfe0ff; box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 18px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--font-display); font-weight: 500; font-size: 1.02rem; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; background: var(--blue-600); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s;
}
.faq-icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq-icon::after { left: 8px; top: 0; width: 2px; height: 18px; }
.faq-item[open] .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-answer { padding: 0 20px 20px; }
.faq-answer p { color: var(--slate); font-size: .96rem; }

/* ============================================================
   ADDED COMPONENTS (v4): hero rotator, founder badges/quote
   ============================================================ */
.hero-rotator {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.25rem, 3.2vw, 1.7rem);
  color: #9fb2d4; letter-spacing: -.01em; margin: 10px 0 16px;
}
.hero-rotator .typed { color: var(--cyan-400); border-right: 2px solid var(--cyan-400); padding-right: 2px; }

/* premium founder photo card */
.founder-photo { display:flex; flex-direction:column; align-items:center; text-align:center; }
.founder-avatar { position:relative; width:220px; height:220px; border-radius:50%; padding:6px; background:linear-gradient(135deg,var(--blue-500),var(--cyan-400)); box-shadow:0 18px 40px rgba(11,27,51,.18); }
.founder-avatar img { width:100%; height:100%; border-radius:50%; object-fit:cover; border:4px solid #fff; display:block; }
.founder-cap { margin-top:18px; }
.founder-cap b { font-family:var(--font-display); font-weight:600; font-size:1.25rem; color:var(--ink); display:block; line-height:1.2; }
.founder-cap span { display:block; color:var(--slate); font-size:.92rem; margin-top:2px; }
.founder-loc { display:inline-flex!important; align-items:center; gap:6px; color:var(--blue-600)!important; font-weight:500; margin-top:8px!important; }

.founder-quote {
  margin: 22px 0; padding: 16px 20px; border-left: 3px solid var(--blue-600);
  background: var(--bg-soft); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-display); font-weight: 500; font-size: 1.04rem; line-height: 1.55; color: var(--ink);
}

.founder-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 26px; }
.founder-badges li {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 500; font-size: .9rem; color: var(--ink);
  background: linear-gradient(135deg, rgba(20,102,255,.07), rgba(54,207,255,.07));
  border: 1px solid var(--line); border-radius: 999px; padding: 9px 15px;
  transition: transform .2s var(--ease), border-color .2s;
}
.founder-badges li:hover { transform: translateY(-2px); border-color: #cfe0ff; }
.founder-badges svg { width: 16px; height: 16px; color: var(--blue-600); flex-shrink: 0; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 620px) {
  .cards { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .form-row.two { grid-template-columns: 1fr 1fr; }
  .trust-highlights { grid-template-columns: 1fr 1fr; }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .care-list { grid-template-columns: 1fr 1fr; }
  .guarantee-list { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .nav-links, .nav-cta { display: flex; }
  .nav-toggle { display: none; }
  .hero-inner { grid-template-columns: 1.05fr .95fr; gap: 56px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .pricing { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .about-grid { grid-template-columns: .9fr 1.1fr; }
  .contact-grid { grid-template-columns: 1fr 1.15fr; }
  .footer-top { grid-template-columns: 1.6fr 1fr 1fr; }
  .plan--feature { transform: scale(1.04); }
  .plan--feature:hover { transform: scale(1.04) translateY(-5px); }
  .trust-highlights { grid-template-columns: repeat(3, 1fr); }
  .work-grid { grid-template-columns: repeat(3, 1fr); }
  .care-head { grid-template-columns: 1fr auto; }
  .care-list { grid-template-columns: repeat(4, 1fr); }
  .guarantee { grid-template-columns: 1fr 1fr; gap: 48px; }
  .founder-grid { grid-template-columns: 300px 1fr; gap: 56px; align-items: center; }
  .cta-band-inner { grid-template-columns: 1fr auto; padding: 60px 0; }
}
@media (min-width: 1040px) {
  .cards { grid-template-columns: repeat(4, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero h1 .typed, .hero-rotator .typed { border-right: none; }
}

/* ============================= WEBSITE EXAMPLES SHOWCASE ============================= */
.examples-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.ex-grid { display: grid; gap: 26px; grid-template-columns: 1fr; }
.ex-card {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: 20px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(10,18,38,.06); scroll-margin-top: 96px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.ex-card:hover { transform: translateY(-8px); box-shadow: 0 30px 64px rgba(10,18,38,.18); border-color: transparent; }
.ex-preview { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--navy-900, #0A1226); }
.ex-preview img, .ex-preview .ex-svg { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--ease); }
.ex-card:hover .ex-preview img, .ex-card:hover .ex-preview .ex-svg { transform: scale(1.05); }
.ex-bar { position: absolute; top: 0; left: 0; right: 0; height: 30px; background: rgba(8,16,32,.82); display: flex; align-items: center; gap: 6px; padding: 0 12px; z-index: 2; }
.ex-bar i { width: 9px; height: 9px; border-radius: 50%; }
.ex-bar .dot-r{background:#ff5f57}.ex-bar .dot-y{background:#febc2e}.ex-bar .dot-g{background:#28c840}
.ex-bar em { margin-left: 8px; font-style: normal; font-size: .72rem; color: #aeb9cc; font-family: var(--font-mono, monospace); }
.ex-flag { position: absolute; top: 40px; right: 12px; z-index: 3; font-family: var(--font-display); font-weight: 700; font-size: .68rem; letter-spacing: .04em; padding: 6px 12px; border-radius: 999px; }
.ex-flag.live { background: #28c840; color: #06310f; }
.ex-flag.soon { background: rgba(255,255,255,.92); color: #44506a; }
.ex-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.ex-cat { font-family: var(--font-display); font-weight: 700; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--blue-600); }
.ex-card h3 { font-family: var(--font-display); font-size: 1.22rem; font-weight: 700; margin: 7px 0 8px; color: var(--ink); letter-spacing: -.01em; }
.ex-desc { color: var(--slate); font-size: .94rem; line-height: 1.55; margin-bottom: 18px; flex: 1; }
.ex-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.ex-actions .btn { flex: 1; min-width: 130px; padding: 11px 16px; font-size: .9rem; }
.btn-soft { background: var(--blue-50, #EAF1FF); color: var(--blue-600); border: 1px solid transparent; }
.btn-soft:hover { background: #dbe8ff; }
.btn-soft[aria-disabled="true"] { opacity: .55; pointer-events: none; }
.examples-foot { text-align: center; margin-top: 44px; }
.examples-foot .note { color: var(--slate); font-size: .95rem; margin-bottom: 18px; }
@media (min-width: 640px){ .ex-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px){ .ex-grid { grid-template-columns: 1fr 1fr 1fr; gap: 28px; } }

/* key features chips on portfolio cards */
.ex-features { display: flex; flex-wrap: wrap; gap: 7px; margin: -4px 0 18px; padding: 0; list-style: none; }
.ex-features li { font-size: .76rem; font-weight: 500; color: var(--slate); background: var(--soft, #F2F7FD); border: 1px solid var(--line); border-radius: 999px; padding: 5px 11px; }
