
:root {
  --navy-900: #081a3f;
  --navy-800: #0c2461;
  --navy-700: #14306e;
  --blue-500: #2a8bf2;
  --blue-400: #4ea7ff;
  --blue-300: #8fc6ff;
  --ice: #eaf3ff;
  --paper: #f6f9ff;
  --ink: #0a1633;
  --muted: #5b6a8a;
  --line: #e3ebf7;
  --white: #ffffff;
  --font-display: "Bricolage Grotesque", serif;
  --font-body: "Manrope", system-ui, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--ink); background: var(--white); line-height: 1.7; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: var(--blue-500); text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 28px; }

/* TOP BAR */
.topbar { background: var(--navy-900); color: #cdd9ee; font-size: 13px; padding: 10px 0; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar a { color: #cdd9ee; }
.topbar a:hover { color: var(--blue-400); }
.topbar .left, .topbar .right { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.topbar-address { display: inline-block; }
.topbar-email { display: inline-flex; align-items: center; gap: 6px; color: inherit; white-space: nowrap; }
.topbar-email:hover { color: var(--blue-400); }
.topbar-email-icon { display: none; flex-shrink: 0; line-height: 0; }
.topbar-email-icon .icon-mail { width: 16px; height: 16px; display: block; }

/* HEADER */
header.site { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.92); backdrop-filter: saturate(140%) blur(12px); border-bottom: 1px solid var(--line); }
header.site .header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 2vw, 24px);
  padding-top: 8px;
  padding-bottom: 8px;
}
header.site .header-row-top {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 12px;
}
header.site .header-row-actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
@media (min-width: 821px) {
  header.site .header-row-top { order: 1; }
  header.site .header-nav { order: 2; }
  header.site .header-row-actions { order: 3; }
}
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-img { max-height: 48px; width: auto; height: auto; max-width: min(240px, 52vw); object-fit: contain; display: block; }
footer.site .foot-brand .logo {
  display: inline-flex;
  background: #ffffff;
  border-radius: 8px;
  padding: 6px 10px;
}
footer.site .logo-img { max-height: 48px; width: auto; height: auto; max-width: 280px; border-radius: 8px; }
@media (min-width: 769px) {
  .logo-img { max-height: 56px; max-width: min(280px, 32vw); }
  footer.site .logo-img { max-height: 56px; }
}
.header-nav {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 20px);
}
nav.main { display: flex; gap: clamp(14px, 2vw, 28px); align-items: center; min-width: 0; }
nav.main .menu { gap: inherit; }
nav.main a,
nav.main .menu li a { font-weight: 500; font-size: clamp(13px, 1.15vw, 15px); color: var(--ink); position: relative; white-space: nowrap; }
nav.main a::after,
nav.main .menu li a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--blue-500); transition: width .3s ease; }
nav.main a:hover::after,
nav.main .menu li a:hover::after { width: 100%; }
.header-nav-phone { display: none; }
.header-cta {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.4vw, 16px);
  flex-shrink: 0;
}
.header-phone { font-weight: 600; color: var(--navy-800); font-size: clamp(12px, 1.1vw, 14px); white-space: nowrap; }
.header-contact {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex-shrink: 0;
}
.header-contact--desktop {
  padding-right: clamp(10px, 1.2vw, 14px);
  border-right: 1px solid var(--line);
}
.header-contact--mobile { display: none; }
.header-contact-line {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 24px;
}
.header-contact-region {
  flex-shrink: 0;
  min-width: 28px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  color: var(--muted);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 2px 6px;
  line-height: 1.3;
}
.header-contact-phone {
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 600;
  color: var(--navy-800);
  white-space: nowrap;
  line-height: 1.2;
}
.header-contact-phone:hover { color: var(--blue-500); }
.header-contact-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  flex-shrink: 0;
  transition: transform .2s ease, box-shadow .2s ease;
}
.header-contact-wa:hover {
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px -4px rgba(37, 211, 102, 0.65);
}
.header-contact-wa .icon-whatsapp { width: 14px; height: 14px; display: block; }
.contact-phones { display: flex; flex-direction: column; gap: 4px; align-items: flex-end; }
.contact-phone-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.contact-phone-label { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.contact-whatsapp-link { font-size: 12px; font-weight: 600; color: var(--blue-500); white-space: nowrap; }
.contact-whatsapp-link:hover { color: var(--blue-400); }
.contact-info-phones { display: flex; flex-direction: column; gap: 8px; }
.contact-info-phone-line { display: block; }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color .2s ease, background .2s ease;
}
.nav-toggle:hover { border-color: var(--blue-300); background: var(--paper); }
.nav-toggle-bar { display: block; width: 100%; height: 2px; background: var(--navy-800); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; border-radius: 999px; font-weight: 600; font-size: 14px; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; border: none; cursor: pointer; white-space: nowrap; }
.btn-sm { padding: clamp(8px, 1vw, 10px) clamp(12px, 1.4vw, 18px); font-size: clamp(12px, 1.05vw, 14px); }
.btn-primary { background: var(--blue-500); color: white; box-shadow: 0 10px 26px -10px rgba(42, 139, 242, 0.7); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -12px rgba(42, 139, 242, 0.8); }
.btn-light { background: white; color: var(--navy-800); }
.btn-light:hover { background: var(--ice); }
.btn-ghost { background: transparent; color: var(--navy-800); border: 1.5px solid var(--navy-800); }
.btn-ghost:hover { background: var(--navy-800); color: white; }

/* PAGE HERO */
.page-hero {
  background:
    radial-gradient(ellipse at 80% 10%, rgba(78,167,255,.18), transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(42,139,242,.12), transparent 50%),
    linear-gradient(180deg, #061333 0%, #0c2461 100%);
  color: white; padding: 90px 0 100px; position: relative; overflow: hidden;
}
.page-hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%); pointer-events: none; z-index: 0; }
.page-hero.hero-animated { background-size: 100% 100%, 100% 100%, 100% 100%; animation: heroBgShift 14s ease-in-out infinite alternate; }
.page-hero.hero-animated::before { animation: heroGridDrift 24s linear infinite; }
.hero-bg-layer { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .55; }
.hero-orb-1 { width: 420px; height: 420px; background: rgba(78, 167, 255, .35); top: -12%; right: 8%; animation: heroOrb1 18s ease-in-out infinite; }
.hero-orb-2 { width: 320px; height: 320px; background: rgba(42, 139, 242, .28); bottom: -8%; left: -4%; animation: heroOrb2 22s ease-in-out infinite; }
.hero-orb-3 { width: 200px; height: 200px; background: rgba(143, 198, 255, .22); top: 40%; left: 45%; animation: heroOrb3 12s ease-in-out infinite; }
@keyframes heroBgShift {
  0% { background-position: 0% 0%, 100% 100%, 0% 0%; }
  100% { background-position: 100% 50%, 0% 50%, 0% 100%; }
}
@keyframes heroGridDrift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, 60px); }
}
@keyframes heroOrb1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, 30px) scale(1.08); }
}
@keyframes heroOrb2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, -25px) scale(1.12); }
}
@keyframes heroOrb3 {
  0%, 100% { transform: translate(0, 0); opacity: .35; }
  50% { transform: translate(-20px, 20px); opacity: .6; }
}
.page-hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr 1fr; gap: 48px; align-items: center; }
.hero-side { display: grid; gap: 16px; }
.hero-route-visual { position: relative; border-radius: 20px; overflow: hidden; border: 1px solid rgba(255,255,255,.18); box-shadow: 0 22px 50px -18px rgba(0,0,0,.5); min-height: 210px; }
.hero-route-flag { position: absolute; top: 14px; left: 14px; z-index: 2; font-size: 28px; line-height: 1; filter: drop-shadow(0 2px 6px rgba(0,0,0,.35)); }
.hero-route-visual .hero-icon-panel { border: 0; box-shadow: none; min-height: 210px; border-radius: 0; }
.hero-photo-badge { position: absolute; bottom: 14px; left: 14px; z-index: 2; padding: 8px 14px; border-radius: 999px; background: rgba(6,19,51,.75); backdrop-filter: blur(8px); color: #dbe5f7; font-size: 12px; font-weight: 600; border: 1px solid rgba(255,255,255,.12); }
.product-card-visual { position: relative; width: calc(100% + 88px); max-width: none; height: 190px; margin: -44px -44px 22px; border-radius: 26px 26px 0 0; background: linear-gradient(135deg, var(--ice) 0%, #e8f0fc 100%); border-bottom: 1px solid var(--line); overflow: hidden; display: grid; place-items: center; }
.product-card-flag { position: absolute; top: 16px; left: 18px; font-size: 26px; line-height: 1; z-index: 1; }
.product-card-visual-inner { color: var(--blue-500); }
.product-card-visual .hero-illustration { width: 88px; height: 88px; }
.human-strip { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.human-strip-inner { display: grid; grid-template-columns: .95fr 1.05fr; gap: 48px; align-items: center; padding: 70px 0; }
.human-strip-photo img { width: 100%; height: 100%; min-height: 300px; max-height: 360px; object-fit: cover; border-radius: 22px; box-shadow: 0 24px 55px -28px rgba(8,26,63,.28); }
.human-strip-copy .kicker { color: var(--blue-500); font-weight: 700; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 14px; display: block; }
.human-strip-copy h2 { font-family: var(--font-display); font-size: clamp(26px, 3vw, 36px); color: var(--navy-900); line-height: 1.15; margin-bottom: 16px; letter-spacing: -0.02em; }
.human-strip-copy p { color: var(--muted); font-size: 16.5px; line-height: 1.7; }
.split-icon-panel { position: relative; border-radius: 24px; overflow: hidden; min-height: 420px; box-shadow: 0 24px 55px -28px rgba(8,26,63,.22); background: linear-gradient(135deg, var(--ice) 0%, #e8f0fc 100%); border: 1px solid var(--line); }
.split-icon-panel-bg { display: grid; place-items: center; min-height: 420px; padding: 48px 24px 220px; color: var(--blue-500); }
.split-icon-panel-bg .hero-illustration { width: 96px; height: 96px; opacity: .92; }
.split-icon-panel-bg svg:not(.hero-illustration) { width: 72px; height: 72px; color: var(--blue-500); opacity: .9; }
.hero-icon-panel { position: relative; border-radius: 20px; overflow: hidden; min-height: 280px; display: grid; place-items: center; background: linear-gradient(135deg, rgba(232,240,252,.95) 0%, rgba(210,228,255,.88) 100%); border: 1px solid rgba(255,255,255,.22); box-shadow: 0 22px 50px -22px rgba(0,0,0,.35); }
.hero-icon-panel-orbs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-icon-panel-orbs::before,
.hero-icon-panel-orbs::after { content: ""; position: absolute; border-radius: 50%; background: rgba(78,167,255,.14); }
.hero-icon-panel-orbs::before { width: 140px; height: 140px; top: -30px; right: -20px; }
.hero-icon-panel-orbs::after { width: 100px; height: 100px; bottom: -24px; left: -16px; background: rgba(42,139,242,.12); }
.hero-icon-panel-inner { position: relative; z-index: 1; color: var(--blue-500); display: grid; place-items: center; padding: 32px; }
.hero-icon-panel-inner .hero-illustration { width: 80px; height: 80px; }
.hero-icon-panel-inner svg:not(.hero-illustration) { width: 80px; height: 80px; stroke-width: 1.5; }
.service-hero-visual.hero-icon-panel { justify-self: end; width: 100%; max-width: 420px; }
.legal-hero-visual .hero-icon-panel { min-height: 260px; max-height: 320px; }
.legal-hero-visual.hero-image { border-radius: 18px; overflow: hidden; border: 1px solid rgba(255,255,255,.15); box-shadow: 0 20px 45px -22px rgba(0,0,0,.45); }
.service-split-icon-panel { border-radius: 24px; min-height: 360px; background: linear-gradient(135deg, var(--ice) 0%, #e8f0fc 100%); border: 1px solid var(--line); box-shadow: 0 24px 55px -28px rgba(8,26,63,.18); display: grid; place-items: center; }
.service-split-icon-panel .service-split-icon svg { width: 88px; height: 88px; color: var(--blue-500); }
.split-photo { position: relative; border-radius: 24px; overflow: hidden; min-height: 420px; box-shadow: 0 24px 55px -28px rgba(8,26,63,.22); }
.split-photo-img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; display: block; }
.split-visual.split-visual-overlay { position: absolute; left: 20px; right: 20px; bottom: 20px; padding: 26px 28px; margin: 0; }
.crumbs { font-size: 13px; color: #9bb0d6; margin-bottom: 18px; letter-spacing: .04em; }
.crumbs a { color: var(--blue-300); }
.crumbs span { margin: 0 8px; opacity: .6; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 999px; background: rgba(78,167,255,.14); color: var(--blue-300); font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; border: 1px solid rgba(78,167,255,.3); margin-bottom: 22px; }
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue-400); box-shadow: 0 0 12px var(--blue-400); }
.page-hero h1 { font-family: var(--font-display); font-weight: 700; font-size: clamp(38px, 4.8vw, 58px); line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 22px; }
.page-hero h1 .gradient { background: linear-gradient(90deg, #6fb6ff, #4ea7ff, #8fc6ff); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.page-hero p.lede { color: #c8d4ec; font-size: 17.5px; max-width: 580px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-bullets { list-style: none; display: grid; gap: 12px; }
.hero-bullets li { display: flex; align-items: center; gap: 12px; color: #dbe5f7; font-size: 15px; }
.hero-bullets .check { width: 22px; height: 22px; border-radius: 50%; background: rgba(42,139,242,.2); display: grid; place-items: center; color: var(--blue-400); flex-shrink: 0; }
.hero-bullets .check svg { width: 12px; height: 12px; }

/* HERO ART */
.hero-art-card {
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  padding: 30px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.hero-art-card.hero-live {
  animation: heroCardFloat 7s ease-in-out infinite;
  box-shadow: 0 24px 60px -20px rgba(8, 26, 63, .55), 0 0 0 1px rgba(78, 167, 255, .08);
}
.hero-art-card.hero-live::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  border: 1px solid transparent;
  background: linear-gradient(120deg, transparent 30%, rgba(78, 167, 255, .45) 50%, transparent 70%) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: heroBorderGlow 4s linear infinite;
  pointer-events: none;
}
.hero-card-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, .12), transparent);
  animation: heroCardShine 5s ease-in-out infinite;
  pointer-events: none;
}
.hero-card-pulse {
  position: absolute;
  inset: auto 20px 20px auto;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 222, 128, .25), transparent 70%);
  animation: heroPulseRing 3s ease-out infinite;
  pointer-events: none;
}
.hero-art-card h4 { font-family: var(--font-display); font-size: 16px; color: white; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; position: relative; z-index: 1; }
.hero-art-card h4 .live { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 12px #4ade80; animation: livePulse 2s ease-in-out infinite; }
.hero-art-card .metric-row { position: relative; z-index: 1; animation: metricRowIn .7s ease backwards; animation-delay: calc(var(--row-i, 0) * 0.1s + 0.3s); }
.hero-art-card .value.metric-tick { color: var(--blue-300); text-shadow: 0 0 20px rgba(78, 167, 255, .5); transition: color .3s ease, text-shadow .3s ease; }
@keyframes pulse { 50% { opacity: .5; } }
@keyframes livePulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 12px #4ade80; }
  50% { transform: scale(1.25); box-shadow: 0 0 22px #4ade80, 0 0 40px rgba(74, 222, 128, .4); }
}
@keyframes heroCardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes heroBorderGlow {
  0% { opacity: .3; }
  50% { opacity: .9; }
  100% { opacity: .3; }
}
@keyframes heroCardShine {
  0%, 100% { left: -100%; opacity: 0; }
  45% { opacity: 1; }
  55% { left: 140%; opacity: 0; }
}
@keyframes heroPulseRing {
  0% { transform: scale(0.6); opacity: .8; }
  100% { transform: scale(2.2); opacity: 0; }
}
@keyframes metricRowIn {
  from { opacity: 0; transform: translateX(16px); }
  to { opacity: 1; transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .page-hero.hero-animated,
  .page-hero.hero-animated::before,
  .hero-orb,
  .hero-art-card.hero-live,
  .hero-art-card.hero-live::after,
  .hero-card-shine,
  .hero-card-pulse,
  .hero-art-card .metric-row { animation: none !important; }
}
.metric-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.metric-row:last-child { border-bottom: 0; }
.metric-row .label { color: #9bb0d6; font-size: 14px; }
.metric-row .value { font-family: var(--font-display); color: white; font-weight: 600; font-size: 18px; }
.metric-row .value .unit { color: #6fb6ff; font-size: 12px; font-weight: 500; margin-left: 4px; }
.flag-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; background: rgba(255,255,255,.06); border-radius: 999px; color: white; font-size: 13px; font-weight: 600; margin-bottom: 18px; border: 1px solid rgba(255,255,255,.1); }

/* SECTION BASE */
section.section { padding: 100px 0; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 60px; }
.section-head .kicker { color: var(--blue-500); font-weight: 700; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 14px; display: block; }
.section-head h2 { font-family: var(--font-display); font-size: clamp(28px, 3.4vw, 44px); line-height: 1.1; letter-spacing: -0.02em; color: var(--navy-900); margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 17px; }

/* FEATURES GRID */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card { background: white; border: 1px solid var(--line); border-radius: 18px; padding: 28px; transition: all .3s ease; }
.feature-card:hover { border-color: var(--blue-300); transform: translateY(-4px); box-shadow: 0 14px 34px -18px rgba(8,26,63,.3); }
.feature-card .ico { width: 52px; height: 52px; border-radius: 14px; background: var(--ice); display: grid; place-items: center; margin-bottom: 18px; color: var(--blue-500); }
.feature-card .ico svg { width: 24px; height: 24px; }
.feature-card h3 { font-family: var(--font-display); font-size: 19px; color: var(--navy-900); margin-bottom: 8px; font-weight: 600; }
.feature-card p { color: var(--muted); font-size: 14.5px; line-height: 1.6; }
a.feature-card { color: inherit; display: block; }
a.feature-card .pl-cta { display: inline-block; margin-top: 12px; color: var(--blue-500); font-weight: 600; font-size: 14px; }

/* TESTIMONIALS */
.testimonials-section .section-head { margin-bottom: 48px; }
.testimonials-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  padding: 28px 32px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
}
.testimonials-stat { text-align: center; min-width: 140px; }
.testimonials-stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.testimonials-stat-unit { font-size: 0.55em; color: var(--muted); font-weight: 600; }
.testimonials-stat-label {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .02em;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  transition: all .3s ease;
  margin: 0;
  position: relative;
}
.testimonial-card:hover {
  border-color: var(--blue-300);
  transform: translateY(-4px);
  box-shadow: 0 14px 34px -18px rgba(8,26,63,.3);
}
.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1;
  color: var(--blue-300);
  margin-bottom: 4px;
  opacity: .7;
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}
.testimonial-star { color: var(--line); }
.testimonial-star.is-filled { color: #f59e0b; }
.testimonial-text {
  color: var(--ink);
  font-size: 14.5px;
  line-height: 1.65;
  margin-bottom: 20px;
}
.testimonial-author { display: block; border-top: 1px solid var(--line); padding-top: 18px; }
.testimonial-name {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy-900);
  font-style: normal;
  margin-bottom: 4px;
}
.testimonial-role {
  display: block;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}
.testimonial-location {
  display: block;
  font-size: 12.5px;
  color: var(--blue-500);
  font-weight: 600;
  margin-top: 6px;
}

/* SPLIT SECTION */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-content .kicker { color: var(--blue-500); font-weight: 700; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 14px; display: block; }
.split-content h2 { font-family: var(--font-display); font-size: clamp(28px, 3.2vw, 40px); color: var(--navy-900); letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 22px; }
.split-content p { color: var(--muted); font-size: 16px; margin-bottom: 18px; }
.split-content ul { list-style: none; margin-top: 24px; }
.split-content ul li { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 14px; color: var(--ink); font-size: 15.5px; }
.split-content .check { width: 22px; height: 22px; border-radius: 50%; background: var(--blue-500); flex-shrink: 0; display: grid; place-items: center; margin-top: 3px; }
.split-content .check svg { width: 12px; height: 12px; color: white; }

.split-visual {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  border-radius: 24px;
  padding: clamp(28px, 4vw, 40px);
  color: white;
  position: relative;
  overflow: hidden;
}
.split-visual::before { content: ""; position: absolute; top: -50px; right: -50px; width: 200px; height: 200px; background: radial-gradient(circle, rgba(78,167,255,.3), transparent 70%); border-radius: 50%; }
.split-visual > * { position: relative; z-index: 1; }
.split-visual h4 { font-family: var(--font-display); font-size: 20px; margin-bottom: 24px; }
.spec-row { display: flex; justify-content: space-between; padding: 16px 0; border-bottom: 1px dashed rgba(255,255,255,.1); font-size: 14.5px; }
.spec-row:last-child { border-bottom: 0; }
.spec-row .k { color: #9bb0d6; }
.spec-row .v { color: white; font-weight: 600; font-family: var(--font-display); }

/* COVERAGE / GRID-2 */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.coverage-card { background: var(--paper); border: 1px solid var(--line); border-radius: 18px; padding: 28px; }
.coverage-card h3 { font-family: var(--font-display); font-size: 20px; color: var(--navy-900); margin-bottom: 12px; }
.coverage-card .badge-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.coverage-card .badge-list span { background: white; padding: 6px 12px; border-radius: 999px; font-size: 12.5px; font-weight: 600; color: var(--navy-800); border: 1px solid var(--line); }

/* USE CASES */
.usecase-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.usecase { background: white; border: 1px solid var(--line); border-radius: 16px; padding: 24px; transition: all .3s ease; }
.usecase:hover { border-color: var(--blue-300); transform: translateY(-4px); }
.usecase .ico { width: 44px; height: 44px; border-radius: 10px; background: var(--ice); display: grid; place-items: center; color: var(--blue-500); margin-bottom: 14px; }
.usecase .ico svg { width: 22px; height: 22px; }
.usecase h4 { font-family: var(--font-display); font-size: 16px; color: var(--navy-900); margin-bottom: 6px; }
.usecase p { color: var(--muted); font-size: 13.5px; line-height: 1.55; }

/* PRICING TEASER */
.pricing { background: var(--paper); }
.pricing-card { background: white; border: 1px solid var(--line); border-radius: 24px; padding: 50px; max-width: 880px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.pricing-card h3 { font-family: var(--font-display); font-size: 28px; color: var(--navy-900); margin-bottom: 10px; }
.pricing-card p { color: var(--muted); font-size: 15.5px; margin-bottom: 20px; }
.pricing-card ul { list-style: none; }
.pricing-card ul li { display: flex; gap: 10px; align-items: center; color: var(--ink); font-size: 14.5px; margin-bottom: 8px; }
.pricing-card ul li::before { content: "✓"; color: var(--blue-500); font-weight: 700; }
.pricing-card .pc-cta { text-align: center; }
.pricing-card .pc-cta .from { color: var(--muted); font-size: 13px; margin-bottom: 4px; }
.pricing-card .pc-cta .price { font-family: var(--font-display); font-size: 18px; color: var(--navy-900); margin-bottom: 18px; font-weight: 600; }

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; }
details.faq { border: 1px solid var(--line); border-radius: 14px; margin-bottom: 14px; padding: 22px 26px; background: white; transition: border-color .3s ease; }
details.faq[open] { border-color: var(--blue-300); }
details.faq summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--navy-900); }
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary .plus { width: 28px; height: 28px; border-radius: 50%; background: var(--ice); display: grid; place-items: center; color: var(--blue-500); transition: transform .3s ease, background .3s ease; font-weight: 700; }
details.faq[open] summary .plus { transform: rotate(45deg); background: var(--blue-500); color: white; }
details.faq p { margin-top: 14px; color: var(--muted); font-size: 15px; }

/* CTA */
.cta-block { background: linear-gradient(135deg, var(--blue-500) 0%, var(--navy-700) 100%); color: white; border-radius: 32px; padding: 70px 60px; text-align: center; position: relative; overflow: hidden; }
.cta-block::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 30%, rgba(255,255,255,.1), transparent 50%), radial-gradient(circle at 80% 70%, rgba(255,255,255,.08), transparent 50%); }
.cta-block > * { position: relative; z-index: 1; }
.cta-block h2 { font-family: var(--font-display); font-size: clamp(28px, 3.2vw, 42px); margin-bottom: 16px; letter-spacing: -0.02em; line-height: 1.1; }
.cta-block p { color: rgba(255,255,255,.85); margin-bottom: 30px; font-size: 17px; max-width: 580px; margin-left: auto; margin-right: auto; }

/* PRODUCTS OVERVIEW LARGE CARDS */
.product-large-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.product-large { background: white; border: 1px solid var(--line); border-radius: 26px; padding: 44px; transition: all .3s ease; position: relative; overflow: hidden; }
.product-large::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--blue-500), var(--navy-700)); }
.product-large:hover { transform: translateY(-6px); box-shadow: 0 20px 50px -25px rgba(8,26,63,.4); border-color: var(--blue-300); }
.product-large .flag { font-size: 36px; margin-bottom: 18px; line-height: 1; }
.product-large h3 { font-family: var(--font-display); font-size: 26px; color: var(--navy-900); margin-bottom: 12px; letter-spacing: -0.01em; }
.product-large p { color: var(--muted); margin-bottom: 22px; font-size: 15.5px; }
.product-large .perks { list-style: none; margin-bottom: 26px; }
.product-large .perks li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; color: var(--ink); font-size: 14.5px; }
.product-large .perks li::before { content: "→"; color: var(--blue-500); font-weight: 700; margin-top: 1px; }
.product-large .pl-cta { display: inline-flex; align-items: center; gap: 8px; color: var(--blue-500); font-weight: 600; font-size: 15px; }
.product-large .pl-cta svg { transition: transform .25s ease; }
.product-large:hover .pl-cta svg { transform: translateX(4px); }

/* FOOTER */
footer.site { background: var(--navy-900); color: #c8d4ec; padding: 80px 0 30px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr 1fr; gap: 40px; margin-bottom: 60px; }
.foot-grid.foot-grid-4 { grid-template-columns: 1.4fr 1fr 1.2fr 1fr; }
.features-grid.services-grid { grid-template-columns: repeat(4, 1fr); }
.features-grid.services-grid.services-grid-expanded { grid-template-columns: repeat(3, 1fr); }
.legal-hub-grid.services-hub-grid { grid-template-columns: repeat(3, 1fr); }
.legal-hub-card .hub-ico { width: 48px; height: 48px; border-radius: 12px; background: var(--ice); display: grid; place-items: center; margin-bottom: 14px; color: var(--blue-500); }
.legal-hub-card .hub-ico svg { width: 22px; height: 22px; }
.service-hero-icon { width: 120px; height: 120px; border-radius: 24px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); display: grid; place-items: center; color: var(--blue-400); justify-self: end; }
.service-hero-icon svg { width: 52px; height: 52px; }
.service-links.service-links-expanded { grid-template-columns: repeat(4, 1fr); }
.foot-services-view-all-link { font-weight: 600; color: var(--blue-400); }
.foot-services-view-all-link:hover { color: var(--blue-500); }
.foot-brand .logo { margin-bottom: 18px; }
.foot-brand p { color: #9bafd1; font-size: 14.5px; margin-bottom: 22px; }
.socials { display: flex; gap: 10px; }
.socials a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.06); display: grid; place-items: center; transition: background .3s ease; }
.socials a:hover { background: var(--blue-500); }
.socials svg { width: 16px; height: 16px; color: white; }
footer.site h5 { color: white; font-family: var(--font-display); font-weight: 600; font-size: 17px; margin-bottom: 22px; }
footer.site ul { list-style: none; display: grid; gap: 12px; }
footer.site ul a { color: #9bafd1; font-size: 14.5px; transition: color .3s ease; }
footer.site ul a:hover { color: var(--blue-400); }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 26px; display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; font-size: 13px; color: #7e91b6; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid.services-grid,
  .features-grid.services-grid.services-grid-expanded { grid-template-columns: repeat(2, 1fr); }
  .legal-hub-grid.services-hub-grid { grid-template-columns: repeat(2, 1fr); }
  .service-links.service-links-expanded { grid-template-columns: repeat(2, 1fr); }
  .usecase-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .page-hero .container { grid-template-columns: 1fr; }
  .human-strip-inner { grid-template-columns: 1fr; padding: 50px 0; }
  .human-strip-photo img { min-height: 240px; max-height: none; }
  .product-large-grid { grid-template-columns: 1fr; }
  .pricing-card { grid-template-columns: 1fr; text-align: center; }
  .foot-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1100px) {
  nav.main a[href*="contact-us"],
  nav.main .menu li a[href*="contact-us"] { display: none; }
}
@media (max-width: 1024px) {
  .topbar { padding: 8px 0; font-size: 12px; }
  .topbar .container {
    flex-wrap: nowrap;
    gap: 12px;
  }
  .topbar .left,
  .topbar .right {
    flex-wrap: nowrap;
    gap: 0;
  }
  .topbar .left {
    flex: 1 1 auto;
    min-width: 0;
  }
  .topbar .right {
    flex-shrink: 0;
    margin-left: 0;
  }
  .topbar-address {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .topbar-email-icon { display: inline-flex; }
  .topbar-email-text { display: none; }
}

@media (max-width: 820px) {
  .container,
  .topbar .container,
  header.site .container,
  footer.site .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .nav-toggle { display: flex; }
  header.site .header-shell {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
    padding-top: 6px;
    padding-bottom: 8px;
    position: relative;
  }
  header.site .header-row-top,
  header.site .header-row-actions {
    display: contents;
  }
  header.site .logo {
    order: 1;
    flex-shrink: 0;
    min-width: 0;
  }
  header.site .header-cta {
    order: 2;
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
    gap: 4px;
    justify-content: flex-end;
  }
  header.site .nav-toggle {
    order: 3;
    margin-left: 0;
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    padding: 7px;
    gap: 4px;
  }
  header.site .logo-img {
    max-height: 32px;
    max-width: min(96px, 26vw);
  }
  header.site .header-cta .btn {
    flex: 0 1 auto;
    justify-content: center;
    padding: 5px 7px;
    font-size: 11px;
    line-height: 1.2;
    min-height: 32px;
    border-radius: 999px;
  }
  header.site .header-cta .btn-ghost {
    border-width: 1px;
  }
  header.site .header-nav {
    order: 4;
  }
  .header-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px -24px rgba(8,26,63,.25);
    padding: 0 16px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height .35s ease, opacity .25s ease, visibility .25s ease;
  }
  header.site.nav-open .header-nav {
    max-height: 420px;
    opacity: 1;
    visibility: visible;
    padding-top: 12px;
    padding-bottom: 20px;
  }
  nav.main,
  nav.main .menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }
  nav.main a,
  nav.main .menu li a {
    display: block;
    padding: 12px 0;
    font-size: 15px;
    white-space: normal;
  }
  nav.main a[href*="contact-us"],
  nav.main .menu li a[href*="contact-us"] { display: block; }
  nav.main a::after,
  nav.main .menu li a::after { display: none; }
  .header-contact--desktop { display: none; }
  .header-contact--mobile {
    display: flex;
    width: 100%;
    padding-top: 14px;
    margin-top: 10px;
    border-top: 1px solid var(--line);
    gap: 10px;
  }
  .header-contact--mobile .header-contact-line { min-height: 28px; }
  .header-contact--mobile .header-contact-phone { font-size: 14px; }
  section.section { padding: 70px 0; }
  .features-grid, .grid-2, .usecase-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-stats { gap: 24px; padding: 24px 16px; }
  .page-hero { padding: 60px 0 70px; }
  .hero-route-visual { min-height: 180px; }
  .hero-route-visual .hero-icon-panel { min-height: 180px; }
  .product-large { padding: 28px 20px; }
  .product-card-visual { height: 160px; margin: -28px -20px 18px; width: calc(100% + 40px); }
  .feature-card { padding: 22px 18px; }
  details.faq { padding: 18px 16px; }
  .split-icon-panel { min-height: 320px; }
  .split-icon-panel-bg { min-height: 320px; padding-bottom: 180px; }
  .split-visual.split-visual-overlay { position: relative; left: 0; right: 0; bottom: 0; margin-top: -80px; }
  .page-hero.legal-hero.hero-with-image .container { grid-template-columns: 1fr; }
  .legal-hero-visual .hero-icon-panel { min-height: 220px; max-height: 260px; }
  .page-hero.service-hero .container { grid-template-columns: 1fr; }
  .service-hero-visual.hero-icon-panel { max-width: none; min-height: 240px; }
  .cta-block { padding: 40px 20px; }
  .pricing-card { padding: 32px 20px; }

  /* Footer: single-column stack on mobile */
  footer.site { padding: 56px 0 24px; }
  .foot-grid,
  .foot-grid.foot-grid-4 {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 36px;
  }
  .foot-grid > div {
    padding-bottom: 28px;
    margin-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }
  .foot-grid > div:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
  }
  .foot-brand .logo { margin-bottom: 14px; }
  .foot-brand p { margin-bottom: 0; font-size: 15px; line-height: 1.6; }
  footer.site h5 {
    font-size: 16px;
    margin-bottom: 16px;
    letter-spacing: 0.01em;
  }
  footer.site ul { gap: 10px; }
  footer.site ul a { font-size: 15px; line-height: 1.5; }
  .foot-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-top: 24px;
    font-size: 12.5px;
    line-height: 1.5;
  }
}

/* LEGAL PAGES */
.page-hero.legal-hero .container { display: block; max-width: 820px; }
.page-hero.legal-hero.hero-with-image .container { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; max-width: 1240px; }
.page-hero.service-hero .container { display: grid; grid-template-columns: 1.15fr .95fr; gap: 50px; align-items: center; max-width: 1240px; }
.service-content .content-img { width: 100%; max-height: 360px; object-fit: cover; border-radius: 18px; margin-bottom: 28px; border: 1px solid var(--line); }
.page-hero .subtitle { color: #c8d4ec; font-size: 17px; max-width: 640px; margin-bottom: 16px; }
.page-hero .meta { color: #9bb0d6; font-size: 14px; }
.legal-wrap { padding: 60px 0 100px; }
.legal-grid { display: grid; grid-template-columns: 240px 1fr; gap: 50px; align-items: start; }
.toc { position: sticky; top: 100px; background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: 24px; }
.toc h4 { font-family: var(--font-display); font-size: 15px; color: var(--navy-900); margin-bottom: 16px; }
.toc ol { list-style: none; counter-reset: toc; display: grid; gap: 10px; }
.toc ol li { counter-increment: toc; }
.toc ol li a { color: var(--muted); font-size: 14px; line-height: 1.4; display: block; padding: 4px 0; }
.toc ol li a:hover { color: var(--blue-500); }
.legal-content section { margin-bottom: 48px; scroll-margin-top: 100px; }
.legal-content h2 { font-family: var(--font-display); font-size: 26px; color: var(--navy-900); margin-bottom: 16px; letter-spacing: -0.01em; }
.legal-content h3 { font-family: var(--font-display); font-size: 19px; color: var(--navy-800); margin: 24px 0 12px; }
.legal-content p, .legal-content li { color: var(--muted); font-size: 15.5px; margin-bottom: 14px; }
.legal-content ul { margin: 0 0 18px 20px; }
.legal-content table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14.5px; }
.legal-content th, .legal-content td { border: 1px solid var(--line); padding: 12px 16px; text-align: left; }
.legal-content th { background: var(--paper); color: var(--navy-900); font-weight: 600; }
.legal-hub-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.legal-hub-card { background: white; border: 1px solid var(--line); border-radius: 16px; padding: 24px; transition: all .3s ease; display: block; color: inherit; }
.legal-hub-card:hover { border-color: var(--blue-300); transform: translateY(-3px); box-shadow: 0 12px 30px -18px rgba(8,26,63,.25); }
.legal-hub-card h3 { font-family: var(--font-display); font-size: 18px; color: var(--navy-900); margin-bottom: 8px; }
.legal-hub-card p { color: var(--muted); font-size: 14px; margin: 0; }
@media (max-width: 1024px) {
  .legal-grid { grid-template-columns: 1fr; }
  .toc { position: static; }
  .legal-hub-grid { grid-template-columns: 1fr; }
}

/* SERVICE PAGES */
.service-content { max-width: 820px; margin: 0 auto; }
.service-content h2 { font-family: var(--font-display); font-size: 26px; color: var(--navy-900); margin-bottom: 16px; letter-spacing: -0.01em; }
.service-content p { color: var(--muted); font-size: 16px; margin-bottom: 18px; line-height: 1.75; }
.policy-list { list-style: none; display: grid; gap: 14px; margin: 28px 0; }
.policy-list li { display: grid; grid-template-columns: 52px 1fr; gap: 18px; align-items: start; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 18px 20px; }
.policy-list .num { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--blue-500); line-height: 1.2; }
.policy-list p { margin: 0; color: var(--ink); font-size: 15px; }
.service-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px; }
.service-links a { background: white; border: 1px solid var(--line); border-radius: 14px; padding: 18px; font-weight: 600; color: var(--navy-800); font-size: 15px; transition: all .25s ease; }
.service-links a:hover { border-color: var(--blue-300); color: var(--blue-500); }
@media (max-width: 820px) {
  .service-links { grid-template-columns: 1fr; }
  .policy-list li { grid-template-columns: 40px 1fr; }
}

/* KYC FORM */
.kyc-section { padding-top: 50px; }
.kyc-form-wrap { max-width: 900px; margin: 0 auto; }
.kyc-form-wrap.kyc-form-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 40px);
  box-shadow: 0 18px 50px -28px rgba(8, 26, 63, .18);
}
.kyc-form { background: transparent; border: none; border-radius: 0; padding: 0; box-shadow: none; }
.kyc-notice {
  max-width: 900px;
  margin: 0 auto 28px;
  border-radius: 14px;
  padding: 22px 26px;
  border: 1px solid var(--line);
}
.kyc-notice-success { background: #ecfdf5; border-color: #a7f3d0; color: #065f46; }
.kyc-notice-success h2 { font-family: var(--font-display); font-size: 20px; margin-bottom: 8px; color: #064e3b; }
.kyc-notice-error { background: #fef2f2; border-color: #fecaca; color: #991b1b; }
.kyc-progress { height: 4px; background: var(--ice); border-radius: 999px; overflow: hidden; margin-bottom: 18px; }
.kyc-progress-bar { height: 100%; width: 0; background: linear-gradient(90deg, var(--blue-500), var(--navy-700)); border-radius: 999px; transition: width .35s ease; }
.kyc-step-mobile {
  display: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-800);
  margin: 0 0 12px;
  text-align: center;
}
.kyc-stepper {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0 0 28px;
  padding: 0;
  max-width: 100%;
}
.kyc-step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  position: relative;
  min-width: 0;
  padding: 0 4px;
}
.kyc-step-indicator:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 14px;
  left: calc(50% + 16px);
  width: calc(100% - 32px);
  height: 2px;
  background: var(--line);
  z-index: 0;
  pointer-events: none;
}
.kyc-step-indicator.completed:not(:last-child)::after {
  background: var(--blue-500);
}
.kyc-step-indicator.active:not(:last-child)::after {
  background: linear-gradient(90deg, var(--blue-500) 50%, var(--line) 50%);
}
.kyc-step-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  background: var(--paper);
  color: var(--muted);
  border: 2px solid var(--line);
  position: relative;
  z-index: 1;
  transition: all .25s ease;
  flex-shrink: 0;
}
.kyc-step-circle .kyc-step-check {
  display: none;
  width: 14px;
  height: 14px;
}
.kyc-step-indicator.active .kyc-step-circle {
  background: var(--blue-500);
  border-color: var(--blue-500);
  color: white;
  box-shadow: 0 6px 18px -6px rgba(42, 139, 242, .6);
}
.kyc-step-indicator.completed .kyc-step-circle {
  background: var(--navy-800);
  border-color: var(--navy-800);
  color: white;
}
.kyc-step-indicator.completed .kyc-step-num { display: none; }
.kyc-step-indicator.completed .kyc-step-check { display: block; }
.kyc-step-label {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.3;
  font-weight: 500;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.kyc-step-indicator.active .kyc-step-label { color: var(--navy-900); font-weight: 600; }
.kyc-step-indicator.completed .kyc-step-label { color: var(--navy-800); }
.kyc-step-num { display: block; line-height: 1; }
.kyc-step { display: none; }
.kyc-step.active { display: block; animation: kycStepIn .35s ease; }
@keyframes kycStepIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.kyc-step-head { margin-bottom: 24px; }
.kyc-step-head h2,
.kyc-step h2 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--navy-900);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.kyc-step-desc { color: var(--muted); font-size: 15px; margin: 0; }
.kyc-subsection {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.kyc-subsection h3 {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--navy-800);
  margin-bottom: 18px;
}
.kyc-field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}
.kyc-field-full { grid-column: 1 / -1; }
.kyc-field label:not(.kyc-campaign-card),
.kyc-label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--navy-800);
  margin-bottom: 8px;
}
.kyc-field input[type="text"],
.kyc-field input[type="email"],
.kyc-field input[type="tel"],
.kyc-field input[type="url"],
.kyc-field input[type="date"],
.kyc-field input[type="file"],
.kyc-field select,
.kyc-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: white;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.kyc-field textarea { min-height: 120px; padding: 12px 16px; }
.kyc-field select { padding-right: 40px; }
.kyc-field input:focus,
.kyc-field select:focus,
.kyc-field textarea:focus {
  outline: none;
  border-color: var(--blue-400);
  box-shadow: 0 0 0 3px rgba(78, 167, 255, .18);
  background: white;
}
.kyc-field input[type="file"] {
  padding: 10px 12px;
  background: white;
  cursor: pointer;
}
.kyc-required-mark { color: var(--blue-500); }
.kyc-hint { color: var(--muted); font-size: 13px; margin-top: 8px; line-height: 1.5; }
.kyc-legal-note { margin-top: 20px; }
.kyc-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.55;
  cursor: pointer;
}
.kyc-check input { margin-top: 4px; flex-shrink: 0; accent-color: var(--blue-500); }
.kyc-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  width: 100%;
  box-sizing: border-box;
}
.kyc-actions .kyc-actions-end {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
  flex-wrap: wrap;
}
.kyc-error {
  margin-top: 14px;
  color: #b91c1c;
  font-size: 14px;
  font-weight: 600;
}
.kyc-review {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 22px;
  margin-bottom: 24px;
}
.kyc-review-head h3 {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--navy-900);
  margin-bottom: 4px;
}
.kyc-review-head p { color: var(--muted); font-size: 13px; margin-bottom: 16px; }
.kyc-review-block { margin-bottom: 16px; }
.kyc-review-block:last-child { margin-bottom: 0; }
.kyc-review-block h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--blue-500);
  margin-bottom: 10px;
  font-weight: 700;
}
.kyc-review-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.kyc-review-row:last-child { border-bottom: none; }
.kyc-review-label { color: var(--muted); }
.kyc-review-value { color: var(--ink); font-weight: 500; word-break: break-word; }
.kyc-security-strip {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 28px;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
}
.kyc-security-strip-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: white;
  color: var(--blue-500);
  border: 1px solid rgba(42, 139, 242, .15);
}
.kyc-security-strip-icon svg { width: 16px; height: 16px; }
.kyc-security-strip p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
}
.kyc-security-strip a { color: var(--blue-500); font-weight: 600; text-decoration: none; }
.kyc-security-strip a:hover { text-decoration: underline; }
.kyc-upload-security {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(42, 139, 242, .06);
  border: 1px solid rgba(42, 139, 242, .18);
}
.kyc-upload-security-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: white;
  color: var(--blue-500);
}
.kyc-upload-security-icon svg { width: 14px; height: 14px; }
.kyc-upload-security-text {
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}
.kyc-upload-security-text strong {
  color: var(--navy-800);
  font-weight: 600;
}
.kyc-trust-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.kyc-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy-800);
  cursor: default;
}
.kyc-trust-pill-icon {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: var(--blue-500);
}
.kyc-trust-pill-icon svg { width: 12px; height: 12px; }
.kyc-trust-pill-label { line-height: 1; }
@media (max-width: 820px) {
  .kyc-form-wrap.kyc-form-card { padding: 24px 20px; }
  .kyc-step-mobile { display: block; }
  .kyc-stepper { display: none; }
  .kyc-field-grid { grid-template-columns: 1fr; }
  .kyc-trust-pills { gap: 6px; }
  .kyc-trust-pill { font-size: 10px; padding: 5px 10px; }
  .kyc-security-strip { flex-direction: row; }
  .kyc-review-row { grid-template-columns: 1fr; gap: 4px; }
  .kyc-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .kyc-actions .kyc-actions-end { margin-left: 0; width: 100%; }
  .kyc-actions .kyc-btn-back,
  .kyc-actions .kyc-actions-end .btn { flex: 1; justify-content: center; }
  .kyc-actions .kyc-actions-end { display: flex; gap: 12px; }
}
@media (min-width: 721px) and (max-width: 900px) {
  .kyc-step-label { font-size: 11px; }
  .kyc-step-circle { width: 26px; height: 26px; font-size: 12px; }
  .kyc-step-indicator:not(:last-child)::after { top: 13px; left: calc(50% + 14px); width: calc(100% - 28px); }
}

/* SERVICE DETAIL — SPLIT, HIGHLIGHTS, FORM */
.service-split.reverse .split-content { order: 2; }
.service-split.reverse .split-visual { order: 1; }
.service-split-icon { display: grid; place-items: center; min-height: 200px; }
.service-split-icon svg { width: 72px; height: 72px; color: var(--blue-300); opacity: .9; }
.service-highlights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-highlight-card { background: white; border: 1px solid var(--line); border-radius: 16px; padding: 24px; transition: all .25s ease; }
.service-highlight-card:hover { border-color: var(--blue-300); transform: translateY(-3px); box-shadow: 0 12px 30px -18px rgba(8,26,63,.2); }
.service-highlight-card h3 { font-family: var(--font-display); font-size: 17px; color: var(--navy-900); margin-bottom: 10px; }
.service-highlight-card p { color: var(--muted); font-size: 14.5px; margin: 0; line-height: 1.6; }
.service-form-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.service-form-intro .kicker { color: var(--blue-500); font-weight: 700; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 14px; display: block; }
.service-form-intro h2 { font-family: var(--font-display); font-size: clamp(26px, 3vw, 36px); color: var(--navy-900); letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 16px; }
.service-form-intro p { color: var(--muted); font-size: 16px; margin-bottom: 24px; line-height: 1.7; }
.service-form-contact { list-style: none; display: grid; gap: 14px; }
.service-form-contact li { color: var(--muted); font-size: 15px; }
.service-form-contact strong { display: block; color: var(--navy-800); font-size: 13px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.service-form-contact a { color: var(--blue-500); font-weight: 600; }
.service-form-card { background: white; border: 1px solid var(--line); border-radius: 20px; padding: 32px; box-shadow: 0 18px 45px -28px rgba(8,26,63,.18); }
.service-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.service-form-field { margin-bottom: 16px; }
.service-form-field label { display: block; font-size: 13px; font-weight: 600; color: var(--navy-800); margin-bottom: 8px; }
.service-form-field label span { color: var(--blue-500); }
.service-form-field input,
.service-form-field textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 12px; font: inherit; font-size: 15px; color: var(--ink); background: var(--paper); transition: border-color .2s ease, box-shadow .2s ease; }
.service-form-field input:focus,
.service-form-field textarea:focus { outline: none; border-color: var(--blue-300); box-shadow: 0 0 0 3px rgba(78,167,255,.15); }
.service-form-field textarea { resize: vertical; min-height: 120px; }
.service-form-service { font-size: 14px; color: var(--muted); margin: 4px 0 18px; }
.service-form-service strong { color: var(--navy-800); }
.service-form-hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.service-form-notice { border-radius: 12px; padding: 14px 16px; margin-bottom: 18px; font-size: 14.5px; }
.service-form-notice-success { background: #ecfdf5; border: 1px solid #a7f3d0; color: #065f46; }
.service-form-notice-error { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }
.service-form-notice a { color: inherit; font-weight: 600; }
.dialsync-recaptcha-wrap { margin: 0 0 18px; }
.kyc-step .dialsync-recaptcha-wrap { margin-top: 8px; }
@media (max-width: 1024px) {
  .service-highlights { grid-template-columns: repeat(2, 1fr); }
  .service-form-layout { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .service-highlights { grid-template-columns: 1fr; }
  .service-form-grid { grid-template-columns: 1fr; }
  .service-form-card { padding: 24px; }
}

.contact-map-panel { margin-top: 28px; }
.contact-info-list span { color: var(--muted); font-size: 15px; line-height: 1.6; }
.contact-page-section { background: var(--paper); }

/* KYC FORM (overrides) */
.kyc-section { padding-top: 0; }
.kyc-form-wrap { max-width: 900px; margin: 0 auto; }
.kyc-form-wrap.kyc-form-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 40px);
  box-shadow: 0 18px 50px -28px rgba(8, 26, 63, .18);
}
.kyc-notice { border-radius: 16px; padding: 28px 32px; margin-bottom: 32px; max-width: 900px; }
.kyc-notice-success { background: #e8f5ee; border: 1px solid #9fd4b5; color: var(--navy-800); }
.kyc-notice-success h2 { font-family: var(--font-display); font-size: 22px; color: var(--navy-900); margin-bottom: 10px; }
.kyc-notice-success p { margin-bottom: 8px; color: var(--muted); font-size: 15px; }
.kyc-form { background: transparent; border: none; border-radius: 0; padding: 0; box-shadow: none; }
.kyc-progress { height: 4px; background: var(--ice); border-radius: 999px; overflow: hidden; margin-bottom: 18px; }
.kyc-progress-bar { height: 100%; width: 0; background: linear-gradient(90deg, var(--blue-500), var(--navy-700)); border-radius: 999px; transition: width .35s ease; }
.kyc-step-mobile {
  display: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-800);
  margin: 0 0 12px;
  text-align: center;
}
.kyc-step-indicator span:not(.kyc-step-circle):not(.kyc-step-num):not(.kyc-step-label):not(.kyc-step-check) { display: unset; width: auto; height: auto; line-height: inherit; border-radius: 0; background: transparent; border: none; margin: 0; font-size: inherit; color: inherit; }
.kyc-step { display: none; }
.kyc-step.active { display: block; animation: kycFadeIn .3s ease; }
@keyframes kycFadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.kyc-step h3 { font-family: var(--font-display); font-size: 22px; color: var(--navy-900); margin-bottom: 8px; }
.kyc-step-desc { color: var(--muted); font-size: 15px; margin-bottom: 24px; }
.kyc-field-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.kyc-field { display: flex; flex-direction: column; gap: 8px; }
.kyc-field-full { grid-column: 1 / -1; }
.kyc-field label:not(.kyc-campaign-card), .kyc-label { font-weight: 600; font-size: 14px; color: var(--navy-800); }
.kyc-required-mark { color: #d64545; }
.kyc-field input[type="text"], .kyc-field input[type="email"], .kyc-field input[type="tel"], .kyc-field select, .kyc-field textarea {
  width: 100%; min-height: 48px; padding: 0 16px; border: 1px solid var(--line); border-radius: 12px; font: inherit; font-size: 15px; color: var(--ink); background: white; transition: border-color .2s ease, box-shadow .2s ease;
}
.kyc-field textarea { min-height: 120px; padding: 12px 16px; }
.kyc-field select { padding-right: 40px; }
.kyc-field input:focus, .kyc-field select:focus, .kyc-field textarea:focus { outline: none; border-color: var(--blue-400); box-shadow: 0 0 0 3px rgba(42,139,242,.15); }
.kyc-campaign-type-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
  margin-top: 12px;
}
.kyc-campaign-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  min-height: 120px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  cursor: pointer;
  margin-bottom: 0;
  transition: border-color .2s ease, background .2s ease, transform .25s ease, box-shadow .25s ease;
}
.kyc-campaign-card:hover {
  border-color: var(--blue-300);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -18px rgba(8, 26, 63, .2);
}
.kyc-campaign-card.is-selected,
.kyc-campaign-card:has(input:checked) {
  border-color: var(--blue-500);
  background: var(--ice);
  box-shadow: 0 0 0 1px var(--blue-500);
}
.kyc-campaign-card-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.kyc-campaign-card-check {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  display: grid;
  place-items: center;
  color: #fff;
  opacity: 0;
  transform: scale(.85);
  transition: opacity .2s ease, transform .2s ease, background .2s ease, border-color .2s ease;
}
.kyc-campaign-card.is-selected .kyc-campaign-card-check,
.kyc-campaign-card:has(input:checked) .kyc-campaign-card-check {
  opacity: 1;
  transform: scale(1);
  background: var(--blue-500);
  border-color: var(--blue-500);
}
.kyc-campaign-card-check svg { width: 12px; height: 12px; }
.kyc-campaign-card-ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--ice);
  display: grid;
  place-items: center;
  color: var(--blue-500);
  flex-shrink: 0;
}
.kyc-campaign-card-ico svg { width: 24px; height: 24px; }
.kyc-campaign-card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 0;
  padding-right: 28px;
}
.kyc-campaign-card-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--navy-900);
  line-height: 1.3;
}
.kyc-campaign-card-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}
.kyc-campaign-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
  margin-top: 8px;
}
.kyc-campaign-checklist .kyc-check {
  position: relative;
  margin: 0;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 16px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy-800);
  line-height: 1.4;
  transition: border-color .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.kyc-campaign-checklist .kyc-check input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.kyc-campaign-checklist .kyc-check:hover {
  border-color: var(--blue-300);
  box-shadow: 0 4px 14px -8px rgba(8, 26, 63, .25);
}
.kyc-campaign-checklist .kyc-check:has(input:checked) {
  border-color: var(--blue-500);
  background: var(--ice);
  color: var(--navy-900);
  box-shadow: 0 0 0 1px var(--blue-500);
}
.kyc-campaign-detail-section {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  margin-top: 24px;
}
@media (max-width: 640px) {
  .kyc-campaign-type-grid,
  .kyc-campaign-checklist { grid-template-columns: 1fr; }
}
.kyc-checkgroup { display: grid; gap: 12px; }
.kyc-checkgroup-grid { grid-template-columns: repeat(2, 1fr); gap: 10px 16px; }
.kyc-check { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--muted); line-height: 1.5; cursor: pointer; }
.kyc-check input { margin-top: 3px; flex-shrink: 0; accent-color: var(--blue-500); }
.kyc-campaign-label { margin-bottom: 12px; display: block; }
.kyc-campaign-other-field { margin-top: 14px; }
.kyc-service-type-field { margin-bottom: 20px; }
.kyc-field input[type="number"] {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 12px;
  font: inherit; font-size: 15px; color: var(--ink); background: white;
}
.kyc-field input[type="number"]:focus { outline: none; border-color: var(--blue-400); box-shadow: 0 0 0 3px rgba(42,139,242,.15); }
.kyc-tech-requirements { background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: 20px; margin-top: 8px; transition: border-color .25s ease, box-shadow .25s ease; }
.kyc-tech-requirements.is-active { border-color: var(--blue-300); box-shadow: 0 4px 20px rgba(42,139,242,.08); }
.kyc-tech-panel[hidden] { display: none !important; }
.kyc-tech-panel.is-visible { display: block; opacity: 1; transform: none; }
.kyc-hint { font-size: 13.5px; color: var(--muted); margin: 0 0 12px; line-height: 1.5; }
.kyc-optional-mark { font-weight: 500; color: var(--muted); font-size: 13px; }
.kyc-step-head h2 { font-family: var(--font-display); font-size: clamp(22px, 2.5vw, 28px); color: var(--navy-900); margin-bottom: 8px; }
.kyc-subsection { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line); }
.kyc-subsection h3 { font-family: var(--font-display); font-size: 18px; color: var(--navy-900); margin-bottom: 16px; }
.kyc-stepper {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0 0 28px;
  padding: 0;
  max-width: 100%;
}
.kyc-stepper .kyc-step-indicator {
  flex: unset;
  min-width: 0;
  padding: 0 4px;
  border: none;
  border-radius: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  position: relative;
}
.kyc-stepper .kyc-step-indicator.active,
.kyc-stepper .kyc-step-indicator.completed {
  border: none;
  background: transparent;
}
.kyc-step-circle {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--line);
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  position: relative;
  z-index: 1;
  transition: all .25s ease;
  flex-shrink: 0;
}
.kyc-step-circle .kyc-step-check { display: none; width: 14px; height: 14px; }
.kyc-step-label { line-height: 1.3; font-size: 12px; font-weight: 500; color: var(--muted); max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.kyc-step-num { display: block; line-height: 1; font-size: inherit; letter-spacing: 0; text-transform: none; opacity: 1; margin-bottom: 0; }
.kyc-stepper .kyc-step-indicator:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 14px;
  left: calc(50% + 16px);
  width: calc(100% - 32px);
  height: 2px;
  background: var(--line);
  z-index: 0;
  pointer-events: none;
}
.kyc-stepper .kyc-step-indicator.completed:not(:last-child)::after { background: var(--blue-500); }
.kyc-stepper .kyc-step-indicator.active:not(:last-child)::after { background: linear-gradient(90deg, var(--blue-500) 50%, var(--line) 50%); }
.kyc-stepper .kyc-step-indicator.active { color: var(--navy-900); }
.kyc-stepper .kyc-step-indicator.active .kyc-step-label { color: var(--navy-900); font-weight: 600; }
.kyc-stepper .kyc-step-indicator.active .kyc-step-circle { background: var(--blue-500); border-color: var(--blue-500); color: white; box-shadow: 0 6px 18px -6px rgba(42, 139, 242, .6); }
.kyc-stepper .kyc-step-indicator.completed .kyc-step-label { color: var(--navy-800); }
.kyc-stepper .kyc-step-indicator.completed .kyc-step-circle { background: var(--navy-800); border-color: var(--navy-800); color: white; }
.kyc-stepper .kyc-step-indicator.completed .kyc-step-num { display: none; }
.kyc-stepper .kyc-step-indicator.completed .kyc-step-check { display: block; }
.kyc-upload-field { display: flex; flex-direction: column; gap: 10px; }
.kyc-upload-field > label { font-weight: 600; font-size: 14px; color: var(--navy-800); line-height: 1.45; }
.kyc-upload-control { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; padding: 14px 16px; border: 2px dashed var(--line); border-radius: 14px; background: var(--paper); transition: border-color .2s ease, background .2s ease; }
.kyc-upload-field:focus-within .kyc-upload-control { border-color: var(--blue-300); background: rgba(42,139,242,.04); }
.kyc-upload-field.has-error .kyc-upload-control { border-color: #e57373; background: #fff5f5; }
.kyc-upload-input { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.kyc-upload-btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 18px; border-radius: 10px; background: var(--navy-800); color: white; font-size: 14px; font-weight: 600; cursor: pointer; transition: background .2s ease; flex-shrink: 0; }
.kyc-upload-btn:hover { background: var(--navy-900); }
.kyc-upload-filename { font-size: 14px; color: var(--muted); word-break: break-all; }
.kyc-upload-hint { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.45; }
.kyc-upload-error { font-size: 13px; color: #c0392b; margin: 0; }
.kyc-security-strip {
  display: flex; align-items: flex-start; gap: 12px; margin-bottom: 28px;
  padding: 14px 16px; border-radius: 12px; background: var(--paper); border: 1px solid var(--line);
}
.kyc-security-strip-icon {
  flex-shrink: 0; width: 32px; height: 32px; display: grid; place-items: center;
  border-radius: 8px; background: white; color: var(--blue-500); border: 1px solid rgba(42,139,242,.15);
}
.kyc-security-strip-icon svg { width: 16px; height: 16px; }
.kyc-security-strip p { margin: 0; font-size: 13.5px; line-height: 1.55; color: var(--muted); }
.kyc-security-strip a { color: var(--blue-500); font-weight: 600; text-decoration: none; }
.kyc-security-strip a:hover { text-decoration: underline; }
.kyc-upload-security {
  display: flex; align-items: center; gap: 10px; margin-bottom: 20px;
  padding: 12px 14px; border-radius: 10px; background: rgba(42,139,242,.06); border: 1px solid rgba(42,139,242,.18);
}
.kyc-upload-security-icon {
  flex-shrink: 0; width: 28px; height: 28px; display: grid; place-items: center;
  border-radius: 50%; background: white; color: var(--blue-500);
}
.kyc-upload-security-icon svg { width: 14px; height: 14px; }
.kyc-upload-security-text { font-size: 13px; line-height: 1.5; color: var(--muted); }
.kyc-upload-security-text strong { color: var(--navy-800); font-weight: 600; }
.kyc-trust-pills {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line);
}
.kyc-trust-pill {
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px;
  border-radius: 999px; background: var(--paper); border: 1px solid var(--line);
  font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--navy-800); cursor: default;
}
.kyc-trust-pill-icon { display: grid; place-items: center; width: 18px; height: 18px; color: var(--blue-500); }
.kyc-trust-pill-icon svg { width: 12px; height: 12px; }
.kyc-trust-pill-label { line-height: 1; }
.kyc-notice-error { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }
.kyc-notice-info { background: #eff6ff; border: 1px solid #bfdbfe; color: var(--navy-800); margin-bottom: 24px; border-radius: 16px; padding: 16px 20px; font-size: 14.5px; }
.kyc-draft-banner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: var(--navy-800);
  font-size: 14.5px;
  line-height: 1.5;
}
.kyc-draft-banner p { margin: 0; }
.kyc-draft-banner-dismiss {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--navy-800);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}
.kyc-draft-banner-dismiss:hover { background: rgba(42,139,242,.12); }
.kyc-draft-clear-wrap { margin: 0 0 16px; text-align: right; }
.kyc-draft-clear {
  border: none;
  background: none;
  padding: 0;
  font: inherit;
  font-size: 13px;
  color: var(--muted);
  text-decoration: underline;
  cursor: pointer;
}
.kyc-draft-clear:hover { color: var(--navy-800); }
.kyc-file-restore-hint { color: #b45309; font-style: normal; }
.kyc-file-reupload-notice { margin-bottom: 20px; }
.kyc-draft-privacy { margin: 0 0 16px; font-size: 13px; color: var(--muted); line-height: 1.5; }
.contact-form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.contact-form-actions .kyc-draft-clear { margin-left: auto; }
.kyc-legal-note { margin-top: 20px; }
.kyc-address-row { grid-column: span 1; }
.kyc-field-grid:has(.kyc-address-row) { grid-template-columns: repeat(3, 1fr); }
.kyc-note { background: rgba(42,139,242,.08); border: 1px solid rgba(42,139,242,.2); border-radius: 12px; padding: 12px 16px; font-size: 14px; color: var(--navy-800); margin-bottom: 18px; line-height: 1.5; }
.kyc-tech-placeholder { margin: 0; text-align: center; padding: 12px 0; }
.kyc-subsection h4 { font-family: var(--font-display); font-size: 17px; color: var(--navy-900); margin-bottom: 8px; }
.kyc-field input[type="url"], .kyc-field input[type="file"] { width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 12px; font: inherit; font-size: 15px; color: var(--ink); background: white; }
.kyc-field input[type="file"] { padding: 10px 0; border: none; background: transparent; }
.kyc-error { color: #c0392b; font-size: 14px; margin-top: 14px; text-align: right; }
.kyc-review { display: grid; gap: 20px; }
.kyc-review-block { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 18px 20px; }
.kyc-review-block h4 { font-family: var(--font-display); font-size: 16px; color: var(--navy-900); margin-bottom: 12px; }
.kyc-review-row { display: grid; grid-template-columns: 180px 1fr; gap: 12px; padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,.05); font-size: 14px; }
.kyc-review-row:last-child { border-bottom: none; }
.kyc-review-label { font-weight: 600; color: var(--navy-800); }
.kyc-review-value { color: var(--muted); word-break: break-word; }
@media (max-width: 720px) {
  .kyc-form-wrap.kyc-form-card { padding: 22px 18px; }
  .kyc-step-mobile { display: block; }
  .kyc-stepper { display: none; }
  .kyc-field-grid { grid-template-columns: 1fr; }
  .kyc-field-grid:has(.kyc-address-row) { grid-template-columns: 1fr; }
  .kyc-checkgroup-grid { grid-template-columns: 1fr; }
  .kyc-review-row { grid-template-columns: 1fr; gap: 4px; }
  .kyc-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .kyc-actions .kyc-actions-end { margin-left: 0; width: 100%; display: flex; gap: 12px; }
  .kyc-actions .kyc-btn-back,
  .kyc-actions .kyc-actions-end .btn { flex: 1; justify-content: center; }
  .kyc-trust-pills { gap: 6px; }
  .kyc-trust-pill { font-size: 10px; padding: 5px 10px; }
  .kyc-upload-control { flex-direction: column; align-items: stretch; }
  .kyc-upload-btn { width: 100%; }
}
@media (min-width: 721px) and (max-width: 900px) {
  .kyc-stepper .kyc-step-label { font-size: 11px; }
  .kyc-stepper .kyc-step-circle { width: 26px; height: 26px; font-size: 12px; }
  .kyc-stepper .kyc-step-indicator:not(:last-child)::after { top: 13px; left: calc(50% + 14px); width: calc(100% - 28px); }
}
