/* ==========================================================================
   Citrus design system (redesign 2026)
   Loaded after the legacy theme (app.css). Everything is namespaced `cf-`
   so legacy pages keep working until they are migrated.
   ========================================================================== */

:root {
  /* Brand: from the Citrus logo */
  --cf-green: #479C45;
  --cf-green-600: #3A8238;
  --cf-green-700: #2E6A2D;
  --cf-lime: #8BC53F;
  --cf-leaf: #009245;
  --cf-green-50: #EEF7EC;
  --cf-gradient: linear-gradient(135deg, #8BC53F 0%, #009245 100%);

  --cf-navy: #2B2350;
  --cf-navy-900: #1A1433;
  --cf-ink: #231F20;
  --cf-text: #3F3B4F;
  --cf-muted: #797687;

  --cf-bg: #FFFFFF;
  --cf-bg-soft: #F6F8F5;
  --cf-border: #E6E8EC;

  --cf-radius-sm: 8px;
  --cf-radius: 14px;
  --cf-radius-lg: 22px;
  --cf-shadow-sm: 0 1px 3px rgba(26, 20, 51, .06);
  --cf-shadow: 0 8px 30px rgba(26, 20, 51, .08);
  --cf-shadow-lg: 0 20px 50px rgba(26, 20, 51, .12);

  --cf-header-h: 72px;
  --cf-font: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

/* ---------- Layout ---------- */
.cf-container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.cf-section { padding: 96px 0; }
.cf-section--soft { background: var(--cf-bg-soft); }
.cf-section--navy { background: var(--cf-navy-900); color: #fff; }
@media (max-width: 767px) { .cf-section { padding: 64px 0; } }

.cf-eyebrow, .cf-section-head .cf-eyebrow, .cf-section-head p.cf-eyebrow {
  display: inline-block; font: 400 21px/1.3 'Satisfy', cursive; color: var(--cf-green); margin: 0 0 8px;
}

.cf-section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.cf-section-head--left { margin-left: 0; text-align: left; }
.cf-section-head h2, .cf-h2 {
  font: 700 clamp(28px, 3.2vw, 40px)/1.2 var(--cf-font); color: var(--cf-navy); margin: 0 0 16px;
}
.cf-section-head p { font: 400 17px/1.7 var(--cf-font); color: var(--cf-muted); margin: 0; }
.cf-section--navy .cf-section-head h2 { color: #fff; }
.cf-section--navy .cf-section-head p { color: rgba(255,255,255,.72); }

/* ---------- Buttons ---------- */
.cf-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 48px; padding: 0 24px; border-radius: 999px; border: 1.5px solid transparent;
  font: 600 15px/1 var(--cf-font); text-decoration: none !important; cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.cf-btn:hover { transform: translateY(-1px); }
.cf-btn--primary { background: var(--cf-green); color: #fff !important; box-shadow: 0 6px 18px rgba(71,156,69,.28); }
.cf-btn--primary:hover { background: var(--cf-green-600); }
.cf-btn--outline { border-color: var(--cf-border); color: var(--cf-navy) !important; background: #fff; }
.cf-btn--outline:hover { border-color: var(--cf-green); color: var(--cf-green-600) !important; }
.cf-btn--light { background: #fff; color: var(--cf-navy) !important; }
.cf-btn--sm { height: 40px; padding: 0 18px; font-size: 14px; }

.cf-link {
  display: inline-flex; align-items: center; gap: 6px;
  font: 600 15px/1 var(--cf-font); color: var(--accent, var(--cf-green)) !important; text-decoration: none !important;
}
.cf-link:hover { gap: 10px; }
.cf-link { transition: gap .2s; }

/* ---------- Header ---------- */
.cf-header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000; height: var(--cf-header-h);
  background: rgba(255,255,255,.96); backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid transparent; transition: box-shadow .2s, border-color .2s;
  font-family: var(--cf-font);
}
.cf-header.is-scrolled { border-color: var(--cf-border); box-shadow: var(--cf-shadow-sm); }
.cf-header__inner { height: 100%; display: flex; align-items: center; gap: 24px; }
.cf-header__logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none !important; flex-shrink: 0; }
.cf-header__logo img { height: 36px; width: auto; display: block; }
.cf-header__logo span { font: 700 22px/1 var(--cf-font); color: var(--cf-ink); letter-spacing: -.02em; }

.cf-nav { flex: 1; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.cf-nav__list { list-style: none; margin: 0 auto; padding: 0; display: flex; align-items: center; gap: 4px; }
.cf-nav__list > li { position: relative; }
.cf-nav__list > li > a, .cf-nav__trigger {
  display: inline-flex; align-items: center; gap: 6px; height: 40px; padding: 0 14px; border-radius: 999px;
  font: 500 15px/1 var(--cf-font); color: var(--cf-text) !important; text-decoration: none !important;
  background: none; border: 0; cursor: pointer; transition: color .15s, background .15s;
}
.cf-nav__list > li > a:hover, .cf-nav__trigger:hover, .cf-nav__list > li > a.is-active { color: var(--cf-green-600) !important; background: var(--cf-green-50); }
.cf-nav__trigger:focus { outline: none; }
.cf-nav__trigger:focus-visible { box-shadow: 0 0 0 2px var(--cf-green); }
.cf-nav__trigger svg { transition: transform .2s; }
.cf-nav__has-menu.is-expanded .cf-nav__trigger svg { transform: rotate(180deg); }

/* Products mega menu */
.cf-mega {
  position: absolute; top: calc(100% + 12px); left: 50%; width: 560px; padding: 12px;
  background: #fff; border: 1px solid var(--cf-border); border-radius: var(--cf-radius); box-shadow: var(--cf-shadow-lg);
  opacity: 0; visibility: hidden; transform: translate(-50%, 6px); transition: opacity .18s, transform .18s, visibility .18s;
}
.cf-mega::before { content: ''; position: absolute; left: 0; right: 0; top: -14px; height: 14px; } /* hover bridge */
.cf-nav__has-menu.is-expanded .cf-mega { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.cf-mega__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.cf-mega__item {
  display: flex; gap: 12px; padding: 12px; border-radius: 10px; text-decoration: none !important; transition: background .15s;
}
.cf-mega__item:hover { background: var(--cf-bg-soft); }
.cf-mega__icon {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center;
  color: var(--accent); background: color-mix(in srgb, var(--accent) 12%, #fff);
}
.cf-mega__item strong { display: block; font: 600 15px/1.3 var(--cf-font); color: var(--cf-navy); }
.cf-mega__item small { display: block; font: 400 13px/1.4 var(--cf-font); color: var(--cf-muted); margin-top: 2px; }
.cf-mega__ext { font-style: normal; color: var(--cf-muted); font-size: 12px; }
.cf-mega__all {
  display: block; margin-top: 8px; padding: 12px; border-top: 1px solid var(--cf-border);
  font: 600 14px/1 var(--cf-font); color: var(--cf-green-600) !important; text-decoration: none !important;
}

.cf-header__toggle { display: none; }

@media (max-width: 991px) {
  /* backdrop-filter would make the header the containing block of the fixed mobile nav */
  .cf-header { background: #fff; backdrop-filter: none; -webkit-backdrop-filter: none; }
  .cf-header__toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    margin-left: auto; width: 44px; height: 44px; padding: 10px; border: 0; background: none; cursor: pointer;
  }
  .cf-header__toggle span { display: block; height: 2px; background: var(--cf-ink); border-radius: 2px; transition: transform .2s, opacity .2s; }
  .cf-header.is-open .cf-header__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .cf-header.is-open .cf-header__toggle span:nth-child(2) { opacity: 0; }
  .cf-header.is-open .cf-header__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .cf-nav {
    position: fixed; top: var(--cf-header-h); left: 0; right: 0; bottom: 0; background: #fff;
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 16px; padding: 16px 20px 32px;
    overflow-y: auto; transform: translateX(100%); transition: transform .25s ease;
  }
  .cf-header.is-open .cf-nav { transform: none; }
  .cf-nav__list { flex-direction: column; align-items: stretch; margin: 0; gap: 0; }
  .cf-nav__list > li { border-bottom: 1px solid var(--cf-border); }
  .cf-nav__list > li > a, .cf-nav__trigger { width: 100%; height: 56px; padding: 0 4px; border-radius: 0; justify-content: space-between; font-size: 17px; }
  .cf-nav__list > li > a:hover, .cf-nav__trigger:hover, .cf-nav__list > li > a.is-active { background: none; }
  .cf-mega {
    position: static; width: auto; padding: 0 0 12px; border: 0; box-shadow: none; transform: none;
    display: none; opacity: 1; visibility: visible;
  }
  .cf-nav__has-menu.is-expanded .cf-mega { display: block; transform: none; }
  .cf-mega::before { display: none; }
  .cf-mega__grid { grid-template-columns: 1fr; }
  .cf-nav__cta { width: 100%; }
}

/* ---------- Footer ---------- */
.cf-footer { background: var(--cf-navy-900); color: rgba(255,255,255,.72); padding: 80px 0 0; font-family: var(--cf-font); }
.cf-footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1.1fr 1.1fr 1.3fr; gap: 36px; }
.cf-footer__logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none !important; margin-bottom: 18px; }
.cf-footer__logo img { height: 36px; width: auto; display: block; }
.cf-footer__logo span { font: 700 22px/1 var(--cf-font); color: #fff; }
.cf-footer__brand p, .cf-footer__address { font: 400 14px/1.7 var(--cf-font); color: rgba(255,255,255,.64); margin: 0 0 20px; }
.cf-footer__address b { color: #fff; font-weight: 600; }
.cf-footer__title { font: 600 15px/1 var(--cf-font); color: #fff; margin: 6px 0 20px; }
.cf-footer__menu { list-style: none; margin: 0; padding: 0; }
.cf-footer__menu li { margin-bottom: 12px; }
.cf-footer__menu a { font: 400 14px/1.4 var(--cf-font); color: rgba(255,255,255,.72) !important; text-decoration: none !important; transition: color .15s; }
.cf-footer__menu a:hover { color: var(--cf-lime) !important; }
.cf-footer__social { list-style: none; margin: 0; padding: 0; display: flex; gap: 10px; }
.cf-footer__social a {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.08); color: #fff !important; transition: background .15s;
}
.cf-footer__social a:hover { background: var(--cf-green); }
.cf-footer__bottom { margin-top: 56px; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.1); }
.cf-footer__bottom p { margin: 0; font: 400 13px/1.6 var(--cf-font); color: rgba(255,255,255,.56); }
.cf-footer__bottom a { color: #fff !important; }
@media (max-width: 991px) { .cf-footer__grid { grid-template-columns: 1fr 1fr; } .cf-footer__brand { grid-column: 1 / -1; } }
@media (max-width: 575px) { .cf-footer__grid { grid-template-columns: 1fr; } }

/* ---------- Hero ---------- */
.cf-hero {
  position: relative; overflow: hidden; padding: calc(var(--cf-header-h) + 72px) 0 96px;
  background:
    radial-gradient(900px 480px at 85% 10%, rgba(139,197,63,.18), transparent 60%),
    radial-gradient(700px 420px at 0% 100%, rgba(43,35,80,.07), transparent 60%),
    #fff;
  font-family: var(--cf-font);
}
.cf-hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.cf-hero__badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px 6px 6px; border-radius: 999px;
  background: var(--cf-green-50); color: var(--cf-green-700); font: 500 14px/1.2 var(--cf-font); margin-bottom: 24px;
}
.cf-hero__badge { text-decoration: none !important; }
.cf-hero__badge b { display: inline-flex; align-items: center; gap: 4px; padding: 4px 10px; border-radius: 999px; background: var(--cf-navy); color: #fff; font-weight: 600; font-size: 12px; }
.cf-hero__badge b svg { color: #8BC53F; }
.cf-ai-tag { font-style: normal; margin-left: 2px; padding: 2px 6px; border-radius: 6px; font: 700 10px/1.2 var(--cf-font); letter-spacing: .04em; color: #fff; background: linear-gradient(120deg, #2B2350, #0E7490); }
.cf-hero h1 {
  font: 700 clamp(34px, 4.4vw, 54px)/1.15 var(--cf-font); color: var(--cf-navy); margin: 0 0 22px;
}
.cf-hero h1 em { font-style: normal; background: var(--cf-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cf-hero__lead { font: 400 18px/1.7 var(--cf-font); color: var(--cf-muted); margin: 0 0 32px; max-width: 560px; }
.cf-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cf-hero__visual { position: relative; display: flex; justify-content: center; }
.cf-hero__art { position: relative; z-index: 1; display: block; width: 100%; max-width: 540px; height: auto; }
.cf-hero__chip {
  position: absolute; z-index: 2; display: flex; align-items: center; gap: 10px; padding: 10px 14px;
  background: #fff; border-radius: 12px; box-shadow: var(--cf-shadow); font: 600 13px/1.2 var(--cf-font); color: var(--cf-navy);
  animation: cf-float 5s ease-in-out infinite;
}
.cf-hero__chip span { width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; color: var(--accent); background: color-mix(in srgb, var(--accent) 12%, #fff); }
.cf-hero__chip--1 { top: 8%; left: 0; }
.cf-hero__chip--2 { top: 30%; right: -4%; animation-delay: -1.2s; }
.cf-hero__chip--3 { bottom: 22%; left: -4%; animation-delay: -2.4s; }
.cf-hero__chip--4 { bottom: 4%; right: 4%; animation-delay: -3.6s; }
@keyframes cf-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@media (prefers-reduced-motion: reduce) { .cf-hero__chip { animation: none; } }
@media (max-width: 991px) {
  .cf-hero { padding-top: calc(var(--cf-header-h) + 40px); }
  .cf-hero__grid { grid-template-columns: 1fr; }
  .cf-hero__visual { margin-top: 16px; }
}
@media (max-width: 575px) {
  .cf-hero__chip { font-size: 12px; padding: 8px 10px; }
  .cf-hero__chip--2, .cf-hero__chip--4 { right: 0; }
  .cf-hero__chip--3 { left: 0; }
}

/* ---------- Product suite cards ---------- */
.cf-products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cf-product {
  position: relative; display: flex; flex-direction: column; padding: 28px 24px 24px;
  background: #fff; border: 1px solid var(--cf-border); border-radius: var(--cf-radius-lg);
  transition: transform .25s, box-shadow .25s, border-color .25s; font-family: var(--cf-font);
}
.cf-product:hover { transform: translateY(-4px); box-shadow: var(--cf-shadow-lg); border-color: #D5E6D3; }
.cf-product__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.cf-product__icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  color: color-mix(in srgb, var(--accent) 75%, var(--cf-navy)); background: color-mix(in srgb, var(--accent) 8%, #F7F8F6);
}
.cf-badge {
  display: inline-flex; align-items: center; gap: 6px; padding: 5px 10px; border-radius: 999px;
  font: 600 12px/1 var(--cf-font); background: var(--cf-green-50); color: var(--cf-green-700);
}
.cf-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.cf-badge--new { background: #E6F7FB; color: #0B7A94; }
.cf-product h3 { font: 600 21px/1.25 var(--cf-font); color: var(--cf-navy); margin: 0 0 6px; }
.cf-product__tagline { font: 600 14px/1.4 var(--cf-font); color: var(--cf-green-700); margin: 0 0 12px; }
.cf-product__desc { font: 400 14.5px/1.65 var(--cf-font); color: var(--cf-muted); margin: 0 0 18px; }
.cf-checks { list-style: none; margin: 0 0 24px; padding: 0; }
.cf-checks li { position: relative; padding-left: 26px; margin-bottom: 10px; font: 500 14px/1.5 var(--cf-font); color: var(--cf-text); }
.cf-checks li::before {
  content: ''; position: absolute; left: 0; top: 3px; width: 16px; height: 16px; border-radius: 50%;
  background: color-mix(in srgb, var(--accent, var(--cf-green)) 15%, #fff);
}
.cf-checks li::after {
  content: ''; position: absolute; left: 5px; top: 7px; width: 6px; height: 4px;
  border-left: 1.8px solid var(--accent, var(--cf-green)); border-bottom: 1.8px solid var(--accent, var(--cf-green)); transform: rotate(-45deg);
}
.cf-product__foot { margin-top: auto; display: flex; flex-direction: column; align-items: stretch; gap: 14px; padding-top: 18px; border-top: 1px solid var(--cf-border); }
.cf-product__foot .cf-btn { order: -1; width: 100%; }
.cf-product__foot .cf-link { justify-content: center; }
.cf-link { white-space: nowrap; }
@media (max-width: 1100px) { .cf-products { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .cf-products { grid-template-columns: 1fr; } }

/* ---------- Feature cards (icon + title + text) ---------- */
.cf-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 991px) { .cf-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .cf-grid-3 { grid-template-columns: 1fr; } }
.cf-feature {
  padding: 28px; background: #fff; border: 1px solid var(--cf-border); border-radius: var(--cf-radius);
  font-family: var(--cf-font); transition: box-shadow .2s, transform .2s;
}
.cf-feature:hover { box-shadow: var(--cf-shadow); transform: translateY(-2px); }
.cf-feature__icon { width: 56px; height: 56px; border-radius: 14px; background: var(--cf-green-50); display: grid; place-items: center; margin-bottom: 20px; }
.cf-feature__icon img { max-width: 36px; max-height: 36px; }
.cf-feature h3 { font: 600 19px/1.35 var(--cf-font); color: var(--cf-navy); margin: 0 0 10px; }
.cf-feature h3 a { color: inherit !important; text-decoration: none !important; }
.cf-feature p { font: 400 15px/1.7 var(--cf-font); color: var(--cf-muted); margin: 0; }
.cf-feature .cf-link { margin-top: 18px; }

/* ---------- Split (text + media) ---------- */
.cf-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 991px) { .cf-split { grid-template-columns: 1fr; gap: 40px; } }
.cf-split__media { position: relative; display: flex; justify-content: center; }
.cf-split__media img { max-width: 100%; height: auto; }

/* Steps (how to book) */
.cf-steps { list-style: none; margin: 0; padding: 0; counter-reset: step; }
.cf-step {
  display: flex; gap: 18px; padding: 20px; margin-bottom: 12px; border-radius: var(--cf-radius);
  border: 1px solid transparent; cursor: pointer; transition: background .2s, border-color .2s; font-family: var(--cf-font);
}
.cf-step:hover { background: var(--cf-bg-soft); }
.cf-step.is-active { background: #fff; border-color: var(--cf-border); box-shadow: var(--cf-shadow); }
.cf-step__num {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  font: 700 16px/1 var(--cf-font); background: var(--cf-green-50); color: var(--cf-green-700);
}
.cf-step.is-active .cf-step__num { background: var(--cf-green); color: #fff; }
.cf-step h3 { font: 600 18px/1.3 var(--cf-font); color: var(--cf-navy); margin: 8px 0 6px; }
.cf-step p { font: 400 15px/1.65 var(--cf-font); color: var(--cf-muted); margin: 0; }
.cf-step:focus { outline: none; }
.cf-step:focus-visible { border-color: var(--cf-green); }

/* Services / link cards */
.cf-link-card {
  display: flex; align-items: center; gap: 20px; padding: 24px; border-radius: var(--cf-radius);
  background: #fff; border: 1px solid var(--cf-border); text-decoration: none !important; font-family: var(--cf-font);
  transition: box-shadow .2s, border-color .2s;
}
.cf-link-card:hover { box-shadow: var(--cf-shadow); border-color: var(--cf-green); }
.cf-link-card img { width: 64px; height: 64px; object-fit: contain; flex-shrink: 0; }
.cf-link-card h3 { font: 600 19px/1.3 var(--cf-font); color: var(--cf-navy); margin: 0 0 4px; }
.cf-link-card p { font: 400 14.5px/1.6 var(--cf-font); color: var(--cf-muted); margin: 0; }
.cf-link-card__arrow { margin-left: auto; font-size: 22px; color: var(--cf-green); }
.cf-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 767px) { .cf-grid-2 { grid-template-columns: 1fr; } }

/* Routes */
.cf-routes { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 28px 0 32px; padding: 0; list-style: none; }
.cf-routes li {
  display: flex; align-items: center; gap: 10px; padding: 14px 16px; border-radius: 12px; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1); font: 500 15px/1.3 var(--cf-font); color: #fff;
}
.cf-routes li::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--cf-lime); flex-shrink: 0; }
.cf-section--navy .cf-h2 { color: #fff; }
.cf-section--navy .cf-eyebrow, .cf-section--navy .cf-section-head .cf-eyebrow { color: var(--cf-lime); }

/* Clients + testimonials */
.cf-logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 24px 48px; margin-bottom: 56px; }
.cf-logos img { height: 64px; width: auto; filter: grayscale(1); opacity: .7; transition: filter .2s, opacity .2s; }
.cf-logos img:hover { filter: none; opacity: 1; }
.cf-quotes { display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 48px) / 3); gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 12px; }
@media (max-width: 991px) { .cf-quotes { grid-auto-columns: 80%; } }
.cf-quote {
  scroll-snap-align: start; display: flex; flex-direction: column; padding: 28px; border-radius: var(--cf-radius);
  background: #fff; border: 1px solid var(--cf-border); font-family: var(--cf-font);
}
.cf-quote__stars { color: #F5B301; letter-spacing: 2px; margin-bottom: 14px; font-size: 14px; }
.cf-quote p { font: 400 15px/1.75 var(--cf-font); color: var(--cf-text); margin: 0 0 22px; flex: 1; }
.cf-quote__who { display: flex; align-items: center; gap: 12px; }
.cf-quote__who img { width: 44px; height: 44px; border-radius: 50%; object-fit: contain; background: var(--cf-bg-soft); }
.cf-quote__who strong { display: block; font: 600 15px/1.3 var(--cf-font); color: var(--cf-navy); }
.cf-quote__who span { font: 400 13px/1.4 var(--cf-font); color: var(--cf-muted); }

/* App download band */
.cf-app-band {
  display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 40px; padding: 48px 56px;
  border-radius: 28px; background: #fff; border: 1px solid #DDEBDA; overflow: hidden; font-family: var(--cf-font);
  background-image: radial-gradient(600px 300px at 100% 100%, rgba(139,197,63,.16), transparent 70%);
}
.cf-app-band h2 { font: 700 clamp(26px, 3vw, 36px)/1.2 var(--cf-font); color: var(--cf-navy); margin: 0 0 14px; }
.cf-app-band p { font: 400 17px/1.7 var(--cf-font); color: var(--cf-muted); margin: 0 0 28px; }
.cf-app-band__media { display: flex; justify-content: center; }
.cf-app-band__media img { width: 100%; max-width: 420px; height: auto; display: block; }
@media (max-width: 767px) { .cf-app-band { grid-template-columns: 1fr; padding: 32px 22px; gap: 24px; } }

/* Closing CTA */
.cf-cta { text-align: center; padding: 72px 24px; border-radius: 28px; background: var(--cf-navy-900); position: relative; overflow: hidden; font-family: var(--cf-font); }
.cf-cta::after { content: ''; position: absolute; width: 520px; height: 520px; border-radius: 50%; background: var(--cf-gradient); opacity: .18; right: -160px; top: -220px; }
.cf-cta > * { position: relative; z-index: 1; }
.cf-cta h2 { font: 700 clamp(26px, 3.2vw, 40px)/1.2 var(--cf-font); color: #fff; margin: 0 0 14px; }
.cf-cta p { font: 400 17px/1.7 var(--cf-font); color: rgba(255,255,255,.72); margin: 0 auto 30px; max-width: 560px; }
.cf-cta__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.cf-cta .cf-btn--outline { background: transparent; color: #fff !important; border-color: rgba(255,255,255,.3); }
.cf-cta .cf-btn--outline:hover { border-color: #fff; }

/* Scroll reveal (progressive: content is visible without JS/SSR) */
.cf-js .cf-reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.cf-js .cf-reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .cf-js .cf-reveal { opacity: 1; transform: none; transition: none; } }
.cf-header__toggle:focus { outline: none; }
.cf-header__toggle:focus-visible { outline: 2px solid var(--cf-green); outline-offset: 2px; border-radius: 8px; }

/* ---------- Product UI mockups (sample data) ---------- */
.cf-mock {
  --mock-teal: #1F8A70; --mock-blue: #2F5BEA; --mock-green: #1E9E57; --mock-amber: #D97706;
  width: 100%; max-width: 560px; background: #F4F7FA; border: 1px solid var(--cf-border); border-radius: 16px;
  box-shadow: var(--cf-shadow-lg); overflow: hidden; font: 400 12px/1.4 var(--cf-font); color: #1E293B; text-align: left;
}
.cf-mock__bar { display: flex; align-items: center; gap: 14px; padding: 10px 14px; background: #fff; border-bottom: 1px solid var(--cf-border); }
.cf-mock__dots { display: flex; gap: 5px; }
.cf-mock__dots i { width: 9px; height: 9px; border-radius: 50%; background: #E2E8F0; }
.cf-mock__app { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 13px; }
.cf-mock__logo { width: 24px; height: 24px; border-radius: 7px; display: grid; place-items: center; background: linear-gradient(135deg, #2BB08A, var(--mock-teal)); color: #fff; }
.cf-mock__body { padding: 16px; }
.cf-mock__h { display: flex; justify-content: space-between; align-items: baseline; font-weight: 700; font-size: 15px; margin-bottom: 12px; }
.cf-mock__h small { font-weight: 400; font-size: 11px; color: #64748B; }
.cf-mock__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 12px; }
.cf-mock__stat { background: #fff; border: 1px solid #E5EAF0; border-radius: 10px; padding: 10px; }
.cf-mock__stat strong { display: block; font-size: 18px; line-height: 1.2; }
.cf-mock__stat span { font-size: 10.5px; color: #64748B; }
.cf-mock__stats--tight .cf-mock__stat strong { font-size: 16px; }
.cf-mock__stat[data-tone="blue"] strong { color: var(--mock-blue); }
.cf-mock__stat[data-tone="green"] strong { color: var(--mock-green); }
.cf-mock__stat[data-tone="amber"] strong { color: var(--mock-amber); }
.cf-mock__stat[data-tone="blue"] { background: #F0F6FF; }
.cf-mock__stat[data-tone="green"] { background: #EFFAF3; }
.cf-mock__table { background: #fff; border: 1px solid #E5EAF0; border-radius: 10px; overflow: hidden; }
.cf-mock__row { display: grid; grid-template-columns: 1.4fr 1.2fr .9fr 1fr; gap: 8px; align-items: center; padding: 9px 12px; border-top: 1px solid #EEF2F6; }
.cf-mock__row--3 { grid-template-columns: 1fr 1fr 1fr; }
.cf-mock__row--head { border-top: 0; background: #F8FAFC; font-weight: 600; color: #475569; }
.cf-mock__row small { display: block; font-size: 10px; color: #94A3B8; }
.cf-mock__link { color: var(--mock-blue); font-weight: 600; font-family: ui-monospace, 'SFMono-Regular', Menlo, monospace; font-size: 11.5px; }
.cf-mock__warn { color: var(--mock-amber); font-weight: 500; }
.cf-mock__ok { color: var(--mock-green) !important; }
.cf-mock__pill { font-style: normal; font-weight: 600; font-size: 10.5px; padding: 3px 8px; border-radius: 6px; background: #E8EEFF; color: var(--mock-blue); white-space: nowrap; }
.cf-mock__pill.is-ok { background: #E6F7EC; color: var(--mock-green); }
.cf-mock__banner { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 14px 16px; border-radius: 12px; margin-bottom: 12px; color: #fff; background: linear-gradient(120deg, #1C7A6E, #26995A); }
.cf-mock__banner small { display: block; font-size: 9.5px; letter-spacing: .08em; opacity: .85; }
.cf-mock__banner strong { display: block; font-size: 20px; font-family: ui-monospace, 'SFMono-Regular', Menlo, monospace; }
.cf-mock__banner span { font-size: 11px; opacity: .9; }
.cf-mock__progress { text-align: right; font-weight: 600; font-size: 11.5px; min-width: 120px; }
.cf-mock__progress i { display: block; height: 6px; margin-top: 6px; border-radius: 6px; background: rgba(0,0,0,.2); }
.cf-mock__progress b { display: block; height: 100%; border-radius: 6px; background: #fff; }
.cf-mock__timeline { list-style: none; margin: 0; padding: 0 0 0 18px; position: relative; }
.cf-mock__timeline::before { content: ''; position: absolute; left: 6px; top: 8px; bottom: 18px; width: 2px; background: #CFE7DD; }
.cf-mock__timeline li { position: relative; margin-bottom: 8px; background: #fff; border: 1px solid #E5EAF0; border-radius: 10px; padding: 9px 12px; }
.cf-mock__timeline li::before { content: ''; position: absolute; left: -18px; top: 12px; width: 12px; height: 12px; border-radius: 50%; border: 2px solid var(--mock-teal); background: #fff; }
.cf-mock__timeline li.is-done { background: #F0FBF5; border-color: #D3EFDF; }
.cf-mock__timeline li.is-done::before { background: var(--mock-teal); }
.cf-mock__ms { display: flex; justify-content: space-between; gap: 10px; }
.cf-mock__ms b { display: block; font-size: 12.5px; }
.cf-mock__ms small { color: #64748B; font-size: 10.5px; }
.cf-mock__times { text-align: right; font-size: 10.5px; color: #64748B; white-space: nowrap; }
.cf-mock__times span { display: block; }
.cf-mock__times b { color: #1E293B; font-weight: 500; }
.cf-mock__log { margin-top: 7px; padding: 6px 9px; border-radius: 7px; background: #fff; border: 1px solid #E5EAF0; font-size: 10.5px; }
.cf-mock__spark { display: block; width: 100%; height: 70px; margin-bottom: 12px; background: #fff; border: 1px solid #E5EAF0; border-radius: 10px; }
.cf-mock__sparkline { fill: none; stroke: var(--mock-green); stroke-width: 2.2; vector-effect: non-scaling-stroke; }
.cf-mock__setline { stroke: var(--mock-blue); stroke-dasharray: 4 4; stroke-width: 1; vector-effect: non-scaling-stroke; }
.cf-mock__pos { padding: 12px 14px; border-radius: 10px; margin-bottom: 12px; background: linear-gradient(120deg, #EEF0FF, #F6F0FF); border: 1px solid #DCDDFB; }
.cf-mock__pos b { display: block; color: #3F4FD8; font-size: 14px; }
.cf-mock__pos span { display: block; font-weight: 600; margin-top: 2px; }
.cf-mock__pos small { color: #64748B; }
.cf-mock__map { display: block; width: 100%; height: 190px; border-radius: 10px; }
.cf-mock__sea { fill: #9FD6EE; }
.cf-mock__land { fill: #E5F1DF; stroke: #CFE3C6; }
.cf-mock__route { fill: none; stroke: #3F4FD8; stroke-width: 2; stroke-dasharray: 5 5; }
.cf-mock__port { fill: #fff; stroke: #3F4FD8; stroke-width: 2; }
.cf-mock__pin { fill: #E23B3B; stroke: #fff; stroke-width: 2; }
.cf-mock__pulse { fill: rgba(226,59,59,.18); animation: cf-pulse 2s ease-out infinite; transform-origin: center; transform-box: fill-box; }
@keyframes cf-pulse { 0% { transform: scale(.6); opacity: 1; } 100% { transform: scale(1.6); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .cf-mock__pulse { animation: none; } }
.cf-mock__label { font: 600 9px var(--cf-font); fill: #334155; }
.cf-mock__note { margin: 10px 0 0; text-align: center; font: 400 12px/1 var(--cf-font); color: var(--cf-muted); }
@media (max-width: 575px) {
  .cf-mock__stats { grid-template-columns: repeat(2, 1fr); }
  .cf-mock__row { grid-template-columns: 1.3fr 1fr 1fr; }
  .cf-mock__row > span:nth-child(2) { display: none; }
  .cf-mock__row--3 > span:nth-child(2) { display: block; }
  .cf-mock__row--3 { grid-template-columns: 1fr 1fr 1fr; }
}

/* ---------- Product pages ---------- */
.cf-page-hero {
  padding: calc(var(--cf-header-h) + 64px) 0 80px; font-family: var(--cf-font);
  background: radial-gradient(800px 420px at 90% 0%, color-mix(in srgb, var(--accent, var(--cf-green)) 14%, transparent), transparent 60%), #fff;
}
.cf-page-hero .cf-hero__grid { grid-template-columns: 1fr 1fr; }
.cf-page-hero h1 { font: 700 clamp(32px, 3.8vw, 48px)/1.18 var(--cf-font); color: var(--cf-navy); margin: 0 0 20px; }
.cf-product-kicker { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 20px; font: 600 16px/1 var(--cf-font); color: var(--cf-navy); }
.cf-product-kicker .cf-product__icon { width: 40px; height: 40px; border-radius: 11px; }
.cf-breadcrumb { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 22px; padding: 0; font: 400 13px/1 var(--cf-font); color: var(--cf-muted); }
.cf-breadcrumb li + li::before { content: '/'; margin-right: 8px; color: #C4C2CE; }
.cf-breadcrumb a { color: var(--cf-muted) !important; text-decoration: none !important; }
.cf-breadcrumb a:hover { color: var(--cf-green-600) !important; }
.cf-grid-3 .cf-feature__icon--accent { background: color-mix(in srgb, var(--accent) 12%, #fff); color: var(--accent); }
.cf-showcase + .cf-showcase { margin-top: 96px; }
.cf-showcase .cf-checks { margin-top: 20px; }
.cf-showcase--flip .cf-split__media { order: -1; }
@media (max-width: 991px) { .cf-showcase--flip .cf-split__media { order: 0; } .cf-page-hero .cf-hero__grid { grid-template-columns: 1fr; } }
.cf-numbered { counter-reset: n; }
.cf-numbered .cf-feature::before {
  counter-increment: n; content: counter(n); display: grid; place-items: center; width: 40px; height: 40px; margin-bottom: 16px;
  border-radius: 50%; background: var(--accent, var(--cf-green)); color: #fff; font: 700 16px/1 var(--cf-font);
}
.cf-faq { max-width: 820px; margin: 0 auto; }
.cf-faq details { border-bottom: 1px solid var(--cf-border); padding: 20px 4px; font-family: var(--cf-font); }
.cf-faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 16px; font: 600 17px/1.4 var(--cf-font); color: var(--cf-navy); }
.cf-faq summary::-webkit-details-marker { display: none; }
.cf-faq summary::after { content: '+'; font-size: 22px; line-height: 1; color: var(--cf-green); transition: transform .2s; }
.cf-faq details[open] summary::after { transform: rotate(45deg); }
.cf-faq p { margin: 12px 0 0; font: 400 15.5px/1.7 var(--cf-font); color: var(--cf-muted); }
.cf-audience { display: flex; gap: 14px; align-items: flex-start; margin: 0 0 28px; padding: 16px 18px; border-radius: 12px; background: var(--cf-bg-soft); font: 400 15px/1.6 var(--cf-font); color: var(--cf-text); }
.cf-audience b { color: var(--cf-navy); }
.cf-page-hero__head { max-width: 760px; margin-bottom: 0; }
.cf-page-hero__head h1 { font: 700 clamp(32px, 3.8vw, 48px)/1.18 var(--cf-font); color: var(--cf-navy); margin: 0 0 18px; }

/* Products flow */
.cf-flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 991px) { .cf-flow { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .cf-flow { grid-template-columns: 1fr; } }
.cf-flow__step {
  position: relative; display: flex; flex-direction: column; gap: 12px; padding: 26px 22px; border-radius: var(--cf-radius-lg);
  background: #fff; border: 1px solid var(--cf-border); text-decoration: none !important; font-family: var(--cf-font);
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.cf-flow__step:hover { box-shadow: var(--cf-shadow); transform: translateY(-3px); border-color: color-mix(in srgb, var(--accent) 35%, var(--cf-border)); }
.cf-flow__num { position: absolute; top: 20px; right: 22px; font: 700 28px/1 var(--cf-font); color: color-mix(in srgb, var(--accent) 22%, #fff); }
.cf-flow__step .cf-product__icon { width: 48px; height: 48px; }
.cf-flow__step h3 { font: 600 19px/1.3 var(--cf-font); color: var(--cf-navy); margin: 4px 0 0; }
.cf-flow__step p { font: 400 14.5px/1.65 var(--cf-font); color: var(--cf-muted); margin: 0; flex: 1; }
.cf-showcase__text { margin-bottom: 0; }
.cf-btn--accent { background: var(--accent, var(--cf-green)); box-shadow: 0 6px 18px color-mix(in srgb, var(--accent, var(--cf-green)) 30%, transparent); }
.cf-btn--accent:hover { background: color-mix(in srgb, var(--accent, var(--cf-green)) 85%, #000); }
.cf-feature--accent { border-top: 3px solid var(--accent, var(--cf-green)); }
.cf-audience { display: block; }
product-mockup { display: block; width: 100%; max-width: 560px; }
.cf-mock { max-width: none; }

/* ---------- Store badges ---------- */
.cf-stores { display: flex; flex-wrap: wrap; gap: 12px; }
.cf-store {
  display: inline-flex; align-items: center; gap: 10px; height: 52px; padding: 0 18px 0 14px; border-radius: 12px;
  background: #0B0B0F; color: #fff !important; text-decoration: none !important; border: 1px solid #0B0B0F;
  font-family: var(--cf-font); transition: transform .2s, box-shadow .2s;
}
.cf-store:hover { transform: translateY(-2px); box-shadow: var(--cf-shadow); }
.cf-store span { display: flex; flex-direction: column; font: 600 17px/1.1 var(--cf-font); letter-spacing: -.01em; }
.cf-store small { font: 500 10px/1.2 var(--cf-font); letter-spacing: .04em; opacity: .85; }
.cf-stores--light .cf-store { background: #fff; color: var(--cf-ink) !important; border-color: #fff; }

/* Cards stay on the Citrus palette: product colour only tints the icon */
.cf-product .cf-checks li::before, .cf-flow__step .cf-checks li::before { background: var(--cf-green-50); }
.cf-product .cf-checks li::after { border-color: var(--cf-green); }
.cf-product .cf-link, .cf-flow__step .cf-link { color: var(--cf-green-600) !important; }
.cf-flow__num { color: #E3E8E1 !important; }
.cf-flow__step:hover { border-color: #D5E6D3 !important; }
.cf-badge--new { background: var(--cf-green-50); color: var(--cf-green-700); }
.cf-cta .cf-stores { justify-content: center; }

/* ---------- Services ---------- */
.cf-mega__icon { color: color-mix(in srgb, var(--accent, #479C45) 75%, var(--cf-navy)); background: color-mix(in srgb, var(--accent, #479C45) 8%, #F7F8F6); }
.cf-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 991px) { .cf-services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .cf-services { grid-template-columns: 1fr; } }
.cf-service {
  display: flex; flex-direction: column; gap: 10px; padding: 28px; border-radius: var(--cf-radius-lg); background: #fff;
  border: 1px solid var(--cf-border); text-decoration: none !important; font-family: var(--cf-font); transition: box-shadow .2s, transform .2s, border-color .2s;
}
.cf-service:hover { box-shadow: var(--cf-shadow); transform: translateY(-3px); border-color: #D5E6D3; }
.cf-service__icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--cf-green-50); color: var(--cf-green-700); flex-shrink: 0; }
.cf-service h3 { font: 600 19px/1.3 var(--cf-font); color: var(--cf-navy); margin: 8px 0 0; }
.cf-service p { font: 400 14.5px/1.65 var(--cf-font); color: var(--cf-muted); margin: 0; flex: 1; }
.cf-service .cf-link { color: var(--cf-green-600) !important; margin-top: 6px; }

.cf-glance { width: 100%; max-width: 440px; padding: 28px; border-radius: var(--cf-radius-lg); background: #fff; border: 1px solid var(--cf-border); box-shadow: var(--cf-shadow-lg); font-family: var(--cf-font); }
.cf-glance__head { display: flex; align-items: center; gap: 14px; padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid var(--cf-border); }
.cf-glance__head strong { display: block; font: 600 20px/1.2 var(--cf-font); color: var(--cf-navy); }
.cf-glance__head small { font: 500 14px/1.4 var(--cf-font); color: var(--cf-green-700); }
.cf-glance .cf-checks { margin-bottom: 20px; }
.cf-glance__foot { margin: 0; padding: 12px 14px; border-radius: 10px; background: var(--cf-bg-soft); font: 500 13.5px/1.4 var(--cf-font); color: var(--cf-text); }
.cf-page-hero__head .cf-hero__actions { margin-top: 28px; }
.cf-page-hero .cf-eyebrow + h1 { margin-top: 0; }

.cf-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.cf-chip {
  display: inline-flex; align-items: center; padding: 12px 18px; border-radius: 999px; background: #fff; border: 1px solid var(--cf-border);
  font: 500 14.5px/1.2 var(--cf-font); color: var(--cf-navy) !important; text-decoration: none !important; transition: border-color .2s, color .2s;
}
.cf-chip:hover { border-color: var(--cf-green); color: var(--cf-green-700) !important; }

.cf-cities { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 991px) { .cf-cities { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .cf-cities { grid-template-columns: 1fr; } }
.cf-city { padding: 24px; border-radius: var(--cf-radius); border: 1px solid var(--cf-border); background: #fff; font-family: var(--cf-font); }
.cf-city h3 { font: 600 18px/1.3 var(--cf-font); color: var(--cf-navy); margin: 0 0 14px; }
.cf-city ul { list-style: none; margin: 0; padding: 0; }
.cf-city li { margin-bottom: 10px; }
.cf-city a { font: 400 14px/1.45 var(--cf-font); color: var(--cf-text) !important; text-decoration: none !important; }
.cf-city a:hover { color: var(--cf-green-700) !important; }

/* ---------- Phone stack (app screenshot + floating card) ---------- */
.cf-phone-stack { position: relative; display: inline-block; padding: 24px 64px 24px 0; }
.cf-phone-stack::before { content: ''; position: absolute; inset: 12% 8% 8% 12%; border-radius: 40px; background: var(--cf-gradient); opacity: .12; z-index: 0; }
.cf-phone-stack__phone { position: relative; z-index: 1; display: block; width: 240px; height: auto; filter: drop-shadow(0 24px 40px rgba(26,20,51,.16)); }
.cf-phone-stack__card { position: absolute; z-index: 2; right: 0; bottom: 18%; width: 150px; height: auto; border-radius: 14px; box-shadow: var(--cf-shadow-lg); }
.cf-phone-stack--left { padding: 24px 0 24px 64px; }
.cf-phone-stack--left .cf-phone-stack__card { right: auto; left: 0; }
@media (max-width: 575px) {
  .cf-phone-stack { padding-right: 48px; }
  .cf-phone-stack--left { padding: 24px 0 24px 48px; }
  .cf-phone-stack__phone { width: 200px; }
  .cf-phone-stack__card { width: 120px; }
}
.cf-showcase .cf-link { margin-top: 4px; }
.cf-inline-points { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 20px; margin: 22px 0 0; padding: 0; font: 500 14px/1.4 var(--cf-font); color: var(--cf-text); }
.cf-inline-points li::before { content: '✓'; color: var(--cf-green); font-weight: 700; margin-right: 6px; }

/* Value strip */
.cf-strip { border-top: 1px solid var(--cf-border); border-bottom: 1px solid var(--cf-border); background: var(--cf-bg-soft); font-family: var(--cf-font); }
.cf-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.cf-strip__item { padding: 26px 20px; border-left: 1px solid var(--cf-border); }
.cf-strip__item:first-child { border-left: 0; padding-left: 0; }
.cf-strip__item strong { display: block; font: 600 17px/1.3 var(--cf-font); color: var(--cf-navy); }
.cf-strip__item span { font: 400 14px/1.5 var(--cf-font); color: var(--cf-muted); }
@media (max-width: 767px) {
  .cf-strip__grid { grid-template-columns: 1fr 1fr; }
  .cf-strip__item { padding: 18px 12px; border-left: 0; }
  .cf-strip__item:first-child { padding-left: 12px; }
}

/* ---------- Home: trust strip, app spotlight, offers, why ---------- */
.cf-trust { border-bottom: 1px solid var(--cf-border); background: #fff; font-family: var(--cf-font); }
.cf-trust__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 22px; padding-bottom: 22px; }
.cf-trust p { margin: 0; font: 500 14px/1.4 var(--cf-font); color: var(--cf-muted); }
.cf-trust__logos { display: flex; align-items: center; gap: 36px; }
.cf-trust__logos img { width: 56px; height: 56px; object-fit: contain; filter: grayscale(1); opacity: .65; transition: filter .2s, opacity .2s; }
.cf-trust__logos img:hover { filter: none; opacity: 1; }
@media (max-width: 767px) { .cf-trust__inner { flex-direction: column; gap: 14px; text-align: center; } .cf-trust__logos { gap: 24px; } }

.cf-app-spot .cf-hero__actions { margin-top: 20px; }
.cf-phone-stage { position: relative; display: flex; justify-content: center; padding: 28px; }
.cf-phone-stage::before { content: ''; position: absolute; width: 340px; height: 340px; max-width: 90%; border-radius: 50%; background: var(--cf-green-50); top: 50%; left: 50%; transform: translate(-50%, -50%); }
.cf-phone-stage img { position: relative; width: 260px; max-width: 70vw; height: auto; filter: drop-shadow(0 24px 40px rgba(26,20,51,.16)); }

.cf-offers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--cf-border); }
@media (max-width: 991px) { .cf-offers { grid-template-columns: 1fr; } }
.cf-offer, .cf-why__item { display: flex; gap: 16px; align-items: flex-start; font-family: var(--cf-font); }
.cf-offer__icon { flex-shrink: 0; width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; background: var(--cf-green-50); }
.cf-offer__icon img { width: 34px; height: 34px; object-fit: contain; }
.cf-offer h3, .cf-why__item h3 { font: 600 18px/1.35 var(--cf-font); color: var(--cf-navy); margin: 4px 0 6px; }
.cf-offer p, .cf-why__item p { font: 400 15px/1.65 var(--cf-font); color: var(--cf-muted); margin: 0; }

.cf-why { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 36px; }
@media (max-width: 991px) { .cf-why { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .cf-why { grid-template-columns: 1fr; gap: 28px; } }

.cf-center-link { text-align: center; margin: 36px 0 0; }

/* ---------- TradeLens inside citrusfreight.com (see assets/css/tradelens.css) ---------- */
/* The Citrus header (in TradeLens mode) is the only header, so TradeLens' own nav offset is zero */
.tl-scope { padding-top: var(--cf-header-h); --nav-h: 0px; }
.tl-scope .th-download-panel { top: calc(var(--cf-header-h) + 24px); }
.tl-scope a, .tl-scope a:hover { text-decoration: none; }
.tl-scope h1, .tl-scope h2, .tl-scope h3 { font-family: 'Poppins', sans-serif; }
.tl-scope button { cursor: pointer; }
.tl-scope .th-qr-box img { display: block; width: 84px; height: 84px; }
.tl-mb-14 { margin-bottom: 14px !important; }
.tl-mb-16 { margin-bottom: 16px !important; }
.tl-scope .tl-accent-em { font-style: normal; color: var(--accent-light); }
.tl-sources { padding: 18px 5%; text-align: center; font: 400 12.5px/1.6 var(--cf-font); color: var(--cf-muted); background: #fff; border-top: 1px solid var(--cf-border); }

/* Header: Citrus / product lockup (TradeLens mode) */
.cf-header__brand { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.cf-header__product {
  display: inline-flex; align-items: center; gap: 8px; padding-left: 14px; border-left: 1px solid var(--cf-border);
  font: 700 18px/1 var(--cf-font); color: var(--cf-navy) !important; text-decoration: none !important;
}
.cf-header__product img { width: 26px; height: 26px; border-radius: 6px; }
.cf-header__product em { font-style: normal; color: var(--cf-green); }
.cf-btn--navy { background: var(--cf-navy); color: #fff !important; border: 0; }
.cf-btn--navy:hover { background: #1f1940; }
@media (max-width: 575px) {
  .cf-header__brand { gap: 10px; }
  .cf-header__logo img { height: 30px; }
  .cf-header__product { padding-left: 10px; font-size: 16px; }
  .cf-header__product img { width: 22px; height: 22px; }
}
.cf-product__tagline { margin-bottom: 18px !important; }
/* Product cards: identical rhythm (one-line tagline, three one-line points, one CTA) */
.cf-product .cf-checks li { white-space: nowrap; }
.cf-product__tagline { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cf-product__foot { gap: 0; }

/* Blog tables: on phones, wide tables scroll inside their own box instead of widening the page */
@media (max-width: 991px) {
  table.table { display: block; width: 100%; max-width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* Small laptops / landscape tablets: keep the full header on one line */
@media (min-width: 992px) and (max-width: 1199px) {
  .cf-header__inner { gap: 16px; }
  .cf-nav { gap: 14px; }
  .cf-nav__list { gap: 0; }
  .cf-nav__list > li > a, .cf-nav__trigger { padding: 0 10px; font-size: 14.5px; }
  .cf-nav__cta { height: 42px; padding: 0 18px; font-size: 14px; }
  .cf-header__brand { gap: 10px; }
  .cf-header__product { padding-left: 10px; font-size: 16px; }
}
@media (min-width: 992px) and (max-width: 1099px) {
  .cf-nav__list > li > a, .cf-nav__trigger { padding: 0 8px; }
  .cf-header__logo img { height: 32px; }
}

/* ---------- Legacy page banner (blogs, city pages, contact, thank-you) in the new style ---------- */
.page-banner, .page-banner-contact {
  height: auto !important; min-height: 0; display: block; text-align: left;
  padding: calc(var(--cf-header-h) + 56px) 0 56px;
  background: radial-gradient(800px 380px at 90% 0%, rgba(139,197,63,.16), transparent 60%), #fff !important;
  border-bottom: 1px solid var(--cf-border);
}
.page-banner .animate-ball, .page-banner .circle, .page-banner-contact .animate-ball { display: none !important; }
.page-banner .page-title-wrapper, .page-banner-contact .page-title-wrapper { padding: 0 !important; max-width: 860px; }
.page-banner .page-title {
  font: 700 clamp(28px, 3.6vw, 44px)/1.2 var(--cf-font) !important; color: var(--cf-navy) !important;
  margin: 0 0 16px !important; max-width: none;
}
.page-banner .bradcurmed { padding: 0; margin: 0; }
.page-banner .bradcurmed li, .page-banner .bradcurmed li a { font: 400 14px/1.4 var(--cf-font) !important; color: var(--cf-muted) !important; }
.page-banner .bradcurmed li a:hover { color: var(--cf-green-700) !important; }
.page-banner .bradcurmed li:not(:last-child) { margin-right: 22px; }
.page-banner .bradcurmed li:not(:last-child):before { right: -18px; color: #C4C2CE; }
.page-banner.blog-details-banner .post-meta li, .page-banner.blog-details-banner .post-meta li a { color: var(--cf-muted) !important; }
@media (max-width: 767px) { .page-banner, .page-banner-contact { padding: calc(var(--cf-header-h) + 32px) 0 36px; } }

/* ---------- Legal pages (terms, privacy, refund): readable long-form text ---------- */
section.terms { max-width: 880px !important; margin-top: calc(var(--cf-header-h) + 56px) !important; font-family: var(--cf-font); }
section.terms > h1 { font: 700 clamp(26px, 3vw, 36px)/1.25 var(--cf-font) !important; color: var(--cf-navy); margin: 0 0 24px !important; }
section.terms p, section.terms li { font-size: 15.5px; line-height: 1.75; color: var(--cf-text); }
section.terms h2, section.terms h3, section.terms h4 { color: var(--cf-navy); margin-top: 28px; }
section.terms a { color: var(--cf-green-700) !important; }

/* Hero chips stay inside the artwork on tablets and phones */
@media (max-width: 991px) {
  .cf-hero__visual { max-width: 520px; width: 100%; margin: 0 auto; }
  .cf-hero__chip--1 { left: 0; }
  .cf-hero__chip--2 { right: 0; }
  .cf-hero__chip--3 { left: 0; }
  .cf-hero__chip--4 { right: 0; }
}
.cf-app-band p.cf-eyebrow { font: 400 21px/1.3 'Satisfy', cursive; color: var(--cf-green); margin: 0 0 8px; }
/* Zoho SalesIQ bubble sits above the TradeLens mobile sticky bar */
@media (max-width: 959px) {
  body.tl-page.tl-sticky .zsiq_floatmain { bottom: calc(68px + 14px) !important; }
}

/* ---------- TradeLens webinar thank-you (/tradelens/thank-you): TradeLens tokens, mobile-first ---------- */
.tl-scope .tlc { padding: 28px 16px 64px; background: linear-gradient(180deg, var(--accent-pale) 0, var(--off-white) 260px); }
.tl-scope .tlc__inner { max-width: 620px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.tl-scope .tlc__success { text-align: center; padding: 8px 4px 4px; }
.tl-scope .tlc__check {
  width: 56px; height: 56px; margin: 0 auto 14px; border-radius: 50%; display: grid; place-items: center;
  background: var(--accent); color: #fff; box-shadow: 0 8px 22px rgba(71,156,69,.3);
}
.tl-scope .tlc h1 { font: 700 clamp(28px, 7vw, 38px)/1.15 'Poppins', sans-serif; color: var(--navy); margin-bottom: 8px; }
.tl-scope .tlc__sub { font-size: 16.5px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.tl-scope .tlc__copy { font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); max-width: 480px; margin: 0 auto 14px; }
.tl-scope .tlc__meta { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.tl-scope .tlc__meta li {
  padding: 6px 12px; border-radius: 999px; background: var(--white); border: 1px solid var(--border);
  font-size: 13px; font-weight: 600; color: var(--ink-mid);
}

.tl-scope .tlc__wa {
  padding: 20px; border-radius: 18px; background: var(--white); border: 1.5px solid rgba(37,211,102,.45);
  box-shadow: var(--shadow-lg);
}
.tl-scope .tlc__wa-head { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 16px; }
.tl-scope .tlc__wa-icon { flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(37,211,102,.12); color: #1DA851; }
.tl-scope .tlc__wa h2 { font: 700 19px/1.3 'Poppins', sans-serif; color: var(--navy); margin-bottom: 4px; }
.tl-scope .tlc__wa-head p { font-size: 14px; line-height: 1.55; color: var(--ink-mid); }
.tl-scope .tlc__wa-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; height: 54px; border-radius: 14px;
  background: #25D366; color: #fff !important; font: 700 16.5px/1 'Poppins', sans-serif; transition: background .15s, transform .15s;
}
.tl-scope .tlc__wa-btn:hover { background: #20BD5A; transform: translateY(-1px); }
.tl-scope .tlc__wa-btn:focus-visible { outline: 3px solid var(--navy); outline-offset: 2px; }
.tl-scope .tlc__wa.is-opened { border-color: var(--border); }
.tl-scope .tlc__wa.is-opened .tlc__wa-btn { background: var(--white); color: #1DA851 !important; border: 1.5px solid #25D366; }
.tl-scope .tlc__wa-note { text-align: center; font-size: 12.5px; color: var(--ink-soft); margin-top: 8px; }
.tl-scope .tlc__why { list-style: none; display: grid; gap: 8px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }
.tl-scope .tlc__why li { position: relative; padding-left: 26px; font-size: 14px; font-weight: 500; color: var(--ink); }
.tl-scope .tlc__why li::before {
  content: '✓'; position: absolute; left: 0; top: 0; width: 18px; height: 18px; border-radius: 50%;
  display: grid; place-items: center; font-size: 11px; font-weight: 700; color: var(--accent); background: var(--accent-pale);
}

.tl-scope .tlc__row { display: flex; flex-direction: column; gap: 12px; padding: 18px 20px; border-radius: 16px; background: var(--white); border: 1px solid var(--border); }
.tl-scope .tlc__row h3 { font: 700 16px/1.35 'Poppins', sans-serif; color: var(--navy); margin-bottom: 4px; }
.tl-scope .tlc__row p { font-size: 13.5px; line-height: 1.55; color: var(--ink-soft); }
.tl-scope .tlc__row-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 16px; }
.tl-scope .tlc__btn-outline {
  display: inline-flex; align-items: center; justify-content: center; height: 44px; padding: 0 18px; border-radius: 12px;
  border: 1.5px solid var(--border); color: var(--navy) !important; font: 600 14px/1 'Poppins', sans-serif; background: var(--white);
}
.tl-scope .tlc__btn-outline:hover { border-color: var(--accent); color: var(--accent) !important; }
.tl-scope .tlc__link { font-size: 13px; font-weight: 600; color: var(--ink-mid) !important; }
.tl-scope .tlc__row--community { background: transparent; border-style: dashed; }

.tl-scope .tlc__agenda { padding: 18px 20px; }
.tl-scope .tlc__agenda h3 { font: 700 16px/1.35 'Poppins', sans-serif; color: var(--navy); margin-bottom: 12px; }
.tl-scope .tlc__agenda ol { list-style: none; display: grid; gap: 8px; }
.tl-scope .tlc__agenda li { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--ink-mid); }
.tl-scope .tlc__agenda li span {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center;
  font-size: 12.5px; font-weight: 700; color: var(--navy); background: var(--slate);
}

@media (min-width: 640px) {
  .tl-scope .tlc { padding: 48px 24px 88px; }
  .tl-scope .tlc__wa { padding: 26px 28px; }
  .tl-scope .tlc__row { flex-direction: row; align-items: center; justify-content: space-between; gap: 20px; }
  .tl-scope .tlc__row-actions { flex-shrink: 0; flex-direction: column; align-items: flex-end; gap: 6px; }
  .tl-scope .tlc__why { grid-template-columns: repeat(3, 1fr); }
}

/* Hero: transparent app phone + floating vessel-schedule card on a soft brand glow */
.cf-hero__visual::before {
  content: ''; position: absolute; width: 440px; height: 440px; max-width: 92%; aspect-ratio: 1; top: 50%; left: 50%;
  transform: translate(-50%, -50%); border-radius: 50%;
  background: radial-gradient(circle, rgba(139,197,63,.22) 0%, rgba(71,156,69,.10) 55%, transparent 72%);
}
.cf-phone-stack--hero { position: relative; z-index: 1; padding: 16px 90px 16px 0; }
.cf-phone-stack--hero::before { display: none; }
.cf-phone-stack--hero .cf-phone-stack__phone { width: 250px; }
.cf-phone-stack--hero .cf-phone-stack__card { width: 170px; right: 0; bottom: 14%; }
@media (min-width: 992px) {
  .cf-hero__chip--1 { top: 8%; left: -2%; }
  .cf-hero__chip--2 { top: 16%; right: -2%; }
  .cf-hero__chip--3 { bottom: 18%; left: -6%; }
  .cf-hero__chip--4 { bottom: 2%; right: 4%; }
}
@media (max-width: 575px) {
  .cf-phone-stack--hero { padding-right: 70px; }
  .cf-phone-stack--hero .cf-phone-stack__phone { width: 210px; }
  .cf-phone-stack--hero .cf-phone-stack__card { width: 135px; }
}
/* Phones: keep the app screen clear (the product cards follow right below) */
@media (max-width: 575px) { .cf-hero__chip { display: none; } }

/* ---------- Home: cold-chain story ---------- */
.cf-hero__proof { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 28px; margin: 28px 0 0; padding: 22px 0 0; border-top: 1px solid var(--cf-border); font: 400 14px/1.4 var(--cf-font); color: var(--cf-muted); }
.cf-hero__proof strong { display: block; font: 700 22px/1.2 var(--cf-font); color: var(--cf-green-700); }

.cf-trust__logos { flex-wrap: wrap; justify-content: flex-end; gap: 18px 30px; }
.cf-trust__name { font: 700 16px/1 var(--cf-font); letter-spacing: -.01em; color: #8B8898; white-space: nowrap; }
@media (max-width: 991px) { .cf-trust__inner { flex-direction: column; text-align: center; } .cf-trust__logos { justify-content: center; } }

.cf-stats { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
@media (max-width: 1100px) { .cf-stats { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 575px) { .cf-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
.cf-stat { padding: 24px 18px; border-radius: var(--cf-radius); background: var(--cf-bg-soft); border: 1px solid #E3EEE1; text-align: center; font-family: var(--cf-font); }
.cf-stat strong { display: block; font: 700 clamp(26px, 2.6vw, 34px)/1.1 var(--cf-font); color: var(--cf-green-700); margin-bottom: 8px; }
.cf-stat span { font: 500 13.5px/1.4 var(--cf-font); color: var(--cf-text); }

.cf-journey { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; position: relative; }
.cf-journey::before { content: ''; position: absolute; top: 34px; left: 10%; right: 10%; height: 2px; background: repeating-linear-gradient(90deg, #BFDDBB 0 8px, transparent 8px 14px); }
.cf-journey__step { position: relative; text-align: center; padding: 0 6px; font-family: var(--cf-font); }
.cf-journey__icon { position: relative; z-index: 1; width: 68px; height: 68px; margin: 0 auto 14px; border-radius: 50%; display: grid; place-items: center; background: #fff; border: 2px solid #CFE6CC; color: var(--cf-green-700); box-shadow: var(--cf-shadow-sm); }
.cf-journey__step small { display: block; font: 600 12px/1 var(--cf-font); letter-spacing: .06em; text-transform: uppercase; color: var(--cf-green-600); margin-bottom: 8px; }
.cf-journey__step h3 { font: 600 16.5px/1.35 var(--cf-font); color: var(--cf-navy); margin: 0 0 8px; }
.cf-journey__step p { font: 400 14px/1.6 var(--cf-font); color: var(--cf-muted); margin: 0; }
@media (max-width: 991px) {
  .cf-journey { grid-template-columns: 1fr; gap: 0; }
  .cf-journey::before { top: 20px; bottom: 20px; left: 33px; right: auto; width: 2px; height: auto; background: repeating-linear-gradient(180deg, #BFDDBB 0 8px, transparent 8px 14px); }
  .cf-journey__step { display: grid; grid-template-columns: 68px 1fr; column-gap: 18px; text-align: left; padding: 0 0 22px; }
  .cf-journey__icon { grid-row: 1 / span 3; margin: 0; }
}

.cf-section--navy .cf-section-head p { color: rgba(255,255,255,.72); }
.cf-lanes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 991px) { .cf-lanes { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .cf-lanes { grid-template-columns: 1fr; } }
.cf-lane { padding: 20px; border-radius: var(--cf-radius); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); font-family: var(--cf-font); transition: background .2s, border-color .2s; }
.cf-lane:hover { background: rgba(255,255,255,.1); border-color: rgba(139,197,63,.5); }
.cf-lane__route { display: flex; align-items: center; gap: 10px; font: 700 18px/1.2 var(--cf-font); color: #fff; }
.cf-lane__route svg { flex-shrink: 0; color: var(--cf-lime); }
.cf-lane__cargo { margin: 10px 0 0; display: inline-block; padding: 5px 10px; border-radius: 999px; background: rgba(139,197,63,.16); color: #CFE8B5; font: 500 13px/1.3 var(--cf-font); }
.cf-coverage { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 16px; margin-top: 28px; padding: 22px 24px; border-radius: var(--cf-radius); border: 1px solid rgba(255,255,255,.12); font-family: var(--cf-font); }
@media (max-width: 991px) { .cf-coverage { grid-template-columns: 1fr; } }
.cf-coverage small { display: block; font: 600 12px/1 var(--cf-font); letter-spacing: .06em; text-transform: uppercase; color: var(--cf-lime); margin-bottom: 8px; }
.cf-coverage strong { font: 500 14.5px/1.6 var(--cf-font); color: rgba(255,255,255,.88); }

.cf-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 980px; margin: 0 auto; font-family: var(--cf-font); }
@media (max-width: 767px) { .cf-compare { grid-template-columns: 1fr; } }
.cf-compare__col { padding: 28px; border-radius: var(--cf-radius-lg); border: 1px solid var(--cf-border); }
.cf-compare__col h3 { font: 700 18px/1.3 var(--cf-font); margin: 0 0 16px; }
.cf-compare__col ul { list-style: none; margin: 0; padding: 0; }
.cf-compare__col li { position: relative; padding: 12px 0 12px 30px; border-top: 1px solid var(--cf-border); font: 400 15px/1.5 var(--cf-font); }
.cf-compare__col li:first-child { border-top: 0; }
.cf-compare__col li::before { position: absolute; left: 0; top: 12px; width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center; font-size: 11px; font-weight: 700; }
.cf-compare__col--old { background: #FBFAFC; }
.cf-compare__col--old h3 { color: var(--cf-muted); }
.cf-compare__col--old li { color: var(--cf-muted); }
.cf-compare__col--old li::before { content: '✕'; color: #C0392B; background: #FBE9E7; }
.cf-compare__col--new { background: #fff; border-color: #CFE6CC; box-shadow: var(--cf-shadow); }
.cf-compare__col--new h3 { color: var(--cf-green-700); }
.cf-compare__col--new li { color: var(--cf-navy); font-weight: 500; }
.cf-compare__col--new li::before { content: '✓'; color: var(--cf-green-700); background: var(--cf-green-50); }
.cf-app-spot .cf-stores { margin-top: 20px; }
.cf-stats { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1100px) { .cf-stats { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 575px) { .cf-stats { grid-template-columns: repeat(2, 1fr); } }
.cf-lane--cta { text-decoration: none !important; border-style: dashed; border-color: rgba(139,197,63,.45); }
.cf-lane--cta .cf-lane__route span { font-size: 16px; }
.cf-lane__more { margin: 10px 0 0; font: 600 14px/1.3 var(--cf-font); color: var(--cf-lime); }
@media (max-width: 575px) {
  .cf-hero__proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; font-size: 12.5px; }
  .cf-hero__proof strong { font-size: 20px; }
  .cf-stats .cf-stat:last-child:nth-child(odd) { grid-column: 1 / -1; }
  .cf-services--compact { grid-template-columns: 1fr 1fr; gap: 12px; }
  .cf-services--compact .cf-service { padding: 18px 16px; gap: 6px; }
  .cf-services--compact .cf-service p, .cf-services--compact .cf-service .cf-link { display: none; }
  .cf-services--compact .cf-service h3 { font-size: 15.5px; margin-top: 6px; }
  .cf-services--compact .cf-service__icon { width: 44px; height: 44px; }
}

/* Export documentation services (first-time exporters) */
.cf-docs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 1100px) { .cf-docs { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .cf-docs { grid-template-columns: 1fr; gap: 10px; } }
.cf-doc { display: flex; gap: 14px; align-items: flex-start; padding: 20px; border-radius: var(--cf-radius); background: #fff; border: 1px solid var(--cf-border); font-family: var(--cf-font); }
.cf-doc__icon { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--cf-green-50); color: var(--cf-green-700); }
.cf-doc h3 { font: 600 15.5px/1.35 var(--cf-font); color: var(--cf-navy); margin: 2px 0 4px; }
.cf-doc p { font: 400 13.5px/1.55 var(--cf-font); color: var(--cf-muted); margin: 0; }
.cf-docs__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 32px; }
@media (max-width: 575px) { .cf-doc { padding: 14px 16px; } .cf-docs__actions .cf-btn { width: 100%; } }

/* ---------- Clients, photos, case studies, video, partners ---------- */
.cf-trust__logos { gap: 20px 36px; }
.cf-trust__logo { height: 40px; width: auto; max-width: 140px; object-fit: contain; }
@media (max-width: 575px) { .cf-trust__logo { height: 32px; max-width: 110px; } .cf-trust__logos { gap: 16px 24px; } }

.cf-photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 48px; }
@media (max-width: 767px) { .cf-photos { grid-template-columns: 1fr 1fr; } .cf-photo:first-child { grid-column: 1 / -1; } }
.cf-photo { position: relative; margin: 0; border-radius: var(--cf-radius-lg); overflow: hidden; aspect-ratio: 4 / 3; background: var(--cf-green-50); }
.cf-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.cf-photo:hover img { transform: scale(1.04); }
.cf-photo figcaption {
  position: absolute; left: 12px; bottom: 12px; padding: 6px 12px; border-radius: 999px;
  background: rgba(26,20,51,.72); color: #fff; font: 600 13px/1.2 var(--cf-font); backdrop-filter: blur(4px);
}

.cf-cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 991px) { .cf-cases { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; } }
.cf-case { position: relative; display: flex; flex-direction: column; padding: 26px; border-radius: var(--cf-radius-lg); background: #fff; border: 1px solid var(--cf-border); font-family: var(--cf-font); }
.cf-case__sample { position: absolute; top: 16px; right: 16px; padding: 4px 10px; border-radius: 999px; background: #FFF4D6; color: #8A6100; font: 700 11px/1 var(--cf-font); letter-spacing: .06em; text-transform: uppercase; }
.cf-case__head { display: flex; align-items: center; gap: 14px; padding-bottom: 18px; margin-bottom: 18px; border-bottom: 1px solid var(--cf-border); }
.cf-case__head img { height: 36px; width: auto; max-width: 120px; object-fit: contain; }
.cf-case__head strong { display: block; font: 700 15.5px/1.3 var(--cf-font); color: var(--cf-navy); }
.cf-case__head small { font: 500 13px/1.3 var(--cf-font); color: var(--cf-green-700); }
.cf-case h3 { font: 600 13px/1.3 var(--cf-font); letter-spacing: .04em; text-transform: uppercase; color: var(--cf-muted); margin: 0 0 6px; }
.cf-case p { font: 400 14.5px/1.6 var(--cf-font); color: var(--cf-text); margin: 0 0 16px; }
.cf-case__results { margin-top: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.cf-case__results div { padding: 12px; border-radius: 12px; background: var(--cf-bg-soft); }
.cf-case__results strong { display: block; font: 700 22px/1.2 var(--cf-font); color: var(--cf-green-700); }
.cf-case__results span { font: 500 12.5px/1.3 var(--cf-font); color: var(--cf-muted); }

.cf-video { position: relative; width: 100%; aspect-ratio: 16 / 9; border-radius: var(--cf-radius-lg); overflow: hidden; background: #0B0B0F; box-shadow: var(--cf-shadow-lg); }
.cf-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.cf-video__poster { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; border: 0; background: none; cursor: pointer; }
.cf-video__poster img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cf-video__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 72px; height: 72px; border-radius: 50%;
  display: grid; place-items: center; background: var(--cf-green); color: #fff; box-shadow: 0 10px 30px rgba(0,0,0,.3); transition: transform .2s;
}
.cf-video__poster:hover .cf-video__play { transform: translate(-50%, -50%) scale(1.08); }
.cf-video__poster:focus-visible { outline: 3px solid var(--cf-green); outline-offset: 3px; }
.cf-video-wrap { max-width: 860px; margin: 0 auto; }
.cf-story { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center; margin-bottom: 48px; font-family: var(--cf-font); }
@media (max-width: 991px) { .cf-story { grid-template-columns: 1fr; gap: 20px; } }
.cf-story__text h3 { font: 700 26px/1.25 var(--cf-font); color: var(--cf-navy); margin: 0 0 10px; }
.cf-story__text p:not(.cf-eyebrow) { font: 400 16px/1.7 var(--cf-font); color: var(--cf-muted); margin: 0; }

.cf-section--tight { padding: 56px 0; }
.cf-partners { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 28px 32px; border-radius: var(--cf-radius-lg); border: 1px solid var(--cf-border); font-family: var(--cf-font); }
.cf-partners__label { margin: 0; font: 600 15px/1.3 var(--cf-font); color: var(--cf-navy); }
.cf-partners__list { display: flex; flex-wrap: wrap; align-items: center; gap: 20px 44px; }
.cf-partner { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.cf-partner img { height: 40px; width: auto; max-width: 150px; object-fit: contain; }
.cf-partner strong { font: 700 20px/40px var(--cf-font); color: var(--cf-navy); letter-spacing: .02em; }
.cf-partner small { font: 500 12px/1 var(--cf-font); color: var(--cf-muted); }
@media (max-width: 767px) { .cf-partners { flex-direction: column; text-align: center; } }
.cf-trust__logos img.cf-trust__logo { filter: none; opacity: 1; }

/* Trusted-by logos: larger, with hover */
.cf-trust__inner { padding-top: 26px; padding-bottom: 26px; }
.cf-trust__logos { gap: 16px 22px; }
.cf-trust__logos img.cf-trust__logo {
  height: 56px; max-width: 170px; padding: 8px 12px; box-sizing: content-box; border-radius: 12px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.cf-trust__logos img.cf-trust__logo:hover { transform: translateY(-3px) scale(1.04); background: #fff; box-shadow: var(--cf-shadow); }
@media (max-width: 575px) { .cf-trust__logos img.cf-trust__logo { height: 40px; max-width: 120px; padding: 6px 8px; } }

/* Trade lanes: cargo illustration */
.cf-lane { position: relative; padding-right: 78px; min-height: 96px; }
.cf-lane__art { position: absolute; top: 50%; right: 14px; transform: translateY(-50%); width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.08); transition: transform .25s ease; }
.cf-lane:hover .cf-lane__art { transform: translateY(-50%) rotate(-8deg) scale(1.08); }
.cf-lane--cta { padding-right: 20px; }
.cf-partner img { height: 48px; }
.cf-lanes { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 1199px) { .cf-lanes { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 480px) { .cf-lanes { grid-template-columns: minmax(0, 1fr); } }
.cf-lane__route { flex-wrap: wrap; row-gap: 2px; }
/* Lane card: illustration on top, route and cargo below */
.cf-lane { padding: 18px 20px 20px; min-height: 0; }
.cf-lane__art { position: static; transform: none; width: 56px; height: 56px; margin-bottom: 14px; }
.cf-lane:hover .cf-lane__art { transform: rotate(-8deg) scale(1.08); }
.cf-lane__route { font-size: 17px; flex-wrap: nowrap; }
.cf-lane--cta { display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 480px) { .cf-lane { display: grid; grid-template-columns: 56px 1fr; column-gap: 14px; align-items: center; } .cf-lane__art { grid-row: 1 / span 2; margin: 0; } .cf-lane__cargo { justify-self: start; } }
@media (max-width: 480px) { .cf-lane.cf-lane--cta { display: flex; flex-direction: column; align-items: flex-start; } }

/* ---------- Real app screens in a CSS phone frame ---------- */
.cf-device-wrap { position: relative; display: inline-block; padding: 0 70px 0 0; }
.cf-device-wrap--card-left { padding: 0 0 0 70px; }
.cf-device {
  position: relative; width: 270px; padding: 9px; border-radius: 40px; background: #16151C;
  box-shadow: 0 0 0 1.5px #3A3945 inset, 0 30px 60px rgba(26,20,51,.22), 0 8px 20px rgba(26,20,51,.12);
}
.cf-device__screen { display: block; width: 100%; height: auto; border-radius: 32px; background: #fff; }
.cf-device__card {
  position: absolute; z-index: 3; right: 0; bottom: 14%; width: 210px; height: auto; border-radius: 14px;
  background: #fff; box-shadow: var(--cf-shadow-lg); border: 1px solid var(--cf-border);
}
.cf-device-wrap--card-left .cf-device__card { right: auto; left: 0; }
.cf-device-wrap--small .cf-device { width: 230px; border-radius: 34px; }
.cf-device-wrap--small .cf-device__screen { border-radius: 27px; }
@media (max-width: 575px) {
  .cf-device-wrap { padding-right: 44px; }
  .cf-device-wrap--card-left { padding: 0 0 0 44px; }
  .cf-device { width: 230px; border-radius: 34px; }
  .cf-device__screen { border-radius: 27px; }
  .cf-device__card { width: 160px; }
}

/* App screens: layouts using <app-screen> */
.cf-device-wrap--solo, .cf-device-wrap--solo.cf-device-wrap--card-left { padding: 0; }
.cf-hero__device { position: relative; z-index: 1; display: block; padding: 12px 0; }
@media (max-width: 575px) { .cf-hero__device .cf-device { width: 210px; } .cf-hero__device .cf-device__card { width: 150px; } }
.cf-steps-media { display: flex; justify-content: center; padding: 12px 0; }
.cf-showcase app-screen { display: flex; justify-content: center; }
.cf-docs-layout { display: grid; grid-template-columns: 280px 1fr; gap: 40px; align-items: center; }
.cf-docs-layout__media { display: flex; justify-content: center; }
.cf-docs-layout .cf-docs { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 991px) {
  .cf-docs-layout { grid-template-columns: 1fr; gap: 28px; }
  .cf-docs-layout__media { order: 2; }
}
@media (max-width: 575px) { .cf-docs-layout .cf-docs { grid-template-columns: 1fr; } .cf-docs-layout__media { display: none; } }

/* Trusted-by logos: bigger and readable on large screens.
   width:auto overrides the older fixed 56px width that squeezed wide wordmarks. */
.cf-trust__logos img.cf-trust__logo { width: auto; }
@media (min-width: 992px) {
  .cf-trust__inner { flex-direction: column; gap: 16px; text-align: center; }
  .cf-trust__logos { justify-content: center; flex-wrap: wrap; gap: 12px 18px; }
  .cf-trust__logos img.cf-trust__logo { height: 46px; max-width: 150px; padding: 8px 10px; }
}
@media (min-width: 1400px) {
  .cf-trust__logos { gap: 12px 26px; }
  .cf-trust__logos img.cf-trust__logo { height: 58px; max-width: 185px; }
}
@media (min-width: 1200px) {
  .cf-trust__logos { flex-wrap: nowrap; }
  .cf-hero__device .cf-device { width: 300px; border-radius: 44px; }
  .cf-hero__device .cf-device__screen { border-radius: 35px; }
  .cf-hero__device .cf-device__card { width: 230px; }
}

/* Hero chips sit beside the phone, clear of the app header */
@media (min-width: 992px) {
  .cf-hero__device ~ .cf-hero__chip--1 { top: 24%; left: -4%; }
  .cf-hero__device ~ .cf-hero__chip--2 { top: 10%; right: -2%; }
}

/* Service cards: a leftover last card fills its row (e.g. 7 services in 3 or 2 columns) */
@media (min-width: 992px) {
  .cf-services > .cf-service:last-child:nth-child(3n+1) {
    grid-column: 1 / -1; display: grid; grid-template-columns: auto 1fr auto; grid-template-areas: 'icon title link' 'icon text link';
    column-gap: 20px; row-gap: 4px; align-items: center;
  }
  .cf-services > .cf-service:last-child:nth-child(3n+1) .cf-service__icon { grid-area: icon; }
  .cf-services > .cf-service:last-child:nth-child(3n+1) h3 { grid-area: title; margin: 0; }
  .cf-services > .cf-service:last-child:nth-child(3n+1) p { grid-area: text; }
  .cf-services > .cf-service:last-child:nth-child(3n+1) .cf-link { grid-area: link; margin: 0; }
}
@media (max-width: 991px) {
  .cf-services > .cf-service:last-child:nth-child(odd) { grid-column: 1 / -1; }
}
@media (max-width: 575px) {
  .cf-services:not(.cf-services--compact) > .cf-service:last-child:nth-child(odd) { grid-column: auto; }
}

/* Cold-chain proof strip under service page heroes */
.cf-strip--proof { background: #fff; }
.cf-strip--proof .cf-strip__item strong { font: 700 28px/1.15 var(--cf-font); color: var(--cf-green-600); margin-bottom: 2px; }
@media (max-width: 767px) {
  .cf-strip--proof .cf-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .cf-strip--proof .cf-strip__item { padding: 16px 12px; }
  .cf-strip--proof .cf-strip__item:nth-child(odd) { border-left: 0; padding-left: 0; }
  .cf-strip--proof .cf-strip__item:nth-child(n+3) { border-top: 1px solid var(--cf-border); }
  .cf-strip--proof .cf-strip__item strong { font-size: 22px; }
  .cf-strip--proof .cf-strip__item span { display: block; font-size: 13px; line-height: 1.4; }
}

/* About page */
.cf-about-photo { position: relative; width: 100%; max-width: 520px; margin: 0 auto; border-radius: var(--cf-radius-lg); overflow: hidden; aspect-ratio: 4 / 3; box-shadow: var(--cf-shadow-lg); z-index: 1; }
.cf-about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cf-about-photo__badge { position: absolute; left: 16px; bottom: 16px; padding: 12px 16px; border-radius: 12px; background: #fff; box-shadow: var(--cf-shadow); font-family: var(--cf-font); }
.cf-about-photo__badge strong { display: block; font: 700 16px/1.2 var(--cf-font); color: var(--cf-green-700); }
.cf-about-photo__badge span { font: 500 13px/1.3 var(--cf-font); color: var(--cf-navy); }
.cf-origin { padding: 28px; border-radius: var(--cf-radius-lg); background: #fff; border: 1px solid var(--cf-border); font-family: var(--cf-font); }
.cf-origin__stat { display: block; font: 700 30px/1.1 var(--cf-font); color: var(--cf-navy); }
.cf-origin__was { font: 400 14.5px/1.55 var(--cf-font); color: var(--cf-muted); margin: 6px 0 16px; }
.cf-origin__now { margin: 0; padding-top: 14px; border-top: 1px dashed var(--cf-border); font: 600 14.5px/1.5 var(--cf-font); color: var(--cf-green-700); }
.cf-origin__now::before { content: '✓  '; }
.cf-team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 991px) { .cf-team { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .cf-team { grid-template-columns: 1fr; } }
.cf-person { position: relative; overflow: hidden; padding: 32px 28px 28px; border-radius: var(--cf-radius-lg); background: #fff; border: 1px solid var(--cf-border); text-align: center; font-family: var(--cf-font); }
.cf-person::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--cf-green-600); }
.cf-person__photo { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; margin: 0 auto 14px; display: block; box-shadow: 0 0 0 4px var(--cf-green-50); }
.cf-person h3 { font: 600 19px/1.3 var(--cf-font); color: var(--cf-navy); margin: 0; }
.cf-person__role { font: 500 14px/1.4 var(--cf-font); color: var(--cf-green-700); margin: 4px 0 12px; }
.cf-person__prev { display: inline-block; padding: 6px 12px; border-radius: 999px; background: var(--cf-green-50); font: 600 12.5px/1.3 var(--cf-font); color: var(--cf-green-700); margin: 0 0 14px; }
.cf-person .cf-checks { text-align: left; margin: 0; }
.cf-advisors__title { font: 600 20px/1.3 var(--cf-font); color: var(--cf-navy); text-align: center; margin: 44px 0 18px; }
.cf-advisors { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 880px; margin: 0 auto; }
@media (max-width: 575px) { .cf-advisors { grid-template-columns: 1fr; } }
.cf-advisor { padding: 18px 22px; border-radius: var(--cf-radius); background: #fff; border: 1px solid var(--cf-border); border-left: 4px solid #F5A623; font-family: var(--cf-font); }
.cf-advisor strong { display: block; font: 600 16px/1.3 var(--cf-font); color: var(--cf-navy); }
.cf-advisor span { font: 400 14px/1.5 var(--cf-font); color: var(--cf-muted); }
.cf-stats--6 { grid-template-columns: repeat(6, 1fr); }
@media (max-width: 1100px) { .cf-stats--6 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 575px) { .cf-stats--6 { grid-template-columns: repeat(2, 1fr); } }
.cf-offices { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; font-family: var(--cf-font); }
@media (max-width: 991px) { .cf-offices { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .cf-offices { grid-template-columns: 1fr; } }
.cf-office { padding: 22px; border-radius: var(--cf-radius-lg); background: #fff; border: 1px solid var(--cf-border); }
.cf-office__type { display: inline-block; padding: 4px 10px; border-radius: 999px; background: var(--cf-green-50); font: 600 12px/1.3 var(--cf-font); color: var(--cf-green-700); margin-bottom: 10px; }
.cf-office strong { display: block; font: 600 18px/1.3 var(--cf-font); color: var(--cf-navy); }
.cf-office p { margin: 6px 0 0; font: 400 14px/1.6 var(--cf-font); color: var(--cf-muted); }

/* Citrus App page: rating line under store badges; after-booking band */
.cf-rating { display: flex; align-items: center; gap: 8px; margin: 12px 0 0; font: 500 14px/1.4 var(--cf-font); color: var(--cf-text); }
.cf-rating strong { color: var(--cf-navy); }
.cf-rating__stars { color: #F5A623; letter-spacing: 1px; }
@media (min-width: 992px) { .cf-journey--4 { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 992px) { .cf-journey--6 { grid-template-columns: repeat(6, 1fr); gap: 12px; } .cf-journey--6::before { left: 8%; right: 8%; } }
.cf-journey__note { margin: 28px auto 0; max-width: 640px; text-align: center; font: 500 15px/1.6 var(--cf-font); color: var(--cf-navy); }

/* Language tabs above a video */
.cf-lang-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 18px; flex-wrap: wrap; }
.cf-lang-tab { padding: 9px 20px; border-radius: 999px; border: 1px solid var(--cf-border); background: #fff; font: 600 14px/1.2 var(--cf-font); color: var(--cf-navy); cursor: pointer; transition: background .2s, color .2s, border-color .2s; }
.cf-lang-tab:hover { border-color: var(--cf-green-600); }
.cf-lang-tab.is-active { background: var(--cf-green-600); border-color: var(--cf-green-600); color: #fff; }
.cf-video-more { text-align: center; margin: 16px 0 0; }
@media (max-width: 575px) { .cf-lang-tabs { gap: 6px; } .cf-lang-tab { padding: 8px 12px; font-size: 13px; } }

/* Team avatars: photo when available, initials otherwise */
.cf-person__avatar { width: 84px; height: 84px; margin: 0 auto 14px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--cf-green-600), var(--cf-green-700)); color: #fff; font: 700 26px/1 var(--cf-font); letter-spacing: .02em;
  box-shadow: 0 0 0 4px var(--cf-green-50); }
.cf-person__avatar--photo { display: block; object-fit: cover; background: var(--cf-green-50); }

/* Press coverage (About) */
.cf-press { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 991px) { .cf-press { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .cf-press { grid-template-columns: 1fr; gap: 12px; } }
.cf-press__item { display: flex; flex-direction: column; gap: 10px; padding: 22px; border-radius: var(--cf-radius-lg); background: #fff; border: 1px solid var(--cf-border);
  text-decoration: none !important; font-family: var(--cf-font); transition: box-shadow .2s, transform .2s, border-color .2s; }
.cf-press__item:hover { box-shadow: var(--cf-shadow); transform: translateY(-3px); border-color: #D5E6D3; }
.cf-press__outlet { font: 700 12.5px/1.2 var(--cf-font); letter-spacing: .06em; text-transform: uppercase; color: var(--cf-green-700); }
.cf-press__item h3 { flex: 1; margin: 0; font: 600 16px/1.45 var(--cf-font); color: var(--cf-navy); }
.cf-press__foot { display: flex; justify-content: space-between; align-items: center; gap: 12px; font: 400 13px/1.3 var(--cf-font); color: var(--cf-muted); }
.cf-press__profiles { margin: 24px 0 0; text-align: center; font: 400 14px/1.6 var(--cf-font); color: var(--cf-muted); }
.cf-press__profiles a { color: var(--cf-green-700); font-weight: 600; }

/* Home "Featured in" row */
.cf-featured { border-top: 1px solid var(--cf-border); border-bottom: 1px solid var(--cf-border); background: #fff; font-family: var(--cf-font); }
.cf-featured__inner { display: flex; align-items: center; gap: 20px 28px; padding-top: 24px; padding-bottom: 24px; flex-wrap: wrap; }
.cf-featured__label { margin: 0; font: 600 13px/1.2 var(--cf-font); letter-spacing: .06em; text-transform: uppercase; color: var(--cf-muted); }
.cf-featured__list { flex: 1; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 26px; }
.cf-featured__list a { font: 700 16px/1.2 var(--cf-font); color: var(--cf-navy) !important; opacity: .7; text-decoration: none !important; transition: opacity .2s, color .2s; }
.cf-featured__list a:hover { opacity: 1; color: var(--cf-green-700) !important; }
.cf-featured__more { white-space: nowrap; }
@media (max-width: 767px) {
  .cf-featured__inner { flex-direction: column; text-align: center; gap: 14px; }
  .cf-featured__list { justify-content: center; gap: 8px 18px; }
  .cf-featured__list a { font-size: 15px; }
}

/* About: people behind Citrus */
.cf-people { display: grid; grid-template-columns: 1.4fr 1fr; grid-template-rows: 1fr 1fr; gap: 16px; }
.cf-people__photo { position: relative; margin: 0; border-radius: var(--cf-radius-lg); overflow: hidden; background: var(--cf-green-50); min-height: 220px; }
.cf-people__photo--main { grid-row: 1 / span 2; min-height: 460px; }
.cf-people__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; transition: transform .5s ease; }
.cf-people__photo:hover img { transform: scale(1.03); }
.cf-people__photo figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 36px 18px 14px; background: linear-gradient(transparent, rgba(20,16,40,.78));
  color: #fff; font: 600 14px/1.4 var(--cf-font); }
@media (max-width: 767px) {
  .cf-people { grid-template-columns: 1fr; grid-template-rows: none; }
  .cf-people__photo, .cf-people__photo--main { grid-row: auto; min-height: 0; aspect-ratio: 4 / 3; }
}
.cf-section--soft .cf-stat { background: #fff; }

/* Contact page: classic two-panel card */
.cf-page-hero--compact { padding-bottom: 40px; }
.cf-contact-section { padding-top: 56px; }
.cf-contact { display: grid; grid-template-columns: 380px 1fr; border-radius: 20px; overflow: hidden; background: #fff; border: 1px solid var(--cf-border); box-shadow: var(--cf-shadow-lg); font-family: var(--cf-font); }
.cf-contact h2 { font: 700 24px/1.25 var(--cf-font); margin: 0 0 6px; }
.cf-contact__info { position: relative; overflow: hidden; padding: 40px 34px; background: var(--cf-navy); color: #fff; }
.cf-contact__info::after { content: ''; position: absolute; width: 240px; height: 240px; right: -90px; bottom: -90px; border-radius: 50%; background: rgba(139,197,63,.14); }
.cf-contact__info h2 { color: #fff; }
.cf-contact__intro { margin: 0 0 28px; font: 400 15px/1.6 var(--cf-font); color: rgba(255,255,255,.72); }
.cf-contact__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 22px; position: relative; z-index: 1; }
.cf-contact__list li { display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: start; }
.cf-contact__icon { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,.1); color: var(--cf-lime); font-size: 18px; }
.cf-contact__list small, .cf-contact__cities small { display: block; margin-bottom: 3px; font: 600 12px/1.2 var(--cf-font); letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.cf-contact__list a { font: 600 16px/1.4 var(--cf-font); color: #fff !important; text-decoration: none !important; }
.cf-contact__list a:hover { color: var(--cf-lime) !important; }
.cf-contact__list span { font: 400 14px/1.6 var(--cf-font); color: rgba(255,255,255,.85); }
.cf-contact__cities { position: relative; z-index: 1; margin-top: 28px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14); }
.cf-contact__cities div { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.cf-contact__cities span { padding: 6px 14px; border-radius: 999px; border: 1px solid rgba(255,255,255,.22); font: 500 14px/1.2 var(--cf-font); color: #fff; }

.cf-contact__form { padding: 40px 44px; }
.cf-contact__form h2 { color: var(--cf-navy); }
.cf-contact__note { margin: 0 0 24px; font: 400 14px/1.5 var(--cf-font); color: var(--cf-muted); }
.cf-req { color: #D14343; }
.cf-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
.cf-field { margin-bottom: 18px; }
.cf-field label { display: block; margin: 0 0 7px; font: 600 14px/1.3 var(--cf-font); color: var(--cf-navy); }
.cf-form .cf-field input, .cf-form .cf-field textarea {
  display: block; width: 100%; margin: 0; padding: 12px 14px; border: 1.5px solid #D9DEE3; border-radius: 10px; background: #FBFCFB;
  font: 400 15px/1.5 var(--cf-font); color: var(--cf-navy); box-shadow: none; outline: none; transition: border-color .2s, box-shadow .2s, background .2s;
}
.cf-form .cf-field input { height: 48px; }
.cf-form .cf-field textarea { min-height: 130px; resize: vertical; }
.cf-form .cf-field input::placeholder, .cf-form .cf-field textarea::placeholder { color: #A3A7B3; }
.cf-form .cf-field input:focus, .cf-form .cf-field textarea:focus { border-color: var(--cf-green-600); background: #fff; box-shadow: 0 0 0 4px rgba(71,156,69,.14); }
.cf-field.is-invalid input, .cf-field.is-invalid textarea { border-color: #D14343; background: #FFF8F8; }
.cf-field__error { margin-top: 6px; font: 500 13px/1.4 var(--cf-font); color: #C03434; }
.cf-field__error span { display: block; }
.cf-form__alert { margin: 4px 0 16px; padding: 12px 14px; border-radius: 10px; font: 500 14px/1.5 var(--cf-font); }
.cf-form__alert--error { background: #FFF1F1; color: #B42323; border: 1px solid #F5C9C9; }
.cf-form__alert--success { background: var(--cf-green-50); color: var(--cf-green-700); border: 1px solid #CFE6CC; }
.cf-form__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 14px 20px; margin-top: 6px; }
.cf-form__submit { min-width: 190px; justify-content: center; border: 0; cursor: pointer; }
.cf-form__submit:disabled { opacity: .55; cursor: not-allowed; transform: none; box-shadow: none; }
.cf-form__privacy { font: 400 13px/1.5 var(--cf-font); color: var(--cf-muted); }

.cf-contact-map { line-height: 0; }
.cf-contact-map iframe { display: block; width: 100%; height: 420px; border: 0; }

@media (max-width: 991px) {
  .cf-contact { grid-template-columns: 1fr; }
  .cf-contact__info { padding: 32px 28px; }
  .cf-contact__form { padding: 32px 28px; }
}
@media (max-width: 575px) {
  .cf-contact-section { padding-top: 32px; }
  .cf-contact { border-radius: 16px; }
  .cf-contact__info, .cf-contact__form { padding: 26px 20px; }
  .cf-form__row { grid-template-columns: 1fr; }
  .cf-form__submit { width: 100%; }
  .cf-contact-map iframe { height: 320px; }
}

/* Service page callout and document checklists (Cargo Claim) */
.cf-notice { margin: 32px 0; padding: 18px 22px 18px 20px; border-radius: var(--cf-radius); background: #FFF7E6; border: 1px solid #F5D9A0; border-left: 4px solid #E0A526; font-family: var(--cf-font); }
.cf-notice strong { display: block; font: 600 16.5px/1.4 var(--cf-font); color: var(--cf-navy); }
.cf-notice p { margin: 4px 0 0; font: 400 14.5px/1.6 var(--cf-font); color: var(--cf-text); }
.cf-docsets { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
@media (max-width: 991px) { .cf-docsets { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; } }
.cf-docset { padding: 26px; background: #fff; border: 1px solid var(--cf-border); border-radius: var(--cf-radius); font-family: var(--cf-font); }
.cf-docset small { display: block; font: 600 12px/1.3 var(--cf-font); letter-spacing: .06em; text-transform: uppercase; color: var(--cf-green-600); margin-bottom: 6px; }
.cf-docset h3 { font: 600 19px/1.35 var(--cf-font); color: var(--cf-navy); margin: 0 0 16px; }
.cf-docset .cf-checks { margin: 0; }
