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

:root {
  --bg: #eef2f4;
  --bg-soft: #f7f9fb;
  --paper: #ffffff;
  --paper-2: #fbfcfd;
  --text: #172033;
  --muted: #667085;
  --subtle: #98a2b3;
  --line: #dfe6ee;
  --blue: #2563eb;
  --teal: #1f7a8c;
  --green: #16a36a;
  --dark: #111827;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --shadow: 0 24px 70px rgba(16, 24, 40, 0.10);
  --shadow-soft: 0 10px 30px rgba(16, 24, 40, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Geist", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 28%),
    radial-gradient(circle at 85% 12%, rgba(31, 122, 140, 0.08), transparent 25%),
    var(--bg);
  line-height: 1.72;
  letter-spacing: -0.006em;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(238, 242, 244, 0.86);
  border-bottom: 1px solid rgba(223, 230, 238, 0.75);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: contain;
  background: #fff;
  border: 1px solid rgba(223, 230, 238, 0.9);
  box-shadow: var(--shadow-soft);
  padding: 3px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.76rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #475467;
  font-size: 0.94rem;
  font-weight: 600;
}

.nav-contact {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--text);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  border-radius: 99px;
}

.hero {
  padding: 72px 0 44px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr);
  gap: 34px;
  align-items: center;
}

.overline {
  margin: 0 0 13px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 690px;
  margin-bottom: 20px;
  font-size: clamp(2.05rem, 4.4vw, 3.72rem);
  line-height: 1.08;
  letter-spacing: -0.052em;
  font-weight: 800;
}

h2 {
  max-width: 780px;
  margin-bottom: 15px;
  font-size: clamp(1.55rem, 2.7vw, 2.38rem);
  line-height: 1.16;
  letter-spacing: -0.038em;
  font-weight: 760;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
  line-height: 1.34;
  letter-spacing: -0.02em;
}

.lead {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 750;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.18);
}

.button.secondary {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.full {
  width: 100%;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.trust-line span {
  padding: 8px 11px;
  border-radius: 999px;
  color: #475467;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-panel {
  padding: 24px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(223, 230, 238, 0.95);
  box-shadow: var(--shadow);
}

.panel-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots i {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #cbd5e1;
}

.campaign-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-radius: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.campaign-card small,
.metric-row small,
.contact-box span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.campaign-card strong {
  display: block;
  margin-top: 4px;
  font-size: 1.08rem;
}

.status {
  padding: 8px 11px;
  border-radius: 999px;
  color: #067647;
  background: #ecfdf3;
  border: 1px solid #abefc6;
  font-size: 0.8rem;
  font-weight: 750;
}

.chart-card {
  margin-top: 14px;
  padding: 18px;
  border-radius: 22px;
  background: var(--paper-2);
  border: 1px solid var(--line);
}

.chart-header {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 650;
}

.chart-header strong {
  color: var(--green);
}

.line-chart {
  height: 150px;
  margin-top: 14px;
}

.line-chart svg {
  width: 100%;
  height: 100%;
}

.grid {
  stroke: #e6edf3;
  stroke-width: 1;
}

.area {
  fill: rgba(37, 99, 235, 0.08);
}

.line {
  fill: none;
  stroke: #2563eb;
  stroke-width: 4;
  stroke-linecap: round;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
  margin-top: 14px;
}

.metric-row div {
  padding: 16px;
  border-radius: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.metric-row strong {
  display: block;
  margin-top: 4px;
  font-size: 1rem;
}

.intro-strip {
  padding: 10px 0 34px;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}

.strip-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.strip-item strong {
  color: var(--blue);
  font-size: 0.9rem;
}

.strip-item span {
  color: #475467;
  font-weight: 600;
}

.section {
  padding: 82px 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading p:not(.overline) {
  color: var(--muted);
  margin-bottom: 0;
}

.service-list {
  display: grid;
  gap: 15px;
}

.service-card {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) minmax(260px, 0.65fr);
  gap: 20px;
  align-items: center;
  padding: 24px;
  border-radius: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.service-number {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  color: var(--blue);
  background: #eff6ff;
  font-weight: 800;
}

.service-content p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-card li {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  color: #475467;
  font-size: 0.82rem;
  font-weight: 650;
}

.result-section {
  padding-top: 74px;
}

.result-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.result-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.result-card,
.feature-card {
  min-height: 172px;
  padding: 22px;
  border-radius: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.result-card span,
.feature-card span {
  display: block;
  margin-bottom: 10px;
  font-weight: 800;
}

.result-card p,
.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.muted-section {
  background: rgba(255, 255, 255, 0.35);
  border-block: 1px solid rgba(223, 230, 238, 0.8);
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process-item {
  padding: 22px;
  border-radius: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.process-item strong {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--blue));
}

.process-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-section {
  padding: 24px 0 82px;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 24px;
  align-items: center;
  padding: 32px;
  border-radius: var(--radius-xl);
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgba(37, 99, 235, 0.34), transparent 38%),
    linear-gradient(135deg, #142033, #0f172a);
  box-shadow: var(--shadow);
}

.contact-card .overline {
  color: #93c5fd;
}

.contact-card h2 {
  margin-bottom: 12px;
}

.contact-card p {
  margin-bottom: 0;
  color: #cbd5e1;
}

.contact-box {
  padding: 22px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-box span {
  color: #cbd5e1;
}

.contact-box strong {
  display: block;
  margin: 5px 0 18px;
  font-size: 1.35rem;
}

.footer {
  padding: 28px 0 36px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer strong,
.footer span {
  display: block;
}

.footer strong {
  color: var(--text);
}

.footer p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .split-section,
  .result-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 28px;
  }

  .service-card {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .service-card ul {
    grid-column: 2;
  }

  .process-list,
  .strip-grid,
  .result-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-card {
    color: #fff;
  }
}

@media (max-width: 780px) {
  .menu-button {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px;
    border-radius: 22px;
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav-menu.open {
    display: flex;
  }

  .brand-text small {
    display: none;
  }

  .hero {
    padding-top: 50px;
  }

  .hero-panel {
    padding: 18px;
  }

  .metric-row,
  .feature-grid,
  .result-list {
    grid-template-columns: 1fr;
  }

  .service-card {
    grid-template-columns: 1fr;
  }

  .service-card ul {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  h1 {
    font-size: clamp(2rem, 10vw, 2.85rem);
  }

  h2 {
    font-size: clamp(1.52rem, 7vw, 2.05rem);
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    gap: 10px;
  }

  .strip-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 24px;
  }

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

/* Privacy Policy Page */
.policy-hero {
  padding: 72px 0 36px;
}

.policy-hero h1 {
  margin-bottom: 16px;
}

.policy-date {
  display: inline-flex;
  margin-top: 22px;
  padding: 9px 12px;
  border-radius: 999px;
  color: #475467;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  font-size: 0.86rem;
  font-weight: 650;
}

.policy-section {
  padding: 24px 0 82px;
}

.policy-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.policy-toc {
  position: sticky;
  top: 102px;
  padding: 20px;
  border-radius: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.policy-toc strong {
  display: block;
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.policy-toc a {
  display: block;
  padding: 9px 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  border-top: 1px solid rgba(223, 230, 238, 0.7);
}

.policy-toc a:hover {
  color: var(--blue);
}

.policy-content {
  padding: 34px;
  border-radius: 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.policy-content section + section {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.policy-content h2 {
  max-width: none;
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.policy-content p {
  color: var(--muted);
  margin-bottom: 14px;
}

.policy-content p:last-child {
  margin-bottom: 0;
}

.policy-content ul {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.policy-content li + li {
  margin-top: 8px;
}

.policy-contact-card {
  display: grid;
  gap: 6px;
  margin-top: 16px;
  padding: 18px;
  border-radius: 20px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
}

.policy-contact-card strong {
  color: var(--text);
}

.policy-contact-card span {
  color: var(--muted);
}

.policy-note {
  margin-top: 34px;
  padding: 18px;
  border-radius: 20px;
  color: #475467;
  background: #f8fafc;
  border: 1px solid var(--line);
}

.policy-note strong {
  color: var(--text);
}

@media (max-width: 900px) {
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-toc {
    position: static;
  }
}

@media (max-width: 620px) {
  .policy-hero {
    padding-top: 50px;
  }

  .policy-content {
    padding: 24px;
    border-radius: 26px;
  }
}