:root {
  --navy: #0d2340;
  --navy-2: #0b315d;
  --blue: #0f66df;
  --blue-dark: #0a4fb3;
  --blue-soft: #eff6ff;
  --green: #16a34a;
  --green-dark: #0f863c;
  --green-soft: #effcf4;
  --text: #12233e;
  --muted: #66758a;
  --line: #dce6f2;
  --white: #fff;
  --bg: #f5f8fc;
  --danger: #dc2626;
  --shadow: 0 18px 55px rgba(12, 47, 90, .10);
  --shadow-sm: 0 10px 30px rgba(12, 47, 90, .08);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 36px), var(--container)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(220,230,242,.9);
  backdrop-filter: blur(16px);
}
.navbar { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 255px; }
.brand-mark { height: 70px; flex: 0 0 auto; object-fit: contain; }
.brand-title { display: block; color: var(--blue); font-weight: 850; letter-spacing: -.03em; font-size: 21px; line-height: 1; }
.brand-subtitle { display: block; color: var(--muted); font-size: 11px; margin-top: 6px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { position: relative; font-size: 14px; font-weight: 650; padding-block: 28px; }
.nav-links a::after { content: ""; position: absolute; height: 2px; left: 0; right: 100%; bottom: 15px; background: var(--blue); transition: .25s ease; }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.nav-links a.active { color: var(--blue); }
.header-call { display: inline-flex; align-items: center; gap: 10px; color: #fff; background: linear-gradient(135deg, var(--blue), var(--blue-dark)); padding: 13px 18px; border-radius: 10px; font-size: 14px; font-weight: 800; box-shadow: 0 10px 25px rgba(15,102,223,.22); }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 12px; background: #fff; align-items: center; justify-content: center; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { width: 21px; height: 2px; background: var(--navy); display: block; content: ""; transition: .25s ease; }
.menu-toggle span { margin: 5px 0; }

.hero { position: relative; overflow: hidden; background: linear-gradient(115deg, #fff 0 52%, #edf5ff 52% 100%); }
.hero::after { content: ""; position: absolute; width: 670px; height: 670px; border-radius: 50%; background: rgba(15,102,223,.08); right: -290px; top: -270px; }
.hero-inner { min-height: 555px; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 60px; position: relative; z-index: 1; padding-block: 70px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--blue); background: var(--blue-soft); border: 1px solid #d6e7ff; border-radius: 999px; padding: 8px 12px; font-weight: 800; font-size: 13px; }
.hero h1 { font-size: clamp(42px, 5vw, 68px); line-height: 1.05; letter-spacing: -.045em; margin: 20px 0 18px; max-width: 720px; }
.hero-lead { font-size: 19px; color: #3d4e65; max-width: 650px; margin: 0 0 28px; }
.hero-points { display: grid; gap: 15px; margin-top: 28px; }
.hero-point { display: flex; align-items: center; gap: 12px; }
.hero-point-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, #eaf3ff, #fff);
  border: 1px solid #d6e7ff;
  color: var(--blue);
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  box-shadow: 0 10px 24px rgba(15,102,223,.08);
}
.hero-point-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-bubble { width: 42px; height: 42px; border-radius: 50%; background: #eaf3ff; color: var(--blue); display: inline-grid; place-items: center; flex: 0 0 auto; }
.hero-point strong { display: block; font-size: 15px; }
.hero-point > div > span { display: block; color: var(--muted); font-size: 13px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.btn { border: 0; border-radius: 11px; min-height: 48px; padding: 12px 19px; display: inline-flex; justify-content: center; align-items: center; gap: 9px; font-weight: 800; transition: .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color: #fff; box-shadow: 0 12px 25px rgba(15,102,223,.22); }
.btn-outline { background: #fff; color: var(--blue); border: 1px solid #bdd5f5; }
.btn-success { background: linear-gradient(135deg, #1fb758, var(--green-dark)); color: #fff; box-shadow: 0 12px 25px rgba(22,163,74,.18); }
.btn-block { width: 100%; }

.hero-visual { position: relative; min-height: 420px; display: grid; place-items: center; }
.certificate-stage { position: relative; width: 100%; }
.certificate-stage::before { content: ""; position: absolute; width: 92%; height: 90px; border-radius: 50%; background: #fff; bottom: -22px; left: 4%; box-shadow: 0 22px 35px rgba(15,40,75,.14); }
.certificate-image { position: relative; z-index: 2; width: min(100%, 520px); margin-inline: auto; transform: rotate(-1deg); }
.approval-badge { position: absolute; z-index: 3; right: 3%; bottom: 0; width: 118px; height: 130px; clip-path: polygon(50% 0, 94% 17%, 94% 62%, 50% 100%, 6% 62%, 6% 17%); background: linear-gradient(145deg, #1db459, #0e8b40); color: #fff; display: grid; place-items: center; text-align: center; font-weight: 850; padding: 15px; filter: drop-shadow(0 16px 20px rgba(16,127,58,.23)); }
.approval-badge small { font-size: 12px; font-weight: 700; }

.section { padding: 82px 0; }
.section-white { background: #fff; }
.section-head { text-align: center; max-width: 750px; margin: 0 auto 38px; }
.section-head h2 { font-size: clamp(30px, 4vw, 44px); margin: 0 0 12px; letter-spacing: -.035em; }
.section-head p { color: var(--muted); margin: 0; }

.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.price-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden; }
.price-card::before { content: ""; position: absolute; inset: 0 auto auto 0; height: 4px; width: 100%; background: var(--blue); }
.price-card.green::before { background: var(--green); }
.price-top { display: flex; align-items: flex-start; gap: 18px; }
.price-icon { width: 66px; height: 66px; border-radius: 50%; background: linear-gradient(145deg, var(--blue), var(--blue-dark)); color: #fff; display: grid; place-items: center; box-shadow: 0 12px 25px rgba(15,102,223,.23); flex: 0 0 auto; }
.green .price-icon { background: linear-gradient(145deg, #24bd60, var(--green-dark)); box-shadow: 0 12px 25px rgba(22,163,74,.2); }
.price-kicker { color: var(--muted); margin: 2px 0 4px; font-size: 14px; }
.price-card h3 { margin: 0; font-size: 26px; line-height: 1.2; color: var(--blue); }
.price-card.green h3 { color: var(--green); }
.price { display: flex; align-items: baseline; gap: 8px; margin: 26px 0 18px; }
.price strong { font-size: 48px; letter-spacing: -.04em; }
.price span { font-size: 18px; font-weight: 850; }
.price small { color: var(--muted); }
.feature-list { list-style: none; padding: 20px 0; margin: 0 0 18px; border-top: 1px solid var(--line); display: grid; gap: 14px; }
.feature-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.check { color: var(--blue); font-weight: 900; }
.green .check { color: var(--green); }
.secure-note { display: flex; gap: 7px; align-items: center; justify-content: center; color: #8591a3; font-size: 12px; margin-top: 12px; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step-card { text-align: center; position: relative; padding: 24px 20px; }
.step-card:not(:last-child)::after { content: ""; position: absolute; right: -28px; top: 64px; width: 56px; border-top: 2px dashed #c4d9f5; }
.step-icon { width: 86px; height: 86px; margin: 0 auto 18px; border-radius: 26px; background: linear-gradient(145deg, #fff, #e7f2ff); border: 1px solid #d8e9ff; color: var(--blue); display: grid; place-items: center; position: relative; box-shadow: 0 14px 30px rgba(15,102,223,.12); transform: rotate(-3deg); }
.step-icon svg { width: 40px; height: 40px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transform: rotate(3deg); }
.step-icon .step-icon-accent, .step-icon .step-icon-check { stroke-width: 2.2; }
.step-icon .step-icon-badge { fill: #fff; }
.step-number { position: absolute; right: -2px; top: -2px; width: 28px; height: 28px; border-radius: 50%; background: var(--blue); color: #fff; display: grid; place-items: center; font-size: 13px; font-weight: 850; }
.step-card h3 { margin: 0 0 8px; font-size: 18px; }
.step-card p { color: var(--muted); font-size: 14px; margin: 0; }

.query-band { background: linear-gradient(100deg, #eff6ff, #f8fbff); border: 1px solid #dbe9fb; border-radius: 18px; padding: 28px; display: grid; grid-template-columns: 1fr 2fr; gap: 28px; align-items: center; }
.query-band h3 { margin: 0 0 7px; font-size: 22px; }
.query-band p { margin: 0; color: var(--muted); font-size: 14px; }
.query-form { display: grid; grid-template-columns: 1fr 1fr auto; gap: 12px; }
.form-control { width: 100%; min-height: 50px; border: 1px solid #ccd9e8; border-radius: 10px; background: #fff; padding: 12px 14px; color: var(--text); outline: none; transition: .2s ease; }
.form-control:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(15,102,223,.09); }
textarea.form-control { min-height: 135px; resize: vertical; }

.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 38px; }
.trust-item { display: flex; align-items: flex-start; gap: 12px; }
.trust-item .icon-bubble { width: 48px; height: 48px; background: linear-gradient(145deg, #fff, #e7f2ff); border: 1px solid #d8e9ff; color: var(--blue); box-shadow: 0 10px 22px rgba(15,102,223,.1); }
.trust-item .icon-bubble svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.trust-item strong { display: block; font-size: 14px; margin: 3px 0 4px; }
.trust-item > div > span { display: block; color: var(--muted); font-size: 12px; }

.page-hero { padding: 65px 0; background: radial-gradient(circle at 80% 20%, #dfeeff 0, transparent 38%), linear-gradient(135deg, #fff, #f2f7fd); border-bottom: 1px solid var(--line); }
.page-hero-inner { display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.page-hero h1 { margin: 8px 0 10px; font-size: clamp(36px, 5vw, 54px); letter-spacing: -.04em; }
.page-hero p { color: var(--muted); max-width: 680px; margin: 0; }
body[data-page="about"] .page-hero-inner { display: block; }
body[data-page="about"] .about-copy { width: 100%; max-width: none; }
body[data-page="about"] .about-copy p { max-width: none; }
body[data-page="about"] .about-copy p + p { margin-top: 16px; }
body[data-page="about"] .about-section-head {
  max-width: none;
  margin: 0;
  text-align: left;
}
body[data-page="about"] .about-section-head h2 {
  max-width: none;
  margin-bottom: 12px;
}
body[data-page="about"] .about-section-copy {
  margin-top: 12px;
  max-width: none;
}

.about-hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 46px;
  background:
    radial-gradient(circle at 10% 15%, rgba(15,102,223,.12), transparent 24%),
    radial-gradient(circle at 88% 16%, rgba(22,163,74,.10), transparent 22%),
    linear-gradient(135deg, #fff 0%, #f1f7ff 100%);
}
.about-hero::after {
  content: "";
  position: absolute;
  inset: auto auto -160px -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(15,102,223,.06);
  filter: blur(8px);
}
.about-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: stretch;
}
.about-hero-copy {
  padding: 18px 0;
}
.about-hero-copy h1 {
  margin: 14px 0 14px;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -.05em;
}
.about-lead {
  max-width: 720px;
  font-size: 18px;
  color: #3b4f67;
  margin: 0;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.about-stat {
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(220,230,242,.95);
  border-radius: 18px;
  padding: 18px 16px;
  box-shadow: var(--shadow-sm);
}
.about-stat strong {
  display: block;
  font-size: 24px;
  letter-spacing: -.03em;
  color: var(--blue);
}
.about-stat span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}
.about-hero-panel {
  display: grid;
  align-items: stretch;
}
.about-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 22% 20%, rgba(255,255,255,.2), transparent 28%),
    linear-gradient(145deg, #0f66df, #082748);
  box-shadow: 0 28px 60px rgba(8,39,72,.25);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
}
.about-hero-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -80px auto;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.about-hero-badge {
  display: inline-flex;
  align-self: flex-start;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
}
.about-hero-card h2 {
  position: relative;
  z-index: 1;
  margin: 18px 0 12px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
  letter-spacing: -.04em;
}
.about-hero-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 15px;
  max-width: 36ch;
}
.about-story-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items: stretch;
}
.about-story p {
  color: var(--muted);
  font-size: 15px;
}
.about-quote {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(circle at 80% 20%, rgba(15,102,223,.08), transparent 28%),
    linear-gradient(180deg, #fff, #f7fbff);
}
.about-quote-mark {
  font-size: 74px;
  line-height: 0.8;
  color: rgba(15,102,223,.24);
  margin-bottom: 14px;
}
.about-quote p {
  font-size: 20px;
  line-height: 1.65;
  letter-spacing: -.02em;
  color: var(--text);
  margin: 0 0 26px;
}
.about-quote span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.about-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(12, 47, 90, .11);
}
.about-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #eff6ff, #fff);
  color: var(--blue);
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 18px;
}
.about-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
}
.about-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.about-footer-panel {
  margin-top: 24px;
  background: linear-gradient(135deg, #0d2340, #0b315d);
  color: #fff;
  border-radius: 24px;
  padding: 28px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 24px 50px rgba(13,35,64,.16);
}
.about-footer-panel h3 {
  margin: 0 0 8px;
  font-size: 24px;
}
.about-footer-panel p {
  margin: 0;
  color: rgba(255,255,255,.76);
  max-width: 760px;
}
.about-footer-panel .btn {
  flex: 0 0 auto;
}

.content-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 30px; align-items: start; }
.panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 30px; }
.panel h2, .panel h3 { margin-top: 0; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.form-group { display: grid; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 13px; font-weight: 750; }
.form-hint { font-size: 12px; color: var(--muted); }
.error-text { font-size: 12px; color: var(--danger); min-height: 18px; }
.form-control.is-invalid { border-color: var(--danger); box-shadow: 0 0 0 4px rgba(220,38,38,.08); }
.package-choice { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 22px; }
.package-option { border: 2px solid var(--line); border-radius: 14px; padding: 16px; cursor: pointer; transition: .2s ease; background: #fff; }
.package-option input { position: absolute; opacity: 0; pointer-events: none; }
.package-option.selected { border-color: var(--blue); background: var(--blue-soft); }
.package-option.meb.selected { border-color: var(--green); background: var(--green-soft); }
.package-option strong { display: block; font-size: 15px; }
.package-option span { display: block; color: var(--muted); font-size: 13px; margin-top: 5px; }
.package-option b { display: block; margin-top: 10px; font-size: 20px; }
.checkout-summary { position: sticky; top: 110px; }
.summary-row { display: flex; justify-content: space-between; gap: 20px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.summary-row.total { font-size: 20px; font-weight: 850; border-bottom: 0; padding-top: 20px; }
.summary-row span:first-child { color: var(--muted); }
.notice { background: #fff9e9; border: 1px solid #f5df9c; color: #6e5615; border-radius: 12px; padding: 14px; font-size: 13px; }
.demo-badge { display: inline-flex; border-radius: 999px; padding: 6px 9px; background: #fff0f0; color: #b42318; font-size: 11px; font-weight: 850; text-transform: uppercase; letter-spacing: .04em; }
.checkbox-row { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--muted); }
.checkbox-row input { margin-top: 3px; }

.payment-card { margin-top: 24px; border-top: 1px solid var(--line); padding-top: 24px; }
.payment-choice { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 20px 0 18px; }
.payment-option {
  border: 2px solid var(--line);
  border-radius: 16px;
  padding: 16px 16px 15px;
  background: #fff;
  cursor: pointer;
  transition: .2s ease;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.payment-option::after {
  content: "";
  position: absolute;
  inset: auto -20px -28px auto;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(15,102,223,.06);
}
.payment-option:hover { transform: translateY(-2px); }
.payment-option input { position: absolute; opacity: 0; pointer-events: none; }
.payment-option.selected { border-color: var(--blue); background: var(--blue-soft); }
.payment-option strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}
.payment-option span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}
.payment-method-panel { margin-top: 10px; }
.payment-method-panel.is-hidden { display: none; }
.bank-transfer-card {
  border-radius: 18px;
  padding: 22px;
  background:
    radial-gradient(circle at 20% 20%, rgba(15,102,223,.08), transparent 20%),
    linear-gradient(135deg, #f8fbff, #eef6ff);
  border: 1px solid #d7e7fb;
  box-shadow: var(--shadow-sm);
}
.bank-transfer-card__head {
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
}
.bank-transfer-badge {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 7px 11px;
  background: #fff;
  color: var(--blue);
  border: 1px solid #d8e7fb;
  font-size: 12px;
  font-weight: 850;
}
.bank-transfer-card__head strong {
  font-size: 18px;
  color: var(--text);
}
.bank-account-list {
  display: grid;
  gap: 12px;
}
.bank-account {
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(220,230,242,.95);
  border-radius: 16px;
  padding: 16px;
}
.bank-name {
  display: block;
  font-size: 12px;
  font-weight: 850;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 8px;
}
.bank-account strong {
  display: block;
  font-size: 18px;
  letter-spacing: .02em;
  margin-bottom: 6px;
}
.bank-account small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}
.bank-transfer-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}
.card-preview { border-radius: 18px; min-height: 190px; padding: 25px; color: #fff; background: radial-gradient(circle at 85% 20%, rgba(255,255,255,.2), transparent 20%), linear-gradient(135deg, #0f66df, #0b315d); display: flex; flex-direction: column; justify-content: space-between; margin-bottom: 22px; box-shadow: 0 22px 35px rgba(13,49,93,.22); }
.card-preview-number { font-size: 24px; letter-spacing: .14em; }
.card-preview-bottom { display: flex; justify-content: space-between; gap: 20px; font-size: 13px; }

.result-box { display: none; margin-top: 20px; border-radius: 14px; padding: 18px; }
.result-box.show { display: block; }
.result-box.success { background: #edfbf2; border: 1px solid #b9ebca; color: #126c35; }
.result-box.warning { background: #fff8e7; border: 1px solid #efd58d; color: #735a16; }
.result-box.error { background: #fff0f0; border: 1px solid #f3b6b6; color: #9c1c1c; }

.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 28px; }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 24px; box-shadow: var(--shadow-sm); }
.contact-card strong { display: block; margin: 14px 0 6px; }
.contact-card span, .contact-card a { color: var(--muted); font-size: 14px; }
body[data-page="contact"] .content-grid { align-items: stretch; }
.map-placeholder {
  position: relative;
  min-height: 360px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 20% 20%, rgba(15,102,223,.12), transparent 24%),
    radial-gradient(circle at 80% 25%, rgba(22,163,74,.10), transparent 20%),
    linear-gradient(135deg, #dcecff, #eef6ff);
  padding: 28px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.45);
}
body[data-page="contact"] .map-placeholder {
  height: 100%;
  min-height: 100%;
  padding: 0;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 100%;
  border: 0;
  border-radius: 18px;
  display: block;
}
.map-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 34px rgba(12,47,90,.16);
}
.map-pin {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  font-size: 24px;
  flex: 0 0 auto;
  box-shadow: 0 14px 24px rgba(15,102,223,.22);
}
.map-overlay__content {
  display: grid;
  gap: 4px;
}
.map-overlay__content strong {
  font-size: 14px;
  line-height: 1.45;
  color: var(--text);
}
.map-overlay__content span {
  font-size: 12px;
  color: var(--muted);
}
.map-placeholder__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  font-size: 34px;
  box-shadow: 0 18px 35px rgba(15,102,223,.22);
}
.map-placeholder__content {
  display: grid;
  gap: 8px;
  max-width: 440px;
}
.map-placeholder__content strong {
  font-size: 18px;
  line-height: 1.4;
  color: var(--text);
}
.map-placeholder__content span {
  color: var(--muted);
  font-size: 14px;
}

.info-list { display: grid; gap: 16px; }
.info-item { display: flex; gap: 14px; align-items: flex-start; }
.info-item .icon-bubble { width: 50px; height: 50px; }
.info-item h3 { margin: 0 0 4px; font-size: 17px; }
.info-item p { margin: 0; color: var(--muted); font-size: 14px; }

.site-footer { background: linear-gradient(135deg, #0b315d, #082748); color: #fff; margin-top: 70px; }
.footer-grid { display: grid; grid-template-columns: 1.1fr .8fr .8fr 1fr; gap: 45px; padding: 58px 0 42px; }
.footer-brand .brand-title { color: #fff; }
.footer-brand .brand-subtitle { color: rgba(255,255,255,.65); }
.footer-copy { color: rgba(255,255,255,.72); font-size: 13px; margin-top: 18px; max-width: 310px; }
.footer-title { font-weight: 850; margin-bottom: 16px; }
.footer-links { display: grid; gap: 10px; color: rgba(255,255,255,.78); font-size: 13px; }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.65); text-align: center; padding: 19px; font-size: 12px; }

.toast { position: fixed; right: 22px; bottom: 108px; z-index: 100; max-width: 390px; background: var(--navy); color: #fff; padding: 15px 18px; border-radius: 12px; box-shadow: var(--shadow); transform: translateY(130%); opacity: 0; transition: .3s ease; }
.toast.show { transform: translateY(0); opacity: 1; }

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 101;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  max-width: min(100% - 44px, 320px);
  padding: 14px 16px 14px 14px;
  border-radius: 18px;
  color: #fff;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.22), transparent 25%),
    linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 18px 40px rgba(18,140,126,.28);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(14px);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(18,140,126,.36);
  filter: saturate(1.04);
}
.whatsapp-float__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.14);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.15);
}
.whatsapp-float__icon svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}
.whatsapp-float__text {
  display: grid;
  gap: 2px;
  min-width: 0;
}
.whatsapp-float__text strong {
  font-size: 14px;
  line-height: 1.1;
  letter-spacing: -.01em;
}
.whatsapp-float__text span {
  font-size: 12px;
  color: rgba(255,255,255,.88);
}

@media (max-width: 980px) {
  .header-call { display: none; }
  .menu-toggle { display: flex; flex-direction: column; }
  .nav-links { position: fixed; inset: 82px 0 auto 0; background: #fff; padding: 20px; flex-direction: column; align-items: stretch; gap: 0; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); transform: translateY(-140%); opacity: 0; transition: .25s ease; }
  .nav-links.open { transform: translateY(0); opacity: 1; }
  .nav-links a { padding: 15px; border-bottom: 1px solid #eef2f7; }
  .nav-links a::after { display: none; }
  .hero { background: linear-gradient(160deg, #fff 0 54%, #edf5ff 54% 100%); }
  .hero-inner { grid-template-columns: 1fr; min-height: auto; padding: 58px 0 70px; }
  .hero-copy { text-align: center; }
  .hero-lead { margin-inline: auto; }
  .hero-points { max-width: 520px; margin-inline: auto; text-align: left; }
  .hero-actions { justify-content: center; }
  .hero-visual { min-height: 360px; }
  .pricing-grid, .content-grid { grid-template-columns: 1fr; }
  .about-hero-inner, .about-story-grid, .about-pillars { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .about-footer-panel { flex-direction: column; align-items: flex-start; }
  .query-band { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .checkout-summary { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .map-embed iframe { height: 340px; }
  .toast { bottom: 102px; right: 16px; max-width: calc(100% - 32px); }
  .whatsapp-float { right: 16px; bottom: 16px; max-width: calc(100% - 32px); }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .brand { min-width: 0; }
  .brand-title { font-size: 17px; }
  .brand-subtitle { display: none; }
  .hero h1 { font-size: 43px; }
  .hero-inner { gap: 25px; }
  .about-hero { padding: 58px 0 34px; }
  .about-hero-copy h1 { font-size: 44px; }
  .about-lead { font-size: 16px; }
  .about-hero-card { padding: 24px; border-radius: 22px; }
  .about-quote p { font-size: 17px; }
  .approval-badge { width: 92px; height: 105px; right: 0; font-size: 13px; }
  .pricing-grid { gap: 18px; }
  .price-card { padding: 24px; }
  .price-card h3 { font-size: 21px; }
  .price strong { font-size: 40px; }
  .steps { grid-template-columns: 1fr; }
  .step-card:not(:last-child)::after { display: none; }
  .query-form { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .form-grid, .package-choice { grid-template-columns: 1fr; }
  .payment-choice { grid-template-columns: 1fr; }
  .form-group.full { grid-column: auto; }
  .page-hero-inner { display: block; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .panel { padding: 21px; }
  .card-preview-number { font-size: 18px; }
  .about-card { padding: 22px; }
  .about-footer-panel { padding: 22px; }
  .map-overlay {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 12px 14px;
  }
  .map-pin {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  .map-overlay__content strong { font-size: 13px; }
  .whatsapp-float {
    padding: 12px 13px 12px 12px;
  }
  .whatsapp-float__icon {
    width: 42px;
    height: 42px;
  }
  .whatsapp-float__text strong { font-size: 13px; }
  .whatsapp-float__text span { font-size: 11px; }
}
