/* ===================== TOKENS ===================== */
:root {
  --espresso: #333D2E;
  --deep-brown: #47543F;
  --warm-coffee: #5F7052;
  --gold: #B99458;
  --gold-light: #D4B583;
  --ivory: #F5F1E9;
  --off-white: #FAF9F6;
  --graphite: #202326;
  --deep-blue: #173B56;

  --text-dark: var(--graphite);
  --text-light: var(--off-white);
  --text-muted: #6b6258;

  --font-head: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1180px;
  --radius: 4px;
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.5em;
  color: inherit;
}
p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

html[dir="rtl"] body,
html[dir="rtl"] h1, html[dir="rtl"] h2, html[dir="rtl"] h3, html[dir="rtl"] h4 {
  font-family: "Cairo", var(--font-body);
}
button { font-family: inherit; cursor: pointer; }
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.center { text-align: center; }
.no-scroll { overflow: hidden; }

/* ===================== REVEAL ANIMATION ===================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-block;
  padding: 14px 30px;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all var(--transition);
}
.btn-gold {
  background: var(--gold);
  color: var(--espresso);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-ghost {
  border-color: currentColor;
  padding: 10px 22px;
  font-size: 0.78rem;
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); }
.btn-outline-light {
  border-color: rgba(250,249,246,0.6);
  color: var(--off-white);
}
.btn-outline-light:hover { background: rgba(250,249,246,0.12); border-color: var(--off-white); }
.btn-outline-dark {
  border-color: var(--espresso);
  color: var(--espresso);
}
.btn-outline-dark:hover { background: rgba(51, 61, 46,0.06); }

/* ===================== HEADER ===================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 22px 0;
  background: transparent;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(51, 61, 46, 0.62);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(250,249,246,0.08);
  padding: 14px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--off-white);
}
.logo-mark {
  width: 38px; height: 38px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--gold);
}
.logo-text {
  font-family: var(--font-head);
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  font-weight: 600;
}
.logo-text em { font-style: normal; color: var(--gold); }

.main-nav {
  display: flex;
  gap: 34px;
}
.main-nav a {
  color: var(--off-white);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.main-nav a:hover::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--off-white);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}
.lang-btn {
  background: none;
  border: none;
  color: rgba(250,249,246,0.55);
  font-weight: 600;
  padding: 4px;
}
.lang-btn.active { color: var(--gold); }
.lang-sep { color: rgba(250,249,246,0.3); }
.header-cta { color: var(--off-white); }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px; height: 32px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--off-white);
  transition: transform var(--transition), opacity var(--transition);
}
.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-nav {
  position: fixed;
  top: 0; right: 0;
  width: min(80vw, 340px);
  height: 100vh;
  background: var(--espresso);
  z-index: 950;
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 100px 36px 40px;
  transform: translateX(100%);
  transition: transform var(--transition);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  color: var(--off-white);
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.mobile-nav .btn { text-align: center; margin-top: 10px; }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--espresso);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media-placeholder {
  width: 100%; height: 100%;
  background:
    radial-gradient(circle at 78% 30%, rgba(185,148,88,0.18), transparent 55%),
    linear-gradient(135deg, #1c120f 0%, #333D2E 35%, #47543F 70%, #333D2E 100%);
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
}
.hero-media-placeholder::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,0.03) 0 2px, transparent 2px 26px);
  opacity: 0.6;
}
.hero-photo {
  background-image:
    linear-gradient(90deg, rgba(20,13,10,0.7) 0%, rgba(20,13,10,0.3) 45%, rgba(20,13,10,0.1) 100%),
    url("../images/hero.jfif");
  background-size: cover;
  background-position: center 40%;
}
.hero-photo::before { display: none; }
.placeholder-tag {
  position: relative;
  color: rgba(250,249,246,0.4);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  border: 1px dashed rgba(250,249,246,0.25);
  padding: 8px 14px;
  border-radius: 4px;
  max-width: 420px;
  text-align: center;
}
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,10,8,0.35) 0%, rgba(15,10,8,0.1) 25%, rgba(15,10,8,0.55) 100%),
    linear-gradient(90deg, rgba(15,10,8,0.96) 0%, rgba(15,10,8,0.86) 40%, rgba(15,10,8,0.55) 70%, rgba(15,10,8,0.35) 100%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  color: var(--off-white);
  padding-top: 100px;
  max-width: 720px;
}
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}
.hero-title {
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  color: var(--off-white);
  margin-bottom: 22px;
}
.hero-sub {
  font-size: 1.08rem;
  color: rgba(250,249,246,0.82);
  max-width: 560px;
  margin-bottom: 34px;
}
.hero-cta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-route {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-head);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--off-white);
}
.route-line {
  width: 90px; height: 1px;
  background: rgba(250,249,246,0.25);
  position: relative;
  overflow: hidden;
}
.route-line i {
  position: absolute;
  top: -1px; left: -40%;
  width: 40%; height: 2px;
  background: var(--gold);
  animation: routeMove 3.2s ease-in-out infinite;
}
@keyframes routeMove {
  0% { left: -40%; }
  50% { left: 100%; }
  100% { left: 100%; }
}
@media (min-width: 1024px) {
  .hero .container {
    margin-left: 0;
    padding-left: clamp(32px, 7vw, 110px);
  }
}
html[dir="rtl"] .hero .container {
  margin-left: auto;
  margin-right: 0;
  padding-left: 32px;
  padding-right: clamp(32px, 7vw, 110px);
}
html[dir="rtl"] .hero-scrim {
  background:
    linear-gradient(180deg, rgba(15,10,8,0.35) 0%, rgba(15,10,8,0.1) 25%, rgba(15,10,8,0.55) 100%),
    linear-gradient(270deg, rgba(15,10,8,0.96) 0%, rgba(15,10,8,0.86) 40%, rgba(15,10,8,0.55) 70%, rgba(15,10,8,0.35) 100%);
}

/* ===================== SECTIONS ===================== */
.section { padding: 110px 0; }
.section-dark { background: var(--espresso); color: var(--off-white); }
.section-dark .lead { color: rgba(250,249,246,0.78); }
.section-ivory { background: var(--ivory); }
.section-cta { background: var(--deep-blue); color: var(--off-white); }

.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  margin-bottom: 20px;
}
.lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
}
.section-head.center .lead { margin-left: auto; margin-right: auto; }

/* ===================== FLOW DIAGRAM (About) ===================== */
.flow-diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: 60px 0;
}
.flow-node {
  border: 1px solid rgba(51, 61, 46,0.15);
  padding: 16px 40px;
  border-radius: var(--radius);
  background: var(--off-white);
}
.flow-node-brand {
  background: var(--espresso);
  color: var(--off-white);
  border-color: var(--espresso);
}
.flow-label {
  font-family: var(--font-head);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 600;
}
.flow-arrow { color: var(--gold); font-size: 1.2rem; line-height: 1; }

/* ===================== GRIDS / CARDS ===================== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }

.card {
  background: var(--off-white);
  border: 1px solid rgba(51, 61, 46,0.1);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(51, 61, 46,0.08); }
.card.small { padding: 26px 22px; }
.card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.card p { color: var(--text-muted); font-size: 0.94rem; margin: 0; }
.card-num {
  display: block;
  font-family: var(--font-head);
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.section-dark .card { background: rgba(250,249,246,0.04); border-color: rgba(250,249,246,0.12); }
.section-dark .card p { color: rgba(250,249,246,0.7); }

/* ===================== EGYPT / ROUTE ===================== */
.route-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 50px 0 60px;
  flex-wrap: wrap;
}
.route-step {
  text-align: center;
  padding: 20px 34px;
  border: 1px solid rgba(250,249,246,0.18);
  border-radius: var(--radius);
  min-width: 170px;
}
.route-step-brand {
  border-color: var(--gold);
  background: rgba(185,148,88,0.08);
}
.route-title {
  display: block;
  font-family: var(--font-head);
  letter-spacing: 0.1em;
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--gold-light);
}
.route-sub {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(250,249,246,0.6);
  text-transform: uppercase;
}
.route-connector {
  width: 70px; height: 1px;
  background: rgba(250,249,246,0.2);
  position: relative;
  margin: 0 4px;
}
.route-connector i {
  position: absolute; top: -1px; left: 0;
  width: 24px; height: 2px;
  background: var(--gold);
  animation: connectorMove 2.6s ease-in-out infinite;
}
@keyframes connectorMove {
  0% { left: -24px; }
  50% { left: 100%; }
  100% { left: 100%; }
}
.map-visual { display: flex; justify-content: center; margin-top: 40px; }
.route-map { width: 100%; max-width: 700px; height: auto; }
.map-dot-shape { fill: rgba(185,148,88,0.06); stroke: rgba(185,148,88,0.25); stroke-width: 1; }
.map-path { fill: none; stroke: var(--gold); stroke-width: 1.4; stroke-dasharray: 6 6; opacity: 0.7; }
.map-point { fill: var(--gold); }
.map-label { fill: rgba(250,249,246,0.55); font-family: var(--font-body); font-size: 12px; letter-spacing: 2px; }

/* ===================== SUPPLIERS TAGS ===================== */
.tag-card {
  background: var(--off-white);
  border: 1px solid rgba(51, 61, 46,0.12);
  border-radius: var(--radius);
  padding: 22px 12px;
  text-align: center;
  font-family: var(--font-head);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: border-color var(--transition), transform var(--transition);
}
.tag-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.profile-box {
  margin-top: 44px;
  border-left: 3px solid var(--gold);
  padding: 24px 32px;
  background: var(--ivory);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.profile-box h3 { font-size: 1.1rem; margin-bottom: 8px; }
.profile-box p { color: var(--text-muted); margin: 0; }

/* ===================== PILLARS ===================== */
.pillar { text-align: center; padding: 10px; }
.pillar h3 {
  font-size: 1.1rem;
  color: var(--warm-coffee);
  margin-bottom: 10px;
}
.pillar p { color: var(--text-muted); font-size: 0.92rem; }

/* ===================== TIMELINE ===================== */
.timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.timeline-item {
  position: relative;
  padding-top: 26px;
  border-top: 2px solid rgba(51, 61, 46,0.12);
}
.timeline-item::before {
  content: "";
  position: absolute;
  top: -2px; left: 0;
  width: 30%;
  height: 2px;
  background: var(--gold);
}
.timeline-num {
  display: block;
  font-family: var(--font-head);
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.timeline-item h3 { font-size: 1rem; margin-bottom: 8px; }
.timeline-item p { color: var(--text-muted); font-size: 0.88rem; }

/* ===================== VERTICAL FLOW (Role) ===================== */
.vertical-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: 50px 0 46px;
}
.vf-node {
  border: 1px solid rgba(250,249,246,0.2);
  padding: 16px 46px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  letter-spacing: 0.1em;
  font-size: 0.9rem;
}
.vf-node-brand { border-color: var(--gold); background: rgba(185,148,88,0.1); color: var(--gold-light); }
.vf-arrow { color: var(--gold); font-size: 1.1rem; }
.chip {
  border: 1px solid rgba(250,249,246,0.15);
  border-radius: 999px;
  padding: 12px 10px;
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  color: rgba(250,249,246,0.85);
}

/* ===================== COFFEE SECTION ===================== */
.coffee-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.coffee-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 30px;
}
.coffee-stat {
  border-top: 1px solid rgba(51, 61, 46,0.15);
  padding-top: 12px;
  font-family: var(--font-head);
  letter-spacing: 0.06em;
  font-size: 0.9rem;
  color: var(--warm-coffee);
}
.coffee-media .hero-media-placeholder {
  border-radius: var(--radius);
  min-height: 380px;
}
.hero-media-placeholder.small { min-height: 340px; }
.coffee-photo {
  background-image: url("../images/green-beans.jpg");
  background-size: cover;
  background-position: center;
}
.coffee-photo::before { display: none; }

/* ===================== FAQ ===================== */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  border: 1px solid rgba(51, 61, 46,0.12);
  border-radius: var(--radius);
  padding: 24px 28px;
  background: var(--off-white);
}
.faq-item h3 {
  font-size: 1.05rem;
  color: var(--warm-coffee);
  margin-bottom: 10px;
}
.faq-item p { color: var(--text-muted); margin: 0; font-size: 0.95rem; }

/* ===================== CTA ===================== */
.section-cta h2 { max-width: 760px; margin-left: auto; margin-right: auto; }
.section-cta .lead { color: rgba(250,249,246,0.8); }

/* ===================== FORM ===================== */
.form-wrap { max-width: 820px; margin: 0 auto; }
.business-form { margin-top: 20px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 18px;
}
.form-field label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 600;
}
.form-field.full { margin-bottom: 20px; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(51, 61, 46,0.2);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--off-white);
  color: var(--text-dark);
  transition: border-color var(--transition);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-privacy {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 22px;
}
.form-success {
  display: none;
  margin-top: 18px;
  padding: 14px 18px;
  background: rgba(185,148,88,0.12);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--warm-coffee);
}
.form-success.show { display: block; }

/* ===================== CONTACT ===================== */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px 60px;
  margin: 50px 0 50px;
  text-align: center;
}
.contact-grid .contact-item { flex: 0 1 260px; }
.contact-item h3 { font-size: 1.1rem; color: var(--gold-light); }
.contact-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.contact-item p { color: rgba(250,249,246,0.85); margin: 0; }

/* ===================== FOOTER ===================== */
.site-footer {
  background: var(--espresso);
  color: rgba(250,249,246,0.75);
  padding-top: 70px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(250,249,246,0.1);
}
.footer-brand p { margin-top: 14px; font-size: 0.88rem; color: rgba(250,249,246,0.55); }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-content: start;
}
.footer-nav a { font-size: 0.88rem; color: rgba(250,249,246,0.75); }
.footer-nav a:hover { color: var(--gold); }
.footer-lang { display: flex; flex-direction: column; align-items: flex-end; gap: 16px; }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { font-size: 0.82rem; color: rgba(250,249,246,0.55); }
.footer-bottom {
  text-align: center;
  padding: 24px 0;
  font-size: 0.8rem;
  color: rgba(250,249,246,0.4);
}
.footer-credibility {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(250,249,246,0.1);
  border-top: 1px solid rgba(250,249,246,0.1);
  margin-top: 46px;
}
.footer-credibility-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 600;
}
.footer-credibility p {
  font-size: 0.85rem;
  color: rgba(250,249,246,0.65);
  margin: 0 0 8px;
  line-height: 1.5;
}
.footer-credibility p:last-child { margin-bottom: 0; }
.footer-ncnda p { color: rgba(250,249,246,0.55); font-size: 0.8rem; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }
  .grid-4, .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(3, 1fr); }
  .coffee-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-lang { align-items: flex-start; }
  .footer-credibility { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .section { padding: 76px 0; }
  .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .timeline-item::before { width: 60px; }
  .form-row { grid-template-columns: 1fr; }
  .route-diagram { flex-direction: column; }
  .route-connector { width: 1px; height: 40px; }
  .route-connector i { width: 2px; height: 24px; left: 0; top: -24px; animation: none; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .hero-inner { padding-top: 130px; }
}
