/* ============================================================
   North Experts — Premium Website Styles
   Design system: "Quiet Confidence" (Linear/Stripe-inspired)
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --ink-900: #0A0A0B;
  --ink-800: #16161A;
  --ink-700: #3A3A40;
  --ink-500: #6B6B74;
  --ink-400: #8A8A93;
  --line: rgba(10, 10, 11, 0.08);
  --line-strong: rgba(10, 10, 11, 0.12);
  --line-light: rgba(255, 255, 255, 0.12);
  --paper: #FAFAFA;
  --surface: #FFFFFF;
  --tint: #F4F5F7;
  --accent: #B8892B;          /* refined gold — CTAs, links, focus */
  --accent-hover: #9C7726;    /* deeper gold on hover */
  --accent-bright: #D4A94A;   /* brighter gold for on-dark accents */
  --accent-2: #F6EED9;        /* soft gold tint — badges, highlights */
  --gold-lo: #9C7726;
  --gold-mid: #C9A24B;
  --gold-hi: #F3D488;
  --success: #16A34A;

  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(10, 10, 11, 0.04);
  --shadow-md: 0 12px 32px -12px rgba(10, 10, 11, 0.18);
  --shadow-lg: 0 30px 60px -20px rgba(10, 10, 11, 0.28);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1180px;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --serif: 'Instrument Serif', Georgia, serif;
}

/* ---------- 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);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-700);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.container--narrow { max-width: 760px; }

.section { padding-block: clamp(64px, 10vw, 120px); }
.section--tint { background: var(--tint); }

/* Offset anchor targets so the fixed nav never covers section headings */
:target { scroll-margin-top: 84px; }
[id] { scroll-margin-top: 84px; }


.section__head { max-width: 680px; margin-bottom: 56px; }
.section__title {
  font-size: clamp(30px, 4.4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink-900);
  margin-bottom: 16px;
}
.section__lead { font-size: 18px; color: var(--ink-500); max-width: 60ch; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.eyebrow--light { color: var(--gold-hi); }

/* ---------- Brand wordmark ---------- */
.brand__name em {
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.16em;
  font-size: 0.72em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-left: 2px;
}

/* ---------- Grad text ---------- */
.grad-text {
  background: linear-gradient(100deg, var(--gold-hi), var(--gold-mid));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}


/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}
.btn span { transition: transform 0.25s var(--ease); }
.btn:hover span { transform: translateX(3px); }
.btn--sm { padding: 9px 16px; font-size: 14px; }
.btn--lg { padding: 15px 28px; font-size: 16px; }
.btn--full { width: 100%; }

.btn--primary {
  background: linear-gradient(180deg, var(--gold-mid), var(--accent));
  color: #201503;
  box-shadow: 0 6px 20px -6px rgba(184, 137, 43, 0.55);
}
.btn--primary:hover { background: linear-gradient(180deg, var(--gold-hi), var(--accent-hover)); color: #201503; transform: translateY(-1px); box-shadow: 0 12px 30px -8px rgba(184, 137, 43, 0.7); }


.btn--ghost {
  background: var(--surface);
  color: var(--ink-900);
  border: 1px solid var(--line-strong);
}
.btn--ghost:hover { border-color: var(--ink-400); transform: translateY(-1px); }

.btn--ghost-light {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid var(--line-light);
}
.btn--ghost-light:hover { background: rgba(255, 255, 255, 0.12); }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(250, 250, 250, 0.8);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom-color: var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; color: var(--ink-900); letter-spacing: -0.02em; }
.brand__mark { display: inline-flex; }
.brand__name { font-size: 16px; }
.nav.is-scrolled .brand__name, .hero-over .brand__name { color: var(--ink-900); }

.nav__links { display: flex; gap: 30px; }
.nav__links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-700);
  transition: color 0.2s var(--ease);
}
.nav__links a:hover { color: var(--ink-900); }

/* Nav is over dark hero by default */
.nav:not(.is-scrolled) .brand__name { color: #fff; }
.nav:not(.is-scrolled) .nav__links a { color: rgba(255, 255, 255, 0.75); }
.nav:not(.is-scrolled) .nav__links a:hover { color: #fff; }


.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__toggle span { width: 22px; height: 2px; background: currentColor; border-radius: 2px; transition: 0.3s var(--ease); }
.nav:not(.is-scrolled) .nav__toggle { color: #fff; }
.nav.is-scrolled .nav__toggle { color: var(--ink-900); }

/* ---------- Dots / ticks ---------- */
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dot--live { background: var(--success); box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.6); animation: pulse 2s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(22, 163, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}
.tick { color: var(--success); font-weight: 700; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(120% 120% at 80% 0%, #1C2340 0%, #0A0A0B 55%);
  color: #fff;
  padding-top: 132px;
  padding-bottom: clamp(72px, 10vw, 120px);
  overflow: hidden;
}
.hero__grain {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero__title {
  font-size: clamp(38px, 5.6vw, 66px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.04;
  color: #fff;
  margin-bottom: 22px;
}
.hero__sub {
  font-size: clamp(17px, 2vw, 19px);
  color: rgba(255, 255, 255, 0.72);
  max-width: 52ch;
  margin-bottom: 32px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero__cta .btn--ghost { background: rgba(255,255,255,0.06); color:#fff; border-color: var(--line-light); }
.hero__cta .btn--ghost:hover { background: rgba(255,255,255,0.12); }

.hero__trust { display: flex; flex-wrap: wrap; gap: 10px 22px; font-size: 14.5px; color: rgba(255,255,255,0.7); }
.hero__trust li { display: inline-flex; align-items: center; gap: 8px; }

/* Hero visual — browser mockup */
.hero__visual { position: relative; }
.glow {
  position: absolute; inset: -10% -10% -10% -10%;
  background: radial-gradient(circle at 50% 40%, rgba(201,162,75,0.35), transparent 60%);
  filter: blur(40px); z-index: 0;
}

.browser {
  position: relative; z-index: 1;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
}
.float { animation: float 6s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.browser__bar { display: flex; align-items: center; gap: 6px; padding: 11px 14px; background: #F1F2F4; border-bottom: 1px solid var(--line); }
.browser__dot { width: 10px; height: 10px; border-radius: 50%; background: #D6D8DC; }
.browser__dot:nth-child(1){ background:#FF5F57; } .browser__dot:nth-child(2){ background:#FEBC2E; } .browser__dot:nth-child(3){ background:#28C840; }
.browser__url { margin-left: 10px; font-size: 12px; color: var(--ink-400); background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 3px 12px; }
.browser__screen { padding: 20px; background: linear-gradient(180deg,#fff, #F7F8FA); }

.mock { display: flex; flex-direction: column; gap: 16px; }
.mock__nav { display: flex; align-items: center; justify-content: space-between; }
.mock__logo { width: 60px; height: 12px; border-radius: 4px; background: var(--ink-900); }
.mock__links { display: flex; gap: 10px; }
.mock__links i { width: 26px; height: 8px; border-radius: 3px; background: #E2E4E8; }
.mock__btn { width: 60px; height: 20px; border-radius: 6px; background: var(--accent); }
.mock__hero { display: flex; flex-direction: column; gap: 10px; padding: 14px 0; }
.mock__h1 { height: 18px; border-radius: 5px; background: var(--ink-800); width: 85%; }
.mock__h1.short { width: 55%; }
.mock__p { height: 9px; border-radius: 4px; background: #DCDEE3; width: 70%; }
.mock__p.short { width: 45%; }
.mock__cta { margin-top: 6px; width: 110px; height: 30px; border-radius: 8px; background: var(--accent); }
.mock__cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.mock__card { height: 60px; border-radius: 8px; background: #EDEFF2; border: 1px solid var(--line); }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--ink-900); color: #fff; padding-block: 40px; }
.trustbar__label { text-align: center; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 26px; }
.trustbar__stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.stat { text-align: center; }
.stat__num { font-size: clamp(28px, 4vw, 40px); font-weight: 700; letter-spacing: -0.03em; color: #fff; }
.stat__suffix { font-size: clamp(20px,3vw,28px); font-weight: 700; color: var(--gold-hi); }

.stat__lbl { display: block; font-size: 13.5px; color: rgba(255,255,255,0.55); margin-top: 4px; }

/* ---------- Grid ---------- */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

/* ---------- Cards ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.card__icon { font-size: 26px; width: 52px; height: 52px; display: grid; place-items: center; background: var(--accent-2); border-radius: var(--radius); margin-bottom: 18px; }
.card h3 { font-size: 20px; font-weight: 600; color: var(--ink-900); letter-spacing: -0.01em; margin-bottom: 10px; }
.card p { font-size: 15.5px; color: var(--ink-500); }

/* ---------- Work cards (clickable) ---------- */
.workcard {
  display: block; width: 100%; text-align: left; font: inherit; color: inherit;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden; cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.workcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.workcard:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.workcard__frame { padding: 14px 14px 0; }
.workcard__browserbar { display: flex; gap: 5px; padding: 8px 4px; }
.workcard__browserbar span { width: 8px; height: 8px; border-radius: 50%; background: #D6D8DC; }
.workcard__shot {
  position: relative;
  height: 180px; border-radius: 10px 10px 0 0;
  background-size: cover; background-position: center;
  border: 1px solid var(--line); border-bottom: none;
  display: grid; place-items: center;
}
.shot--detailing { background: linear-gradient(135deg, #0F172A, #1E3A8A); }
.shot--charter { background: linear-gradient(135deg, #0C4A6E, #0EA5E9); }
.shot--rental { background: linear-gradient(135deg, #1E1B4B, #7C3AED); }
.workcard__shot::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.15)),
    repeating-linear-gradient(180deg, transparent 0 26px, rgba(255,255,255,0.06) 26px 27px);
}
/* "View case study" affordance — signals the card is clickable */
.workcard__view {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13.5px; font-weight: 600; color: #201503;
  background: linear-gradient(180deg, var(--gold-hi), var(--accent));
  padding: 9px 16px; border-radius: var(--radius-pill);
  box-shadow: 0 8px 20px -8px rgba(0,0,0,0.5);
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.workcard:hover .workcard__view,
.workcard:focus-visible .workcard__view { opacity: 1; transform: none; }
.workcard__view span { transition: transform 0.25s var(--ease); }
.workcard:hover .workcard__view span { transform: translateX(3px); }
.workcard__meta { padding: 20px 22px 24px; }
.workcard__meta h3 { font-size: 18px; font-weight: 600; color: var(--ink-900); }
.workcard__meta p { font-size: 14px; color: var(--ink-400); margin: 4px 0 14px; }


.pill {
  display: inline-flex; align-items: center;
  font-size: 12.5px; font-weight: 600;
  color: var(--accent); background: var(--accent-2);
  padding: 5px 12px; border-radius: var(--radius-pill);
}

.work__note {
  margin-top: 44px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px 30px;
}
.work__note p { font-size: 16px; color: var(--ink-700); max-width: 62ch; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.step { position: relative; padding-top: 8px; }
.step__num {
  font-size: 14px; font-weight: 700; color: var(--accent);
  width: 44px; height: 44px; display: grid; place-items: center;
  background: var(--accent-2); border-radius: 12px; margin-bottom: 18px;
}
.step h3 { font-size: 19px; font-weight: 600; color: var(--ink-900); margin-bottom: 8px; }
.step p { font-size: 15px; color: var(--ink-500); }

/* ---------- Pricing ---------- */
.pricing { align-items: start; }
.price {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.price:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price--featured {
  border-color: var(--accent);
  box-shadow: 0 20px 50px -20px rgba(184,137,43,0.4);
}

.price__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  font-size: 12px; font-weight: 700; color: #fff; background: var(--accent);
  padding: 5px 14px; border-radius: var(--radius-pill); letter-spacing: 0.02em;
}
.price__name { font-size: 15px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-400); margin-bottom: 12px; }
.price__amount { font-size: 38px; font-weight: 700; letter-spacing: -0.03em; color: var(--ink-900); }
.price__amount span { font-size: 16px; font-weight: 500; color: var(--ink-400); letter-spacing: 0; }
.price__tag { font-size: 14.5px; color: var(--accent); font-weight: 500; margin: 6px 0 22px; }
.price__list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.price__list li { position: relative; padding-left: 26px; font-size: 15px; color: var(--ink-700); }
.price__list li::before { content: "✓"; position: absolute; left: 0; color: var(--success); font-weight: 700; }
.pricing__reassure { text-align: center; margin-top: 34px; font-size: 15px; color: var(--ink-500); }

/* ---------- Guarantee ---------- */
.guarantee { max-width: 820px; margin-inline: auto; text-align: center; }
.guarantee__quote {
  font-family: var(--serif);
  font-size: clamp(26px, 4.4vw, 40px);
  line-height: 1.25;
  color: var(--ink-900);
  letter-spacing: -0.01em;
}
.guarantee__by { margin-top: 20px; font-size: 15px; color: var(--ink-400); }

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 4px 22px;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.faq__item[open] { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.faq__item summary {
  list-style: none; cursor: pointer;
  font-size: 17px; font-weight: 600; color: var(--ink-900);
  padding: 18px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; font-size: 22px; font-weight: 400; color: var(--accent);
  transition: transform 0.3s var(--ease); flex-shrink: 0;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { font-size: 15.5px; color: var(--ink-500); padding-bottom: 20px; max-width: 64ch; }

/* ---------- CTA ---------- */
.cta {
  position: relative;
  background: radial-gradient(120% 120% at 20% 0%, #1C2340 0%, #0A0A0B 55%);
  color: #fff;
  padding-block: clamp(64px, 9vw, 110px);
  overflow: hidden;
}
.cta__grain {
  position: absolute; inset: 0; opacity: 0.05; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.cta__inner { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.cta__title { font-size: clamp(30px, 4.6vw, 46px); font-weight: 600; letter-spacing: -0.025em; line-height: 1.08; margin-bottom: 16px; }
.cta__sub { font-size: 18px; color: rgba(255,255,255,0.72); margin-bottom: 28px; }
.cta__contact { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.cta__contact li { display: flex; align-items: center; gap: 10px; font-size: 15.5px; color: rgba(255,255,255,0.8); }
.cta__contact a { color: #fff; border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.cta__contact a:hover { border-bottom-color: rgba(255,255,255,0.5); }
.cta__buttons { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Form ---------- */
.cta__form {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(10px);
}
.form__title { font-size: 20px; font-weight: 600; color: #fff; margin-bottom: 6px; letter-spacing: -0.01em; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.7); margin-bottom: 7px; }
.field .req { color: var(--gold-hi); }
.field .opt { color: rgba(255,255,255,0.4); font-weight: 400; }
.field input,
.field textarea,
.field select {
  width: 100%; font-size: 15px; color: #fff; font-family: inherit;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field textarea { resize: vertical; min-height: 84px; }
.field input::placeholder,
.field textarea::placeholder { color: rgba(255,255,255,0.35); }
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none; border-color: var(--accent);
  background: rgba(184,137,43,0.10);
  box-shadow: 0 0 0 3px rgba(184,137,43,0.18);
}
.field input.invalid,
.field select.invalid { border-color: #FF6B6B; }

/* Custom select with gold chevron */
.select-wrap { position: relative; }
.select-wrap::after {
  content: ""; position: absolute; right: 15px; top: 50%; width: 8px; height: 8px;
  border-right: 2px solid var(--gold-hi); border-bottom: 2px solid var(--gold-hi);
  transform: translateY(-70%) rotate(45deg); pointer-events: none;
}
.field select {
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  padding-right: 38px; cursor: pointer;
}
.field select option { color: #16161A; }

/* Inline validation message */
.field__error {
  display: block; font-size: 12.5px; color: #FF9B9B; margin-top: 6px; min-height: 0;
  opacity: 0; transform: translateY(-2px); transition: opacity 0.2s, transform 0.2s;
}
.field__error.show { opacity: 1; transform: none; }

/* Honeypot — hidden from real users */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Submit button loading state */
#submitBtn { position: relative; }
#submitBtn .btn__spinner {
  display: none; width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid rgba(32,21,3,0.35); border-top-color: #201503;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
#submitBtn.is-loading .btn__label { display: none; }
#submitBtn.is-loading .btn__spinner { display: inline-block; }
#submitBtn:disabled { opacity: 0.8; cursor: default; }

/* Success confirmation panel */
.form__success {
  text-align: center; padding: 20px 6px;
}
.form__success .checkmark {
  width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 50%;
  display: grid; place-items: center; font-size: 26px; color: #201503;
  background: linear-gradient(180deg, var(--gold-hi), var(--accent));
}
.form__success h3 { font-size: 20px; color: #fff; margin-bottom: 8px; }
.form__success p { font-size: 15px; color: rgba(255,255,255,0.7); }

.form__note { font-size: 14px; margin-top: 12px; min-height: 20px; }
.form__note.success { color: #4ADE80; }
.form__note.error { color: #FF9B9B; }
.form__fineprint { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 12px; text-align: center; }

@media (max-width: 420px) {
  .field-row { grid-template-columns: 1fr; gap: 0; }
}


/* ---------- Footer ---------- */
.footer { background: var(--ink-900); color: #fff; padding-top: 64px; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1.4fr; gap: 40px; padding-bottom: 44px; }
.brand--light .brand__name { color: #fff; }
.footer__tag { font-size: 15px; color: rgba(255,255,255,0.5); margin-top: 14px; max-width: 34ch; }
.footer__col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.footer__col a, .footer__muted { display: block; font-size: 15px; color: rgba(255,255,255,0.7); margin-bottom: 10px; transition: color 0.2s; }
.footer__col a:hover { color: #fff; }
.footer__muted { color: rgba(255,255,255,0.4); }
.footer__bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-block: 24px; font-size: 13.5px; color: rgba(255,255,255,0.45);
}

/* ---------- Mobile sticky CTA ---------- */
.mobilecta {
  position: fixed; bottom: 16px; left: 16px; right: 16px; z-index: 90;
  display: none; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(180deg, var(--gold-mid), var(--accent)); color: #201503; font-weight: 700; font-size: 16px;
  padding: 15px; border-radius: var(--radius);
  box-shadow: 0 14px 30px -8px rgba(184,137,43,0.6);
}
.mobilecta span { transition: transform 0.25s var(--ease); }


/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero__inner, .cta__inner { grid-template-columns: 1fr; gap: 44px; }
  .hero__visual { max-width: 480px; }
  .grid--3, .steps, .pricing { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__links.is-open {
    display: flex; flex-direction: column; gap: 4px;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--surface); border-bottom: 1px solid var(--line);
    padding: 16px 24px; box-shadow: var(--shadow-md);
  }
  .nav__links.is-open a { color: var(--ink-900); padding: 10px 0; font-size: 16px; }
  .mobilecta { display: flex; }
  body { padding-bottom: 76px; }
  .grid--3, .steps, .pricing, .trustbar__stats, .footer__inner { grid-template-columns: 1fr; }
  .trustbar__stats { grid-template-columns: 1fr 1fr; gap: 24px; }
  .work__note { flex-direction: column; align-items: flex-start; }
  .price--featured { order: -1; }
}

/* Touch devices can't hover — always show the "View case study" cue */
@media (hover: none) {
  .workcard__view { opacity: 1; transform: none; }
}


@media (max-width: 420px) {
  .container { padding-inline: 18px; }
  .hero__cta .btn { width: 100%; }
}

/* ---------- Case-study modal ---------- */
body.modal-open { overflow: hidden; }

.modal {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center;
  padding: 20px;
}
.modal[hidden] { display: none; }
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(10, 10, 11, 0.6);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  opacity: 0; transition: opacity 0.25s var(--ease);
}
.modal.is-open .modal__backdrop { opacity: 1; }

.modal__panel {
  position: relative; z-index: 1;
  width: 100%; max-width: 720px;
  max-height: calc(100vh - 40px); overflow-y: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 32px;
  opacity: 0; transform: translateY(20px) scale(0.98);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.modal.is-open .modal__panel { opacity: 1; transform: none; }

.modal__close {
  position: absolute; top: 14px; right: 16px;
  width: 38px; height: 38px; border-radius: 50%;
  font-size: 24px; line-height: 1; color: var(--ink-500);
  display: grid; place-items: center;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.modal__close:hover { background: var(--tint); color: var(--ink-900); }

.modal__tag {
  display: inline-block; font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--accent); background: var(--accent-2);
  padding: 5px 12px; border-radius: var(--radius-pill); margin-bottom: 14px;
}
.modal__title { font-size: 26px; font-weight: 600; letter-spacing: -0.02em; color: var(--ink-900); }
.modal__sub { font-size: 15.5px; color: var(--ink-500); margin-top: 8px; max-width: 60ch; }

/* Before / After */
.ba { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 24px 0; }
.ba__col { position: relative; }
.ba__label {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.03em;
  padding: 4px 10px; border-radius: var(--radius-pill);
}
.ba__label--before { background: rgba(10,10,11,0.7); color: #fff; }
.ba__label--after { background: linear-gradient(180deg, var(--gold-hi), var(--accent)); color: #201503; }
.ba__shot {
  height: 150px; border-radius: var(--radius); border: 1px solid var(--line);
  background-size: cover; background-position: center;
}
/* "Before" = dated / dull placeholders */
.shot--before-detailing,
.shot--before-charter,
.shot--before-rental {
  background:
    repeating-linear-gradient(0deg, #e9eaed 0 10px, #e2e3e7 10px 20px),
    linear-gradient(135deg, #d9dade, #c8c9ce);
  filter: grayscale(0.4);
}

/* Results row */
.modal__results { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 24px; }
.result {
  text-align: center; background: var(--tint);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px 10px;
}
.result__num { display: block; font-size: 24px; font-weight: 700; letter-spacing: -0.02em; color: var(--ink-900); }
.result__lbl { display: block; font-size: 12.5px; color: var(--ink-500); margin-top: 4px; }

/* What we built */
.modal__did h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-400); margin-bottom: 14px; }
.modal__did ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.modal__did li { position: relative; padding-left: 26px; font-size: 15px; color: var(--ink-700); }
.modal__did li::before { content: "✓"; position: absolute; left: 0; color: var(--success); font-weight: 700; }

.modal__actions { display: flex; flex-wrap: wrap; gap: 12px; }

@media (max-width: 560px) {
  .modal__panel { padding: 24px 20px; }
  .modal__title { font-size: 22px; }
  .ba { grid-template-columns: 1fr; }
  .modal__results { grid-template-columns: 1fr; gap: 8px; }
  .result { display: flex; align-items: baseline; justify-content: center; gap: 8px; padding: 12px; }
  .result__num { font-size: 20px; }
  .modal__actions .btn { width: 100%; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .modal__backdrop, .modal__panel { opacity: 1; transform: none; }
}


