:root {
  --dark-1: #091421;
  --dark-2: #102437;
  --light-1: #f8f7f3;
  --light-2: #ffffff;
  --text-dark: #0f2030;
  --text-light: #f2f6fb;
  --gold: #caa34f;
  --gold-2: #ebcc80;
  --teal: #1f5d63;
  --teal-2: #2a7a83;
  --card-border: rgba(15, 32, 48, 0.12);
  --shadow: 0 16px 38px rgba(9, 20, 33, 0.16);
  --radius: 18px;
  --pill: 999px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--light-1);
}

h1, h2, h3, h4 {
  margin-top: 0;
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.3rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.4rem); }
p, li, input, button, a { font-size: 1rem; }

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

.section {
  padding: 86px 0;
  position: relative;
}
.section.light {
  background: radial-gradient(circle at top right, rgba(202,163,79,0.08), transparent 35%), var(--light-1);
  color: var(--text-dark);
}
.section.dark {
  background: linear-gradient(130deg, var(--dark-1), var(--dark-2));
  color: var(--text-light);
}
.section.dark .card,
.section.dark details,
.section.dark .mini-dashboard,
.section.dark .quote-box,
.section.dark .disclaimer,
.section.dark .timeline-item {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.18);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  backdrop-filter: blur(8px);
  background: rgba(248,247,243,0.94);
  border-bottom: 1px solid rgba(15,32,48,0.08);
}
.nav-wrap {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 800;
}
.brand-mark {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--teal), var(--gold));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.35);
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 550;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pill-btn,
.language-toggle,
.language-options a,
.close-btn,
.cta-btn {
  border-radius: var(--pill);
  border: 1px solid transparent;
  min-height: 46px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 650;
  text-decoration: none;
  cursor: pointer;
  transition: all .22s ease;
}
.cta-btn {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold) 35%, var(--teal) 100%);
  color: #fff;
  box-shadow: 0 12px 25px rgba(31,93,99,0.22);
}
.cta-btn:hover { transform: translateY(-2px); filter: brightness(1.06); }
.language-dropdown { position: relative;}
.language-toggle {
  background: #fff;
  border-color: rgba(15,32,48,0.2);
  color: var(--text-dark);
}
.language-toggle::after {
  content: "▾";
  margin-left: 8px;
  font-size: 0.8rem;
}
.language-options {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: #fff;
  border-radius: 24px;
  padding: 14px;
  border: 1px solid rgba(15,32,48,0.12);
  box-shadow: var(--shadow);
  display: none;
}
.language-dropdown.open .language-options { display: grid; gap: 8px; }
.language-options a {
  justify-content: flex-start;
  background: linear-gradient(90deg, rgba(202,163,79,0.12), rgba(31,93,99,0.12));
  color: var(--text-dark);
  border-color: rgba(15,32,48,0.08);
}
.language-options a:hover { transform: translateX(2px); }

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(15,32,48,0.2);
  background: #fff;
  font-size: 1.2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .95fr;
  gap: 28px;
  align-items: start;
}
.trust-list {
  margin: 20px 0;
  padding-left: 20px;
}
.card {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}
.form-card input {
  width: 100%;
  min-height: 52px;
  border-radius: 13px;
  border: 1px solid rgba(15,32,48,0.26);
  margin-bottom: 12px;
  padding: 0 14px;
  font-size: 1rem;
}
.form-status {
  min-height: 24px;
  font-weight: 600;
  color: var(--teal);
}
.trust-strip {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.badge {
  padding: 14px;
  border: 1px solid var(--card-border);
  border-radius: 14px;
  background: #fff;
  text-align: center;
  font-weight: 600;
}

.quote-box, .disclaimer {
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.16);
  padding: 18px;
}

.disclaimer {
  margin-top: 25px;
}

.grid-5, .grid-4, .grid-3, .grid-2 {
  display: grid;
  gap: 14px;
}
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.icon-bubble {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, rgba(202,163,79,0.25), rgba(31,93,99,0.2));
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1;
  font-family: system-ui, -apple-system, sans-serif;
}

.timeline {
  display: grid;
  gap: 12px;
}
.timeline-item { border: 1px solid rgba(255,255,255,0.18); border-radius: 14px; padding: 14px; }

.metrics-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 20px;
}
.counter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.counter {
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  padding: 18px;
}
.counter strong { display: block; font-size: 1.7rem; }
.mini-dashboard { border: 1px solid rgba(255,255,255,0.2); border-radius: 16px; padding: 16px; }
.bar-row { margin-bottom: 14px; }
.bar {
  width: 100%;
  height: 9px;
  border-radius: 12px;
  background: rgba(255,255,255,0.15);
  overflow: hidden;
}
.bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--teal));
}

details {
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 12px 14px;
}
summary { cursor: pointer; font-weight: 650; }

.review {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 12px;
}
.review img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 2px solid rgba(202,163,79,0.55);
}
.verified {
  display: inline-block;
  background: rgba(31,93,99,0.14);
  color: var(--teal);
  border-radius: 999px;
  padding: 2px 10px;
  font-size: 0.88rem;
}

footer {
  background: #07111b;
  color: #dce8f6;
  padding: 26px 0;
}
footer a { color: #dce8f6; }

.backdrop {
  position: fixed;
  inset: 0;
  background: rgba(7,17,27,0.6);
  opacity: 0;
  pointer-events: none;
  transition: .2s;
  z-index: 299;
}
.backdrop.show { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed;
  top: 0;
  right: -430px;
  width: min(420px, 96vw);
  height: 100dvh;
  background: #fff;
  z-index: 300;
  transition: right .25s;
  padding: 22px;
  overflow-y: auto;
}
.drawer.open { right: 0; }
.drawer nav { display: grid; gap: 10px; margin: 18px 0; }
.drawer nav a { text-decoration: none; color: var(--text-dark); font-weight: 600; }

.modal {
  position: fixed;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%) scale(.95);
  width: min(900px, 95vw);
  max-height: 90dvh;
  z-index: 310;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(15,32,48,0.18);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: .2s;
  display: flex;
  flex-direction: column;
}
.modal.show { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%) scale(1); }
.modal-header, .modal-footer { padding: 16px 20px; border-bottom: 1px solid rgba(15,32,48,0.1); }
.modal-footer { border-top: 1px solid rgba(15,32,48,0.1); border-bottom: 0; }
.modal-body { padding: 16px 20px; overflow-y: auto; }
.modal h3 { margin-top: 18px; }

.reveal { opacity: 0; transform: translateY(22px); transition: .45s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1199px) {
  .nav-links, .nav-right .cta-btn { display: none; }
  .cta-btn--mobile {display: flex !important;}
  .burger { display: inline-grid; place-items: center; }
  .hero-grid, .metrics-grid { grid-template-columns: 1fr; }
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .nav-wrap {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }
}
@media (max-width: 680px) {
  body { font-size: 17px; }
  .section { padding: 66px 0; }
  .grid-5, .grid-4, .grid-2, .counter-grid, .trust-strip { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .cta-btn--mobile, .language-toggle {
    padding: 0 10px;
    font-size: 15px;
    line-height: 15px;
    text-align: center;
  }
  .language-toggle::after {
    margin-left: 0.1rem;
  }
  .nav-right {
    gap: 5px;
  }
  .nav-wrap {
    gap: 7px
  }
  .brand {
    font-size: 0.8rem;
  }
  .nav-wrap {
    margin: 0 7px;
  }
  .site-header .container {
    width: auto;
  }
}
@media (max-width: 350px) {
  .cta-btn--mobile, .language-toggle {
    font-size: 13px;
    line-height: 13px;
  }
  #overview {
    padding-top: 30px;
  }
}
.cta-btn { border: 0 !important; }

.section p,
.section li {
  font-size: 19px;
  line-height: 1.75;
}
.form-card button {
  margin-top: 12px;
}

footer {
  text-align: center;
}
.modal-header .pill-btn {
  display: none;
}

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

#reviews .card.review{
  grid-column: auto !important;
  display: grid;
  grid-template-columns: 56px 1fr;
  column-gap: 16px;
  align-items: start;
}

#reviews .card.review .review-avatar{
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #caa34f, #ebcc80);
  color: #0f2030;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#reviews .card.review strong{ display: block; margin: 0 0 2px; }
#reviews .card.review small{ display: block; margin: 0 0 6px; }
#reviews .card.review .verified{ display: inline-block; margin: 0 0 10px; }
#reviews .card.review p{ margin: 0; line-height: 1.65; }

@media (max-width: 900px){
  #reviews .grid-3{ grid-template-columns: 1fr; }
  #reviews .card.review{ grid-template-columns: 52px 1fr; }
  #reviews .card.review .review-avatar{ width: 52px; height: 52px; }
}
#reviews .card.review > div:last-child{
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  row-gap: 6px;
}

#reviews .card.review strong,
#reviews .card.review small,
#reviews .card.review .verified{
  margin: 0 !important;
}

#reviews .card.review .verified{
  justify-self: start;
}

#reviews .card.review p{
  margin-top: 10px;
}

#faq details {
  margin-bottom: 15px;
}

#faq details:last-child {
  margin-bottom: 0;
}

.icon-big {
  font-size: 20px;
}

.language-dropdown + p a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
}
