@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=DM+Sans:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* ─── VARIABLES ──────────────────────────────────────────── */
:root {
  --yellow: #FFD700;
  --yellow-d: #E6C200;
  --blue: #003399;
  --blue-d: #002277;
  --blue-l: #1a4db3;
  --white: #ffffff;
  --light: #f5f7fc;
  --border: #e2e8f0;
  --gray: #6b7280;
  --dark: #111827;
  --text: #1f2937;
  --shadow: 0 4px 24px rgba(0,51,153,0.10);
  --radius: 10px;
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ─── HEADER ─────────────────────────────────────────────── */
header {
  background: var(--blue);
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 2px solid var(--yellow);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.logo-badge {
  width: 44px;
  height: 44px;
  background: var(--yellow);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.logo-badge img { width: 100%; height: 100%; object-fit: contain; }
.logo-badge-placeholder {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--blue);
  letter-spacing: -0.02em;
}
.logo-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.logo-name span { color: var(--yellow); }

nav { display: flex; align-items: center; gap: 0.1rem; }
nav a {
  color: rgba(255,255,255,0.82);
  padding: 0.45rem 0.7rem;
  border-radius: 5px;
  font-size: 0.83rem;
  font-weight: 500;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
nav a:hover { color: var(--yellow); background: rgba(255,215,0,0.1); }
nav a.active { color: var(--yellow); }

.header-phone {
  background: var(--yellow);
  color: var(--blue);
  padding: 0.5rem 1.1rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.88rem;
  white-space: nowrap;
  transition: background .2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}
.header-phone:hover { background: var(--yellow-d); color: var(--blue); }

/* Mobile nav */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; display: block; }
.mobile-nav {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--blue-d);
  z-index: 199;
  padding: 0.5rem 0 1rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,0.88);
  padding: 0.85rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color .2s, background .2s;
}
.mobile-nav a:hover { color: var(--yellow); background: rgba(255,215,0,0.08); }

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  background: var(--blue);
  color: var(--white);
  padding: 4rem 1.5rem 4.5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 120%, rgba(255,215,0,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 90% 20%, rgba(255,255,255,0.03) 0%, transparent 50%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3.5rem;
  align-items: start;
  position: relative;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,215,0,0.12);
  border: 1px solid rgba(255,215,0,0.3);
  color: var(--yellow);
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 1.1rem;
}
.hero h1 em { color: var(--yellow); font-style: normal; }
.hero-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 500px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}
.hbadge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.88);
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 500;
}
.hero-phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--yellow);
  color: var(--blue);
  padding: 0.85rem 1.75rem;
  border-radius: 7px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: background .2s, transform .15s;
  margin-right: 0.75rem;
}
.hero-phone-cta:hover { background: var(--yellow-d); transform: translateY(-2px); color: var(--blue); }
.hero-link-cta {
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  transition: color .2s;
}
.hero-link-cta:hover { color: var(--yellow); border-color: var(--yellow); }

/* Hero image placeholder */
.hero-img-zone {
  width: 100%;
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.06);
  border: 2px dashed rgba(255,215,0,0.25);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(255,215,0,0.5);
  font-size: 0.78rem;
  text-align: center;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.hero-img-zone svg { opacity: 0.4; }
.hero-img-zone img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }

/* ─── BOOKING FORM ───────────────────────────────────────── */
.booking-card {
  background: var(--white);
  border-radius: 14px;
  padding: 1.75rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  position: sticky;
  top: 88px;
}
.booking-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.booking-card h3::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 18px;
  background: var(--yellow);
  border-radius: 2px;
}
.fg { margin-bottom: 0.8rem; }
.fg label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
}
.fg input,
.fg select,
.fg textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--text);
  background: #fafbfd;
  transition: border-color .2s, box-shadow .2s;
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0,51,153,0.08);
}
.fg textarea { resize: vertical; min-height: 70px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.hp-field { display: none !important; }
.btn-book {
  width: 100%;
  background: var(--yellow);
  color: var(--blue);
  border: none;
  padding: 0.88rem;
  border-radius: 7px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  transition: background .2s, transform .15s;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.btn-book:hover { background: var(--yellow-d); transform: translateY(-1px); }
.btn-book:active { transform: none; }
.btn-book:disabled { opacity: .6; cursor: wait; }
.form-notif {
  margin-top: 0.75rem;
  padding: 0.8rem 1rem;
  border-radius: 6px;
  font-size: 0.83rem;
  font-weight: 500;
  display: none;
}
.form-notif.success { display: block; background: #ecfdf5; color: #065f46; border: 1px solid #6ee7b7; }
.form-notif.error { display: block; background: #fef2f2; color: #991b1b; border: 1px solid #fca5a5; }

/* ─── TRUST BAR ──────────────────────────────────────────── */
.trust-bar {
  background: var(--light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.75rem 1.5rem;
}
.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.titem {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.titem-icon {
  width: 38px;
  height: 38px;
  background: var(--yellow);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.titem strong { display: block; font-size: 0.85rem; color: var(--dark); font-weight: 600; }
.titem span { font-size: 0.75rem; color: var(--gray); }

/* ─── SECTIONS ───────────────────────────────────────────── */
.section { padding: 4.5rem 1.5rem; }
.section.bg-light { background: var(--light); }
.section.bg-blue { background: var(--blue); color: var(--white); }
.sec-inner { max-width: 1200px; margin: 0 auto; }
.sec-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
  margin-bottom: 0.6rem;
}
.bg-blue .sec-label { color: var(--yellow); }
.sec-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--dark);
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 0.75rem;
}
.bg-blue .sec-title { color: var(--white); }
.sec-title em { color: var(--blue); font-style: normal; }
.bg-blue .sec-title em { color: var(--yellow); }
.sec-sub {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 2.75rem;
}
.bg-blue .sec-sub { color: rgba(255,255,255,0.72); }

/* Split layout */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.card-icon {
  width: 42px;
  height: 42px;
  background: var(--yellow);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.45rem;
}
.card p { font-size: 0.875rem; color: var(--gray); line-height: 1.65; }
.card a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 0.75rem;
  transition: gap .2s;
}
.card a:hover { gap: 0.5rem; }

/* ─── IMG PLACEHOLDER ────────────────────────────────────── */
.img-ph {
  width: 100%;
  background: var(--light);
  border: 2px dashed #cbd5e1;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #94a3b8;
  font-size: 0.78rem;
  text-align: center;
  padding: 2rem;
}
.img-ph.t43 { aspect-ratio: 4/3; }
.img-ph.t169 { aspect-ratio: 16/7; }
.img-ph.t11 { aspect-ratio: 1/1; }
.img-ph svg { opacity: .5; }

/* ─── TARIFS TABLE ───────────────────────────────────────── */
.tarifs-wrap { overflow-x: auto; margin-top: 1rem; border-radius: var(--radius); border: 1.5px solid var(--border); }
.tarifs-table { width: 100%; border-collapse: collapse; }
.tarifs-table thead th {
  background: var(--blue);
  color: var(--white);
  padding: 0.9rem 1.25rem;
  text-align: left;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.tarifs-table thead th:last-child { color: var(--yellow); }
.tarifs-table tbody tr { border-bottom: 1px solid var(--border); }
.tarifs-table tbody tr:last-child { border-bottom: none; }
.tarifs-table tbody tr:hover { background: #f0f4ff; }
.tarifs-table tbody td { padding: 0.9rem 1.25rem; font-size: 0.875rem; color: var(--text); }
.tarifs-table tbody td:first-child { font-weight: 600; }
.price-cell {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--blue);
}
.tarifs-note { font-size: 0.78rem; color: var(--gray); display: block; font-weight: 400; }
.tag-badge {
  display: inline-block;
  background: rgba(0,51,153,0.08);
  color: var(--blue);
  padding: 0.15rem 0.55rem;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.tag-badge.night { background: #1e1b4b; color: #c7d2fe; }
.tag-badge.pop { background: rgba(255,215,0,0.2); color: #7a5c00; }

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-list { max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--dark);
  gap: 1rem;
  transition: color .2s;
  list-style: none;
}
.faq-q:hover { color: var(--blue); }
.faq-arrow {
  width: 26px;
  height: 26px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  line-height: 1;
  transition: background .2s, transform .3s;
}
.faq-item.open .faq-arrow {
  background: var(--yellow);
  color: var(--blue);
  transform: rotate(45deg);
}
.faq-a {
  display: none;
  padding: 0 0 1.1rem;
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.75;
}
.faq-item.open .faq-a { display: block; }

/* ─── CTA BAND ───────────────────────────────────────────── */
.cta-band {
  background: var(--yellow);
  padding: 3.5rem 1.5rem;
  text-align: center;
}
.cta-band h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.cta-band p { color: rgba(0,30,100,0.7); font-size: 0.95rem; margin-bottom: 1.75rem; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--blue);
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 7px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--blue-d); transform: translateY(-2px); color: var(--white); }
.btn-outline-blue {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--blue);
  padding: 0.9rem 2rem;
  border-radius: 7px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--blue);
  transition: background .2s;
  margin-left: 0.75rem;
}
.btn-outline-blue:hover { background: rgba(0,51,153,0.06); color: var(--blue); }

/* ─── INFOBOX ────────────────────────────────────────────── */
.infobox {
  background: rgba(0,51,153,0.05);
  border-left: 3px solid var(--blue);
  border-radius: 0 8px 8px 0;
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.7;
  margin: 1.25rem 0;
}
.infobox strong { color: var(--blue); }

/* Steps */
.steps { display: flex; flex-direction: column; gap: 1.5rem; }
.step { display: flex; gap: 1.25rem; align-items: flex-start; }
.step-num {
  width: 36px;
  height: 36px;
  background: var(--yellow);
  color: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.step-body h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--dark);
  margin-bottom: 0.25rem;
}
.step-body p { font-size: 0.875rem; color: var(--gray); line-height: 1.65; }

/* ─── INTERNAL LINKS SILO ────────────────────────────────── */
.silo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.silo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--blue);
  padding: 0.45rem 0.9rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: border-color .2s, background .2s;
}
.silo-link:hover { border-color: var(--blue); background: rgba(0,51,153,0.04); color: var(--blue); }

/* ─── CONTACT PAGE ───────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 420px; gap: 3rem; align-items: start; }
.contact-info { }
.contact-info h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--dark);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.cinfo-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}
.cinfo-icon {
  width: 40px;
  height: 40px;
  background: var(--yellow);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.cinfo-body strong { display: block; font-size: 0.85rem; font-weight: 600; color: var(--dark); margin-bottom: 0.15rem; }
.cinfo-body span { font-size: 0.83rem; color: var(--gray); }
.contact-form-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  box-shadow: var(--shadow);
}
.contact-form-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
footer {
  background: #0a1540;
  color: rgba(255,255,255,0.65);
  padding: 3.5rem 1.5rem 1.5rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand .logo-name { font-size: 1.2rem; }
.footer-brand p { font-size: 0.82rem; line-height: 1.75; margin-top: 0.75rem; }
.footer-col h5 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--yellow);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  margin-bottom: 0.5rem;
  transition: color .2s;
}
.footer-col a:hover { color: var(--yellow); }
.footer-col span {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  margin-bottom: 0.4rem;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.76rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color .2s; }
.footer-bottom a:hover { color: var(--yellow); }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .booking-card { position: static; max-width: 520px; }
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .split.reverse { direction: ltr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-card { max-width: 520px; }
}
@media (max-width: 768px) {
  nav, .header-phone { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 2.5rem 1.25rem 3rem; }
  .section { padding: 3rem 1.25rem; }
  .form-row { grid-template-columns: 1fr; }
  .trust-inner { gap: 1.25rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-band .btn-outline-blue { margin-left: 0; margin-top: 0.5rem; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .cards { grid-template-columns: 1fr; }
}
