
:root {
  --navy: #061827;
  --navy-2: #0b2638;
  --teal: #51d6a7;
  --teal-dark: #1fa37d;
  --gold: #f5c45e;
  --paper: #ffffff;
  --muted: #607080;
  --line: #dfe8ee;
  --ink: #0c1d2b;
  --soft: #f4f8fb;
  --zona-orange: #ef5b2a;
  --asp-blue: #08386b;
  --shadow: 0 24px 70px rgba(6, 24, 39, 0.14);
  --radius: 24px;
  --max: 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(--ink);
  background: linear-gradient(180deg, #f8fbfd 0%, #ffffff 42%);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px;
}

/* TOPBAR */
.topbar {
  background: var(--navy);
  color: #d7e3ec;
  font-size: 14px;
  line-height: 1.2;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 28px;
  padding-top: 6px;
  padding-bottom: 6px;
}

.topbar-kicker {
  display: block;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.topbar-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  margin-left: auto;
  color: #ffffff;
  font-weight: 800;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(223, 232, 238, 0.8);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-top: 7px;
  padding-bottom: 7px;
}

.brand {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand img {
  display: block;
  width: 176px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 8px 11px;
  border-radius: 999px;
  color: #23384a;
  font-size: 14.5px;
  font-weight: 800;
}

.nav-links a:hover,
.nav-links a.active {
  background: #eaf7f3;
  color: #0a5b48;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 0;
  border-radius: 15px;
  background: var(--navy);
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  border: 0;
  border-radius: 999px;
  font-weight: 850;
  white-space: nowrap;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--teal);
  color: #042018;
  box-shadow: 0 12px 28px rgba(81, 214, 167, 0.28);
}

.btn-primary:hover {
  background: #61e2b5;
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--navy);
  color: #ffffff;
}

.btn-secondary:hover {
  background: #0e3047;
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: #241600;
}

.btn-soft,
.btn-ghost {
  background: #eef5f8;
  color: #0d283b;
}

.btn-soft:hover,
.btn-ghost:hover {
  background: #e3eef4;
  transform: translateY(-2px);
}

.btn-brand-zona,
.btn-brand-zona:link,
.btn-brand-zona:visited,
.btn-brand-zona:hover,
.btn-brand-zona:active {
  background: var(--zona-orange);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(239, 91, 42, 0.22);
  opacity: 1;
  transform: none;
}

.btn-brand-asp,
.btn-brand-asp:link,
.btn-brand-asp:visited,
.btn-brand-asp:hover,
.btn-brand-asp:active {
  background: var(--asp-blue);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(8, 56, 107, 0.22);
  opacity: 1;
  transform: none;
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: #0a5b48;
  font-weight: 850;
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: radial-gradient(circle at 82% 12%, rgba(81, 214, 167, 0.18), transparent 30%), linear-gradient(135deg, var(--navy), #0d3a50);
}

/* Decorative airplane: replaces old green/yellow circle */
.hero::after {
  content: "✈";
  position: absolute;
  right: -90px;
  bottom: -35px;
  z-index: 0;
  color: rgba(255, 255, 255, 0.09);
  font-size: clamp(220px, 24vw, 430px);
  line-height: 1;
  pointer-events: none;
  transform: rotate(-18deg);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  min-height: 610px;
  padding-top: 80px;
  padding-bottom: 86px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 980px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #d9fff2;
  font-size: 14px;
  font-weight: 800;
}

.hero h1 {
  max-width: 920px;
  margin: 20px 0;
  font-size: clamp(42px, 5.8vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero p {
  max-width: 760px;
  margin: 0;
  color: #c8d8e3;
  font-size: 18px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 720px;
  margin-top: 34px;
}

.trust-card {
  min-width: 0;
  padding: 14px 15px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.09);
}

.trust-card strong {
  display: block;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.05;
}

.trust-card span {
  display: block;
  color: #c8d8e3;
  font-size: 14px;
  line-height: 1.25;
}

/* Optional map classes retained for pages where map is still used */
.hero-map-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border: 1px solid rgba(8, 28, 43, 0.08);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.airport-map-frame {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(8, 28, 43, 0.08);
  border-radius: 28px;
  background: #ffffff;
}

.airport-map-img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 350px;
  object-fit: cover;
  border-radius: 28px;
}

.compare-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 16px;
}

.mini {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #ffffff;
}

.mini .label {
  font-size: 22px;
  font-weight: 900;
}

.mini ul {
  margin: 10px 0 0;
  padding-left: 18px;
}

/* SECTIONS */
.section {
  padding: 82px 0;
}

.section-soft {
  background: var(--soft);
}

.section-dark {
  background: var(--navy);
  color: #ffffff;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.section-head p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.section-dark .section-head p {
  color: #bad0dc;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 10px 34px rgba(6, 24, 39, 0.06);
}

.card:hover {
  transform: translateY(-3px);
  transition: 0.2s ease;
  box-shadow: var(--shadow);
}

.card-title-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.icon {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: #eaf8f3;
  font-size: 24px;
}

.card h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.15;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.partner-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 0;
  overflow: hidden;
}

.partner-top {
  padding: 26px 26px 0;
}

.partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #eef8f5;
  color: #0a5b48;
  font-size: 13px;
  font-weight: 850;
}

.partner-card h3 {
  margin: 14px 0 8px;
  font-size: 32px;
}

.feature-list {
  display: grid;
  gap: 7px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  font-size: 15px;
  line-height: 1.38;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.feature-list li::before {
  content: "✓";
  color: var(--teal-dark);
  font-weight: 900;
}

.partner-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 26px 26px;
}

.partner-bottom .btn {
  min-height: 44px;
  padding: 11px 16px;
  font-size: 15px;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.service h3 {
  margin: 10px 0 8px;
}

.service p {
  margin: 0;
  color: #bad0dc;
}

.cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 44px;
  border-radius: 34px;
  background: linear-gradient(135deg, var(--navy), #0f4058);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.cta h2 {
  margin: 0 0 10px;
  font-size: 40px;
  line-height: 1.05;
}

.cta p {
  margin: 0;
  color: #c9dce7;
}

.footer {
  padding: 60px 0 22px;
  background: #03111c;
  color: #d7e3ec;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 26px;
}

.footer h3,
.footer h4 {
  color: #ffffff;
}

.footer a {
  display: block;
  margin: 8px 0;
  color: #d7e3ec;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #99acba;
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* SHARED STYLES FOR OTHER PAGES */
.page-hero {
  padding: 82px 0 66px;
  background: linear-gradient(135deg, var(--navy), #0b3a52);
  color: #ffffff;
}

.page-hero h1 {
  margin: 14px 0;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
}

.page-hero p {
  max-width: 760px;
  color: #c9dce7;
  font-size: 19px;
}

.breadcrumb {
  color: #bcd0dc;
  font-size: 14px;
}

.content {
  max-width: 820px;
}

.content h2 {
  margin-top: 44px;
  font-size: 34px;
  line-height: 1.1;
}

.content p,
.content li {
  color: #445868;
}

.article-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
}

.article-img {
  position: relative;
  height: 150px;
  background: linear-gradient(135deg, #0b2d42, #51d6a7);
}

.article-img::after {
  content: "✈";
  position: absolute;
  right: 24px;
  bottom: 12px;
  color: #ffffff;
  font-size: 62px;
  opacity: 0.5;
}

.article-body {
  padding: 22px;
}

.article h3 {
  margin: 0 0 10px;
  line-height: 1.2;
}

.article p {
  margin: 0 0 16px;
  color: var(--muted);
}

.faq {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  padding: 18px 20px;
  font-weight: 900;
  cursor: pointer;
}

.faq-a {
  display: none;
  padding: 0 20px 18px;
  color: var(--muted);
}

.faq-item.open .faq-a {
  display: block;
}

.listing {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
}

.ad-slot {
  padding: 28px;
  border: 2px dashed #b8cbd6;
  border-radius: 24px;
  background: #f7fbfd;
  color: #647889;
  text-align: center;
}

/* TABLET */
@media (max-width: 980px) {
  .nav-links {
    position: absolute;
    top: 64px;
    left: 22px;
    right: 22px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    border-radius: 14px;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-grid,
  .grid-2,
  .cta {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .grid-3,
  .article-list,
  .service-strip {
    grid-template-columns: 1fr 1fr;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 12px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .listing {
    grid-template-columns: 1fr;
  }
}

/* MOBILE */
@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }

  .topbar-inner {
    gap: 10px;
    min-height: 24px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 10.5px;
    line-height: 1.1;
  }

  .topbar-link {
    font-size: 11px;
  }

  .nav {
    gap: 14px;
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .brand img {
    width: 168px;
    max-height: 54px;
  }

  .menu-toggle {
    width: 54px;
    height: 54px;
    min-width: 54px;
    min-height: 54px;
    border-radius: 16px;
    font-size: 22px;
  }

  .nav-links {
    top: 64px;
  }

  .hero-grid {
    gap: 28px;
    padding-top: 30px;
    padding-bottom: 44px;
  }

  .eyebrow {
    padding: 7px 10px;
    overflow: hidden;
    font-size: 13px;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .hero h1 {
    margin: 18px 0 14px;
    font-size: 40px;
    line-height: 1.02;
    letter-spacing: -0.045em;
  }

  .hero p {
    max-width: 100%;
    font-size: 14.5px;
    line-height: 1.42;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 24px;
  }

  .hero-actions .btn {
    width: 100%;
    padding: 12px 15px;
    font-size: 14.5px;
  }

  .trust-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 24px;
  }

  .trust-card {
    min-height: 82px;
    padding: 10px 7px;
    border-radius: 14px;
    text-align: center;
  }

  .trust-card strong {
    margin-bottom: 5px;
    font-size: 18px;
    line-height: 1.05;
    letter-spacing: -0.02em;
    white-space: nowrap;
  }

  .trust-card span {
    display: -webkit-box;
    overflow: hidden;
    max-width: 100%;
    color: #c8d8e3;
    font-size: 10.8px;
    line-height: 1.15;
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .hero::after {
    right: -40px;
    bottom: -45px;
    font-size: 150px;
    opacity: 0.9;
  }

  .hero-map-panel {
    padding: 10px;
    border-radius: 26px;
  }

  .airport-map-frame,
  .airport-map-img {
    border-radius: 22px;
  }

  .airport-map-img {
    min-height: auto;
  }

  .compare-mini {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 12px;
  }

  .mini {
    padding: 14px;
    border-radius: 18px;
  }

  .mini .label {
    font-size: 17px;
    line-height: 1.1;
  }

  .mini ul {
    margin-top: 8px;
    padding-left: 16px;
  }

  .mini li {
    font-size: 13px;
    line-height: 1.35;
  }

  .grid-3,
  .article-list,
  .service-strip {
    grid-template-columns: 1fr;
  }

  .grid-3.feature-cards .card {
    padding: 18px;
  }

  .card-title-row {
    gap: 12px;
    margin-bottom: 8px;
  }

  .grid-3.feature-cards .icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 22px;
  }

  .grid-3.feature-cards h3 {
    font-size: 19px;
    line-height: 1.12;
    letter-spacing: -0.025em;
  }

  .grid-3.feature-cards p {
    font-size: 15px;
    line-height: 1.42;
  }

  .section {
    padding: 60px 0;
  }

  .partner-top {
    padding: 22px 20px 0;
  }

  .partner-card h3 {
    margin: 12px 0 8px;
    font-size: 29px;
    line-height: 1.05;
  }

  .partner-card .partner-top > p {
    margin: 0;
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.36;
  }

  .feature-list {
    gap: 4px;
    margin-top: 11px;
    font-size: 13.2px;
    line-height: 1.25;
  }

  .feature-list li {
    gap: 7px;
  }

  .partner-bottom {
    padding: 0 20px 22px;
  }

  .partner-bottom .btn {
    width: auto;
    max-width: 100%;
    min-height: 42px;
    padding: 10px 14px;
    font-size: 13.8px;
  }

  .cta {
    padding: 28px;
    border-radius: 26px;
  }

  .cta h2 {
    font-size: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: block;
  }
}

@media (max-width: 380px) {
  .brand img {
    width: 158px;
  }

  .menu-toggle {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .trust-card strong {
    font-size: 17px;
  }

  .trust-card span {
    font-size: 10.3px;
  }

  .grid-3.feature-cards h3 {
    font-size: 18px;
  }
}
