:root {
  --navy: #0B1F3A;
  --navy-deep: #071526;
  --teal: #1C6E8C;
  --sky: #4FA8D8;
  --sky-soft: #E8F4FB;
  --white: #FFFFFF;
  --whatsapp: #25D366;
  --gold: #F2A900;
  --text: #333333;
  --text-soft: #5A6A7A;
  --cream: #F5F8FB;
  --border: rgba(11, 31, 58, 0.1);
  --shadow: 0 18px 50px rgba(11, 31, 58, 0.12);
  --radius: 18px;
  --header-h: 78px;
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --font-script: 'Caveat', cursive;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container { width: min(1180px, calc(100% - 2.5rem)); margin-inline: auto; }
.section { padding: 5.5rem 0; }
.section-head { max-width: 640px; margin-bottom: 2.75rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 0.75rem;
}
h1, h2, h3, .display {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.6rem, 7vw, 5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
.script {
  font-family: var(--font-script);
  text-transform: none; letter-spacing: 0; font-weight: 700; color: var(--teal);
}
.lead { font-size: 1.08rem; color: var(--text-soft); margin-top: 1rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.9rem 1.45rem; border-radius: 999px; font-weight: 600; font-size: 0.95rem;
  transition: transform .25s, box-shadow .25s, background .25s, color .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--sky));
  color: var(--white);
  box-shadow: 0 10px 28px rgba(28, 110, 140, 0.35);
}
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: #143257; }
.btn-outline {
  border: 1.5px solid rgba(255,255,255,.55); color: var(--white);
  background: rgba(255,255,255,.08); backdrop-filter: blur(6px);
}
.btn-outline-dark { border: 1.5px solid var(--navy); color: var(--navy); background: transparent; }
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }
.btn-whatsapp { background: var(--whatsapp); color: var(--white); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-sm { padding: 0.55rem 1rem; font-size: 0.85rem; }
.btn-danger { background: #c0392b; color: white; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100; height: var(--header-h);
  background: rgba(255,255,255,.92); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border); transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 8px 30px rgba(11,31,58,.08); }
.header-inner {
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand { display: flex; align-items: center; gap: .65rem; flex-shrink: 0; }
.brand img { height: 56px; width: auto; object-fit: contain; }
.nav-desktop { display: flex; align-items: center; gap: .1rem; }
.nav-desktop a {
  padding: .55rem .8rem; font-size: .88rem; font-weight: 500; color: var(--navy);
  border-radius: 999px; transition: background .2s, color .2s;
}
.nav-desktop a:hover, .nav-desktop a.active { background: var(--sky-soft); color: var(--teal); }
.header-actions { display: flex; align-items: center; gap: .65rem; }
.menu-toggle {
  display: none; width: 44px; height: 44px; border-radius: 12px;
  align-items: center; justify-content: center; color: var(--navy); background: var(--sky-soft);
}
.nav-mobile {
  display: none; position: absolute; inset: var(--header-h) 0 auto;
  background: white; border-bottom: 1px solid var(--border);
  padding: 1rem 1.25rem 1.5rem; flex-direction: column; gap: .35rem; box-shadow: var(--shadow);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: .85rem 1rem; border-radius: 12px; font-weight: 500; color: var(--navy);
}
.nav-mobile a:hover { background: var(--sky-soft); color: var(--teal); }

/* Hero */
.hero {
  position: relative; min-height: calc(100svh - var(--header-h));
  display: grid; align-items: end; overflow: hidden; color: white;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  animation: heroZoom 18s ease-in-out infinite alternate;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7,21,38,.35) 0%, rgba(7,21,38,.55) 40%, rgba(7,21,38,.92) 100%),
    linear-gradient(90deg, rgba(7,21,38,.75) 0%, rgba(7,21,38,.25) 55%, rgba(28,110,140,.2) 100%);
}
.hero-content {
  position: relative; z-index: 1; padding: 4.5rem 0 5rem; max-width: 760px;
  animation: fadeUp .9s ease both;
}
.hero-brand { height: 72px; margin-bottom: 1.5rem; filter: drop-shadow(0 4px 16px rgba(0,0,0,.25)); background: rgba(255,255,255,.92); border-radius: 14px; padding: .4rem .6rem; }
.hero h1 { color: white; }
.hero h1 .accent { color: var(--sky); display: block; }
.hero .lead { color: rgba(255,255,255,.88); max-width: 520px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }

@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.08); } }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37,211,102,.55); }
  50% { transform: scale(1.05); box-shadow: 0 0 0 14px rgba(37,211,102,0); }
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.trust-strip {
  background: linear-gradient(135deg, var(--navy) 0%, #123456 55%, var(--teal) 140%);
  color: white; padding: 2.25rem 0;
}
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.trust-item { display: flex; align-items: flex-start; gap: .85rem; }
.trust-icon {
  width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.12);
  display: grid; place-items: center; flex-shrink: 0; color: var(--sky);
}
.trust-item strong { display: block; font-size: .95rem; margin-bottom: .2rem; }
.trust-item span { font-size: .85rem; opacity: .8; }

.service-tile {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 30px rgba(11, 31, 58, 0.07);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  color: var(--navy);
}
.service-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.service-tile-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--sky-soft);
}
.service-tile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.service-tile:hover .service-tile-media img {
  transform: scale(1.06);
}
.service-tile-body {
  padding: 1rem 1.1rem 1.25rem;
  background: white;
}
.service-tile-body h3 {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--navy);
  line-height: 1.25;
  margin: 0;
}

.card {
  background: white; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 8px 30px rgba(11,31,58,.07); border: 1px solid var(--border);
  display: flex; flex-direction: column; transition: transform .3s, box-shadow .3s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card-media { position: relative; width: 100%; aspect-ratio: 16/10; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s; }
.card:hover .card-media img { transform: scale(1.06); }
.card-badge {
  position: absolute; top: .85rem; left: .85rem; background: var(--navy); color: white;
  font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: .35rem .7rem; border-radius: 999px;
}
.card-badge.gold { background: var(--gold); color: var(--navy); }
.card-badge.open { background: var(--whatsapp); }
.card-badge.soon { background: var(--teal); }
.card-body { padding: 1.25rem 1.3rem 1.45rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.card-meta { display: flex; flex-wrap: wrap; gap: .65rem; font-size: .85rem; color: var(--text-soft); }
.card-price { font-weight: 700; color: var(--teal); font-size: 1.05rem; }
.card-actions { margin-top: auto; padding-top: .75rem; display: flex; gap: .5rem; flex-wrap: wrap; }

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; }
.split-media {
  position: relative; border-radius: 28px; overflow: hidden; min-height: 420px; box-shadow: var(--shadow);
}
.split-media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.split-float {
  position: absolute; bottom: 1.25rem; left: 1.25rem; right: 1.25rem;
  background: rgba(255,255,255,.95); backdrop-filter: blur(8px); border-radius: 16px;
  padding: 1rem 1.15rem; animation: floaty 4s ease-in-out infinite;
}
.split-float strong {
  display: block; color: var(--navy); font-family: var(--font-display);
  letter-spacing: .04em; text-transform: uppercase;
}

.timeline { display: grid; gap: 0; position: relative; }
.timeline::before {
  content: ''; position: absolute; left: 23px; top: 12px; bottom: 12px; width: 2px;
  background: linear-gradient(180deg, var(--sky), var(--teal), var(--navy));
}
.timeline-item { display: grid; grid-template-columns: 48px 1fr; gap: 1.15rem; padding: 1.15rem 0; }
.timeline-num {
  width: 48px; height: 48px; border-radius: 50%; background: var(--navy); color: white;
  display: grid; place-items: center; font-family: var(--font-display); font-size: 1.1rem;
  position: relative; z-index: 1; box-shadow: 0 0 0 6px var(--cream);
}
.timeline-body {
  background: white; border: 1px solid var(--border); border-radius: 16px; padding: 1.15rem 1.3rem;
}
.timeline-body p { color: var(--text-soft); margin-top: .35rem; font-size: .95rem; }

.page-hero {
  position: relative; padding: 4.5rem 0 3.5rem; overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, #123456 60%, var(--teal) 130%);
  color: white;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 85% 20%, rgba(79,168,216,.35), transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(28,110,140,.35), transparent 35%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: white; }
.page-hero .lead { color: rgba(255,255,255,.85); max-width: 560px; }

.filters { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 2rem; }
.filter-chip {
  padding: .55rem 1rem; border-radius: 999px; border: 1px solid var(--border);
  background: white; color: var(--navy); font-weight: 500; font-size: .88rem; transition: all .2s;
}
.filter-chip.active, .filter-chip:hover { background: var(--navy); color: white; border-color: var(--navy); }

.testimonial {
  background: white; border-radius: var(--radius); padding: 1.5rem;
  border: 1px solid var(--border); box-shadow: 0 8px 28px rgba(11,31,58,.06);
}
.testimonial .quote { font-size: 1.05rem; color: var(--text); margin: .85rem 0 1.15rem; }
.testimonial .author { font-weight: 700; color: var(--navy); }
.testimonial .country { font-size: .85rem; color: var(--teal); }
.video-wrap { aspect-ratio: 16/9; border-radius: 12px; overflow: hidden; background: #111; margin-bottom: .85rem; }
.video-wrap iframe, .video-wrap video { width: 100%; height: 100%; border: 0; }

.form-grid { display: grid; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: grid; gap: .4rem; }
.field label { font-size: .88rem; font-weight: 600; color: var(--navy); }
.field input, .field textarea, .field select {
  width: 100%; padding: .85rem 1rem; border-radius: 12px; border: 1.5px solid var(--border);
  background: white; color: var(--text); outline: none; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--sky); box-shadow: 0 0 0 4px rgba(79,168,216,.18);
}
.field textarea { min-height: 130px; resize: vertical; }
.form-panel {
  background: white; border-radius: 24px; padding: 2rem;
  border: 1px solid var(--border); box-shadow: var(--shadow);
}
.alert { padding: .9rem 1rem; border-radius: 12px; font-weight: 500; margin-bottom: 1rem; }
.alert-success { background: #e8f8ef; color: #1a7a45; }
.alert-error { background: #fdecea; color: #a12a21; }
.alert-info { background: var(--sky-soft); color: var(--navy); }

.cta-band {
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, var(--navy), var(--teal));
  color: white; border-radius: 28px; padding: 3rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
}
.cta-band h2 { color: white; }
.cta-band p { opacity: .88; margin-top: .5rem; max-width: 480px; }

.site-footer {
  background: var(--navy-deep); color: rgba(255,255,255,.85);
  padding: 4rem 0 0; margin-top: 2rem;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 3rem; }
.footer-brand img {
  height: 64px; margin-bottom: 1rem; background: white; border-radius: 12px; padding: .35rem .5rem;
}
.footer-brand p { font-size: .95rem; opacity: .8; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-display); color: white; letter-spacing: .06em;
  text-transform: uppercase; margin-bottom: 1rem; font-size: 1rem;
}
.footer-col a, .footer-col li {
  display: block; padding: .3rem 0; font-size: .92rem; opacity: .8; transition: opacity .2s, color .2s;
}
.footer-col a:hover { opacity: 1; color: var(--sky); }
.socials { display: flex; gap: .65rem; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08);
  display: grid; place-items: center; opacity: 1 !important; padding: 0 !important; transition: background .2s, transform .2s;
}
.socials a:hover { background: var(--teal); transform: translateY(-2px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 1.15rem 0;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .85rem; opacity: .7;
}

.wa-float {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 200;
  width: 60px; height: 60px; border-radius: 50%; background: var(--whatsapp); color: white;
  display: grid; place-items: center; box-shadow: 0 12px 30px rgba(37,211,102,.45);
  animation: pulse 2.4s infinite;
}
.wa-float:hover { transform: scale(1.08); }

/* Lightbox */
img.is-lightbox {
  cursor: zoom-in;
}
body.lightbox-open {
  overflow: hidden;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}
.lightbox[hidden] {
  display: none !important;
}
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 21, 38, 0.78);
  backdrop-filter: blur(4px);
}
.lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(88svh, 900px);
  background: #0b1f3a;
  border-radius: 18px;
  padding: 0.75rem;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  animation: fadeUp 0.25s ease both;
}
.lightbox-img {
  width: 100%;
  max-height: min(72svh, 780px);
  object-fit: contain;
  border-radius: 12px;
  background: #071526;
  display: block;
}
.lightbox-caption {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  text-align: center;
  margin: 0;
  padding: 0 2rem 0.25rem;
}
.lightbox-close {
  position: absolute;
  top: 0.45rem;
  right: 0.55rem;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy);
  font-size: 1.6rem;
  line-height: 1;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}
.lightbox-close:hover {
  background: white;
  transform: scale(1.05);
}
.lightbox-close:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 2px;
}

.detail-list { display: grid; gap: .35rem; margin: .5rem 0 0; padding-left: 1.1rem; list-style: disc; color: var(--text-soft); font-size: .92rem; }
.vacante-card .vacante-desc {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}
.vacante-card .vacante-block {
  margin-top: 0.15rem;
  padding-top: 0.55rem;
  border-top: 1px solid var(--border);
}
.vacante-card .vacante-block strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.vacante-card .card-price {
  font-size: 1.12rem;
}
.vacante-card .detail-list {
  margin-top: 0.35rem;
}
.pill {
  display: inline-flex; align-items: center; padding: .25rem .65rem; border-radius: 999px;
  font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
}
.pill.open { background: #e8f8ef; color: #1a7a45; }
.pill.soon { background: #e8f4fb; color: var(--teal); }
.pill.closed { background: #f0f0f0; color: #666; }
.empty-state { text-align: center; padding: 3rem 1rem; color: var(--text-soft); }
.icon-list { display: grid; gap: .85rem; margin-top: 1.25rem; }
.icon-list li {
  display: flex; gap: .75rem; align-items: flex-start; background: white;
  border: 1px solid var(--border); border-radius: 14px; padding: 1rem 1.1rem;
}
.icon-list .num {
  width: 36px; height: 36px; border-radius: 50%; background: var(--sky-soft); color: var(--teal);
  display: grid; place-items: center; font-weight: 700; flex-shrink: 0;
}

/* Admin */
.admin-body { background: #edf2f7; min-height: 100svh; }
.admin-shell { display: grid; grid-template-columns: 260px 1fr; min-height: 100svh; }
.admin-sidebar {
  background: var(--navy); color: white; padding: 1.5rem 1.1rem;
  display: flex; flex-direction: column; gap: .35rem;
}
.admin-sidebar .brand img {
  height: 48px; background: white; border-radius: 10px; padding: .25rem; margin-bottom: 1.25rem;
}
.admin-nav a, .admin-nav button {
  display: flex; align-items: center; gap: .65rem; width: 100%; text-align: left;
  padding: .8rem .9rem; border-radius: 12px; color: rgba(255,255,255,.8); font-weight: 500;
}
.admin-nav a:hover, .admin-nav a.active, .admin-nav button:hover {
  background: rgba(255,255,255,.1); color: white;
}
.admin-main { padding: 1.75rem; }
.admin-top {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  margin-bottom: 1.5rem; flex-wrap: wrap;
}
.admin-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 1.75rem; }
.stat-card {
  background: white; border-radius: 16px; padding: 1.2rem; border: 1px solid var(--border);
}
.stat-card .label { font-size: .82rem; color: var(--text-soft); }
.stat-card .value { font-family: var(--font-display); font-size: 2rem; color: var(--navy); margin-top: .25rem; }
.admin-table-wrap {
  background: white; border-radius: 18px; border: 1px solid var(--border); overflow: auto;
}
.admin-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.admin-table th, .admin-table td {
  padding: .9rem 1rem; text-align: left; border-bottom: 1px solid var(--border); vertical-align: middle;
}
.admin-table th {
  background: var(--sky-soft); color: var(--navy); font-weight: 600;
  font-size: .82rem; text-transform: uppercase; letter-spacing: .04em;
}
.admin-actions { display: flex; gap: .4rem; flex-wrap: wrap; }
.login-page {
  min-height: 100svh; display: grid; place-items: center; padding: 1.5rem;
  background:
    radial-gradient(circle at 20% 20%, rgba(79,168,216,.25), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(28,110,140,.2), transparent 35%),
    linear-gradient(160deg, #071526, #0b1f3a 50%, #123456);
}
.login-card {
  width: min(420px, 100%); background: white; border-radius: 24px;
  padding: 2rem; box-shadow: var(--shadow); text-align: center;
}
.login-card img { height: 72px; margin: 0 auto 1rem; }
.login-card h1 { font-size: 1.8rem; margin-bottom: .35rem; }
.login-card .lead { margin-bottom: 1.5rem; font-size: .95rem; }
.login-card .form-grid { text-align: left; }
.thumb { width: 56px; height: 40px; object-fit: cover; border-radius: 8px; }

@media (max-width: 980px) {
  .grid-4, .trust-grid, .admin-stats { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .split, .footer-grid, .admin-shell { grid-template-columns: 1fr; }
  .admin-sidebar { position: sticky; top: 0; z-index: 20; flex-direction: row; flex-wrap: wrap; }
  .admin-sidebar .brand { width: 100%; }
  .admin-nav { display: flex; flex-wrap: wrap; gap: .35rem; width: 100%; }
  .admin-nav a, .admin-nav button { width: auto; }
}
@media (max-width: 780px) {
  .nav-desktop, .header-actions .btn-contact-desktop { display: none; }
  .menu-toggle { display: inline-flex; }
  .brand img { height: 48px; }
  .grid-2, .grid-3, .form-row { grid-template-columns: 1fr; }
  .hero-content { padding: 3.5rem 0; }
  .section { padding: 3.75rem 0; }
  .cta-band { padding: 2rem 1.4rem; }
}
@media (max-width: 560px) {
  .container { width: min(1180px, calc(100% - 1.5rem)); }
  .trust-grid, .grid-4, .admin-stats { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}
