/* ============================================================
   HAZLO.PE — DESIGN SYSTEM v02
   Fuentes: Fraunces (display) · Sora (body) · JetBrains Mono (util)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..900;1,9..144,300..900&family=Sora:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bg:          #F2EADF;
  --bg-deep:     #EAE0D1;
  --ink:         #1A1512;
  --ink-soft:    #3D332C;
  --mute:        #8B7D6F;
  --line:        #D8CBB8;
  --terra:       #B5532E;
  --terra-dark:  #7A3818;
  --ochre:       #D4A24C;
  --cream:       #FAF5EC;
  --ok:          #4A7A48;
  --radius:      0px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Grain overlay */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 200;
  opacity: 0.04;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

/* ---- Typography helpers ---- */
.display {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 144;
  letter-spacing: -0.025em;
}
.mono { font-family: 'JetBrains Mono', monospace; }

/* ---- Layout ---- */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 48px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px;
  font-family: 'Sora', sans-serif; font-weight: 500; font-size: 15px;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.22s ease; letter-spacing: 0.01em;
}
.btn-primary { background: var(--terra); color: var(--cream); }
.btn-primary:hover { background: var(--terra-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(181,83,46,.25); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--terra); color: var(--terra); }
.btn-ink { background: var(--ink); color: var(--cream); }
.btn-ink:hover { background: var(--terra); }
.btn-ochre { background: var(--ochre); color: var(--ink); }
.btn-ochre:hover { background: #c49040; }
.btn-lg { padding: 18px 36px; font-size: 16px; }
.btn-full { justify-content: center; width: 100%; }

/* ---- Brand logo ---- */
.brand {
  font-family: 'Fraunces', serif; font-weight: 500; font-size: 26px;
  letter-spacing: -0.02em; display: inline-flex; align-items: baseline;
  text-decoration: none; color: var(--ink);
}
.brand .dot {
  width: 9px; height: 9px; background: var(--terra);
  border-radius: 50%; display: inline-block; margin: 0 3px;
  transform: translateY(-1px);
}
.brand .pe { font-style: italic; color: var(--terra); }

/* ---- NAV ---- */
nav.top {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  background: rgba(242,234,223,0.92);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s;
}
nav.top.scrolled { box-shadow: 0 2px 20px rgba(26,21,18,.06); }
nav.top .inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 17px 0;
}
nav.top ul { list-style: none; display: flex; gap: 32px; align-items: center; }
nav.top a {
  font-size: 13.5px; color: var(--ink-soft); text-decoration: none;
  font-weight: 500; letter-spacing: 0.01em; transition: color 0.2s;
}
nav.top a:hover { color: var(--terra); }
.btn-nav {
  padding: 9px 20px !important;
  background: var(--ink) !important;
  color: var(--cream) !important;
  font-size: 13px !important; font-weight: 500 !important;
  transition: background 0.2s !important;
  border: none !important;
}
.btn-nav:hover { background: var(--terra) !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--ink); transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; top: 60px; left: 0; right: 0; bottom: 0;
  background: var(--cream); z-index: 99;
  flex-direction: column; padding: 40px 32px;
  gap: 8px; overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Fraunces', serif; font-size: 28px; font-weight: 300;
  color: var(--ink); text-decoration: none; padding: 12px 0;
  border-bottom: 1px solid var(--line);
  letter-spacing: -0.01em; transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--terra); }
.mobile-menu .m-cta { margin-top: 24px; }

/* ---- Section base ---- */
.sect { padding: 120px 0; }
.sect-dark { background: var(--ink); color: var(--cream); }
.sect-deep { background: var(--bg-deep); }

/* Section header pattern */
.sect-head {
  display: grid; grid-template-columns: 120px 1fr;
  gap: 48px; margin-bottom: 72px; align-items: start;
}
.sect-num {
  font-family: 'Fraunces', serif; font-size: 64px; font-weight: 300;
  line-height: 1; font-style: italic; opacity: 0.18;
}
.sect-dark .sect-num { color: var(--cream); }
.sect-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 300; line-height: 1.04;
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 144;
}
.sect-title em { font-style: italic; color: var(--terra); font-weight: 400; }
.sect-dark .sect-title em { color: var(--ochre); }
.sect-desc {
  margin-top: 20px; font-size: 17px; color: var(--ink-soft);
  max-width: 60ch; line-height: 1.65;
}
.sect-dark .sect-desc { color: rgba(250,245,236,.75); }

/* Eyebrow */
.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--terra);
  margin-bottom: 20px; display: block;
}
.sect-dark .eyebrow { color: var(--ochre); }

/* ---- Pill badge ---- */
.badge-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px; border: 1px solid var(--terra);
  border-radius: 100px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--terra); letter-spacing: 0.05em;
}
.badge-pill::before {
  content: ''; width: 6px; height: 6px;
  border-radius: 50%; background: var(--terra);
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ---- FAQ Accordion ---- */
.faq-list { max-width: 900px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%; background: transparent; border: none;
  padding: 26px 0; text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font-family: 'Fraunces', serif; font-size: clamp(17px, 2vw, 22px);
  font-weight: 400; color: var(--ink); letter-spacing: -0.01em;
  line-height: 1.3; transition: color 0.2s;
}
.faq-q:hover { color: var(--terra); }
.faq-icon {
  width: 22px; height: 22px; position: relative; flex-shrink: 0; transition: transform 0.3s;
}
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; background: currentColor; transition: all 0.3s;
}
.faq-icon::before { top: 50%; left: 0; right: 0; height: 1.5px; transform: translateY(-50%); }
.faq-icon::after { left: 50%; top: 0; bottom: 0; width: 1.5px; transform: translateX(-50%); }
.faq-item.open .faq-icon::after { transform: translateX(-50%) scaleY(0); opacity: 0; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-a { max-height: 600px; padding-bottom: 28px; }
.faq-a p { font-size: 15.5px; line-height: 1.65; color: var(--ink-soft); max-width: 72ch; }
.faq-a p + p { margin-top: 10px; }

/* ---- Trust cards ---- */
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust-card {
  padding: 32px 28px; background: var(--cream);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 210px; transition: border-color 0.2s;
}
.trust-card:hover { border-color: var(--terra); }
.trust-card .tnum {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--terra); letter-spacing: 0.15em; margin-bottom: 20px;
}
.trust-card h4 {
  font-family: 'Fraunces', serif; font-weight: 500; font-size: 21px;
  line-height: 1.2; letter-spacing: -0.01em; margin-bottom: 10px;
}
.trust-card p { font-size: 14px; line-height: 1.6; color: var(--ink-soft); }

/* ---- Comparison table ---- */
.comp-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: var(--cream); border: 1px solid var(--line);
}
.comp-table th, .comp-table td {
  padding: 17px 22px; text-align: left;
  border-bottom: 1px solid var(--line); font-size: 14px; vertical-align: middle;
}
.comp-table tr:last-child td { border-bottom: none; }
.comp-table th {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.1em; color: var(--mute); text-transform: uppercase;
  font-weight: 500; background: var(--bg-deep);
}
.comp-table th.hazlo-col { background: var(--terra); color: var(--cream); }
.comp-table td.hazlo-col { background: rgba(181,83,46,0.05); font-weight: 500; }
.comp-table td:first-child { font-weight: 500; font-family: 'Fraunces', serif; font-size: 15px; }
.comp-table .check { color: var(--ok); font-weight: 600; }
.comp-table .cross { color: var(--mute); }
.comp-table .star { color: var(--terra); font-weight: 600; }

/* ---- CTA Final ---- */
.cta-final {
  padding: 140px 0; background: var(--terra); color: var(--cream);
  text-align: center; position: relative; overflow: hidden;
}
.cta-final::before {
  content: ''; position: absolute; top: -20%; left: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: var(--terra-dark); opacity: 0.35; filter: blur(80px);
}
.cta-final::after {
  content: ''; position: absolute; bottom: -20%; right: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: var(--ochre); opacity: 0.2; filter: blur(100px);
}
.cta-final .inner { position: relative; z-index: 2; }
.cta-final h2 {
  font-family: 'Fraunces', serif; font-weight: 300;
  font-size: clamp(38px, 5vw, 76px);
  line-height: 1; letter-spacing: -0.025em;
  max-width: 18ch; margin: 0 auto;
  font-variation-settings: "opsz" 144;
}
.cta-final h2 em { font-style: italic; font-weight: 400; }
.cta-final p {
  max-width: 54ch; margin: 28px auto 0;
  font-size: 18px; line-height: 1.6;
  color: rgba(250,245,236,.85);
}

/* ---- Footer ---- */
footer.site { background: var(--ink); color: rgba(250,245,236,.75); padding: 80px 0 40px; }
.foot-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 56px; margin-bottom: 60px;
}
.foot-col h5 {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--ochre); letter-spacing: 0.2em;
  text-transform: uppercase; margin-bottom: 20px;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-col a {
  color: rgba(250,245,236,.7); text-decoration: none;
  font-size: 14px; transition: color 0.2s;
}
.foot-col a:hover { color: var(--ochre); }
.foot-brand {
  font-family: 'Fraunces', serif; font-weight: 500; font-size: 30px;
  letter-spacing: -0.02em; color: var(--cream);
  display: inline-flex; align-items: baseline; margin-bottom: 18px;
}
.foot-brand .dot {
  width: 10px; height: 10px; background: var(--terra);
  border-radius: 50%; display: inline-block; margin: 0 4px; transform: translateY(-1px);
}
.foot-brand .pe { font-style: italic; color: var(--terra); }
.foot-col.brand p { font-size: 14px; line-height: 1.65; max-width: 34ch; }
.foot-bottom {
  padding-top: 32px; border-top: 1px solid rgba(250,245,236,.12);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: rgba(250,245,236,.45); letter-spacing: 0.03em;
}

/* ---- WhatsApp floating button ---- */
.wa-btn {
  position: fixed; bottom: 32px; right: 32px; z-index: 150;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; box-shadow: 0 4px 20px rgba(0,0,0,.2);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-btn:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(0,0,0,.25); }
.wa-btn svg { width: 28px; height: 28px; fill: #fff; }

/* ---- Breadcrumb ---- */
.breadcrumb {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--mute); letter-spacing: 0.08em;
  padding: 16px 0; display: flex; align-items: center; gap: 8px;
}
.breadcrumb a { color: var(--mute); text-decoration: none; }
.breadcrumb a:hover { color: var(--terra); }
.breadcrumb .sep { opacity: 0.5; }

/* ---- Product page hero ---- */
.prod-hero {
  padding: 80px 0 100px;
  background: radial-gradient(circle at 90% 10%, rgba(181,83,46,.08) 0%, transparent 55%),
              radial-gradient(circle at 5% 90%, rgba(212,162,76,.06) 0%, transparent 45%);
}
.prod-hero-grid {
  display: grid; grid-template-columns: 1fr 340px; gap: 80px; align-items: start;
}
.prod-hero h1 {
  font-family: 'Fraunces', serif; font-weight: 300;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.98; letter-spacing: -0.03em;
  font-variation-settings: "opsz" 144; margin-bottom: 24px;
}
.prod-hero h1 em { font-style: italic; color: var(--terra); font-weight: 400; }
.prod-hero .lead { font-size: 18px; color: var(--ink-soft); line-height: 1.6; max-width: 52ch; }
.prod-buy-box {
  background: var(--cream); border: 1px solid var(--line);
  padding: 32px; position: sticky; top: 90px;
}
.prod-buy-box .bb-price {
  font-family: 'Fraunces', serif; font-weight: 300;
  font-size: 58px; line-height: 1; letter-spacing: -0.03em;
  font-variation-settings: "opsz" 144;
}
.prod-buy-box .bb-price .ccy { font-size: 22px; opacity: 0.6; vertical-align: top; margin-right: 2px; }
.prod-buy-box .bb-meta {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--mute); line-height: 2; margin: 16px 0 24px;
}
.prod-buy-box .bb-meta strong { color: var(--ink); }
.prod-buy-box .bb-guarantee {
  margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line);
  font-size: 12.5px; color: var(--mute); line-height: 1.6; text-align: center;
}

/* ---- Inclusions list ---- */
.incl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 32px; }
.incl-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 0; border-bottom: 1px solid var(--line);
}
.incl-item:last-child { border-bottom: none; }
.incl-arrow { color: var(--terra); font-size: 14px; margin-top: 2px; flex-shrink: 0; }
.incl-item span { font-size: 14.5px; line-height: 1.5; }

/* ---- Consulados grid ---- */
.consulados-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.consulado-card {
  background: var(--cream); border: 1px solid var(--line); padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.consulado-card:hover { border-color: var(--terra); transform: translateY(-2px); }
.consulado-card .cc-city {
  font-family: 'Fraunces', serif; font-size: 22px; font-weight: 400;
  letter-spacing: -0.01em; margin-bottom: 6px;
}
.consulado-card .cc-country {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--mute); letter-spacing: 0.1em; margin-bottom: 20px;
}
.consulado-card .cc-row {
  display: flex; justify-content: space-between;
  font-size: 13px; padding: 7px 0; border-bottom: 1px solid var(--line);
  align-items: center;
}
.consulado-card .cc-row:last-child { border-bottom: none; }
.consulado-card .cc-label { color: var(--mute); font-size: 12px; }
.consulado-card .cc-val { font-weight: 500; }
.sid-yes { color: var(--ok); font-weight: 600; font-size: 12px; }
.sid-no { color: var(--mute); font-size: 12px; }

/* ---- Wizard ---- */
.wizard-wrap {
  background: var(--ink); color: var(--cream);
  padding: 56px; max-width: 780px; margin: 0 auto;
}
.wizard-progress {
  display: flex; gap: 6px; margin-bottom: 48px;
}
.wizard-progress span {
  height: 3px; flex: 1; background: rgba(250,245,236,.2);
  transition: background 0.4s;
}
.wizard-progress span.done { background: var(--ochre); }
.wizard-step { display: none; }
.wizard-step.active { display: block; }
.wizard-q {
  font-family: 'Fraunces', serif; font-weight: 300;
  font-size: clamp(24px, 3.5vw, 38px);
  line-height: 1.15; letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144; margin-bottom: 8px;
}
.wizard-hint { font-size: 14px; color: rgba(250,245,236,.6); margin-bottom: 36px; }
.wizard-options { display: grid; gap: 10px; }
.wizard-opt {
  padding: 16px 20px; background: rgba(250,245,236,.06);
  border: 1px solid rgba(250,245,236,.15);
  cursor: pointer; text-align: left; color: var(--cream);
  font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 400;
  transition: all 0.2s; display: flex; align-items: center; gap: 14px;
}
.wizard-opt:hover { background: rgba(250,245,236,.12); border-color: var(--ochre); }
.wizard-opt.selected { background: rgba(212,162,76,.15); border-color: var(--ochre); color: var(--ochre); }
.wizard-opt .opt-ico { font-size: 20px; flex-shrink: 0; }
.wizard-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 40px; }
.wizard-back { background: none; border: none; color: rgba(250,245,236,.5); cursor: pointer; font-family: 'Sora', sans-serif; font-size: 14px; transition: color 0.2s; }
.wizard-back:hover { color: var(--cream); }
.wizard-counter { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: rgba(250,245,236,.4); letter-spacing: 0.1em; }

/* Wizard summary */
.wizard-summary { padding: 36px; background: rgba(250,245,236,.05); border: 1px solid rgba(250,245,236,.15); margin-bottom: 32px; }
.wizard-summary h4 { font-family: 'Fraunces', serif; font-size: 14px; letter-spacing: 0.1em; color: var(--ochre); margin-bottom: 20px; font-style: italic; }
.summary-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(250,245,236,.1); font-size: 14px; }
.summary-row:last-child { border-bottom: none; }
.summary-row .s-label { color: rgba(250,245,236,.5); }
.summary-row .s-val { font-weight: 500; }

/* ---- Consulta form ---- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.12em; color: var(--mute); text-transform: uppercase; }
.form-input, .form-select, .form-textarea {
  padding: 14px 16px; background: var(--cream); border: 1px solid var(--line);
  font-family: 'Sora', sans-serif; font-size: 15px; color: var(--ink);
  outline: none; transition: border-color 0.2s; width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--terra); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238B7D6F' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.radio-group { display: flex; gap: 20px; flex-wrap: wrap; }
.radio-opt { display: flex; align-items: center; gap: 8px; cursor: pointer; font-size: 15px; }
.radio-opt input { accent-color: var(--terra); width: 16px; height: 16px; }

/* ---- Sobre nosotros ---- */
.team-card {
  display: grid; grid-template-columns: 240px 1fr; gap: 48px; align-items: start;
  background: var(--cream); border: 1px solid var(--line); padding: 48px;
}
.team-photo {
  aspect-ratio: 3/4; background: var(--bg-deep);
  border: 1px solid var(--line); position: relative;
  display: flex; align-items: center; justify-content: center;
  color: var(--mute); font-size: 13px; font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.05em; text-align: center; padding: 20px;
}
.team-photo .photo-placeholder { text-align: center; }
.team-photo .photo-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--line); margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--mute);
}

/* ---- Scroll reveal ---- */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .consulados-grid { grid-template-columns: repeat(2, 1fr); }
  .prod-hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .prod-buy-box { position: static; }
  .team-card { grid-template-columns: 1fr; }
  .team-photo { max-width: 240px; }
}
@media (max-width: 768px) {
  .wrap { padding: 0 20px; }
  nav.top ul.desktop-nav { display: none; }
  .hamburger { display: flex; }
  .sect { padding: 72px 0; }
  .sect-head { grid-template-columns: 1fr; gap: 8px; margin-bottom: 48px; }
  .sect-num { font-size: 42px; }
  .trust-grid { grid-template-columns: 1fr; }
  .consulados-grid { grid-template-columns: 1fr; }
  .incl-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .foot-grid { grid-template-columns: 1fr; gap: 36px; }
  .cta-final { padding: 80px 0; }
  .wizard-wrap { padding: 36px 24px; }
  .comp-table { font-size: 12px; }
  .comp-table th, .comp-table td { padding: 11px 10px; }
  .wa-btn { bottom: 20px; right: 20px; }
}
