/* ============================================================
   PEDÁGIO DIGITAL — Design System
   Versão: 2.0 | Desenvolvido com CSS puro + custom properties
   ============================================================ */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── DESIGN TOKENS ── */
:root {
  /* Palette */
  --navy:          #0b1929;
  --navy-mid:      #112240;
  --navy-light:    #1a3354;
  --blue:          #1d4ed8;
  --blue-hover:    #1e40af;
  --blue-light:    #eff6ff;
  --green:         #0d9c52;
  --green-light:   #f0fdf4;
  --amber:         #d97706;

  /* Neutrals */
  --ink:           #0f172a;
  --text:          #1e293b;
  --text-sec:      #475569;
  --text-muted:    #94a3b8;
  --border:        #e2e8f0;
  --border-dark:   #cbd5e1;
  --surface:       #f8fafc;
  --surface-alt:   #f1f5f9;
  --white:         #ffffff;

  /* Typography */
  --font-head:  'Sora', sans-serif;
  --font-body:  'Inter', sans-serif;

  /* Type scale */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;

  /* Spacing */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* Radius */
  --r-sm:  4px;
  --r-md:  10px;
  --r-lg:  18px;
  --r-xl:  28px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-xs:  0 1px 2px rgba(0,0,0,.05);
  --shadow-sm:  0 2px 8px rgba(0,0,0,.06);
  --shadow-md:  0 4px 20px rgba(0,0,0,.08);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.10);

  /* Transitions */
  --ease:      0.22s ease;
  --ease-slow: 0.40s ease;

  /* Container */
  --container: 1160px;
  --container-sm: 780px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── LAYOUT ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}
.container-sm {
  width: 100%;
  max-width: var(--container-sm);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}
h1 { font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl)); }
h2 { font-size: clamp(var(--text-2xl), 3.5vw, var(--text-4xl)); }
h3 { font-size: clamp(var(--text-xl), 2.5vw, var(--text-2xl)); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }

p { color: var(--text-sec); }

.lead {
  font-size: var(--text-lg);
  line-height: 1.75;
  color: var(--text-sec);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-head);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: var(--sp-4);
}
.eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--blue);
  border-radius: var(--r-full);
}

/* ── SECTION ── */
.section { padding-block: var(--sp-24); }
.section-sm { padding-block: var(--sp-16); }
.section-alt { background: var(--surface); }
.section-dark { background: var(--navy); color: var(--white); }
.section-dark h1,
.section-dark h2,
.section-dark h3 { color: var(--white); }

.section-header {
  margin-bottom: var(--sp-16);
  max-width: 640px;
}
.section-header.center {
  margin-inline: auto;
  text-align: center;
}
.section-header p {
  margin-top: var(--sp-4);
  font-size: var(--text-lg);
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 68px;
  display: flex;
  align-items: center;
  background: transparent;
  transition: background var(--ease), box-shadow var(--ease), backdrop-filter var(--ease);
}
.navbar.scrolled {
  background: rgba(11, 25, 41, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,.08);
}
.navbar.light {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 0 var(--border);
}
.navbar.light.scrolled {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-6);
  height: 100%;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
}
.navbar-logo .logo-mark {
  width: 34px;
  height: 34px;
  background: var(--blue);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.navbar-logo .logo-mark svg { width: 18px; height: 18px; fill: #fff; }
.navbar-logo .logo-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--white);
  line-height: 1.2;
}
.navbar-logo .logo-text span { display: block; font-size: var(--text-xs); font-weight: 400; opacity: .65; }

.navbar.light .navbar-logo .logo-text { color: var(--ink); }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}
.nav-links a {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,.75);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-sm);
  transition: color var(--ease), background var(--ease);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.08); }
.nav-links a.active { color: var(--white); }

.navbar.light .nav-links a { color: var(--text-sec); }
.navbar.light .nav-links a:hover { color: var(--ink); background: var(--surface); }
.navbar.light .nav-links a.active { color: var(--blue); }

.nav-cta {
  font-size: var(--text-sm) !important;
  font-weight: 600 !important;
  color: var(--white) !important;
  background: var(--blue) !important;
  padding: var(--sp-2) var(--sp-5) !important;
  border-radius: var(--r-full) !important;
  transition: background var(--ease) !important;
}
.nav-cta:hover { background: var(--blue-hover) !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  border-radius: var(--r-sm);
  background: transparent;
  transition: background var(--ease);
}
.nav-toggle:hover { background: rgba(255,255,255,.1); }
.navbar.light .nav-toggle:hover { background: var(--surface); }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: var(--r-full);
  transition: transform var(--ease), opacity var(--ease);
}
.navbar.light .nav-toggle span { background: var(--ink); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--navy);
  padding: var(--sp-6) var(--sp-6) var(--sp-8);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  z-index: 999;
  border-top: 1px solid rgba(255,255,255,.06);
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block;
  font-size: var(--text-base);
  font-weight: 500;
  color: rgba(255,255,255,.75);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color var(--ease);
}
.nav-mobile a:hover { color: var(--white); }
.nav-mobile a:last-child { border-bottom: none; }

/* ── HERO ── */
.hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: 68px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-bg::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(29,78,216,.18) 0%, transparent 65%);
  border-radius: 50%;
}
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(13,156,82,.10) 0%, transparent 65%);
  border-radius: 50%;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding: var(--sp-20) var(--sp-6);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.hero-content .eyebrow { color: #64b5f6; }
.hero-content .eyebrow::before { background: #64b5f6; }
.hero-content h1 {
  color: var(--white);
  margin-bottom: var(--sp-6);
  line-height: 1.15;
}
.hero-content h1 em {
  font-style: normal;
  color: #64b5f6;
}
.hero-content .lead {
  color: rgba(255,255,255,.65);
  font-size: var(--text-lg);
  margin-bottom: var(--sp-8);
}
.hero-actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  justify-content: center;
}
.hero-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  width: 100%;
  max-width: 380px;
  backdrop-filter: blur(8px);
}
.hero-card-title {
  font-family: var(--font-head);
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255,255,255,.5);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: var(--sp-6);
}
.hero-stat-list { display: flex; flex-direction: column; gap: var(--sp-4); }
.hero-stat {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-4);
  background: rgba(255,255,255,.04);
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,.07);
}
.hero-stat-icon {
  width: 40px;
  height: 40px;
  background: rgba(29,78,216,.25);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: #64b5f6;
}
.hero-stat-body strong {
  display: block;
  font-family: var(--font-head);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}
.hero-stat-body span {
  font-size: var(--text-xs);
  color: rgba(255,255,255,.45);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--r-full);
  padding: 0.7rem 1.6rem;
  transition: background var(--ease), color var(--ease), box-shadow var(--ease), transform var(--ease);
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn:active { transform: scale(.98); }

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover { background: var(--blue-hover); border-color: var(--blue-hover); box-shadow: 0 4px 16px rgba(29,78,216,.35); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn-outline-white:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.7); }

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover { background: var(--blue-light); }

.btn-ghost {
  background: transparent;
  color: var(--text-sec);
  border-color: var(--border);
}
.btn-ghost:hover { background: var(--surface); color: var(--text); }

.btn-lg {
  font-size: var(--text-base);
  padding: 0.875rem 2rem;
}
.btn-sm {
  font-size: var(--text-xs);
  padding: 0.45rem 1.1rem;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: var(--text-muted);
  padding: var(--sp-4) 0;
  margin-bottom: var(--sp-2);
}
.breadcrumb a { color: var(--text-muted); transition: color var(--ease); }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb-sep { font-size: var(--text-xs); opacity: .4; }

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  background: var(--navy);
  padding: calc(68px + var(--sp-16)) var(--sp-6) var(--sp-16);
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 100%;
  background: radial-gradient(ellipse at right, rgba(29,78,216,.15) 0%, transparent 70%);
  pointer-events: none;
}
.page-header-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin-inline: auto;
}
.page-header .breadcrumb a { color: rgba(255,255,255,.45); }
.page-header .breadcrumb { color: rgba(255,255,255,.45); }
.page-header .breadcrumb-sep { color: rgba(255,255,255,.3); }
.page-header h1 { color: var(--white); font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl)); }
.page-header .lead { color: rgba(255,255,255,.6); margin-top: var(--sp-4); max-width: 580px; }
.page-header .eyebrow { color: #64b5f6; }
.page-header .eyebrow::before { background: #64b5f6; }

/* ── CARDS ── */
.card-grid {
  display: grid;
  gap: var(--sp-6);
}
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  transition: box-shadow var(--ease), transform var(--ease), border-color var(--ease);
}
.card:hover { box-shadow: var(--shadow-md); border-color: var(--border-dark); transform: translateY(-2px); }

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: var(--sp-5);
  flex-shrink: 0;
}
.card-icon-blue   { background: var(--blue-light); color: var(--blue); }
.card-icon-green  { background: var(--green-light); color: var(--green); }
.card-icon-amber  { background: #fffbeb; color: var(--amber); }
.card-icon-navy   { background: rgba(17,34,64,.08); color: var(--navy-mid); }

.card h3 { margin-bottom: var(--sp-3); font-size: var(--text-xl); }
.card h4 { margin-bottom: var(--sp-3); font-size: var(--text-lg); }

/* ── INFO BLOCK ── */
.info-block {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.info-block-head {
  background: var(--navy);
  padding: var(--sp-6) var(--sp-8);
  color: var(--white);
}
.info-block-head h3 { color: var(--white); font-size: var(--text-xl); }
.info-block-body { padding: var(--sp-8); }

/* ── SPLIT LAYOUT ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

/* ── PROCESS / TIMELINE ── */
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--sp-6);
  position: relative;
}
.process-step:not(:last-child) { padding-bottom: var(--sp-10); }
.process-step:not(:last-child) .step-line::after {
  content: '';
  position: absolute;
  top: 56px;
  left: 27px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.step-num {
  position: relative;
  z-index: 1;
}
.step-num-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--blue);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
  margin-top: 6px;
}
.step-content { padding-top: var(--sp-1); }
.step-content h4 { margin-bottom: var(--sp-2); color: var(--ink); }
.step-content p { font-size: var(--text-base); }

/* ── CHECKLIST ── */
.checklist { display: flex; flex-direction: column; gap: var(--sp-3); }
.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-4);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: border-color var(--ease), box-shadow var(--ease);
}
.checklist-item:hover { border-color: var(--blue); box-shadow: var(--shadow-xs); }

.check-ico {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 11px;
  color: var(--green);
}

.checklist-item strong { display: block; font-size: var(--text-sm); font-weight: 600; color: var(--text); margin-bottom: 2px; }
.checklist-item span { font-size: var(--text-sm); color: var(--text-sec); }

/* ── NOTICE / ALERT ── */
.notice {
  border-radius: var(--r-md);
  padding: var(--sp-5) var(--sp-6);
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  border-left: 4px solid;
}
.notice-info   { background: var(--blue-light); border-color: var(--blue); }
.notice-success{ background: var(--green-light); border-color: var(--green); }
.notice-warn   { background: #fffbeb; border-color: var(--amber); }
.notice-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.notice-info .notice-icon  { color: var(--blue); }
.notice-success .notice-icon { color: var(--green); }
.notice-warn .notice-icon  { color: var(--amber); }
.notice p { font-size: var(--text-sm); color: var(--text-sec); margin: 0; }
.notice strong { color: var(--text); }

/* ── FAQ / ACCORDION ── */
.faq-list { display: flex; flex-direction: column; gap: var(--sp-3); }
.faq-group-title {
  font-family: var(--font-head);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: var(--sp-6) 0 var(--sp-2);
}

.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.accordion-item.open { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  background: var(--white);
  cursor: pointer;
  text-align: left;
  transition: background var(--ease);
}
.accordion-btn:hover { background: var(--surface); }
.accordion-item.open .accordion-btn { background: var(--blue-light); }
.accordion-question {
  font-family: var(--font-head);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}
.accordion-item.open .accordion-question { color: var(--blue); }
.accordion-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-sec);
  font-size: 14px;
  transition: transform var(--ease), background var(--ease), color var(--ease);
}
.accordion-item.open .accordion-icon { transform: rotate(180deg); background: var(--blue); color: var(--white); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(.4,0,.2,1);
}
.accordion-item.open .accordion-body { max-height: 600px; }
.accordion-body-inner {
  padding: 0 var(--sp-6) var(--sp-5);
  border-top: 1px solid var(--border);
}
.accordion-item.open .accordion-body-inner { border-color: rgba(29,78,216,.15); }
.accordion-body-inner p {
  font-size: var(--text-base);
  color: var(--text-sec);
  padding-top: var(--sp-4);
  margin: 0;
}
.accordion-body-inner ul {
  list-style: disc;
  padding-left: var(--sp-5);
  margin-top: var(--sp-3);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.accordion-body-inner ul li { font-size: var(--text-sm); color: var(--text-sec); }

/* ── STAT ROW ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-head);
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.stat-label { font-size: var(--text-sm); color: var(--text-muted); }

/* ── HIGHLIGHT BOX ── */
.highlight-box {
  background: var(--navy);
  border-radius: var(--r-xl);
  padding: var(--sp-16);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.highlight-box::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(29,78,216,.2) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.highlight-box h2,
.highlight-box h3 { color: var(--white); }
.highlight-box p  { color: rgba(255,255,255,.65); }

/* ── COMPANY INFO ── */
.company-info {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-6) var(--sp-8);
}
.company-info strong {
  display: block;
  font-family: var(--font-head);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: var(--sp-3);
}
.company-info address {
  font-style: normal;
  font-size: var(--text-sm);
  color: var(--text-sec);
  line-height: 2;
}
.company-info address span {
  display: inline-block;
  margin-right: var(--sp-4);
}

/* ── POLICY PAGE ── */
.policy-body { max-width: 820px; margin-inline: auto; }
.policy-body h2 {
  font-size: var(--text-xl);
  margin-top: var(--sp-12);
  margin-bottom: var(--sp-4);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--border);
  color: var(--navy-mid);
}
.policy-body h2:first-of-type { border-top: none; margin-top: 0; padding-top: 0; }
.policy-body p { margin-bottom: var(--sp-4); }
.policy-body ul {
  padding-left: var(--sp-6);
  list-style: disc;
  margin-bottom: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.policy-body li { color: var(--text-sec); font-size: var(--text-base); }
.policy-date {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--sp-8);
}
.policy-toc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-6) var(--sp-8);
  margin-bottom: var(--sp-10);
}
.policy-toc p { font-family: var(--font-head); font-size: var(--text-sm); font-weight: 600; color: var(--ink); margin-bottom: var(--sp-3); }
.policy-toc ol {
  padding-left: var(--sp-5);
  list-style: decimal;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.policy-toc ol li { font-size: var(--text-sm); color: var(--text-sec); }

/* Cookie table */
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--sp-6) 0;
  font-size: var(--text-sm);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border);
}
.cookie-table thead tr { background: var(--navy); }
.cookie-table thead th { color: var(--white); font-family: var(--font-head); font-size: var(--text-xs); letter-spacing: .06em; text-transform: uppercase; padding: var(--sp-4) var(--sp-5); text-align: left; }
.cookie-table tbody tr { border-bottom: 1px solid var(--border); }
.cookie-table tbody tr:last-child { border-bottom: none; }
.cookie-table tbody tr:nth-child(even) { background: var(--surface); }
.cookie-table td { padding: var(--sp-4) var(--sp-5); color: var(--text-sec); vertical-align: top; }
.cookie-table td strong { color: var(--text); font-weight: 600; }

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-10);
  align-items: start;
}
.contact-channel {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  background: var(--white);
}
.contact-channel h4 { margin-bottom: var(--sp-4); }
.contact-channel p { font-size: var(--text-sm); }
.contact-channel address {
  font-style: normal;
  font-size: var(--text-sm);
  color: var(--text-sec);
  line-height: 2;
  margin-top: var(--sp-4);
}
.contact-scope-list { display: flex; flex-direction: column; gap: var(--sp-3); margin-top: var(--sp-4); }
.scope-item {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-sm);
  font-size: var(--text-sm);
  color: var(--text-sec);
}
.scope-item.yes { background: var(--green-light); }
.scope-item.no  { background: #fff7ed; }
.scope-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.scope-item.yes .scope-icon { color: var(--green); }
.scope-item.no .scope-icon  { color: #c2410c; }

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.6);
  padding: var(--sp-20) var(--sp-6) var(--sp-8);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--sp-10);
  padding-bottom: var(--sp-16);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .logo-text { color: var(--white); margin-bottom: var(--sp-4); display: block; font-family: var(--font-head); font-size: var(--text-lg); font-weight: 700; }
.footer-brand p { font-size: var(--text-sm); line-height: 1.75; max-width: 280px; }
.footer-brand address {
  font-style: normal;
  font-size: var(--text-xs);
  color: rgba(255,255,255,.35);
  line-height: 1.9;
  margin-top: var(--sp-5);
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(255,255,255,.07);
}
.footer-col h5 {
  font-family: var(--font-head);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: var(--sp-5);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-col ul li a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.55);
  transition: color var(--ease);
}
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding-top: var(--sp-8);
  flex-wrap: wrap;
}
.footer-bottom p { font-size: var(--text-xs); color: rgba(255,255,255,.3); }
.footer-notice {
  font-size: var(--text-xs);
  color: rgba(255,255,255,.3);
  max-width: 540px;
  text-align: right;
}

/* ── DISCLAIMER BAR ── */
.disclaimer-bar {
  background: #111e33;
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: var(--sp-2) var(--sp-6);
  text-align: center;
  font-size: var(--text-xs);
  color: rgba(255,255,255,.35);
}

/* ── UTILITY ── */
.mt-0  { margin-top: 0; }
.mt-2  { margin-top: var(--sp-2); }
.mt-4  { margin-top: var(--sp-4); }
.mt-6  { margin-top: var(--sp-6); }
.mt-8  { margin-top: var(--sp-8); }
.mt-10 { margin-top: var(--sp-10); }
.mt-12 { margin-top: var(--sp-12); }
.mb-2  { margin-bottom: var(--sp-2); }
.mb-4  { margin-bottom: var(--sp-4); }
.mb-6  { margin-bottom: var(--sp-6); }
.mb-8  { margin-bottom: var(--sp-8); }
.mb-12 { margin-bottom: var(--sp-12); }
.text-center { text-align: center; }
.text-right  { text-align: right; }
.text-blue   { color: var(--blue) !important; }
.text-green  { color: var(--green) !important; }
.text-muted  { color: var(--text-muted) !important; }
.text-sm     { font-size: var(--text-sm); }
.fw-600      { font-weight: 600; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ── FADE-IN ANIMATION ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── DIVIDER ── */
hr.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin-block: var(--sp-12);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: var(--sp-12); }
  .hero-visual { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .split { grid-template-columns: 1fr; gap: var(--sp-10); }
  .split.reverse { direction: ltr; }
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero { min-height: 80vh; }
  .section { padding-block: var(--sp-16); }
  .section-sm { padding-block: var(--sp-12); }
  .card-grid-3, .card-grid-2 { grid-template-columns: 1fr; }
  .card-grid-4 { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; gap: var(--sp-6); }
  .footer-top { grid-template-columns: 1fr; gap: var(--sp-8); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-notice { text-align: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .highlight-box { padding: var(--sp-10); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  :root { --container: 100%; }
  .hero-content h1 { font-size: var(--text-3xl); }
  .section { padding-block: var(--sp-12); }
}
