@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --blue-deep: #2563EB;
  --blue-deeper: #1E40AF;
  --blue-mid: #5B8DEF;
  --blue-pale: #EEF2FF;
  --blue-line: #DBEAFE;
  --green: #2E9E5B;
  --green-dark: #217A46;
  --green-pale: #E7F5EC;
  --ink: #1B1F27;
  --ink-soft: #5F6775;
  --white: #FFFFFF;
  --paper: #FFFFFF;
  --cream: #FFFFFF;
  --beige: #f4f5f8;
  --near-black: #0E1116;
  --near-black-soft: #171B22;

  --font-display: 'Manrope', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Inter', sans-serif;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --container: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

.wrap { max-width: var(--container); margin: 0 auto; padding: 0 32px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.18;
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(2.1rem, 4.6vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.3rem; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-deeper);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--blue-deeper); display: inline-block; }

.lede { font-size: 1.13rem; color: #5F6775; max-width: 60ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.btn-primary { background: var(--blue-deep); color: var(--white); }
.btn-primary:hover { background: var(--blue-deeper); transform: translateY(-2px); box-shadow: 0 10px 22px rgba(30,92,255,0.28); }

.btn-white { background: var(--white); color: var(--blue-deep); }
.btn-white:hover { background: var(--blue-pale); transform: translateY(-2px); }

.btn-ghost { background: transparent; border-color: rgba(255,255,255,0.4); color: var(--white); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn-outline { background: transparent; border-color: var(--blue-deep); color: var(--blue-deep); }
.btn-outline:hover { background: var(--blue-deep); color: var(--white); transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid rgba(20,22,28,0.08);
  transition: box-shadow 0.3s var(--ease);
}
.site-header.scrolled { box-shadow: 0 6px 20px rgba(20,22,28,0.08); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 100px; }
.logo { display: flex; align-items: center; }
.logo-img { height: 68px; width: auto; display: block; transition: transform 0.3s var(--ease); }
.logo:hover .logo-img { transform: scale(1.03); }

nav.main-nav ul { display: flex; gap: 26px; align-items: center; }
nav.main-nav a {
  font-size: 0.92rem; font-weight: 500; color: var(--ink);
  position: relative; padding: 6px 0;
  transition: color 0.25s var(--ease);
}
nav.main-nav a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 2px;
  background: var(--blue-deep); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
nav.main-nav a:hover { color: var(--blue-mid); }
nav.main-nav a:hover::after { transform: scaleX(1); }
nav.main-nav a.active { color: var(--blue-deep); font-weight: 700; }
nav.main-nav a.active::after { transform: scaleX(1); }

.header-cta { display: flex; align-items: center; gap: 20px; }
.header-cta .btn { padding: 11px 22px; font-size: 0.88rem; }

.nav-toggle { display: none; background: none; border: none; font-size: 1.6rem; color: var(--blue-deep); cursor: pointer; transition: transform 0.25s var(--ease); user-select: none; }
.nav-toggle-check { display: none; }

/* ---------- Sections ---------- */
section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.bg-blue { background: var(--near-black); color: var(--white); }
.bg-blue h2, .bg-blue h3 { color: var(--white); }
.bg-blue .eyebrow { color: var(--blue-mid); }
.bg-blue .eyebrow::before { background: var(--blue-mid); }
.bg-blue .lede { color: #A8ADB8; }
.bg-pale { background: var(--beige); }
.bg-paper { background: var(--cream); }
.bg-white { background: var(--cream); }

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

/* ---------- Animation base ---------- */
.reveal { opacity: 1; transform: none; }
.reveal-child { opacity: 1; transform: none; }
.reveal-stagger { opacity: 1; }
@keyframes fadeUpIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-child, .hero-inner, .hero-visual { opacity: 1 !important; transform: none !important; transition: none !important; animation: none !important; }
}

/* ---------- Hero ---------- */
.hero {
  background: var(--cream);
  color: var(--ink);
  position: relative;
  overflow: hidden;
  padding: 108px 0 80px;
}
.hero::before {
  content: ''; position: absolute; top: -30%; right: -8%;
  width: 620px; height: 620px; border: 1px solid rgba(30,92,255,0.12); border-radius: 50%;
}
.hero::after {
  content: ''; position: absolute; top: -18%; right: 4%;
  width: 420px; height: 420px; border: 1px solid rgba(30,92,255,0.08); border-radius: 50%;
}
.hero .wrap { position: relative; z-index: 2; }
.hero-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-inner { max-width: 100%; animation: fadeUpIn 0.8s var(--ease) both; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(30,92,255,0.08); border: 1px solid rgba(30,92,255,0.25);
  color: var(--blue-deep); font-family: var(--font-body); font-weight: 600; font-size: 0.75rem;
  letter-spacing: 0.05em; padding: 8px 16px; border-radius: 20px; margin-bottom: 24px;
}
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue-deep); }
.hero h1 { color: var(--ink); margin-bottom: 20px; }
.hero .lede { color: var(--ink-soft); margin-bottom: 34px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 0; }

/* ---------- Hero Slider ---------- */
/* ---------- Hero radar visual ---------- */
.hero-radar {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.radar-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(30, 92, 255, 0.18);
}
.radar-ring-1 { width: 32%; height: 32%; }
.radar-ring-2 { width: 62%; height: 62%; }
.radar-ring-3 { width: 92%; height: 92%; border-style: dashed; }

.radar-sweep {
  position: absolute;
  width: 92%;
  height: 92%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(30,92,255,0.28) 0deg, rgba(30,92,255,0) 70deg);
  animation: radarSpin 6s linear infinite;
}
@keyframes radarSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.radar-center {
  position: relative;
  z-index: 3;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--blue-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(30, 92, 255, 0.35);
}
.radar-center svg { width: 30px; height: 30px; }

.radar-blip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 4;
}
.blip-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue-deep);
  box-shadow: 0 0 0 0 rgba(30,92,255,0.5);
  animation: blipPulse 2.4s ease-out infinite;
  flex-shrink: 0;
}
.blip-label {
  background: var(--white);
  border: 1px solid rgba(20,22,28,0.08);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(20,22,28,0.08);
}
@keyframes blipPulse {
  0% { box-shadow: 0 0 0 0 rgba(30,92,255,0.45); }
  70% { box-shadow: 0 0 0 10px rgba(30,92,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(30,92,255,0); }
}

.blip-roc { top: 6%; left: 50%; transform: translateX(-50%); animation: blipDelay1 0s; }
.blip-gst { top: 48%; right: 8%; transform: translateY(-50%); }
.blip-itr { bottom: 10%; left: 12%; }
.blip-tds { top: 48%; left: 6%; transform: translateY(-50%); }
.blip-roc .blip-dot { animation-delay: 0s; }
.blip-gst .blip-dot { animation-delay: 0.6s; }
.blip-itr .blip-dot { animation-delay: 1.2s; }
.blip-tds .blip-dot { animation-delay: 1.8s; }

@media (prefers-reduced-motion: reduce) {
  .radar-sweep { animation: none; }
  .blip-dot { animation: none; }
}

/* ---------- Stats strip (separated from hero, own section) ---------- */
.stats-strip {
  background: #f4f5f8; /* Halka black background */
  padding: 30px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.stats-strip-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 0;
  padding: 44px 0;
}
.stats-filings { padding-right: 48px; border-right: 1px solid rgba(255,255,255,0.12); }
.stats-numbers { padding-left: 48px; }
.stats-strip-label {
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--blue-mid); margin-bottom: 18px;
}

.filing-strip {
  background: var(--white);
  border: 1px solid rgba(20,22,28,0.08);
  border-radius: 14px;
  padding: 24px 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 24px;
  box-shadow: 0 4px 16px rgba(20,22,28,0.05);
}
.filing-strip-item { border-left: 2px solid var(--blue-deep); padding-left: 14px; }
.filing-strip-item .fs-label {
  font-family: var(--font-body); font-size: 0.68rem; letter-spacing: 0.08em; font-weight: 600;
  text-transform: uppercase; color: var(--ink-soft); margin-bottom: 6px;
}
.filing-strip-item .fs-value { font-family: var(--font-display); font-size: 1.1rem; color: var(--ink); font-weight: 700; }

.trust-bar-inner {
  background: var(--white);
  border: 1px solid rgba(20,22,28,0.08);
  border-radius: 14px;
  padding: 24px 26px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 20px;
  box-shadow: 0 4px 16px rgba(20,22,28,0.05);
  height: 100%;
}
.trust-stat { text-align: left; }
.trust-stat .ts-num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--blue-deep); }
.trust-stat .ts-label { font-family: var(--font-body); font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; color: var(--ink-soft); margin-top: 2px; }

@media (max-width: 900px) {
  .stats-strip-inner { grid-template-columns: 1fr; gap: 32px; padding: 36px 0; }
  .stats-filings { padding-right: 0; border-right: none; padding-bottom: 32px; border-bottom: 1px solid rgba(20,22,28,0.1); }
  .stats-numbers { padding-left: 0; }
}
@media (max-width: 560px) {
  .filing-strip, .trust-bar-inner { grid-template-columns: 1fr; }
}

/* ---------- Page header (inner pages) ---------- */
.page-header {
  background: #f4f5f8;
  color: var(--white);
  padding: 74px 0 58px;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: ''; position: absolute; top: -40%; right: -6%;
  width: 380px; height: 380px; border: 1px solid rgba(30,92,255,0.25); border-radius: 50%;
}
.page-header .wrap { position: relative; z-index: 2; animation: fadeUpIn 0.7s var(--ease) both; }
.page-header h1 { color: #000; margin-bottom: 12px; }
.breadcrumb { font-family: var(--font-body); font-size: 0.78rem; color: #000; margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--blue-mid); }

/* ---------- About page full-width banner ---------- */
.about-banner {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}
.about-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: brightness(0.55);
  transition: transform 6s ease;
}
.about-banner:hover img { transform: scale(1.04); }
.about-banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
  animation: fadeUpIn 0.8s var(--ease) both;
}
.about-banner-overlay .eyebrow { color: var(--blue-deep); margin-bottom: 12px; }
.about-banner-overlay h2 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2.4rem); max-width: 640px; }
@media (max-width: 640px) {
  .about-banner { height: 260px; }
}

/* ---------- Cards ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid rgba(20,22,28,0.07);
  padding: 34px 28px;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(20,22,28,0.04);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.card:hover { border-color: rgba(30,92,255,0.25); transform: translateY(-5px); box-shadow: 0 16px 34px rgba(30,92,255,0.12); }
.card .card-icon {
  width: 46px; height: 46px; background: var(--blue-pale); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-deep); margin-bottom: 20px; font-family: var(--font-body); font-weight: 700; font-size: 0.92rem;
}
.card h3 { margin-bottom: 10px; font-size: 1.12rem; }
.card p { color: var(--ink-soft); font-size: 0.94rem; }

/* Image-backed trust card (reference-inspired) */
.img-card {
  background: var(--white);
  border: 1px solid rgba(20,22,28,0.07);
  border-radius: 14px;
  overflow: hidden;
  padding: 10px 0;
  box-shadow: 0 2px 10px rgba(20,22,28,0.04);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.img-card:hover { transform: translateY(-6px); box-shadow: 0 18px 36px rgba(30,92,255,0.14); }
.img-card .img-card-media { height: 190px; overflow: hidden; }
.img-card .img-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.img-card:hover .img-card-media img { transform: scale(1.06); }
.img-card .img-card-body { padding: 26px 24px; }
.img-card h3 { font-size: 1.08rem; margin-bottom: 8px; color: var(--ink); }
.img-card p { font-size: 0.92rem; color: var(--ink-soft); }

/* Alternating styles and color override for img-cards in dark sections (bg-blue) */
.bg-blue .img-card h3 {
  color: var(--ink);
}
.bg-blue .img-card:nth-child(odd) {
  background: #f4f5f8;
}
.bg-blue .img-card:nth-child(even) {
  background: var(--white);
}

/* ---------- Process / 5-step journey ---------- */
.journey {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.journey-step {
  position: relative;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--blue-line);
  border-radius: 12px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.4s var(--ease);
}
.journey-num {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue-deeper);
  border: 1px solid var(--blue-deep);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  background: var(--blue-pale);
  transition: all 0.4s var(--ease);
}
.journey-step h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--blue-deep);
}
.journey-step p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* Auto Highlights Cycle (10s total, 2s per card) */
.journey-step:nth-child(1) { animation: journeyHighlight 10s infinite; animation-delay: 0s; }
.journey-step:nth-child(1) .journey-num { animation: numHighlight 10s infinite; animation-delay: 0s; }

.journey-step:nth-child(2) { animation: journeyHighlight 10s infinite; animation-delay: 2s; }
.journey-step:nth-child(2) .journey-num { animation: numHighlight 10s infinite; animation-delay: 2s; }

.journey-step:nth-child(3) { animation: journeyHighlight 10s infinite; animation-delay: 4s; }
.journey-step:nth-child(3) .journey-num { animation: numHighlight 10s infinite; animation-delay: 4s; }

.journey-step:nth-child(4) { animation: journeyHighlight 10s infinite; animation-delay: 6s; }
.journey-step:nth-child(4) .journey-num { animation: numHighlight 10s infinite; animation-delay: 6s; }

.journey-step:nth-child(5) { animation: journeyHighlight 10s infinite; animation-delay: 8s; }
.journey-step:nth-child(5) .journey-num { animation: numHighlight 10s infinite; animation-delay: 8s; }

.journey-step:hover {
  animation-play-state: paused !important;
  border-color: var(--blue-deep) !important;
  background: var(--white) !important;
  transform: translateY(-8px) !important;
  box-shadow: 0 16px 32px rgba(30, 92, 255, 0.12) !important;
}
.journey-step:hover .journey-num {
  animation-play-state: paused !important;
  background: var(--blue-deep) !important;
  color: var(--white) !important;
  transform: scale(1.1) !important;
}

@keyframes journeyHighlight {
  0%, 20% {
    border-color: var(--blue-deep);
    background: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(30, 92, 255, 0.08);
  }
  20.0001%, 100% {
    border-color: var(--blue-line);
    background: rgba(255, 255, 255, 0.6);
    transform: translateY(0);
    box-shadow: none;
  }
}

@keyframes numHighlight {
  0%, 20% {
    background: var(--blue-deep);
    color: var(--white);
    transform: scale(1.1);
  }
  20.0001%, 100% {
    background: var(--blue-pale);
    color: var(--blue-deeper);
    transform: scale(1);
  }
}

@media (max-width: 980px) {
  .journey { grid-template-columns: repeat(3, 1fr); row-gap: 36px; }
}
@media (max-width: 640px) {
  .journey { grid-template-columns: 1fr 1fr; }
}

/* ---------- Why choose / feature rows ---------- */
.feature-row { display: flex; gap: 22px; padding: 26px 0; border-bottom: 1px solid var(--blue-line); }
.feature-row.reveal:first-of-type { border-top: 1px solid var(--blue-line); }
.feature-num { font-family: var(--font-mono); font-size: 0.8rem; color: var(--blue-deeper); min-width: 34px; padding-top: 4px; }
.feature-row h3 { font-size: 1.08rem; margin-bottom: 6px; }
.feature-row p { color: var(--ink-soft); font-size: 0.94rem; max-width: 60ch; }

/* ---------- Testimonials ---------- */
.testimonial {
  background: var(--white); border: 1px solid rgba(20,22,28,0.07); border-left: 3px solid var(--blue-deep);
  padding: 30px; border-radius: 14px; box-shadow: 0 2px 10px rgba(20,22,28,0.04);
}
.testimonial p.quote { font-family: var(--font-display); font-size: 1.08rem; color: var(--blue-deep); margin-bottom: 18px; font-style: italic; }
.testimonial .attrib { font-family: var(--font-mono); font-size: 0.74rem; color: var(--blue-deeper); text-transform: uppercase; letter-spacing: 0.05em; }

/* ---------- FAQ accordion ---------- */
.faq-group { margin-bottom: 52px; }
.faq-group-title {
  font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue-deeper); margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid var(--blue-line);
}
details.faq-item { border-bottom: 1px solid var(--blue-line); }
details.faq-item summary {
  list-style: none; cursor: pointer; padding: 22px 4px; margin: 0 -4px;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-weight: 600; color: var(--blue-deep); font-size: 1.01rem; border-radius: 4px;
  transition: background 0.25s var(--ease);
}
details.faq-item summary:hover { background: var(--blue-pale); }
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary .plus {
  font-family: var(--font-mono); font-size: 1.2rem; color: var(--blue-deep); flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
details.faq-item[open] summary .plus { transform: rotate(45deg); }
details.faq-item .faq-answer { padding: 0 4px 24px; color: var(--ink-soft); max-width: 68ch; font-size: 0.95rem; animation: fadeUpIn 0.35s var(--ease) both; }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-card { background: var(--white); border: 1px solid rgba(20,22,28,0.07); border-radius: 16px; padding: 38px 30px; display: flex; flex-direction: column; box-shadow: 0 2px 10px rgba(20,22,28,0.04); }
.price-card.featured { border-color: var(--blue-deep); background: var(--blue-deep); color: var(--white); position: relative; }
.price-card.featured h3, .price-card.featured .price-tag { color: var(--white); }
.price-card.featured .price-tag .amount { color: #8FB4FF; }
.price-badge {
  position: absolute; top: -13px; left: 30px; background: var(--blue-deep); color: var(--white);
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 20px;
}
.price-tag { margin: 16px 0 24px; }
.price-tag .amount { font-family: var(--font-display); font-size: 2.2rem; font-weight: 600; color: var(--blue-deep); }
.price-tag .period { font-size: 0.85rem; opacity: 0.65; }
.price-card ul { flex: 1; margin-bottom: 26px; }
.price-card ul li { padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.08); font-size: 0.92rem; display: flex; gap: 10px; }
.price-card.featured ul li { border-bottom-color: rgba(255,255,255,0.15); }
.price-card ul li::before { content: '✓'; color: var(--blue-deeper); font-weight: 700; }
.price-card.featured ul li::before { color: var(--blue-deep); }
.price-card .btn { width: 100%; justify-content: center; }

/* ---------- Timeline (About: journey) ---------- */
.timeline { position: relative; padding-left: 34px; border-left: 2px solid var(--blue-line); }
.timeline-item { position: relative; padding-bottom: 42px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: ''; position: absolute; left: -41px; top: 4px; width: 16px; height: 16px;
  border-radius: 50%; background: var(--white); border: 3px solid var(--blue-deep);
}
.timeline-year { font-family: var(--font-mono); font-size: 0.75rem; color: var(--blue-deeper); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.timeline-item h3 { font-size: 1.08rem; margin-bottom: 6px; }
.timeline-item p { color: var(--ink-soft); font-size: 0.94rem; }

/* ---------- Team ---------- */
.team-card { text-align: center; }
.team-avatar {
  width: 84px; height: 84px; border-radius: 50%; background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 18px;
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--blue-deep);
  border: 2px solid var(--blue-deep);
}
.team-card h3 { font-size: 1.02rem; margin-bottom: 4px; }
.team-card .team-role { font-family: var(--font-mono); font-size: 0.72rem; color: var(--blue-deeper); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 10px; }
.team-card p { font-size: 0.88rem; color: var(--ink-soft); }

/* ---------- Values grid ---------- */
.value-block { display: flex; gap: 20px; flex-direction: column; }
.value-block .seal-mini {
  width: 52px; height: 52px; border: 1px solid var(--blue-deep); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-family: var(--font-mono); font-size: 0.85rem; color: var(--blue-deeper); background: var(--blue-pale);
}
.value-block h3 { margin-bottom: 8px; }
.value-block p { color: var(--ink-soft); font-size: 0.94rem; }

/* ---------- Captcha ---------- */
.captcha-field { display: flex; align-items: flex-end; gap: 12px; }
.captcha-field .captcha-question {
  font-family: var(--font-mono); font-size: 0.95rem; color: var(--blue-deep);
  background: var(--blue-pale); border: 1px solid var(--blue-line); border-radius: 4px;
  padding: 13px 16px; white-space: nowrap; user-select: none;
}
.captcha-field input { flex: 1; }
.captcha-error { display: none; color: #C0392B; font-size: 0.82rem; font-family: var(--font-mono); margin-top: -8px; }
.captcha-error.show { display: block; }

/* Honeypot & Alerts */
.honeyfield { display: none !important; visibility: hidden; }
.form-alert {
  grid-column: 1 / -1;
  padding: 14px 20px;
  border-radius: 4px;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 0.95rem;
  font-family: var(--font-body);
}
.form-alert.success {
  background: var(--blue-pale);
  color: var(--blue-deeper);
  border: 1px solid var(--blue-deep);
}
.form-alert.error {
  background: #FDEDEC;
  color: #C0392B;
  border: 1px solid #E6B0AA;
}

/* ---------- Mini enquiry form ---------- */
.mini-enquiry { background: var(--white); border: 1px solid rgba(20,22,28,0.07); border-radius: 16px; padding: 44px; box-shadow: 0 4px 20px rgba(20,22,28,0.05); }
.mini-enquiry-head { margin-bottom: 26px; }
.mini-enquiry form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.mini-enquiry .field.full { grid-column: 1 / -1; }
.mini-enquiry .btn { grid-column: 1 / -1; justify-content: center; }
@media (max-width: 640px) {
  .mini-enquiry { padding: 28px 22px; }
  .mini-enquiry form { grid-template-columns: 1fr; }
}

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-form { display: grid; gap: 18px; }
.field label {
  display: block; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--blue-deep); margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 14px; border: 1px solid var(--blue-line); border-radius: 4px;
  background: var(--white); font-family: var(--font-body); font-size: 0.95rem; color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--blue-deep); outline-offset: 1px; border-color: var(--blue-deep);
}
.field textarea { resize: vertical; min-height: 120px; }

.contact-info-item { display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--blue-line); }
.contact-info-item:first-child { border-top: 1px solid var(--blue-line); }
.contact-info-item .ci-icon {
  font-family: var(--font-mono); font-size: 0.8rem; color: var(--blue-deeper);
  border: 1px solid var(--blue-deep); width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: var(--blue-pale);
}
.contact-info-item h4 { font-size: 0.95rem; color: var(--blue-deep); margin-bottom: 4px; }
.contact-info-item p { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 2px; }
.contact-info-item p a { white-space: nowrap; }
.contact-note { font-size: 0.8rem; color: var(--ink-soft); font-weight: 400; }

.map-embed {
  margin-top: 32px; height: 260px; background: var(--blue-pale); border: 1px solid var(--blue-line);
  border-radius: 6px; overflow: hidden;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.whatsapp-strip {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  background: var(--blue-pale); border: 1px solid var(--blue-deep); border-radius: 6px;
  padding: 24px 28px; margin-top: 28px; flex-wrap: wrap;
}
.whatsapp-strip p { color: var(--green-dark); font-weight: 600; }
.btn-whatsapp { background: var(--green); color: var(--white); }
.btn-whatsapp:hover { background: var(--green-dark); }

/* ---------- Mid-page CTA strip ---------- */
.mid-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  background: var(--blue-pale);
  border: 1px solid rgba(30,92,255,0.18);
  border-radius: 20px;
  padding: 32px 40px;
}
.mid-cta-text .eyebrow { margin-bottom: 8px; }
.mid-cta-text h3 { color: var(--ink); font-size: 1.3rem; margin: 0; }
.mid-cta .btn { flex-shrink: 0; }
@media (max-width: 640px) {
  .mid-cta { flex-direction: column; text-align: center; padding: 28px 24px; border-radius: 16px; }
  .mid-cta .btn { width: 100%; justify-content: center; }
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(160deg, #E0EAFB 0%, #FFF 100%);
  color: var(--white); padding: 72px 40px; text-align: center; position: relative; overflow: hidden;
  width: calc(100% - 64px); max-width: var(--container); margin: 56px auto; border-radius: 24px;
  box-shadow: 0 24px 60px rgba(20,22,28,0.18);
}
.cta-band::before {
  content: ''; position: absolute; bottom: -50%; left: -6%; width: 480px; height: 480px;
  border: 1px solid rgba(30,92,255,0.25); border-radius: 50%;
}
.cta-band .wrap { position: relative; z-index: 2; padding: 0; max-width: none; }
.cta-band h2 { color: #000; margin-bottom: 14px; }
.cta-band p { color: #000; max-width: 52ch; margin: 0 auto 34px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 12px; }
.cta-contact-line { margin-top: 30px; font-family: var(--font-body); font-size: 0.85rem; color: #7B818E; }
.cta-contact-line a:hover { color: var(--blue-mid); }

/* ---------- Footer ---------- */
footer.site-footer { background: #fff; color: #8B909B; padding: 64px 0 28px; border-top: 1px solid #f9f9f9; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-logo { background: var(--white); padding: 10px 18px; border-radius: 6px; display: inline-flex; margin-bottom: 14px; }
.footer-logo .logo-img { height: 56px; }
.footer-grid p.desc { font-size: 0.88rem; max-width: 34ch; color: #5F6775; }
.footer-col h4 { font-family: var(--font-body); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: #000; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a { font-size: 0.9rem; color: #5F6775; transition: color 0.2s var(--ease); }
.footer-col ul li a[href^="tel:"] { white-space: nowrap; }
.footer-col ul li a:hover { color: #2563EB; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; font-size: 0.82rem; color: #7B818E; flex-wrap: wrap; gap: 12px; border-top: 1px solid #eee; }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; width: 58px; height: 58px;
  background: var(--blue-deep); border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25); z-index: 200; transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}
.wa-float:hover { transform: scale(1.1); background: var(--green-dark); }
.wa-float svg { width: 28px; height: 28px; }
.wa-float .wa-tooltip {
  position: absolute; right: 68px; top: 50%; transform: translateY(-50%);
  background: var(--near-black); color: var(--white); font-size: 0.82rem; font-weight: 500;
  padding: 8px 14px; border-radius: 4px; white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity 0.2s var(--ease);
}
.wa-float:hover .wa-tooltip { opacity: 1; }
@media (max-width: 640px) {
  .wa-float { width: 52px; height: 52px; bottom: 18px; right: 18px; }
  .wa-float .wa-tooltip { display: none; }
}

/* ---------- Split / misc ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-img { border-radius: 6px; overflow: hidden;}
.split-img img { width: 100%; height: 380px; object-fit: cover; display: block; transition: transform 0.5s var(--ease); }
.split-img:hover img { transform: scale(1.04); }

.banner-img { border-radius: 6px; overflow: hidden; border: 1px solid var(--blue-line); }
.banner-img img { width: 100%; height: 340px; object-fit: cover; display: block; transition: transform 0.5s var(--ease); }
.banner-img:hover img { transform: scale(1.04); }

/* ---------- Founder page ---------- */
.founder-split { align-items: start; }
.founder-portrait {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(20,22,28,0.08);
  box-shadow: 0 20px 50px rgba(20,22,28,0.12);
  aspect-ratio: 3 / 4;
}
.founder-portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }
.founder-title {
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  color: var(--blue-deep); margin-top: 4px;
}
.commitment-box {
  max-width: 820px; margin: 0 auto; text-align: center;
  background: var(--blue-pale); border: 1px solid rgba(30,92,255,0.18);
  border-radius: 20px; padding: 44px 48px;
}
.commitment-box .lede { max-width: none; }
@media (max-width: 980px) {
  .founder-split { text-align: center; }
  .founder-portrait { max-width: 340px; margin: 0 auto; }
}
@media (max-width: 640px) {
  .commitment-box { padding: 28px 24px; }
}

.note-box {
  background: var(--blue-pale); border: 1px dashed var(--blue-deep); border-radius: 6px;
  padding: 20px 24px; font-size: 0.88rem; color: var(--ink-soft); font-family: var(--font-mono); margin-top: 40px;
}

/* Service blocks (Services page) */
.service-block { padding: 60px 0; border-bottom: 1px solid var(--blue-line); }
.service-block:last-child { border-bottom: none; }
.service-block-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 38px; gap: 24px; flex-wrap: wrap; }
.service-block-head h2 { margin-bottom: 6px; }
.service-thumb { width: 160px; height: 160px; object-fit: cover; border-radius: 10px; flex-shrink: 0; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.service-block-head:hover .service-thumb { transform: scale(1.04); box-shadow: 0 12px 28px rgba(11,61,102,0.12); }
.service-block-head-text { flex: 1; min-width: 220px; }
.service-items { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-item { padding: 24px; background: var(--white); border: 1px solid rgba(20,22,28,0.07); border-radius: 14px; box-shadow: 0 2px 10px rgba(20,22,28,0.04); transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.service-item:hover { border-color: rgba(30,92,255,0.25); transform: translateY(-3px); box-shadow: 0 12px 26px rgba(30,92,255,0.1); }
.service-item h3 { font-size: 1rem; margin-bottom: 8px; }
.service-item p { font-size: 0.87rem; color: var(--ink-soft); }
@media (max-width: 640px) { .service-thumb { width: 100px; height: 100px; } }

/* Seal */
.seal {
  position: relative; width: 124px; height: 124px; border: 1.5px solid var(--blue-deep);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transform: rotate(-8deg); transition: transform 0.4s var(--ease);
}
.seal:hover { transform: rotate(0deg) scale(1.05); }
.seal::before { content: ''; position: absolute; inset: 8px; border: 1px dashed var(--blue-deep); border-radius: 50%; }
.seal-text { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue-deeper); text-align: center; line-height: 1.5; }

/* ---------- Utility classes (replaces inline styles) ---------- */
.u-center { text-align: center; }
.u-center-x { margin-left: auto; margin-right: auto; }
.u-justify-center { justify-content: center; }
.u-lede-hero { color: #5F6775; }
.u-max-820 { max-width: 820px; }
.u-max-860 { max-width: 860px; }
.u-enquiry-box { max-width: 760px; margin: 0 auto; }
.u-mt-14 { margin-top: 14px; }
.u-mt-18 { margin-top: 18px; }
.u-mt-28 { margin-top: 28px; }
.u-mt-32 { margin-top: 32px; }
.u-mt-40 { margin-top: 40px; }
.u-mt-56 { margin-top: 56px; }
.u-mt-lede { margin: 10px auto 0; }
.u-mb-0 { margin-bottom: 0; }
.u-mb-12 { margin-bottom: 12px; }
.u-mb-18 { margin-bottom: 18px; }
.u-mb-28 { margin-bottom: 28px; }
.u-my-18 { margin: 18px 0; }
.u-actions-wrap { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 28px; }
.u-no-top-pad { border-top: none; padding-top: 0; }
.u-no-bottom-pad { padding-bottom: 0; }
.text-blue { color: var(--blue-deep); }

/* ---------- Responsive ---------- */

/* Header nav needs to collapse earlier than other layout — 7 nav items + logo + CTA button don't fit below ~1140px */
@media (max-width: 1140px) {
  nav.main-nav {
    display: block; position: absolute; top: 100px; left: 0; right: 0;
    background: var(--cream); border-bottom: 1px solid rgba(20,22,28,0.08); padding: 0 32px;
    max-height: 0; overflow: hidden; opacity: 0;
    transition: max-height 0.35s var(--ease), opacity 0.25s var(--ease), padding 0.35s var(--ease);
  }
  .nav-toggle-check:checked ~ nav.main-nav { max-height: 420px; opacity: 1; padding: 12px 32px 24px; box-shadow: 0 12px 24px rgba(11, 61, 102, 0.08); }
  .nav-toggle-check:checked ~ nav.main-nav ul { flex-direction: column; gap: 4px; align-items: flex-start; }
  .nav-toggle-check:checked ~ nav.main-nav ul li { width: 100%; }
  .nav-toggle-check:checked ~ nav.main-nav ul li a { display: block; padding: 12px 0; }
  .header-cta { display: none; }
  .nav-toggle { display: block; margin-left: auto; }

  /* Pure CSS Hamburger / Close Icons morph */
  .nav-toggle .close-icon { display: none; }
  .nav-toggle-check:checked ~ .nav-toggle .burger-icon { display: none; }
  .nav-toggle-check:checked ~ .nav-toggle .close-icon { display: inline; }
  .nav-toggle-check:checked ~ .nav-toggle { transform: rotate(90deg); }
}

@media (max-width: 980px) {
  .grid-3, .grid-4, .pricing-grid, .service-items { grid-template-columns: 1fr 1fr; }
  .split, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  
  /* Hero split mobile layout */
  .hero-split {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
    padding-bottom: 40px;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-radar {
    max-width: 300px;
    margin: 0 auto;
  }
}
@media (max-width: 640px) {
  .grid-3, .grid-4, .grid-2, .pricing-grid, .service-items { grid-template-columns: 1fr; }
  section { padding: 56px 0; }
  .hero { padding: 76px 0 48px; }
  
  /* Centered footer for small screens */
  footer.site-footer { text-align: center; }
  footer.site-footer .footer-logo { margin: 0 auto 20px; }
  footer.site-footer .footer-grid p.desc { margin: 0 auto; }
  footer.site-footer .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
}

/* ---------- Small phones (≤480px) ---------- */
@media (max-width: 480px) {
  .wrap { padding: 0 20px; }

  .site-header .wrap { height: 76px; }
  .logo-img { height: 48px; }
  nav.main-nav { top: 76px; }

  h1 { letter-spacing: -0.01em; }
  h2 { font-size: clamp(1.6rem, 6vw, 2rem); }
  .lede { font-size: 1rem; }

  .hero-badge { font-size: 0.7rem; padding: 7px 13px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-radar { max-width: 200px; }
  .blip-label { font-size: 0.6rem; padding: 4px 8px; max-width: 88px; overflow: hidden; text-overflow: ellipsis; }
  .blip-dot { width: 9px; height: 9px; }

  .stats-strip-inner { padding: 28px 0; }
  .filing-strip, .trust-bar-inner { padding: 18px 16px; }
  .stats-filings { padding-bottom: 24px; }

  .card { padding: 26px 20px; }
  .img-card .img-card-body { padding: 20px 18px; }
  .service-item { padding: 18px; }
  .testimonial { padding: 22px; }

  .price-card { padding: 30px 22px; }
  .price-tag .amount { font-size: 1.9rem; }

  .mini-enquiry { padding: 22px 16px; }
  .captcha-field { flex-direction: column; align-items: stretch; }
  .captcha-field .captcha-question { white-space: normal; }

  .contact-info-item { gap: 14px; }
  .cta-band { width: calc(100% - 32px); padding: 44px 24px; margin: 32px auto; border-radius: 16px; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { width: 100%; justify-content: center; }

  .journey-step { padding: 24px 18px; }
  .service-block-head { flex-direction: column; align-items: flex-start; }
  .service-thumb { width: 100%; height: 180px; }

  .wa-float { bottom: 16px; right: 16px; }
}
