/* ============================================================
   YachtRelay AI — shared styles
   Palette: deep navy ground, warm ivory text, brass accent.
   Display: Cormorant Garamond (engraved brass plaque feel)
   Body: Public Sans
   ============================================================ */

:root {
  --bg: #081620;
  --bg-alt: #0D202B;
  --bg-panel: #10293480;
  --bg-panel-solid: #122A35;
  --bg-card: #14313D;
  --text: #F2ECDF;
  --text-dim: #A9BBC3;
  --text-faint: #6D8590;
  --brass: #C99A4D;
  --brass-bright: #E7C077;
  --hero-gold: #F6D370;
  --brass-ink: #221604;
  --slate: #4C7A80;
  --slate-soft: #1B3941;
  --line: rgba(242, 236, 223, 0.12);
  --line-strong: rgba(242, 236, 223, 0.24);
  --danger: #D97757;
  --good: #6FAE8C;
  --radius-s: 6px;
  --radius-m: 12px;
  --radius-l: 20px;
  --shadow-card: 0 1px 2px rgba(0,0,0,0.2), 0 20px 40px -24px rgba(0,0,0,0.6);
  --font-display: 'Cormorant Garamond', Georgia, 'Iowan Old Style', serif;
  --font-body: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0;
  text-wrap: balance;
  color: var(--text);
}

h1 { font-size: clamp(2.4rem, 5vw, 4.1rem); font-weight: 600; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
h3 { font-size: 1.35rem; }

p { margin: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--brass);
  display: inline-block;
}

.lead {
  font-size: 1.12rem;
  color: var(--text-dim);
  max-width: 56ch;
  line-height: 1.65;
}

.section {
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
}
.section-alt { background: var(--bg-alt); }
.section:last-of-type { border-bottom: none; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: var(--radius-s);
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(180deg, var(--brass-bright), var(--brass));
  color: var(--brass-ink);
  position: relative;
  isolation: isolate;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 24px -10px rgba(201,154,77,0.55); }
.btn-primary::before {
  content: "";
  position: absolute;
  inset: -6px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--brass), var(--brass-bright));
  filter: blur(14px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn-primary:hover::before { opacity: 0.6; }
.hero-buttons .btn-primary { animation: ctaPulse 3.4s ease-in-out infinite; }
.hero-buttons .btn-primary:hover { animation-play-state: paused; }
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,154,77,0.38); }
  50% { box-shadow: 0 0 0 9px rgba(201,154,77,0); }
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn-outline:hover { border-color: var(--brass); color: var(--brass-bright); }
.btn-block { width: 100%; justify-content: center; }
.btn:focus-visible { outline: 2px solid var(--brass); outline-offset: 2px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 22, 32, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.site-header.scrolled { border-color: var(--line); background: rgba(8, 22, 32, 0.92); }
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
}
.brand svg { width: 26px; height: 26px; color: var(--brass); flex-shrink: 0; }
.brand span { color: var(--brass); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.92rem;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-dim);
  transition: color 0.15s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }

.nav-right { display: flex; align-items: center; gap: 16px; }

.lang-toggle {
  display: flex;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  overflow: hidden;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.lang-toggle button {
  background: transparent;
  border: none;
  color: var(--text-faint);
  padding: 6px 13px;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
}
.lang-toggle button.on { background: var(--brass); color: var(--brass-ink); }
.lang-toggle button:focus-visible { outline: 2px solid var(--brass); outline-offset: -2px; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-s);
  color: var(--text);
  width: 40px;
  height: 40px;
  font-size: 1.1rem;
  cursor: pointer;
}

.nav-cta-mobile { display: none; }

@media (max-width: 1060px) {
  .nav-links { display: none; position: fixed; top: 78px; left: 0; right: 0; bottom: 0; background: var(--bg); flex-direction: column; align-items: flex-start; padding: 30px 28px; gap: 22px; overflow-y: auto; }
  .nav-links.open { display: flex; animation: navSlideIn 0.22s ease; }
  @keyframes navSlideIn { from { opacity: 0; transform: translateX(16px); } to { opacity: 1; transform: translateX(0); } }
  .nav-toggle { display: block; }
  .nav-links a { font-size: 1.1rem; }
  .nav-cta-mobile {
    display: inline-flex;
    margin-top: 6px;
    padding: 12px 20px;
    background: var(--brass);
    color: var(--brass-ink);
    border-radius: var(--radius-s);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem !important;
  }
  .nav-cta-btn { display: none; }
}

@media (max-width: 420px) {
  .lang-toggle button { padding: 4px 7px; font-size: 0.68rem; }
  .site-header .container { gap: 8px; }
  .nav-right { gap: 8px; }
}

@media (max-width: 560px) {
  .nav-cta-btn { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 140px 0 90px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 55% at 60% 38%, rgba(8,16,22,0.55) 0%, transparent 72%),
    linear-gradient(180deg, rgba(8,16,22,0.74) 0%, rgba(8,16,22,0.88) 45%, var(--bg) 100%);
}
.hero-inner { position: relative; max-width: 760px; }
.hero .lead { font-size: 1.2rem; margin-bottom: 30px; }
.hero .lead strong { color: var(--text); }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.trust-bar { font-size: 0.92rem; color: var(--text-faint); }
.trust-bar strong { color: var(--text-dim); }

.badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.badges span {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text-dim);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 6px 13px;
  background: rgba(242,236,223,0.03);
}

/* ---------- Problem stat grid ---------- */
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 8px; }
.stat-item { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.stat-ring {
  width: 76px; height: 76px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-card); border: 1px solid var(--line-strong);
  color: var(--brass);
  flex-shrink: 0;
}
.stat-ring svg { width: 30px; height: 30px; }
.stat-item p { color: var(--text-dim); font-size: 0.98rem; max-width: 26ch; }
.problem-close { text-align: center; color: var(--text-dim); font-size: 1rem; max-width: 620px; margin: 44px auto 0; }
.problem-close strong { color: var(--text); }

@media (max-width: 720px) { .stat-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- Process steps ---------- */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 28px; }
.process-step {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 28px 24px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.process-step:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.step-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--brass);
  margin-bottom: 10px;
}
.process-step h3 { margin-bottom: 10px; font-size: 1.12rem; }
.process-step p { color: var(--text-dim); font-size: 0.92rem; }

/* ---------- Segment / feature cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .card-grid { grid-template-columns: 1fr; } }
.seg-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 30px 26px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.seg-card:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.seg-card h3 { margin-bottom: 10px; }
.seg-card p { color: var(--text-dim); font-size: 0.94rem; }
.seg-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
  background: var(--slate-soft);
  border-radius: 999px;
  padding: 4px 11px;
  margin-bottom: 14px;
}

/* ---------- Before / after comparison ---------- */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 1180px; margin: 0 auto; }
@media (max-width: 860px) { .compare-grid { grid-template-columns: 1fr; gap: 22px; } }

.compare-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-top: 3px solid var(--line-strong);
  border-radius: var(--radius-m);
  padding: 30px 28px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.compare-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.compare-card--bad { border-top-color: var(--danger); }
.compare-card--good { border-top-color: var(--good); }
.compare-card h3 { font-size: 1.2rem; margin-bottom: 18px; }
.compare-card--bad h3 { color: var(--danger); }
.compare-card--good h3 { color: var(--good); }

.compare-row { display: flex; gap: 16px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.compare-row:last-of-type { border-bottom: none; }
.compare-time {
  flex-shrink: 0; width: 68px; font-family: var(--font-body); font-size: 0.78rem;
  font-weight: 700; letter-spacing: 0.02em; color: var(--text-faint); padding-top: 1px;
}
.compare-event { font-size: 0.9rem; line-height: 1.55; color: var(--text-dim); }

.compare-total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line-strong);
  font-size: 0.92rem; color: var(--text-dim);
}
.compare-total strong { font-family: var(--font-display); font-size: 1.3rem; color: var(--text); }
.compare-card--bad .compare-total strong { color: var(--danger); }
.compare-card--good .compare-total strong { color: var(--good); }

.compare-note {
  text-align: center; margin: 40px auto 0; max-width: 640px;
  font-size: 1rem; color: var(--brass-bright);
}

/* ---------- Testimonial ---------- */
.testimonial-section { background: var(--bg-alt); }
.testimonial-card {
  max-width: 760px; margin: 0 auto; text-align: center;
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius-l); padding: 52px 48px;
  box-shadow: var(--shadow-card);
}
@media (max-width: 640px) { .testimonial-card { padding: 38px 26px; } }
.testimonial-mark { font-family: var(--font-display); font-size: 3.4rem; line-height: 1; color: var(--brass); display: block; margin-bottom: 4px; }
.testimonial-quote { font-family: var(--font-display); font-size: 1.28rem; font-style: italic; line-height: 1.6; color: var(--text); margin-bottom: 26px; }
.testimonial-name { color: var(--brass-bright); font-weight: 700; font-size: 0.98rem; margin-bottom: 3px; }
.testimonial-role { color: var(--text-dim); font-size: 0.86rem; }
.testimonial-meta { margin-top: 18px; font-size: 0.76rem; letter-spacing: 0.03em; color: var(--text-faint); text-transform: uppercase; }

/* ---------- Split / bespoke section ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.split-media { border-radius: var(--radius-l); overflow: hidden; box-shadow: var(--shadow-card); }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-text .lead { margin: 18px 0 22px; }
.split.reverse { grid-template-columns: 0.95fr 1.05fr; }
.split.reverse .split-media { order: 2; }
.check-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; gap: 10px; font-size: 0.95rem; color: var(--text-dim); align-items: flex-start; }
.check-list li svg { flex-shrink: 0; width: 18px; height: 18px; color: var(--brass); margin-top: 2px; }

@media (max-width: 860px) {
  .split, .split.reverse { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse .split-media { order: 0; }
}

/* ---------- Season cards ---------- */
.season-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 960px) { .season-grid { grid-template-columns: 1fr 1fr; } }
.season-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 32px 28px;
  position: relative;
}
.season-card .month { font-size: 0.78rem; color: var(--brass); font-weight: 700; letter-spacing: 0.04em; margin-bottom: 10px; display: block; }
.season-card h3 { margin-bottom: 12px; }
.season-card p { color: var(--text-dim); font-size: 0.94rem; }
@media (max-width: 720px) { .season-grid { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 1px; background: var(--line); border-radius: var(--radius-m); overflow: hidden; }
.faq-item { background: var(--bg-alt); padding: 0; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-weight: 600;
  font-size: 1.02rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--brass);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 26px 24px; color: var(--text-dim); font-size: 0.95rem; max-width: 66ch; }

/* ---------- CTA band ---------- */
.cta-band {
  text-align: center;
  padding: 90px 0;
}
.cta-band h2 { margin-bottom: 16px; }
.cta-band p { color: var(--text-dim); max-width: 54ch; margin: 0 auto 30px; font-size: 1.05rem; }
.cta-band .hero-buttons { justify-content: center; margin-bottom: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-alt); padding: 70px 0 30px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.footer-brand p { color: var(--text-faint); font-size: 0.9rem; margin-top: 16px; max-width: 34ch; }
.footer-col h4 { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 16px; font-family: var(--font-body); }
.footer-col a { display: block; color: var(--text-dim); text-decoration: none; font-size: 0.92rem; margin-bottom: 12px; }
.footer-col a:hover { color: var(--brass-bright); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 26px; border-top: 1px solid var(--line); font-size: 0.82rem; color: var(--text-faint); }
.footer-bottom a { color: var(--text-faint); text-decoration: underline; }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px) scale(0.975);
  filter: blur(5px);
  transition: opacity 0.8s cubic-bezier(.16,1,.3,1), transform 0.8s cubic-bezier(.16,1,.3,1), filter 0.8s cubic-bezier(.16,1,.3,1);
}
.reveal.in { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }

/* ---------- Signature interactions: shine text, tilt cards, ambient glow, count-up ---------- */
.shine-text {
  background: linear-gradient(100deg, var(--brass) 20%, var(--brass-bright) 40%, #fff8ea 50%, var(--brass-bright) 60%, var(--brass) 80%);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shineSweep 5.5s ease-in-out infinite;
}
@keyframes shineSweep {
  0% { background-position: 200% 0; }
  100% { background-position: -40% 0; }
}

.tilt-card { transition: transform 0.16s ease-out, border-color 0.2s ease, box-shadow 0.2s ease; will-change: transform; }

.glow-section { position: relative; overflow: hidden; }
.glow-section > .container { position: relative; z-index: 1; }
.glow-section::before {
  content: "";
  position: absolute;
  top: -140px; left: 50%;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(201,154,77,0.16) 0%, transparent 70%);
  transform: translateX(-55%);
  z-index: 0;
  pointer-events: none;
  animation: driftGlow 16s ease-in-out infinite alternate;
}
@keyframes driftGlow {
  0% { transform: translate(-60%, 0) scale(1); }
  100% { transform: translate(-42%, 46px) scale(1.18); }
}

.hero { position: relative; }
.hero-spotlight {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(560px circle at var(--sx, 50%) var(--sy, 32%), rgba(231,192,119,0.14), transparent 62%);
  opacity: 0; transition: opacity 0.5s ease;
}
.hero:hover .hero-spotlight { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .reveal { transform: none !important; filter: none !important; }
  .shine-text { animation: none; background-position: 0 0; }
  .hero-buttons .btn-primary { animation: none; }
  .glow-section::before { animation: none; }
}
@media (pointer: coarse) {
  .tilt-card { transform: none !important; }
}

/* ============================================================
   Readiness Check page
   ============================================================ */
.rc-hero {
  position: relative;
  padding: 150px 0 70px;
  overflow: hidden;
}
.rc-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center 60%; }
.rc-hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,16,22,0.82), var(--bg) 92%); }
.rc-hero-inner { position: relative; max-width: 680px; }

.segment-picker { display: flex; flex-wrap: wrap; gap: 10px; margin: 30px 0 6px; }
.segment-pill {
  font-size: 0.86rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: var(--bg-card);
  color: var(--text-dim);
  cursor: pointer;
  transition: all 0.15s ease;
}
.segment-pill.on { background: var(--brass); border-color: var(--brass); color: var(--brass-ink); }
.segment-pill:focus-visible { outline: 2px solid var(--brass); outline-offset: 2px; }

.rc-progress-wrap {
  position: sticky;
  top: 78px;
  z-index: 50;
  background: rgba(8,22,32,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.rc-progress-inner { display: flex; align-items: center; gap: 20px; }
.rc-progress-track { flex: 1; height: 8px; background: var(--bg-card); border-radius: 999px; overflow: hidden; }
.rc-progress-fill { height: 100%; width: 0%; background: linear-gradient(90deg, var(--brass), var(--brass-bright)); border-radius: 999px; transition: width 0.3s ease; }
.rc-progress-score { font-family: var(--font-display); font-size: 1.3rem; color: var(--brass); white-space: nowrap; font-variant-numeric: tabular-nums; }
.rc-progress-score b { font-size: 1.3rem; }

.rc-section { padding: 56px 0; border-bottom: 1px solid var(--line); }
.rc-section-head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 24px; }
.rc-num { font-family: var(--font-display); color: var(--brass); font-size: 1.1rem; font-weight: 600; }
.rc-skip { font-size: 0.82rem; color: var(--text-faint); font-style: italic; margin: -14px 0 20px 0; }

.check-grid { display: flex; flex-direction: column; gap: 4px; }
.check-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 18px;
  border-radius: var(--radius-s);
  cursor: pointer;
  transition: background 0.15s ease;
}
.check-row:hover { background: var(--bg-card); }
.check-row input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border: 1.5px solid var(--line-strong);
  border-radius: 5px;
  margin: 2px 0 0;
  cursor: pointer;
  position: relative;
  background: var(--bg-card);
  transition: all 0.15s ease;
}
.check-row input[type="checkbox"]:checked { background: var(--brass); border-color: var(--brass); }
.check-row input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 6px; top: 2px;
  width: 6px; height: 11px;
  border: solid var(--brass-ink);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.check-row input[type="checkbox"]:focus-visible { outline: 2px solid var(--brass); outline-offset: 2px; }
.check-row span { font-size: 0.98rem; color: var(--text); line-height: 1.5; }
.check-row input:checked ~ span { color: var(--text-dim); }

.rc-result {
  background: var(--bg-card);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-l);
  padding: 38px 34px;
  text-align: center;
}
.rc-result-score { font-family: var(--font-display); font-size: 3.2rem; color: var(--brass); font-variant-numeric: tabular-nums; line-height: 1; margin-bottom: 6px; }
.rc-result-score span { font-size: 1.4rem; color: var(--text-faint); }
.rc-result-band { font-weight: 700; font-size: 1.1rem; margin-bottom: 14px; }
.rc-result-msg { color: var(--text-dim); max-width: 52ch; margin: 0 auto 8px; font-size: 0.98rem; }
.rc-result-focus { color: var(--brass-bright); font-weight: 600; font-size: 0.94rem; margin-top: 14px; }

/* Calculator */
.calc-wrap { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-l); padding: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 46px; }
.calc-fld { margin-bottom: 24px; }
.calc-fld label { display: flex; justify-content: space-between; font-size: 0.9rem; color: var(--text-dim); margin-bottom: 10px; }
.calc-fld output { color: var(--brass-bright); font-weight: 700; font-variant-numeric: tabular-nums; }
input[type="range"] {
  width: 100%; appearance: none; -webkit-appearance: none; height: 4px;
  background: var(--line-strong); border-radius: 999px; outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  appearance: none; -webkit-appearance: none; width: 18px; height: 18px;
  border-radius: 50%; background: var(--brass); cursor: pointer; border: 3px solid var(--bg-card);
  box-shadow: 0 0 0 1px var(--brass);
}
input[type="range"]::-moz-range-thumb {
  width: 18px; height: 18px; border-radius: 50%; background: var(--brass); cursor: pointer; border: 3px solid var(--bg-card); box-shadow: 0 0 0 1px var(--brass);
}
.calc-out { display: flex; flex-direction: column; justify-content: center; }
.calc-row { display: flex; justify-content: space-between; padding: 12px 0; border-top: 1px solid var(--line); font-size: 0.92rem; color: var(--text-dim); }
.calc-row:first-child { border-top: none; }
.calc-row b { color: var(--text); font-variant-numeric: tabular-nums; }
.calc-big { margin-top: 18px; padding-top: 22px; border-top: 1px solid var(--line-strong); }
.calc-big span { display: block; font-size: 0.86rem; color: var(--text-faint); margin-bottom: 6px; }
.calc-big b { font-family: var(--font-display); font-size: 2.4rem; color: var(--brass); display: block; font-variant-numeric: tabular-nums; }
.calc-big small { display: block; margin-top: 10px; font-size: 0.76rem; color: var(--text-faint); line-height: 1.5; }
.calc-note { font-size: 0.78rem; color: var(--text-faint); margin-top: 8px; }
@media (max-width: 780px) { .calc-wrap { grid-template-columns: 1fr; padding: 28px 22px; } }

/* ============================================================
   Operations Partner page — extra components
   ============================================================ */

/* ---------- Wedge quote (charter page) ---------- */
.wedge-quote {
  background: var(--bg-card);
  border-left: 3px solid var(--brass);
  border-radius: var(--radius-m);
  padding: 36px 40px;
  margin: 0 auto;
  max-width: 760px;
}
.wedge-quote p.q {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  font-style: italic;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 14px;
}
.wedge-quote p.a { color: var(--text-dim); font-size: 0.94rem; }

.stage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stage-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 30px 26px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.stage-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.stage-card.mid { border-color: var(--brass); }
.stage-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--brass);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.stage-card h3 { margin-bottom: 6px; font-size: 1.2rem; }
.stage-price { font-family: var(--font-display); color: var(--brass-bright); font-size: 1.35rem; margin-bottom: 14px; display: block; }
.stage-card p { color: var(--text-dim); font-size: 0.9rem; }
@media (max-width: 860px) { .stage-grid { grid-template-columns: 1fr; } }

.expand-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.expand-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-m); padding: 28px 24px; transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; }
.expand-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); border-color: var(--line-strong); }
.expand-card .rank { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--slate); background: var(--slate-soft); border-radius: 999px; padding: 4px 11px; display: inline-block; margin-bottom: 14px; }
.expand-card h3 { margin-bottom: 10px; font-size: 1.08rem; }
.expand-card p { color: var(--text-dim); font-size: 0.92rem; }

.share-box {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  background: var(--bg-card); border: 1px dashed var(--line-strong); border-radius: var(--radius-m);
  padding: 18px 22px; font-size: 0.88rem; color: var(--text-dim);
}
.share-box code { background: var(--slate-soft); color: var(--brass-bright); padding: 6px 12px; border-radius: var(--radius-s); font-size: 0.82rem; word-break: break-all; }
.copy-btn { font-size: 0.82rem; padding: 8px 14px; }

/* ---------- Smooth scroll ---------- */
html { scroll-behavior: smooth; }

/* ---------- Channel strip ---------- */
.channel-section { padding-top: 44px; padding-bottom: 60px; }
.channel-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px 26px; }
.channel-badge { display: flex; flex-direction: column; align-items: center; gap: 12px; width: 116px; text-align: center; }
.channel-ring {
  width: 62px; height: 62px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-card); border: 1px solid var(--line-strong);
  color: var(--brass); position: relative; flex-shrink: 0;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.channel-ring svg { width: 25px; height: 25px; position: relative; z-index: 1; }
.channel-ring::before {
  content: ""; position: absolute; inset: -7px; border-radius: 50%;
  border: 1px solid var(--brass); opacity: 0; animation: ringPulse 3.4s ease-out infinite;
}
.channel-badge:nth-child(2) .channel-ring::before { animation-delay: 0.5s; }
.channel-badge:nth-child(3) .channel-ring::before { animation-delay: 1s; }
.channel-badge:nth-child(4) .channel-ring::before { animation-delay: 1.5s; }
.channel-badge:nth-child(5) .channel-ring::before { animation-delay: 2s; }
.channel-badge:nth-child(6) .channel-ring::before { animation-delay: 2.5s; }
.channel-badge:hover .channel-ring { color: var(--brass-bright); border-color: var(--brass); transform: translateY(-3px); }
.channel-badge span:last-child { font-size: 0.82rem; color: var(--text-dim); }
@keyframes ringPulse {
  0% { transform: scale(0.92); opacity: 0.55; }
  80% { transform: scale(1.4); opacity: 0; }
  100% { opacity: 0; }
}

/* ---------- 3D yacht hero visual ---------- */
.hero-yacht3d {
  position: absolute;
  right: 2%;
  top: 54%;
  transform: translateY(-50%);
  width: 460px;
  z-index: 1;
  pointer-events: none;
  display: none;
  perspective: 1200px;
}
@media (min-width: 900px) { .hero-yacht3d { display: block; } }
@media (min-width: 1180px) { .hero-yacht3d { width: 540px; } }
@media (min-width: 1400px) { .hero-yacht3d { width: 620px; right: 4%; } }
.yacht3d-tilt {
  position: relative;
  width: 100%;
  transform-style: preserve-3d;
  transition: transform 0.2s ease-out;
  will-change: transform;
}
.yacht3d-sheen {
  transform-box: fill-box;
  transform-origin: center;
  transform: translateX(calc(var(--mx, 0) * 90px));
  transition: transform 0.2s ease-out;
}
.yacht3d-float { animation: yachtBob 6s ease-in-out infinite; }
@keyframes yachtBob {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(-0.6deg); }
}
.yacht3d-svg { width: 100%; height: auto; overflow: visible; filter: drop-shadow(0 26px 34px rgba(0,0,0,0.5)); }
.yacht3d-glow { animation: glowPulse 5s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
@keyframes glowPulse {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(1.06); }
}
.yacht3d-ripple { transform-box: fill-box; transform-origin: center; opacity: 0; }
.ripple1 { animation: rippleMove 4s ease-in-out infinite; }
.ripple2 { animation: rippleMove 4s ease-in-out infinite 1.3s; }
@keyframes rippleMove {
  0% { opacity: 0; transform: scaleX(0.7); }
  50% { opacity: 0.4; }
  100% { opacity: 0; transform: scaleX(1.15); }
}
.bowfoam { transform-box: fill-box; transform-origin: center; animation: foamPulse 3.4s ease-in-out infinite; }
@keyframes foamPulse {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 0.8; }
}
.yacht3d-wake { animation: wakeFlow 1.6s linear infinite; }
@keyframes wakeFlow { to { stroke-dashoffset: -30; } }

/* Independent parallax depth per layer, driven by --mx/--my set from cursor position */
.yacht-layer-reflection, .yacht-layer-hull, .yacht-layer-cabin, .yacht-layer-fore {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 0.2s ease-out;
}
.yacht-layer-reflection { transform: translate(calc(var(--mx, 0) * 2px), 0); }
.yacht-layer-hull { transform: translate(calc(var(--mx, 0) * 4px), calc(var(--my, 0) * 2px)); }
.yacht-layer-cabin { transform: translate(calc(var(--mx, 0) * 8px), calc(var(--my, 0) * 4px)); }
.yacht-layer-fore { transform: translate(calc(var(--mx, 0) * 13px), calc(var(--my, 0) * 5px)); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .yacht3d-float, .yacht3d-glow, .yacht3d-ripple, .bowfoam, .yacht3d-wake, .channel-ring::before { animation: none; }
  .yacht3d-tilt, .yacht3d-sheen, .yacht-layer-reflection, .yacht-layer-hull, .yacht-layer-cabin, .yacht-layer-fore { transition: none; }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--hero-gold);
  text-shadow: 0 2px 28px rgba(0,0,0,0.55), 0 1px 3px rgba(0,0,0,0.4);
  margin-bottom: 20px;
}

.hero .lead {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #f5e6c4;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
  margin-bottom: 32px;
}

.hero-buttons { gap: 16px; }
.hero .btn-primary {
  background: linear-gradient(180deg, var(--brass-bright), var(--brass));
  border: none;
  font-weight: 600;
  padding: 14px 32px;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.hero .btn-outline {
  color: #ffffff;
  border: 1.5px solid #ffffff;
  font-weight: 600;
  padding: 14px 32px;
  font-size: 0.95rem;
}

.hero .btn-outline:hover {
  background: rgba(201, 154, 77, 0.12);
  border-color: var(--brass);
  color: var(--brass-bright);
}

.hero .eyebrow {
  color: var(--brass);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero .trust-bar {
  color: var(--text-dim);
  font-size: 0.95rem;
  margin-top: 24px;
}

.hero .badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero .badges span {
  background: rgba(201, 154, 77, 0.12);
  color: var(--brass-bright);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(201, 154, 77, 0.35);
}

/* ---------- CRM Dashboard Showcase ---------- */
.crm-showcase { 
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
  padding: 80px 0;
  position: relative;
}

.crm-showcase .section-head {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
}

.crm-showcase h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  color: #0f1929;
}

.crm-showcase .lead {
  color: #596875;
  font-size: 1rem;
}

.crm-showcase-image {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(15, 25, 41, 0.15);
  border: 1px solid rgba(15, 25, 41, 0.08);
  overflow: hidden;
}

.crm-showcase-image svg,
.crm-showcase-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- Process Steps Section ---------- */
.process-steps {
  background: linear-gradient(180deg, #0f1929 0%, #0a0f1a 100%);
  padding: 100px 0;
}

.process-steps .section-head {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
}

.process-steps h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.process-steps .lead {
  font-size: 1.05rem;
  color: #b0c4de;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.step-card {
  text-align: center;
  position: relative;
  padding: 30px 24px;
  background: linear-gradient(135deg, rgba(15, 25, 41, 0.6) 0%, rgba(10, 15, 26, 0.4) 100%);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.step-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  background: linear-gradient(135deg, rgba(15, 25, 41, 0.8) 0%, rgba(10, 15, 26, 0.6) 100%);
  transform: translateY(-4px);
}

.step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--brass-bright) 0%, var(--brass) 100%);
  color: var(--brass-ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step-icon {
  font-size: 44px;
  margin-bottom: 12px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 0.9rem;
  color: #7fa3c4;
  line-height: 1.6;
  margin: 0;
}

.step-card:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(212, 175, 55, 0.25);
  font-size: 20px;
  font-weight: 300;
}

@media (max-width: 768px) {
  .step-card:not(:last-child)::after { display: none; }
}


/* Gold accent for YachtOne alignment */
:root {
  --gold: #d4af37;
  --gold-light: #e8c547;
  --gold-dim: #9d8c2e;
}

/* Dashboard redesign for YachtOne style */
.crm-dashboard { background: linear-gradient(180deg, #0a0f1a 0%, #111d2e 100%); }
.crm-dashboard-card {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.02) 100%);
  border: 1px solid rgba(212, 175, 55, 0.15);
  backdrop-filter: blur(10px);
}


/* ---------- Features Grid Section (YachtOne-inspired) ---------- */
.features-grid {
  background: #ffffff;
  padding: 80px 0;
}

.features-grid .section-head {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
}

.features-grid h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  color: #0f1929;
}

.features-2col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-block {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.02) 100%);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 12px;
  padding: 40px;
  position: relative;
}

.feature-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--brass-bright) 0%, var(--brass) 100%);
  border-radius: 12px 0 0 12px;
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: inline-block;
}

.feature-block h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0f1929;
  margin-bottom: 12px;
}

.feature-desc {
  color: #596875;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list li {
  color: #596875;
  font-size: 0.9rem;
  line-height: 1.5;
  padding-left: 24px;
  position: relative;
}

.feature-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #d4af37;
  font-weight: 700;
}


/* ---------- Dark Features Section (Yacht-Focused Copy) ---------- */
/* ========== Vertical Timeline Features ========== */
.features-timeline {
  background: linear-gradient(180deg, #0f1929 0%, #0a0f1a 100%);
  padding: 100px 0;
}

.features-timeline .section-head {
  max-width: 700px;
  margin: 0 auto 80px;
  text-align: center;
}

.features-timeline h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.features-timeline .lead {
  color: #b0c4de;
  font-size: 1.05rem;
}

/* Timeline vertical layout */
.timeline-vertical {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline-vertical::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #d4af37 0%, rgba(212, 175, 55, 0.2) 100%);
  transform: translateX(-1px);
}

.timeline-item {
  margin-bottom: 50px;
  position: relative;
  padding: 0 40px;
}

.timeline-item:nth-child(odd) {
  text-align: right;
  padding-right: 52%;
  padding-left: 0;
}

.timeline-item:nth-child(even) {
  text-align: left;
  padding-left: 52%;
  padding-right: 0;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--brass-bright) 0%, var(--brass) 100%);
  border: 3px solid #0a0f1a;
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.timeline-content {
  background: linear-gradient(135deg, rgba(15, 25, 41, 0.8) 0%, rgba(10, 15, 26, 0.6) 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  padding: 32px 28px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item:hover .timeline-content {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 16px 40px rgba(212, 175, 55, 0.12);
  transform: translateY(-4px);
}

.timeline-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.timeline-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.timeline-content p {
  color: #b0c4de;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .timeline-vertical::before {
    left: 10px;
  }

  .timeline-item {
    text-align: left !important;
    padding-left: 50px !important;
    padding-right: 0 !important;
  }

  .timeline-dot {
    left: 10px !important;
  }
}

.features-2col-dark {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card-dark {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.03) 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  padding: 40px;
  position: relative;
  transition: all 0.3s ease;
}

.feature-card-dark:hover {
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
}

.feature-card-dark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--brass-bright) 0%, var(--brass) 100%);
  border-radius: 12px 0 0 12px;
}

.feature-card-dark .feature-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

.feature-card-dark h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.feature-card-dark p {
  color: #b0c4de;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.feature-list-dark {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list-dark li {
  color: #7fa3c4;
  font-size: 0.9rem;
  line-height: 1.5;
  padding-left: 24px;
  position: relative;
}

.feature-list-dark li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #d4af37;
  font-weight: 700;
}

/* ---------- Integrations Showcase ---------- */
.integrations-showcase {
  background: #0f1929;
  padding: 60px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.integrations-showcase .section-head {
  max-width: 700px;
  margin: 0 auto 50px;
  text-align: center;
}

.integrations-showcase h2 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 12px;
}

.integrations-showcase .lead {
  color: #b0c4de;
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto 40px;
}

.integration-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
}

.integration-badge:hover {
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-4px);
}

.integration-badge svg {
  width: 60px;
  height: 60px;
}

.integration-badge span {
  color: #b0c4de;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
}

/* Real wordmark logos (YachtWorld, Rightboat, Boat Trader, HighLevel) sit on
   their own plate instead of a colored icon circle, since they're full
   logotypes rather than app-icon glyphs. */
.integration-badge .logo-plate {
  width: 100%;
  height: 60px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  background: #f4f1ea;
}

.integration-badge .logo-plate.logo-plate--dark {
  background: #0b223f;
}

.integration-badge .logo-plate img,
.integration-badge .logo-plate svg {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
}

.integration-note {
  text-align: center;
  color: #7fa3c4;
  font-size: 0.95rem;
  max-width: 800px;
  margin: 0 auto;
  padding: 24px;
  background: rgba(212, 175, 55, 0.05);
  border-left: 3px solid #d4af37;
  border-radius: 8px;
}

/* ---------- Inquiry Form Section ---------- */
.inquiry-form-section {
  background: linear-gradient(180deg, #0a0f1a 0%, #0f1929 100%);
  padding: 100px 0;
}

.form-header {
  text-align: center;
  margin-bottom: 60px;
}

.form-header h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.form-header p {
  font-size: 1.1rem;
  color: #b0c4de;
  max-width: 600px;
  margin: 0 auto;
}

.form-wrapper {
  max-width: 720px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(15, 25, 41, 0.8) 0%, rgba(10, 15, 26, 0.9) 100%);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 60px 50px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.yacht-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #d4af37;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.yacht-form input,
.yacht-form select,
.yacht-form textarea {
  background: rgba(10, 15, 26, 0.6);
  border: 1.5px solid rgba(212, 175, 55, 0.2);
  color: #ffffff;
  padding: 16px 18px;
  border-radius: 10px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.3px;
}

.yacht-form input::placeholder,
.yacht-form textarea::placeholder {
  color: #7fa3c4;
}

.yacht-form input:hover,
.yacht-form select:hover,
.yacht-form textarea:hover {
  border-color: rgba(212, 175, 55, 0.35);
  background: rgba(10, 15, 26, 0.8);
}

.yacht-form input:focus,
.yacht-form select:focus,
.yacht-form textarea:focus {
  outline: none;
  border-color: #d4af37;
  background: rgba(10, 15, 26, 0.95);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15), inset 0 0 0 1px rgba(212, 175, 55, 0.1);
}

.yacht-form select {
  cursor: pointer;
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="8" viewBox="0 0 12 8"><path fill="%23d4af37" d="M1 1l5 5 5-5" stroke="%23d4af37" stroke-width="1.5" fill="none"/></svg>');
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.yacht-form textarea {
  resize: vertical;
  min-height: 120px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-submit {
  background: linear-gradient(135deg, var(--brass-bright) 0%, var(--brass) 100%);
  color: var(--brass-ink);
  border: none;
  padding: 18px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}

.btn-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.4s ease;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(201, 154, 77, 0.35);
}

.btn-submit:hover::before {
  left: 100%;
}

.btn-submit:active {
  transform: translateY(-1px);
}

.form-note {
  text-align: center;
  color: #7fa3c4;
  font-size: 0.85rem;
  margin-top: 12px;
  font-style: italic;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 768px) {
  .form-group-row {
    grid-template-columns: 1fr;
  }
  .form-header h2 {
    font-size: 2rem;
  }
  .form-wrapper {
    padding: 40px 30px;
  }
  .features-2col-dark {
    grid-template-columns: 1fr;
  }
}

