/* Travelling Fares — Ocean Navy & Copper theme (shifted from forest green) */
:root {
  --primary: #0b3d51;
  --primary-mid: #145a73;
  --primary-deep: #072a38;
  --primary-soft: #e6f1f5;
  --secondary: #c4784a;
  --secondary-hot: #d4895c;
  --secondary-soft: #f8ebe3;
  --accent: #e8b48a;
  --ink: #1a2228;
  --muted: #5c6b73;
  --line: #d5e0e5;
  --bg: #f5f8fa;
  --white: #ffffff;
  --ok: #1a7a56;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 14px 40px rgba(7, 42, 56, 0.12);
  --shadow-sm: 0 4px 16px rgba(7, 42, 56, 0.08);
  --font-brand: "Outfit", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --phone-display: "+1 (888) 887-4484";
  --header-h: 72px;
  --max: 1140px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--primary-mid);
  text-decoration: none;
}

a:hover {
  color: var(--secondary);
}

h1, h2, h3, h4, .font-brand {
  font-family: var(--font-brand);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* —— Top affiliate bar —— */
.affiliate-bar {
  background: var(--primary-deep);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  text-align: center;
  padding: 0.45rem 1rem;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
}

.logo:hover {
  color: var(--ink);
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--primary-mid), var(--primary-deep));
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--font-brand);
  font-weight: 800;
  font-size: 1.1rem;
}

.logo-text strong {
  display: block;
  font-family: var(--font-brand);
  font-size: 1.15rem;
  font-weight: 700;
}

.logo-text span {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 1px;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.35rem;
}

.nav-desktop a {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.92rem;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--primary-mid);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--secondary);
  color: var(--white) !important;
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  transition: background 0.2s, transform 0.15s;
}

.btn-call:hover {
  background: var(--secondary-hot);
  transform: translateY(-1px);
}

.btn-call svg {
  flex-shrink: 0;
}

.menu-toggle {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem 1rem 1rem;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  padding: 0.75rem 0.5rem;
  color: var(--ink);
  font-weight: 600;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 900px) {
  .nav-desktop {
    display: flex;
  }
  .menu-toggle {
    display: none;
  }
  .btn-call .btn-label-short {
    display: none;
  }
}

@media (max-width: 899px) {
  .btn-call .btn-label-full {
    display: none;
  }
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(7, 42, 56, 0.88) 0%, rgba(11, 61, 81, 0.72) 45%, rgba(196, 120, 74, 0.35) 100%),
    url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1920&q=80") center/cover no-repeat;
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 20%, rgba(232, 180, 138, 0.18), transparent 50%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin: 3.5rem auto;
  display: grid;
  gap: 2rem;
}

@media (min-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr 1.05fr;
    align-items: center;
    gap: 2.5rem;
  }
}

.hero-copy .brand-signal {
  font-family: var(--font-brand);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  margin: 0 0 0.6rem;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: rgba(255, 255, 255, 0.95);
}

.hero-copy p {
  margin: 0 0 1.4rem;
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--secondary);
  color: var(--white) !important;
  font-family: var(--font-brand);
  font-weight: 700;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--secondary-hot);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white) !important;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-family: var(--font-brand);
  font-weight: 600;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* —— Search panel —— */
.search-panel {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.search-top {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 0.9rem;
}

.trip-tabs {
  display: inline-flex;
  background: var(--primary-soft);
  border-radius: 999px;
  padding: 3px;
}

.trip-tabs button {
  border: none;
  background: transparent;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-family: var(--font-brand);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  color: var(--muted);
}

.trip-tabs button.active {
  background: var(--primary);
  color: var(--white);
}

.search-top select,
.search-field input,
.search-field select,
.lead-grid input,
.form-grid input,
.form-grid select,
.form-grid textarea {
  font: inherit;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.7rem 0.85rem;
  background: var(--white);
  color: var(--ink);
  width: 100%;
}

.search-top select {
  width: auto;
  min-width: 120px;
}

.search-grid {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 700px) {
  .search-grid {
    grid-template-columns: 1fr auto 1fr 1fr 1fr;
    align-items: center;
  }
}

.search-field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.swap-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--primary-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  cursor: pointer;
  justify-self: center;
}

.lead-grid {
  display: grid;
  gap: 0.65rem;
}

@media (min-width: 700px) {
  .lead-grid {
    grid-template-columns: 1fr 1fr 1fr auto;
  }
}

.btn-search {
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-brand);
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.btn-search:hover {
  background: var(--primary-mid);
}

.search-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 0.9rem;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-top: 1rem;
  justify-content: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}

.trust-item svg {
  color: var(--primary-mid);
}

/* —— Sections —— */
.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--white);
}

.section-dark {
  background: linear-gradient(135deg, var(--primary-deep), var(--primary) 55%, var(--primary-mid));
  color: var(--white);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.section-head h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--primary-deep);
}

.section-dark .section-head h2,
.section-dark .section-head p {
  color: var(--white);
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

/* Destination cards — interactive containers */
.dest-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  color: var(--white) !important;
  background-size: cover;
  background-position: center;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: var(--shadow-sm);
}

.dest-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 42, 56, 0.92) 0%, rgba(7, 42, 56, 0.25) 55%, transparent 100%);
}

.dest-card > * {
  position: relative;
  z-index: 1;
}

.dest-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.dest-badge {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 2;
  background: var(--secondary);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
}

.dest-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1.25rem;
}

.dest-card p {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  opacity: 0.85;
}

.dest-card .link-deals {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--accent);
}

.center-cta {
  text-align: center;
  margin-top: 2rem;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 2px solid var(--primary);
  color: var(--primary) !important;
  font-family: var(--font-brand);
  font-weight: 700;
  padding: 0.75rem 1.3rem;
  border-radius: 999px;
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white) !important;
}

/* Feature grid */
.feature-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.feature-item {
  padding: 0.25rem 0;
}

.feature-item .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
}

.feature-item h3 {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
  color: var(--primary-deep);
}

.feature-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2.5rem 0;
}

@media (min-width: 700px) {
  .stats-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat {
  text-align: center;
  padding: 1.25rem 0.75rem;
  background: var(--primary-soft);
  border-radius: var(--radius);
}

.stat strong {
  display: block;
  font-family: var(--font-brand);
  font-size: 1.75rem;
  color: var(--primary);
}

.stat span {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
}

.split-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .split-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.info-block {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.info-block h3 {
  margin: 0 0 0.5rem;
  color: var(--primary-deep);
}

.info-block p {
  margin: 0;
  color: var(--muted);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--ok);
  font-weight: 700;
}

.diff-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.diff-item {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--muted);
}

.diff-item::before {
  content: "▸";
  color: var(--secondary);
  font-weight: 700;
}

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary) 50%, var(--primary-mid) 100%);
  color: var(--white);
  padding: 3.5rem 0 3rem;
  text-align: center;
}

.page-hero .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.page-hero h1 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.8rem, 4vw, 2.75rem);
}

.page-hero p {
  margin: 0 auto;
  max-width: 560px;
  opacity: 0.9;
}

/* Content / policy */
.content-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.policy-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid var(--line);
}

.policy-block h2,
.policy-block h3 {
  margin: 0 0 0.5rem;
  color: var(--primary-deep);
  font-size: 1.15rem;
}

.policy-block p,
.policy-block li {
  color: var(--muted);
  font-size: 0.95rem;
}

.policy-block ul {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
}

.table-wrap {
  overflow-x: auto;
  margin: 1rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

th, td {
  border: 1px solid var(--line);
  padding: 0.65rem 0.75rem;
  text-align: left;
}

th {
  background: var(--primary-soft);
  color: var(--primary-deep);
  font-family: var(--font-brand);
}

/* Contact / forms */
.contact-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 2rem;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  text-align: center;
}

.contact-card h3 {
  margin: 0.5rem 0 0.35rem;
  color: var(--primary-deep);
}

.contact-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-card a {
  font-weight: 700;
  color: var(--primary);
}

.form-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.form-grid {
  display: grid;
  gap: 0.9rem;
}

@media (min-width: 600px) {
  .form-grid.two {
    grid-template-columns: 1fr 1fr;
  }
}

.form-grid label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--ink);
}

.form-grid textarea {
  min-height: 130px;
  resize: vertical;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  margin-bottom: 0.65rem;
}

.faq-list summary {
  font-family: var(--font-brand);
  font-weight: 700;
  cursor: pointer;
  color: var(--primary-deep);
}

.faq-list details p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* CTA band */
.cta-band {
  text-align: center;
  padding: 3rem 1rem;
}

.cta-band h2 {
  margin: 0 0 0.5rem;
  color: inherit;
}

.cta-band p {
  margin: 0 auto 1.25rem;
  max-width: 480px;
  opacity: 0.88;
}

/* Footer */
.site-footer {
  background: var(--primary-deep);
  color: rgba(255, 255, 255, 0.82);
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-bottom: 2.5rem;
}

.footer-brand .logo-text strong {
  color: var(--white);
}

.footer-brand .logo-text span {
  color: rgba(255, 255, 255, 0.65);
}

.footer-brand p {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  max-width: 280px;
}

.site-footer h4 {
  margin: 0 0 0.85rem;
  color: var(--white);
  font-size: 0.95rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 0.45rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.site-footer a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  font-size: 0.82rem;
}

/* Sticky mobile call */
.sticky-call {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 1100;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--secondary);
  color: var(--white) !important;
  font-family: var(--font-brand);
  font-weight: 700;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(196, 120, 74, 0.45);
  animation: pulse-soft 2.4s ease-in-out infinite;
}

@keyframes pulse-soft {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

@media (min-width: 900px) {
  .sticky-call {
    bottom: 1.5rem;
  }
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  background: var(--primary-deep);
  color: var(--white);
  padding: 1rem 1.25rem;
  display: none;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.2);
}

.cookie-banner.show {
  display: block;
}

.cookie-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-inner p {
  margin: 0;
  font-size: 0.88rem;
  max-width: 640px;
  opacity: 0.9;
}

.cookie-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  border-radius: 8px;
  padding: 0.55rem 1rem;
  font-family: var(--font-brand);
  font-weight: 700;
  cursor: pointer;
}

.cookie-accept {
  background: var(--secondary);
  color: var(--white);
}

.cookie-essential {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

/* Motion */
@media (prefers-reduced-motion: no-preference) {
  .hero-copy {
    animation: fade-up 0.7s ease both;
  }
  .search-panel {
    animation: fade-up 0.7s ease 0.15s both;
  }
  .dest-card {
    animation: fade-up 0.5s ease both;
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.airline-logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.75rem;
}

.airline-chip {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
  font-weight: 700;
  font-family: var(--font-brand);
  color: var(--primary-deep);
  font-size: 0.9rem;
}

.steps {
  display: grid;
  gap: 1rem;
  counter-reset: step;
}

@media (min-width: 700px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  position: relative;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-brand);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.step h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  color: var(--primary-deep);
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.deals-list {
  display: grid;
  gap: 0.75rem;
}

.deal-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
}

.deal-row .route {
  font-family: var(--font-brand);
  font-weight: 700;
  color: var(--primary-deep);
}

.deal-row .price {
  font-family: var(--font-brand);
  font-weight: 800;
  color: var(--secondary);
  font-size: 1.15rem;
}

.deal-row .save {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ok);
  background: #e6f7ef;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}
