:root {
  --green: #1fbd60;
  --green-dark: #159649;
  --green-soft: #e9f8ef;
  --ink: #111a16;
  --muted: #617067;
  --deep: #102e21;
  --deep-2: #173a2a;
  --paper: #ffffff;
  --wash: #f3f5f2;
  --line: #dfe6e1;
  --shadow: 0 16px 45px rgba(20, 42, 30, 0.08);
  --radius: 18px;
  --container: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, summary { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 {
  color: inherit;
  font-family: Sora, Inter, sans-serif;
  letter-spacing: -0.035em;
  line-height: 1.12;
}
h1 { font-size: clamp(2.7rem, 4.4vw, 4.75rem); }
h2 { margin-bottom: 1rem; font-size: clamp(2rem, 3vw, 3.25rem); }
h3 { margin-bottom: 0.75rem; font-size: 1.2rem; }
p { color: var(--muted); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.site-container {
  width: min(calc(100% - 3rem), var(--container));
  margin-inline: auto;
}
.section { padding: 6rem 0; }
.section-muted { background: var(--wash); }
.section-dark { color: #fff; background: var(--deep); }
.section-dark p { color: #c4d0c8; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
  padding: 0.38rem 0.75rem;
  border: 1px solid rgba(31, 189, 96, 0.22);
  border-radius: 999px;
  color: var(--green-dark);
  background: var(--green-soft);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
}
.eyebrow::before {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--green);
  content: "";
}
.eyebrow-dark {
  border-color: rgba(65, 226, 132, 0.23);
  color: #5ddd91;
  background: rgba(31, 189, 96, 0.09);
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 0.86rem;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
  cursor: pointer;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(31, 189, 96, 0.32);
  outline-offset: 3px;
}
.button-primary { color: #fff; background: var(--green); box-shadow: 0 8px 22px rgba(31, 189, 96, 0.24); }
.button-primary:hover { background: var(--green-dark); box-shadow: 0 12px 25px rgba(31, 189, 96, 0.28); }
.button-ghost { border-color: var(--line); color: #223027; background: #fff; }
.button-ghost:hover { border-color: #c7d3cb; background: #f8faf8; }
.button-light { border-color: rgba(255,255,255,.7); color: var(--deep); background: #fff; box-shadow: 0 8px 24px rgba(0,0,0,.15); }
.button-light:hover { background: #f0f7f2; }
.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
}
.nav-shell { display: flex; min-height: 76px; align-items: center; gap: 2rem; }
.brand { display: inline-flex; width: 116px; flex: 0 0 auto; align-items: center; }
.brand img { width: 100%; height: auto; }
.primary-nav { display: flex; align-items: center; gap: 2rem; margin-left: auto; }
.primary-nav > a, .nav-dropdown > summary {
  color: #304138;
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: none;
  cursor: pointer;
}
.primary-nav > a:hover, .nav-dropdown > summary:hover { color: var(--green-dark); }
.nav-dropdown { position: relative; }
.nav-dropdown > summary { list-style: none; }
.nav-dropdown > summary::-webkit-details-marker { display: none; }
.nav-dropdown > summary::after { margin-left: 0.4rem; content: "⌄"; }
.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 1.2rem);
  left: 50%;
  display: grid;
  width: 540px;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
  transform: translateX(-42%);
}
.nav-dropdown-panel a { display: flex; flex-direction: column; padding: 0.8rem; border-radius: 9px; text-decoration: none; }
.nav-dropdown-panel a:hover { background: var(--wash); }
.nav-dropdown-panel strong { font-size: 0.82rem; }
.nav-dropdown-panel span { color: var(--muted); font-size: 0.72rem; }
.nav-actions { display: flex; flex: 0 0 auto; gap: 0.65rem; }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; }
.nav-toggle > span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; border-radius: 2px; background: var(--ink); }

/* Hero */
.hero { position: relative; min-height: 780px; overflow: hidden; color: #fff; background: var(--deep); }
.hero-background {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(9,36,25,.94) 0%, rgba(9,36,25,.82) 43%, rgba(9,36,25,.4) 100%), url("/images/rick-cargo-georgia-fulfillment-warehouse-hub.jpg");
  background-position: center;
  background-size: cover;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 780px;
  grid-template-columns: minmax(0, 1.05fr) minmax(410px, .78fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 6.8rem);
  padding-block: 4.5rem;
}
.hero-copy { max-width: 690px; }
.hero h1 { max-width: 760px; margin-bottom: 1.35rem; }
.hero h1 span { color: var(--green); }
.hero-lede { max-width: 680px; margin-bottom: 1.8rem; color: rgba(255,255,255,.84); font-size: 1.05rem; }
.check-list, .mini-list { margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 2rem; }
.check-list li::before {
  position: absolute;
  top: 0.05rem;
  left: 0;
  display: grid;
  width: 1.3rem;
  height: 1.3rem;
  place-items: center;
  border-radius: 50%;
  color: #06733a;
  background: #dff7e9;
  font-size: 0.75rem;
  font-weight: 900;
  content: "✓";
}
.hero-checks { display: grid; gap: 0.8rem; color: rgba(255,255,255,.88); font-size: 0.93rem; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 1.9rem; }
.hero-proof span { padding: 0.45rem 0.7rem; border: 1px solid rgba(31,189,96,.3); border-radius: 999px; color: #4cdb85; background: rgba(31,189,96,.08); font-size: 0.64rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.lead-card { padding: 1.75rem; border: 1px solid rgba(255,255,255,.7); border-radius: 20px; color: var(--ink); background: #fff; box-shadow: 0 28px 65px rgba(0,0,0,.28); }
.lead-card-heading { margin-bottom: 1rem; text-align: center; }
.lead-card-heading h2 { margin-bottom: .25rem; font-size: 1.35rem; }
.lead-card-heading p { margin-bottom: 0; font-size: 0.78rem; }
.lead-card form { display: grid; gap: .78rem; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }
.lead-card label, .lead-card legend { color: #6d7972; font-size: .64rem; font-weight: 800; letter-spacing: .055em; text-transform: uppercase; }
.lead-card input:not([type="checkbox"]), .lead-card select, .lead-card textarea {
  display: block;
  width: 100%;
  margin-top: .28rem;
  padding: .66rem .72rem;
  border: 1px solid #d7dfda;
  border-radius: 8px;
  color: #18231c;
  background: #fbfcfb;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: normal;
  text-transform: none;
}
.lead-card textarea { min-height: 64px; resize: vertical; }
.lead-card input::placeholder, .lead-card textarea::placeholder { color: #a1aba5; }
.platform-fieldset { margin: 0; padding: 0; border: 0; }
.platform-options { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: .3rem; }
.platform-options label { display: flex; align-items: center; gap: .35rem; padding: .42rem .55rem; border: 1px solid var(--line); border-radius: 7px; background: var(--wash); font-size: .64rem; letter-spacing: 0; text-transform: none; }
.platform-options input { accent-color: var(--green); }
.lead-submit { width: 100%; margin-top: .1rem; border: 0; text-transform: uppercase; letter-spacing: .055em; }
.privacy-note { margin: -.15rem 0 0; color: #829087; font-size: .64rem; text-align: center; }
.privacy-note::before { margin-right: .28rem; color: var(--green-dark); content: "●"; }
.honeypot { position: absolute; left: -10000px; }
.form-message { display: none; margin-top: 1rem; padding: .8rem; border-radius: 8px; font-size: .8rem; text-align: center; }
.form-success { color: #0c6e38; background: #e7f8ed; }
.form-error { color: #9f2e2e; background: #fff0f0; }

/* Integration strip */
.integration-strip { padding: 1.7rem 0; border-bottom: 1px solid var(--line); background: #fff; }
.integration-strip h2 { margin-bottom: 1.2rem; color: #9aa6a0; font-family: Inter, sans-serif; font-size: .66rem; font-weight: 800; letter-spacing: .15em; text-align: center; text-transform: uppercase; }
.integration-list { display: flex; align-items: center; justify-content: space-between; gap: 1.4rem; overflow-x: auto; scrollbar-width: none; }
.integration-list::-webkit-scrollbar { display: none; }
.integration-list span { display: inline-flex; flex: 0 0 auto; align-items: center; gap: .55rem; color: #4d5952; font-size: .77rem; font-weight: 700; white-space: nowrap; }
.integration-list i { display: grid; width: 1.65rem; height: 1.65rem; place-items: center; border-radius: 7px; color: var(--green-dark); background: var(--green-soft); font-size: .6rem; font-style: normal; font-weight: 900; }

/* Shared section headings */
.section-heading { max-width: 720px; margin-bottom: 2.8rem; }
.section-heading > p:last-child { margin-bottom: 0; }
.section-heading-split { display: grid; max-width: none; grid-template-columns: 1fr 1fr; align-items: end; gap: 4rem; }
.section-heading-split > p { max-width: 520px; justify-self: end; }
.section-heading-split > .button { justify-self: end; }
.section-heading-center { margin-inline: auto; text-align: center; }

/* Services */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.service-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 8px 24px rgba(19,42,29,.05); }
.service-card > img { width: 100%; height: 190px; object-fit: cover; }
.service-card > div { display: flex; min-height: 260px; flex-direction: column; padding: 1.4rem; }
.service-card h3 { font-size: 1.12rem; }
.service-card p { margin-bottom: 1.2rem; font-size: .86rem; }
.service-card a { margin-top: auto; color: var(--green-dark); font-size: .79rem; font-weight: 800; text-decoration: none; }
.service-card a:hover span { margin-left: .22rem; }
.service-card-compact { grid-column: span 1; }
.service-card-compact > img { height: 160px; }
.service-card-compact > div { min-height: 230px; }
.presentation-card {
  position: relative;
  display: flex;
  min-height: 390px;
  grid-column: span 2;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  overflow: hidden;
  padding: 2.3rem;
  border-radius: var(--radius);
  color: #fff;
  background-image: linear-gradient(90deg, rgba(12,43,30,.94), rgba(12,43,30,.4)), url("/images/rick-cargo-logistics-truck-dock.jpg");
  background-position: center;
  background-size: cover;
}
.presentation-card > div { position: relative; z-index: 1; max-width: 500px; }
.presentation-card h3 { font-size: 1.75rem; }
.presentation-card p { margin-bottom: 0; color: #cad6ce; }
.presentation-card .button { position: relative; z-index: 1; flex: 0 0 auto; }

/* Feature split */
.split-layout { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(3rem, 7vw, 7rem); }
.split-layout > div:first-child { max-width: 560px; }
.split-layout h2 { color: inherit; }
.feature-image { width: 100%; height: 410px; border-radius: var(--radius); object-fit: cover; box-shadow: 0 22px 50px rgba(0,0,0,.22); }
.technology-section .button-row { margin-top: 1.6rem; }
.system-status { display: inline-flex; align-items: center; gap: .5rem; color: #a8b8ae; font-size: .77rem; font-weight: 700; }
.system-status i { width: .55rem; height: .55rem; border-radius: 50%; background: #42d97c; box-shadow: 0 0 0 5px rgba(66,217,124,.12); }

/* Capabilities */
.capability-grid, .guarantee-grid, .testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.capability-card { display: flex; min-height: 390px; flex-direction: column; padding: 2rem; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.card-icon { display: grid; width: 2.5rem; height: 2.5rem; place-items: center; margin-bottom: 1.4rem; border-radius: 10px; color: var(--green-dark); background: var(--green-soft); font-size: .72rem; font-weight: 900; }
.capability-card p { font-size: .87rem; }
.capability-card-featured { color: #fff; border-color: rgba(31,189,96,.25); background: var(--deep); }
.capability-card-featured p { color: #bccbc1; }
.mini-list { display: grid; gap: .55rem; margin-top: auto; padding-top: 1rem; }
.mini-list li { position: relative; padding-left: 1.15rem; color: #526158; font-size: .75rem; font-weight: 650; }
.mini-list li::before { position: absolute; left: 0; color: var(--green); content: "✓"; }
.capability-card-featured .mini-list li, .price-list-card .mini-list li { color: #c5d2ca; }

/* Guarantees */
.guarantee-card { position: relative; min-height: 310px; padding: 2.2rem; border: 1px solid var(--line); border-top: 4px solid var(--green); border-radius: 14px; text-align: center; background: #fff; box-shadow: 0 12px 30px rgba(18,43,28,.06); }
.guarantee-number { display: block; margin: .4rem 0 1rem; color: var(--green-dark); font-family: Sora, sans-serif; font-size: 2.7rem; font-weight: 800; line-height: 1; }
.guarantee-card h3 { font-size: 1rem; }
.guarantee-card p { font-size: .82rem; }
.guarantee-card small { display: inline-block; margin-top: 1rem; padding: .35rem .65rem; border-radius: 999px; color: var(--green-dark); background: var(--green-soft); font-size: .63rem; font-weight: 800; }

/* Location */
.location-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 1.5rem; }
.map-card { position: relative; min-height: 520px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--wash); }
.map-card iframe { width: 100%; height: 100%; min-height: 520px; border: 0; filter: saturate(.65) contrast(.94); }
.map-caption { position: absolute; right: 1rem; bottom: 1rem; left: 1rem; display: flex; flex-direction: column; padding: 1.1rem 1.25rem; border: 1px solid rgba(255,255,255,.65); border-radius: 12px; background: rgba(255,255,255,.94); box-shadow: 0 10px 30px rgba(0,0,0,.13); backdrop-filter: blur(10px); }
.map-caption strong { font-family: Sora, sans-serif; font-size: .95rem; }
.map-caption span { color: var(--muted); font-size: .72rem; }
.location-benefits { display: grid; gap: .8rem; }
.location-benefits article, .infrastructure-features article { display: flex; gap: 1rem; padding: 1.15rem; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.location-benefits article > span, .infrastructure-features article > span { display: grid; width: 2rem; height: 2rem; flex: 0 0 auto; place-items: center; border-radius: 8px; color: var(--green-dark); background: var(--green-soft); font-size: .65rem; font-weight: 900; }
.location-benefits h3, .infrastructure-features h3 { margin-bottom: .3rem; font-size: .92rem; }
.location-benefits p, .infrastructure-features p { margin-bottom: 0; font-size: .76rem; }
.coverage-banner { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 2rem; margin-top: 1.5rem; padding: 2.5rem; overflow: hidden; border-radius: var(--radius); color: #fff; background: var(--deep); }
.coverage-banner h3 { font-size: 1.6rem; }
.coverage-banner p { color: #c1d0c6; }
.coverage-banner img { width: 100%; max-width: 560px; max-height: 230px; justify-self: end; opacity: .9; object-fit: contain; }
.coverage-stats { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.5rem; }
.coverage-stats span { display: flex; min-width: 105px; flex-direction: column; padding: .7rem .85rem; border: 1px solid rgba(255,255,255,.1); border-radius: 9px; color: #9eb1a5; background: rgba(255,255,255,.04); font-size: .62rem; }
.coverage-stats strong { color: #fff; font-family: Sora, sans-serif; font-size: 1.15rem; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 1.25rem; }
.pricing-table-wrap { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.pricing-table-wrap table { width: 100%; border-collapse: collapse; }
.pricing-table-wrap th, .pricing-table-wrap td { padding: 1.15rem 1.25rem; border-bottom: 1px solid var(--line); text-align: left; }
.pricing-table-wrap th { color: #78857d; background: #fafbfa; font-size: .66rem; letter-spacing: .08em; text-transform: uppercase; }
.pricing-table-wrap td { color: #536158; font-size: .8rem; }
.pricing-table-wrap td:first-child { color: var(--ink); font-weight: 750; }
.pricing-table-wrap tr:last-child td { border-bottom: 0; }
.table-note { margin: 0; padding: .9rem 1.25rem; border-top: 1px solid var(--line); color: #859188; background: #fafbfa; font-size: .66rem; }
.price-list-card { display: flex; flex-direction: column; padding: 2rem; border-radius: var(--radius); color: #fff; background: linear-gradient(155deg, #102e21, #265039); box-shadow: var(--shadow); }
.price-list-card h3 { font-size: 2rem; }
.price-list-card p { color: #c5d1c9; font-size: .85rem; }
.price-list-card .button { margin: .8rem 0; }

/* Testimonials */
.testimonial-grid figure { display: flex; min-height: 330px; flex-direction: column; margin: 0; padding: 1.8rem; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.stars { margin-bottom: 1rem; color: #f2a928; font-size: .78rem; letter-spacing: .12em; }
.testimonial-grid blockquote { margin: 0 0 1.6rem; color: #3e4c43; font-size: .89rem; line-height: 1.75; }
.testimonial-grid figcaption { display: flex; flex-direction: column; margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--line); }
.testimonial-grid figcaption strong { font-size: .82rem; }
.testimonial-grid figcaption span { color: var(--muted); font-size: .69rem; }

/* CTA */
.scale-cta { position: relative; padding: 3.8rem 0; color: #fff; background-image: linear-gradient(90deg, rgba(10,42,28,.96), rgba(10,42,28,.72)), url("/images/rick-cargo-logistics-truck-dock.jpg"); background-position: center; background-size: cover; }
.scale-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 3rem; }
.scale-cta h2 { margin-bottom: .55rem; font-size: clamp(1.7rem, 3vw, 2.6rem); }
.scale-cta p { max-width: 650px; margin-bottom: 0; color: #d0dbd4; }

/* Infrastructure */
.infrastructure-features { display: grid; gap: .7rem; margin: 1.6rem 0; }
.infrastructure-features article { border-color: rgba(255,255,255,.09); background: rgba(255,255,255,.04); }
.infrastructure-features article > span { color: #61dc92; background: rgba(31,189,96,.13); }
.infrastructure-features h3 { color: #fff; }
.infrastructure-features p { color: #9fb1a6; }
.infrastructure-visual { display: grid; gap: 1rem; }
.infrastructure-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.infrastructure-stats span { display: flex; flex-direction: column; padding: 1.2rem; border: 1px solid rgba(255,255,255,.08); border-radius: 12px; color: #a8b9ae; background: rgba(255,255,255,.04); font-size: .7rem; text-align: center; }
.infrastructure-stats strong { color: #59dc8d; font-family: Sora, sans-serif; font-size: 1.8rem; }

/* Insights */
.insights-section .section-heading-split { grid-template-columns: .8fr 1fr auto; }
.insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.insight-grid article { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 8px 25px rgba(18,43,28,.05); }
.insight-grid a { display: block; height: 100%; text-decoration: none; }
.insight-grid img { width: 100%; height: 195px; object-fit: cover; }
.insight-grid article > a > div { display: flex; min-height: 260px; flex-direction: column; padding: 1.35rem; }
.article-meta { margin-bottom: .65rem; color: var(--green-dark); font-size: .65rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.insight-grid h3 { font-size: 1.02rem; line-height: 1.35; }
.insight-grid article p:not(.article-meta) { font-size: .78rem; }
.insight-grid article span { margin-top: auto; color: var(--green-dark); font-size: .76rem; font-weight: 800; }

/* SEO summary and FAQ */
.seo-summary { padding: 3.5rem 0; border-block: 1px solid var(--line); background: #fff; }
.seo-summary .site-container { max-width: 1040px; }
.seo-summary h2 { font-size: 1.35rem; }
.seo-summary p { margin-bottom: 0; font-size: .84rem; line-height: 1.8; }
.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; align-items: start; gap: 5rem; }
.faq-list { display: grid; gap: .75rem; }
.faq-list details { border: 1px solid var(--line); border-radius: 12px; background: #fff; box-shadow: 0 5px 18px rgba(18,43,28,.04); }
.faq-list summary { position: relative; padding: 1.15rem 3.5rem 1.15rem 1.25rem; list-style: none; font-size: .85rem; font-weight: 750; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; top: 50%; right: 1.25rem; display: grid; width: 1.55rem; height: 1.55rem; place-items: center; border-radius: 50%; color: var(--green-dark); background: var(--green-soft); content: "+"; transform: translateY(-50%); }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: 0; padding: 0 1.25rem 1.15rem; font-size: .78rem; }

/* Footer */
.site-footer { padding: 4.8rem 0 1.5rem; color: #fff; background: #0b2419; }
.footer-grid { display: grid; grid-template-columns: 1.55fr 1fr 1fr 1fr 1.25fr; gap: 2.5rem; }
.footer-brand img { width: 120px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer-brand p { max-width: 290px; color: #9caf9f; font-size: .78rem; }
.footer-grid h2 { margin-bottom: 1rem; color: #fff; font-family: Inter, sans-serif; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-grid > div:not(.footer-brand), .footer-grid address { display: flex; flex-direction: column; gap: .55rem; }
.footer-grid a { color: #aebeb3; font-size: .75rem; text-decoration: none; }
.footer-grid a:hover { color: #59dc8d; }
.footer-grid address { font-style: normal; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 2rem; margin-top: 3.5rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.09); color: #7f9487; font-size: .68rem; }
.footer-bottom > div { display: flex; gap: 1.2rem; }
.footer-bottom a { color: inherit; text-decoration: none; }

@media (max-width: 1100px) {
  .primary-nav { gap: 1.25rem; }
  .primary-nav > a, .nav-dropdown > summary { font-size: .8rem; }
  .nav-actions .button { padding-inline: .9rem; }
  .hero-grid { grid-template-columns: 1fr 420px; gap: 3rem; }
  .footer-grid { grid-template-columns: 1.4fr repeat(4, 1fr); gap: 1.6rem; }
}

@media (max-width: 900px) {
  .section { padding: 4.5rem 0; }
  .nav-shell { min-height: 68px; }
  .nav-toggle { display: block; margin-left: auto; }
  .primary-nav {
    position: fixed;
    top: 68px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 1.5rem;
    overflow-y: auto;
    background: #fff;
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav > a, .nav-dropdown > summary { display: block; padding: .9rem 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav-dropdown-panel { position: static; width: 100%; grid-template-columns: 1fr; padding: .5rem 0; border: 0; box-shadow: none; transform: none; }
  .nav-actions { display: none; }
  .hero-grid { grid-template-columns: 1fr; padding-block: 4rem; }
  .hero-copy { max-width: 760px; }
  .lead-card { max-width: 620px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card-compact { grid-column: span 1; }
  .presentation-card { min-height: 360px; grid-column: span 1; align-items: flex-start; flex-direction: column; }
  .split-layout, .location-grid, .pricing-grid, .faq-layout { grid-template-columns: 1fr; }
  .split-layout { gap: 2.8rem; }
  .split-layout > div:first-child { max-width: none; }
  .capability-grid, .guarantee-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .capability-card, .guarantee-card, .testimonial-grid figure { min-height: auto; }
  .coverage-banner { grid-template-columns: 1fr; }
  .coverage-banner img { justify-self: center; }
  .insights-section .section-heading-split { grid-template-columns: 1fr; }
  .section-heading-split > p, .section-heading-split > .button { justify-self: start; }
  .insight-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-brand { grid-row: span 2; }
}

@media (max-width: 640px) {
  .site-container { width: min(calc(100% - 2rem), var(--container)); }
  .section { padding: 3.6rem 0; }
  h1 { font-size: clamp(2.25rem, 11vw, 3.25rem); }
  h2 { font-size: 2rem; }
  .hero-grid { padding-block: 3rem; }
  .hero-background { background-image: linear-gradient(rgba(9,36,25,.92), rgba(9,36,25,.92)), url("/images/rick-cargo-georgia-fulfillment-warehouse-hub.jpg"); }
  .hero-lede { font-size: .94rem; }
  .lead-card { padding: 1.25rem; border-radius: 15px; }
  .field-grid { grid-template-columns: 1fr; }
  .hero-proof span { font-size: .56rem; }
  .section-heading, .section-heading-split { margin-bottom: 2rem; }
  .section-heading-split { grid-template-columns: 1fr; gap: 1rem; }
  .service-grid, .insight-grid { grid-template-columns: 1fr; }
  .presentation-card { min-height: 390px; padding: 1.5rem; }
  .feature-image { height: 300px; }
  .map-card, .map-card iframe { min-height: 430px; }
  .coverage-banner { padding: 1.5rem; }
  .coverage-stats { display: grid; grid-template-columns: 1fr 1fr; }
  .pricing-table-wrap { overflow-x: auto; }
  .pricing-table-wrap table { min-width: 650px; }
  .scale-cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; grid-row: auto; }
  .footer-grid address { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-bottom > div { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
