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

:root {
  --black: #010101;
  --white: #ffffff;
  --lucky: #2a1f67;
  --cadet: #aba7c2;
  --shamrock: #50d6a3;
  --violet: #534dbb;
  --elm: #1c866a;
  --bg: #eef2f1;
  --text: #0f1f35;
  --muted: #6b7386;
  --line: #d7dde5;
  --line-strong: #c8d1de;
  --radius: 18px;
  --radius-lg: 22px;
  --shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 8px 24px rgba(15, 23, 42, 0.06);
  --shadow-lift: 0 18px 34px rgba(15, 23, 42, 0.12);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  color: var(--text);
  background:
    radial-gradient(1200px 520px at 12% -8%, rgba(83, 77, 187, 0.08), transparent 60%),
    radial-gradient(900px 420px at 88% 0%, rgba(80, 214, 163, 0.08), transparent 60%),
    linear-gradient(to right, transparent 0 calc(20% - 1px), rgba(36, 47, 75, 0.05) calc(20% - 1px) 20%, transparent 20% 40%, rgba(36, 47, 75, 0.05) 40% calc(40% + 1px), transparent calc(40% + 1px) 60%, rgba(36, 47, 75, 0.05) 60% calc(60% + 1px), transparent calc(60% + 1px) 80%, rgba(36, 47, 75, 0.05) 80% calc(80% + 1px), transparent calc(80% + 1px) 100%),
    var(--bg);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
main { min-height: 60vh; }

header *, main *, footer * {
  transition: color 0.22s ease, fill 0.22s ease, stroke 0.22s ease;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  letter-spacing: -0.02em;
}

h1 em, h2 em, h3 em, h4 em, h5 em, h6 em,
h1 .highlight, h2 .highlight, h3 .highlight, h4 .highlight, h5 .highlight, h6 .highlight {
  color: var(--elm);
  font-style: normal;
}

.container { width: min(1160px, 92%); margin: 0 auto; }

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(200, 209, 222, 0.75);
  backdrop-filter: blur(10px);
}

.nav { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }

.brand {
  width: 122px;
  height: 44px;
  display: block;
  background: url('./logo.png') center/contain no-repeat;
  text-indent: -9999px;
  overflow: hidden;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 0.76rem;
  font-weight: 700;
  color: #586179;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.nav-links a:hover { color: var(--elm); }

.nav-combo {
  position: relative;
}

.nav-combo-btn {
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 700;
  color: #586179;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  cursor: pointer;
  padding: 0;
}

.nav-combo-btn:hover { color: var(--elm); }

.nav-combo-panel {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 190px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
  padding: 8px;
  z-index: 40;
}

.nav-combo.open .nav-combo-panel {
  display: block;
}

.nav-combo-panel a {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 0.9rem;
  text-transform: none;
  letter-spacing: 0.01em;
}

.nav-combo-panel a:hover {
  background: #f4f7ff;
  color: var(--elm);
}

.nav-cta { display: flex; gap: 10px; align-items: center; }

.web-menu {
  position: relative;
}

.web-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  color: #1b2a41;
  cursor: pointer;
}

.web-menu-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
  padding: 8px;
  display: none;
  z-index: 40;
}

.web-menu.open .web-menu-panel {
  display: block;
}

.web-menu-panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 8px;
  color: #2a1f67;
  font-size: 0.9rem;
  font-weight: 600;
}

.web-menu-panel a:hover {
  background: #f4f7ff;
  color: #1c866a;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 0.86rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  will-change: transform;
}

.btn-primary {
  background: linear-gradient(105deg, #081a30 0%, #0e2b49 72%, #0a243e 100%);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(13, 41, 72, 0.22);
}

.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 18px 30px rgba(13, 41, 72, 0.26); }

.btn-outline {
  background: #f8fafc;
  border-color: #d3dbe7;
  color: #1c2c44;
}

.btn-outline:hover { border-color: #9fb0c8; color: #163450; }

.btn .auto-icon-inline {
  margin-left: 8px;
  margin-right: 0;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid #cfd4df;
  border-radius: 10px;
  background: #ffffff;
  color: #1b2a41;
}

.hero {
  padding: 58px 0 34px;
  text-align: center;
}

.hero-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: center;
  text-align: left;
}

.hero-copy {
  max-width: 760px;
  margin: 0;
}

.hero-split .hero-copy h1 {
  margin-left: 0;
  margin-right: 0;
}

.hero-split .hero-copy .hero-sub,
.hero-split .hero-copy p {
  max-width: 740px;
  margin-left: 0;
  margin-right: 0;
}

.kicker {
  display: none;
  align-items: center;
  gap: 4px;
  border: 1px solid #b8e7d3;
  background: #e8f8f1;
  color: #13795d;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.62rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.kicker::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6fdec0;
}

.hero h1 {
  margin-top: 24px;
  font-size: clamp(1.34rem, 2.9vw, 2.45rem);
  line-height: 1.08;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.hero-sub,
.hero p {
  max-width: 880px;
  margin: 14px auto 0;
  font-size: clamp(0.94rem, 1.12vw, 1.08rem);
  line-height: 1.48;
  color: #6a7487;
  font-weight: 500;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-split .hero-actions {
  justify-content: flex-start;
}

.hero-visual {
  position: relative;
  min-height: 320px;
  max-width: none;
  margin: 0;
  border: 1px solid #d4deea;
  border-radius: 22px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.86), rgba(240, 246, 255, 0.9));
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
  padding: 14px;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  width: 170px;
  height: 170px;
  right: -35px;
  top: -42px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(80, 214, 163, 0.5), rgba(83, 77, 187, 0.22));
  filter: blur(2px);
  animation: orbFloat 5s ease-in-out infinite;
}

.hero-dashboard {
  position: relative;
  z-index: 2;
  border: 1px solid #cfdae8;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
  padding: 12px;
}

.hero-dash-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e2e9f3;
}

.hero-dash-head p {
  margin: 0;
  color: #334866;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-dash-head span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 8px;
  font-size: 0.68rem;
  font-weight: 700;
  color: #2c8368;
  background: #e8f8f1;
  border: 1px solid #c6eadb;
  border-radius: 999px;
}

.hero-dash-head span i {
  width: 0.85em;
  height: 0.85em;
}

.hero-dash-stats {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.hero-dash-stats article {
  border: 1px solid #d6e0ee;
  border-radius: 12px;
  padding: 9px 10px;
  background: #fbfdff;
}

.hero-dash-stats article p {
  margin: 0;
  font-size: 0.67rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #697a92;
  font-weight: 700;
}

.hero-dash-stats article strong {
  display: block;
  margin-top: 4px;
  font-size: 1.18rem;
  line-height: 1.1;
  color: #122642;
}

.hero-dash-chart {
  margin-top: 10px;
  border: 1px solid #d6e0ee;
  border-radius: 12px;
  padding: 9px 10px;
  background: #fbfdff;
}

.hero-dash-chart p {
  margin: 0;
  font-size: 0.67rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #697a92;
  font-weight: 700;
}

.hero-dash-foot {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.hero-dash-foot p {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  color: #42617e;
  font-weight: 700;
}

.hero-dash-foot i {
  width: 0.85em;
  height: 0.85em;
}

.hero-bars {
  margin: 7px 0 0;
  height: 72px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.hero-bars i {
  width: 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, #48d0a0, #1d395f);
  animation: barPulse 1.8s ease-in-out infinite;
}

.hero-bars i:nth-child(1) { height: 22px; animation-delay: 0s; }
.hero-bars i:nth-child(2) { height: 42px; animation-delay: .12s; }
.hero-bars i:nth-child(3) { height: 34px; animation-delay: .24s; }
.hero-bars i:nth-child(4) { height: 56px; animation-delay: .36s; }
.hero-bars i:nth-child(5) { height: 30px; animation-delay: .48s; }
.hero-bars i:nth-child(6) { height: 48px; animation-delay: .6s; }

.section { padding: 38px 0; }
.section-head { margin-bottom: 12px; }

.motif {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: var(--lucky);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.auto-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #cad4e4;
  background: #f5f8ff;
  color: #2a1f67;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
  animation: tagPop 0.6s ease both;
}

.auto-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1c866a;
}

.auto-tag-card {
  position: absolute;
  top: 12px;
  right: 12px;
  margin-bottom: 0;
  z-index: 2;
}

.section-title {
  font-size: clamp(1.24rem, 2.35vw, 2rem);
  margin: 6px 0 10px;
  line-height: 1.12;
}

.process-section {
  padding-top: 28px;
}

.process-head {
  margin-bottom: 22px;
}

.process-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(1.24rem, 2.35vw, 2rem);
  line-height: 1.12;
  margin: 10px 0 0;
}

.process-title i[data-lucide] {
  width: 0.72em;
  height: 0.72em;
  color: var(--elm);
}

.process-grid {
  gap: 14px;
  overflow: visible;
  position: relative;
  padding-top: 28px;
}

.process-grid::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 10px;
  height: 2px;
  background: linear-gradient(90deg, #bfe9d8, #1c866a 55%, #bfe9d8);
  z-index: 0;
}

.process-card {
  min-height: 0;
  border-radius: 16px;
  border: 1px solid #cfd8e4;
  box-shadow: none;
  background: #ffffff;
  padding: 16px 14px;
  position: relative;
  z-index: 1;
}

.process-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(0.95rem, 1.08vw, 1.15rem);
  margin-bottom: 7px;
}

.process-card h3 .inline-icon {
  width: 0.8em;
  height: 0.8em;
  color: var(--elm);
  margin-right: 0;
}

.process-card p {
  font-size: clamp(0.8rem, 0.9vw, 0.9rem);
  line-height: 1.42;
  color: #6b7489;
}

.flow-step::before,
.flow-end::before {
  content: attr(data-step);
  position: absolute;
  top: -14px;
  left: 18px;
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #0f3a31;
  background: #e6f8f1;
  border: 1px solid #bfe9d8;
  border-radius: 999px;
  padding: 2px 7px;
}

.process-grid .process-card:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: #0f3a31;
  background: #dff6ed;
  border: 1px solid #bfe9d8;
  z-index: 2;
}

.section-intro,
.card p,
.faq-a,
label,
.legal ul,
.content ul,
.footer {
  color: var(--muted);
}

main ul:not(.timeline) {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

main ul:not(.timeline) li {
  position: relative;
  padding-left: 20px;
  line-height: 1.5;
}

main ul:not(.timeline) li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid #7fcfb3;
  background: #1c866a;
}

.grid { display: grid; gap: 16px; align-items: stretch; }
.grid.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid.cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }

.card {
  background: var(--white);
  border: 1px solid #d3dbe7;
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  will-change: transform;
}

.card h3, .card h4 { margin-bottom: 6px; font-size: 1rem; }
.card p { margin: 0; }

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: #b6c3d7;
}

.card h3,
.card h4,
.faq-q,
.section-title,
.section-intro,
.footer p,
.footer a,
.nav-links a {
  transition: transform .25s ease, color .25s ease, opacity .25s ease;
}

.card:hover h3,
.card:hover h4 {
  transform: translateX(2px);
}

.interactive-nav {
  transition: transform .25s ease, color .25s ease;
}

.interactive-nav:hover {
  transform: translateY(-1px);
}

.interactive-magnetic {
  transition: transform .12s linear;
}

.footer-legal-links a:hover,
.nav-links a:hover,
main a:not(.btn):hover {
  transform: translateY(-1px);
}

.premium-card {
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.premium-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 34px rgba(24, 33, 52, 0.13);
}

.premium-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(from 0deg, var(--violet), var(--cadet), var(--shamrock), var(--elm), var(--violet));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: .22;
  transition: opacity .28s ease;
}

.premium-card:hover::before {
  opacity: .48;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.timeline li {
  border-left: 4px solid var(--elm);
  background: var(--white);
  border: 1px solid var(--line);
  border-left-width: 4px;
  padding: 11px 13px;
  border-radius: 0 14px 14px 0;
}

.table-wrap { overflow-x: auto; }

table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
}

th, td {
  border-bottom: 1px solid var(--line);
  padding: 9px 10px;
  text-align: left;
}

th {
  background: #f0f2f7;
}

.faq-item {
  background: var(--white);
  border: 1px solid #d3dbe7;
  border-radius: 16px;
  margin-bottom: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.1);
  border-color: #b8c5d9;
}

.faq-q {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  color: #1e2b40;
  font: inherit;
  font-weight: 700;
  padding: 12px;
  cursor: pointer;
}

.faq-a { display: none; padding: 0 12px 12px; font-size: 0.92rem; }

.cta-band {
  background: linear-gradient(135deg, #081a30, #0f2f52);
  color: #f4f8ff;
  border-radius: 24px;
  border: 1px solid #274c73;
  box-shadow: var(--shadow);
}

.cta-premium-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(247, 251, 255, 0.9));
  border: 1px solid #d3dce9;
  border-radius: 22px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
  padding: 26px 24px;
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}

.cta-premium-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 6px;
}

.cta-premium-title .inline-icon {
  margin-right: 0;
  width: 0.92em;
  height: 0.92em;
}

.cta-premium-sub {
  margin: 0 auto;
  max-width: 760px;
}

.cta-premium-actions {
  margin-top: 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.form-grid .full { grid-column: 1 / -1; }

label { display: block; font-size: .76rem; font-weight: 700; margin-bottom: 5px; }

input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 10px;
  font: inherit;
  background: #fff;
  color: #1f2d44;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--elm);
  box-shadow: 0 0 0 3px rgba(80, 214, 163, 0.22);
}

.inline-icon, .auto-icon {
  width: .95em;
  height: .95em;
  vertical-align: -.1em;
  color: var(--elm);
  margin-right: .45em;
}

.footer {
  border-top: 1px solid rgba(171, 167, 194, 0.28);
  margin-top: 36px;
  padding: 34px 0 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.82));
}

.footer .container {
  max-width: 1200px;
}

.footer-shell {
  border-top: 1px solid #d8dfeb;
  padding-top: 16px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid #d8dfeb;
}

.footer-grid {
  display: none;
}

.footer-col h6 {
  margin: 0 0 10px;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
}

.footer-logo {
  display: block;
  width: 148px;
  height: 50px;
  background: url('./logo.png') left center/contain no-repeat;
  text-indent: -9999px;
  overflow: hidden;
  margin-bottom: 12px;
}

.footer p {
  margin: 0;
  line-height: 1.55;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-col p + p {
  margin-top: 8px;
}

.footer a {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.92rem;
}

.footer a:hover {
  color: var(--lucky);
}

.footer-company strong {
  color: #747d90;
  letter-spacing: 0.02em;
}

.footer-contact p {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer-contact i {
  width: 18px;
  height: 18px;
  color: var(--elm);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding-top: 14px;
}

.footer-bottom p {
  font-size: 0.84rem;
  color: #8b93a3;
}

.footer-legal-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8b93a3;
  font-weight: 700;
}

.footer-legal-links a:hover {
  color: var(--lucky);
}

/* Legal pages alignment */
.legal {
  max-width: 1040px;
  margin: 0 auto;
}

.legal .hero {
  padding: 40px 0 18px;
  text-align: center;
}

.legal .hero h1 {
  margin: 0;
  font-size: clamp(1.28rem, 2vw, 1.9rem);
  line-height: 1.16;
}

.legal .hero p {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #6a7487;
}

.legal .content {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.legal .content > h2 {
  margin: 16px 0 8px;
  font-size: 1rem;
  line-height: 1.3;
  color: #10233f;
  letter-spacing: 0.02em;
  padding-bottom: 0;
  border-bottom: 0;
}

.legal .content > h2:first-child {
  margin-top: 0;
}

.legal .content > h3 {
  margin: 12px 0 6px;
  font-size: 0.9rem;
  color: #1f3555;
}

.legal .content p {
  margin: 0 0 9px;
  font-size: 0.9rem;
  line-height: 1.62;
  color: #5f6d82;
}

.legal .content ul {
  margin: 6px 0 12px;
}

.legal .content li {
  font-size: 0.88rem;
  color: #44556f;
}

/* Global reveal animation system */
.reveal {
  opacity: 0;
  transform: translateY(10px) scale(0.995);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.hero .reveal {
  opacity: 0;
  transform: translateY(20px) scale(0.985);
}

.hero .reveal.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

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

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

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

@keyframes widgetFloatB {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@keyframes barPulse {
  0%, 100% { opacity: .78; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.12); }
}

@keyframes tagPop {
  from {
    opacity: 0;
    transform: translateY(6px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.cta-band {
  animation: softFloat 5s ease-in-out infinite;
}

.cursor-glow {
  position: fixed;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 5;
  mix-blend-mode: multiply;
  background: radial-gradient(circle, rgba(80, 214, 163, 0.18) 0%, rgba(83, 77, 187, 0.08) 45%, transparent 75%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .25s ease;
}

body.cursor-active .cursor-glow {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .card,
  .faq-item,
  .btn,
  .cta-band,
  .interactive-magnetic,
  .interactive-nav,
  .cursor-glow,
  .auto-tag {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

.legal ul, .content ul { margin-top: 10px; }

@media (max-width: 1020px) {
  .grid.cols-5,
  .grid.cols-4,
  .grid.cols-3,
  .contact-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid.cols-2 {
    grid-template-columns: 1fr;
  }

  .nav { min-height: 74px; position: relative; padding: 10px 0; }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    z-index: 30;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  }

  .nav-links.open { display: flex; }
  .nav-links a {
    width: 100%;
    padding: 4px 0;
  }
  .nav-combo { width: 100%; }
  .nav-combo-btn {
    width: 100%;
    text-align: left;
    padding: 4px 0;
  }
  .nav-combo-panel {
    position: static;
    width: 100%;
    box-shadow: none;
    margin-top: 6px;
  }
  .nav-cta { display: none; }
  .web-menu { display: none; }

  .hero { padding-top: 44px; }
  .hero-sub, .hero p { font-size: 0.92rem; }

  .hero-split {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }

  .hero-copy {
    margin: 0 auto;
  }

  .hero h1 {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-sub,
  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    min-height: 280px;
    max-width: 620px;
    margin: 0 auto;
  }

  .process-title {
    font-size: clamp(1.08rem, 6.3vw, 1.46rem);
  }

  .process-grid {
    padding-top: 0;
  }

  .process-grid::before {
    display: none;
  }

  .process-card {
    min-height: 0;
    border-radius: 22px;
    padding: 24px 22px;
  }

  .process-card h3 {
    font-size: 0.96rem;
  }

  .process-card p {
    font-size: 0.82rem;
  }

  .process-grid .process-card:not(:last-child)::after {
    display: none;
  }

  .flow-step::before,
  .flow-end::before {
    top: 10px;
    left: auto;
    right: 12px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-legal-links {
    gap: 14px;
  }

  .cta-premium-card {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .cta-premium-actions {
    margin-top: 14px;
  }

  .legal .hero {
    padding: 30px 0 12px;
  }

  .legal .content {
    padding: 0;
    border-radius: 0;
  }

  .legal .content > h2 {
    font-size: 0.92rem;
  }

  .legal .content p,
  .legal .content li {
    font-size: 0.84rem;
  }
}

@media (max-width: 720px) {
  .grid.cols-5,
  .grid.cols-4,
  .grid.cols-3,
  .grid.cols-2,
  .contact-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
}
