/* ─── TOKENS ──────────────────────────────────────────────── */
:root {
  --bg: #FFFFFF;
  --bg2: #F9F9FA;
  --accent: #4f46e5;
  --accent2: #6366f1;
  --grad: linear-gradient(135deg, #4f46e5, #6366f1);
  --text: #111111;
  --muted: #6B7280;
  --radius: 24px;
  --shadow: 0 4px 12px rgba(99, 102, 241, 0.15);
}

/* ─── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
button { font-family: "Montserrat", sans-serif; cursor: pointer; }

/* ─── HEADER / NAV ────────────────────────────────────────── */
.wrapper {
  background: linear-gradient(160deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
}

.header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 16px 8%;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.order-btn {
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  color: #fff;
  background: var(--grad);
  box-shadow: 0 4px 10px rgba(99, 102, 241, 0.4);
  cursor: pointer;
  transition: all 0.25s;
  font-family: "Montserrat", sans-serif;
}
.order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(99, 102, 241, 0.6);
}

/* ─── LANGUAGE SWITCHER ───────────────────────────────────── */
.language { position: relative; }

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: "Montserrat", sans-serif;
}
.lang-toggle:hover { background: rgba(255, 255, 255, 0.18); }

.caret {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(255, 255, 255, 0.9);
  border-bottom: 2px solid rgba(255, 255, 255, 0.9);
  transform: rotate(-45deg);
  transition: transform 0.25s;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s;
  z-index: 100;
  min-width: 180px;
}
.lang-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-menu li { border-bottom: 1px solid #f0f0f0; }
.lang-menu li:last-child { border-bottom: none; }
.lang-menu a {
  display: block;
  padding: 11px 16px;
  color: #111;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
  cursor: pointer;
}
.lang-menu a:hover { background: #F9F9FA; }
.lang-menu a.active { color: var(--accent); }

/* ─── HERO / BANNER ───────────────────────────────────────── */
.banner {
  padding: 56px 8% 72px;
  text-align: center;
  color: #fff;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
}

.banner h1 {
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #fff;
}
.banner h1 span {
  background: linear-gradient(90deg, #818cf8, #c7d2fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.banner > p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 580px;
  margin: 0 auto 28px;
  font-weight: 500;
}

.hero-price-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  padding: 10px 24px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 36px;
}
.hero-price-pill strong { color: #c7d2fe; font-size: 20px; }
.hero-price-pill .sep { color: rgba(255, 255, 255, 0.25); margin: 0 2px; }

.banner-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn-primary-hero {
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  color: #fff;
  background: var(--grad);
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.5);
  cursor: pointer;
  transition: all 0.25s;
  font-family: "Montserrat", sans-serif;
}
.btn-primary-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.7);
}

.btn-ghost-hero {
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 700;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  color: #fff;
  background: transparent;
  cursor: pointer;
  transition: all 0.25s;
  font-family: "Montserrat", sans-serif;
}
.btn-ghost-hero:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num { font-size: 36px; font-weight: 900; color: #fff; line-height: 1; }
.stat-label { font-size: 13px; color: rgba(255, 255, 255, 0.6); font-weight: 500; margin-top: 4px; }

/* ─── SECTION LAYOUT ──────────────────────────────────────── */
.section-white { background: #fff; padding: 72px 8%; }
.section-grey  { background: #F9F9FA; padding: 72px 8%; }
.section-container { max-width: 1200px; margin: 0 auto; }

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(99, 102, 241, 0.15));
  color: var(--accent);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: #111;
  margin-bottom: 12px;
  line-height: 1.1;
}

.section-sub {
  font-size: 17px;
  color: #6B7280;
  max-width: 560px;
  margin-bottom: 48px;
  font-weight: 500;
}

/* ─── ROI BANNER ──────────────────────────────────────────── */
.roi-banner {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.08), rgba(99, 102, 241, 0.12));
  border: 2px solid rgba(79, 70, 229, 0.15);
  border-radius: 20px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.roi-icon { font-size: 32px; flex-shrink: 0; }
.roi-text { font-size: 15px; color: #111; font-weight: 600; line-height: 1.5; }
.roi-text strong { color: var(--accent); }

/* ─── FEATURES GRID ───────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feature-card {
  background: #fff;
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 8px 16px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.12), 0 16px 32px rgba(0, 0, 0, 0.08);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(99, 102, 241, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.feature-card h3 { font-size: 18px; font-weight: 700; color: #111; margin-bottom: 8px; }
.feature-card p  { font-size: 15px; color: #6B7280; line-height: 1.6; }

/* ─── BOOKING DELIVERY ────────────────────────────────────── */
.delivery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.delivery-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.delivery-card .d-icon { font-size: 28px; margin-bottom: 12px; display: block; }
.delivery-card h4 { font-size: 16px; font-weight: 700; color: #111; margin-bottom: 6px; }
.delivery-card p  { font-size: 14px; color: #6B7280; line-height: 1.5; }

/* ─── STEPS ───────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.step-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.step-num { font-size: 48px; font-weight: 900; color: rgba(79, 70, 229, 0.12); line-height: 1; margin-bottom: 12px; }
.step-card h3 { font-size: 17px; font-weight: 700; color: #111; margin-bottom: 8px; }
.step-card p  { font-size: 14px; color: #6B7280; line-height: 1.6; }

/* ─── PRICING ─────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: #fff;
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s;
}
.pricing-card:hover { box-shadow: 0 8px 32px rgba(79, 70, 229, 0.10); }

.pricing-card--featured {
  background: linear-gradient(160deg, #0f0c29 0%, #302b63 100%);
  color: #fff;
}

.pricing-badge {
  display: inline-block;
  background: var(--grad);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pricing-name { font-size: 20px; font-weight: 800; color: #111; margin-bottom: 8px; }
.pricing-card--featured .pricing-name { color: #fff; }

.pricing-amount { font-size: 56px; font-weight: 900; color: #111; line-height: 1; }
.pricing-card--featured .pricing-amount { color: #fff; }

.pricing-from { font-size: 13px; color: #888; font-weight: 500; margin-bottom: 4px; }
.pricing-card--featured .pricing-from { color: rgba(255, 255, 255, 0.5); }

.pricing-period { font-size: 14px; color: #888; font-weight: 500; margin-bottom: 8px; }
.pricing-card--featured .pricing-period { color: rgba(255, 255, 255, 0.5); }

.pricing-sub { font-size: 13px; color: #aaa; font-weight: 500; margin-bottom: 24px; line-height: 1.5; }
.pricing-card--featured .pricing-sub { color: rgba(255, 255, 255, 0.45); }

.pricing-divider { height: 1px; background: #f0f0f0; margin: 20px 0; }
.pricing-card--featured .pricing-divider { background: rgba(255, 255, 255, 0.15); }

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.pricing-features li {
  font-size: 14px;
  color: #222;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pricing-card--featured .pricing-features li { color: rgba(255, 255, 255, 0.85); }

.check { color: var(--accent); flex-shrink: 0; font-weight: 700; }
.pricing-card--featured .check { color: #818cf8; }

.pricing-cta {
  width: 100%;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: "Montserrat", sans-serif;
}
.btn-primary { background: var(--grad); color: #fff; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4); }
.btn-secondary { background: #F9F9FA; color: var(--accent); border: 2px solid rgba(79, 70, 229, 0.2); }
.btn-secondary:hover { background: rgba(79, 70, 229, 0.08); }

.pricing-note {
  text-align: center;
  font-size: 13px;
  color: #888;
  margin-top: 32px;
  font-weight: 500;
}

.sub-callout {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.06), rgba(99, 102, 241, 0.1));
  border: 2px dashed rgba(79, 70, 229, 0.2);
  border-radius: 20px;
  padding: 28px 32px;
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.sub-callout-text h4 { font-size: 17px; font-weight: 800; color: #111; margin-bottom: 4px; }
.sub-callout-text p  { font-size: 14px; color: #6B7280; font-weight: 500; }
.sub-callout-price { font-size: 28px; font-weight: 900; color: var(--accent); white-space: nowrap; }
.sub-callout-price span { font-size: 14px; font-weight: 500; color: #888; }

/* ─── FAQ ─────────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 800px;
}

.faq-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: #111;
  font-family: "Montserrat", sans-serif;
}

.faq-arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid rgba(79, 70, 229, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--accent);
  flex-shrink: 0;
  transition: all 0.25s;
}
.faq-item.open .faq-arrow {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
  font-size: 15px;
  color: #6B7280;
  line-height: 1.65;
  font-weight: 500;
  padding: 0 24px;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 24px; }

/* ─── ABOUT ───────────────────────────────────────────────── */
.about-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-nums-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.about-num-val { font-size: 52px; font-weight: 900; color: var(--accent); line-height: 1; }
.about-num-label { font-size: 13px; font-weight: 600; color: #6B7280; margin-top: 4px; }
.about-text { font-size: 16px; color: #6B7280; line-height: 1.75; font-weight: 500; margin-bottom: 16px; }

/* ─── ECOSYSTEM ───────────────────────────────────────────── */
.ecosystem {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.06), rgba(99, 102, 241, 0.1));
  border-radius: 24px;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 48px;
}
.ecosystem-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.ecosystem-title { font-size: 20px; font-weight: 800; color: #111; }
.ecosystem-products { display: flex; gap: 12px; flex-wrap: wrap; }

.eco-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #fff;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  color: #111;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.2s;
}
.eco-pill:hover { box-shadow: 0 4px 14px rgba(99, 102, 241, 0.15); color: var(--accent); }
.eco-pill.active { background: var(--grad); color: #fff; }

/* ─── FOOTER ──────────────────────────────────────────────── */
footer {
  background: linear-gradient(160deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
  padding: 56px 8% 36px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 28px;
}

.footer-logo { font-size: 18px; font-weight: 800; color: #fff; letter-spacing: 0.5px; }
.footer-logo span { color: #818cf8; }
.footer-tagline { font-size: 14px; color: rgba(255, 255, 255, 0.4); margin-top: 8px; font-weight: 500; max-width: 240px; line-height: 1.5; }
.footer-links-title { font-size: 12px; font-weight: 700; color: rgba(255, 255, 255, 0.4); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.footer-links-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links-list a { font-size: 14px; font-weight: 500; color: rgba(255, 255, 255, 0.6); transition: color 0.2s; }
.footer-links-list a:hover { color: #fff; }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

/* ─── MODAL ───────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(15, 12, 41, 0.8);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }

.modal {
  background: #fff;
  border-radius: 24px;
  padding: 48px;
  max-width: 520px;
  width: 100%;
  position: relative;
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #F9F9FA;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 16px;
  color: #6B7280;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.modal-close:hover { background: #efefef; }

.modal h3 { font-size: 26px; font-weight: 900; color: #111; margin-bottom: 6px; }
.modal-sub { font-size: 15px; color: #6B7280; margin-bottom: 28px; font-weight: 500; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }

.form-label {
  font-size: 12px;
  font-weight: 700;
  color: #111;
  display: block;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input,
.form-select {
  width: 100%;
  padding: 12px 14px;
  background: #F9F9FA;
  border: 2px solid transparent;
  border-radius: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #111;
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus,
.form-select:focus {
  border-color: var(--accent);
  background: #fff;
}

.form-privacy { font-size: 12px; color: #888; margin: 14px 0; font-weight: 500; }
.form-privacy a { color: var(--accent); text-decoration: underline; }

.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--grad);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s;
}
.btn-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.form-note { font-size: 12px; color: #aaa; text-align: center; margin-top: 10px; font-weight: 500; }

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .header  { padding: 14px 5%; }
  .banner  { padding: 40px 5% 56px; }
  .section-white,
  .section-grey  { padding: 56px 5%; }
  .about-cols    { grid-template-columns: 1fr; gap: 40px; }
  .form-row      { grid-template-columns: 1fr; }
  footer         { padding: 48px 5% 32px; }
  .footer-inner  { flex-direction: column; gap: 24px; }
  .modal         { padding: 32px 24px; }
  .roi-banner    { flex-direction: column; }
  .sub-callout   { flex-direction: column; gap: 12px; }
  .stats-row     { gap: 32px; }
}
