/*
Theme Name: TrueWayTrucking
Theme URI: https://example.com/truewaytrucking
Author: TrueWayTrucking
Author URI: https://example.com
Description: An original, responsive logistics dispatch website for owner-operators and small fleets.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: freightflow
*/

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --ink: #20333a;
  --ink-soft: #5b6a6d;
  --teal: #289b87;
  --teal-dark: #207b6d;
  --amber: #db9850;
  --amber-light: #f0b56f;
  --paper: #f5f1e8;
  --paper-light: #fbf8f0;
  --mint: #e9eee6;
  --mint-deep: #dce8e0;
  --line: #d9ded5;
  --radius: 20px;
  --display: 'Space Grotesk', sans-serif;
  --body: 'DM Sans', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.5;
}
body, button, input, select, textarea { font-family: var(--body); }
a { color: inherit; text-decoration: none; }
button, a, input, select, textarea { -webkit-tap-highlight-color: transparent; }
img, svg { max-width: 100%; }
button { cursor: pointer; }
.ff-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at 88% 4%, rgba(221, 154, 81, .11), transparent 26rem),
    var(--paper);
}
.ff-container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.ff-display { font-family: var(--display); }
.ff-topbar {
  padding: 8px 16px;
  background: var(--ink);
  color: var(--paper);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-align: center;
  text-transform: uppercase;
}
.ff-topbar strong { color: var(--amber-light); }
.ff-topbar span { color: #88a7a2; margin: 0 8px; }
.ff-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(223, 226, 216, .7);
  background: rgba(245, 241, 232, .85);
  transition: background-color .22s ease, box-shadow .22s ease;
}
.ff-nav.is-scrolled { background: rgba(245, 241, 232, .9); box-shadow: 0 10px 35px rgba(32, 51, 58, .08); backdrop-filter: blur(16px); }
.ff-nav-inner { display: flex; min-height: 76px; align-items: center; justify-content: space-between; }
.ff-brand { display: inline-flex; align-items: center; gap: 12px; }
.ff-brand-mark {
  display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center;
  border-radius: 13px; background: var(--ink); color: var(--paper);
  transition: transform .2s ease;
}
.ff-monogram-wrap { overflow: hidden; }
.ff-monogram { display: block; width: 100%; height: 100%; border-radius: inherit; object-fit: cover; }
.ff-brand:hover .ff-brand-mark { transform: rotate(-5deg); }
.ff-brand-name { color: var(--ink); font-family: var(--display); font-size: 1.08rem; font-weight: 700; letter-spacing: -.04em; }
.ff-brand-name em { color: var(--teal); font-style: normal; }
.ff-brand-name b { color: var(--amber); font-weight: 700; }
.ff-nav-links { display: flex; align-items: center; gap: 28px; }
.ff-nav-link { position: relative; color: var(--ink-soft); font-size: 14px; font-weight: 600; }
.ff-nav-link::after { position: absolute; bottom: -8px; left: 0; width: 0; height: 2px; background: var(--teal); content: ''; transition: width .18s ease; }
.ff-nav-link:hover, .ff-nav-link:focus-visible { color: var(--ink); }
.ff-nav-link:hover::after, .ff-nav-link:focus-visible::after { width: 100%; }
.ff-nav-actions { display: flex; align-items: center; gap: 16px; }
.ff-phone-link { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; }
.ff-phone-link:hover { color: var(--teal-dark); }
.ff-mobile-toggle { display: none; width: 44px; height: 44px; border: 1px solid #ccd2c8; border-radius: 50%; background: transparent; color: var(--ink); }
.ff-mobile-panel { display: none; }
.ff-button {
  display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 10px;
  border: 0; border-radius: 999px; padding: 13px 20px; font-size: 14px; font-weight: 700;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.ff-button:hover { transform: translateY(-2px); }
.ff-button:active { transform: translateY(0); }
.ff-button-primary { background: var(--teal); color: var(--paper-light); box-shadow: 0 10px 24px rgba(40, 155, 135, .24); }
.ff-button-primary:hover { background: var(--teal-dark); box-shadow: 0 14px 28px rgba(40, 155, 135, .29); }
.ff-button-dark { background: var(--ink); color: var(--paper-light); box-shadow: 0 10px 22px rgba(32, 51, 58, .18); }
.ff-button-dark:hover { background: #2d4b52; }
.ff-button-quiet { border: 1px solid #ccd2c8; background: rgba(249, 245, 235, .65); color: var(--ink); }
.ff-button-quiet:hover { border-color: var(--teal); background: var(--paper-light); }
.ff-hero-wrap { padding: 48px 0 96px; }
.ff-hero-grid {
  display: grid; overflow: hidden; grid-template-columns: 1.02fr .98fr;
  border: 1px solid rgba(32, 51, 58, .08); border-radius: 26px;
  background-image: linear-gradient(rgba(32, 51, 58, .055) 1px, transparent 1px), linear-gradient(90deg, rgba(32, 51, 58, .055) 1px, transparent 1px);
  background-size: 32px 32px;
}
.ff-hero-copy { position: relative; z-index: 1; padding: 64px; }
.ff-eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--teal-dark); font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.ff-eyebrow::before { width: 26px; height: 2px; background: var(--amber); content: ''; }
.ff-eyebrow-light { color: #94cabe; }
.ff-eyebrow-light::before { background: var(--amber-light); }
.ff-h1 { max-width: 650px; margin: 24px 0 0; font-family: var(--display); font-size: clamp(44px, 7vw, 92px); font-weight: 700; line-height: .94; letter-spacing: -.075em; }
.ff-h1 span, .ff-section-title span { color: var(--teal); }
.ff-lead { max-width: 520px; margin: 28px 0 0; color: var(--ink-soft); font-size: 18px; line-height: 1.55; }
.ff-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.ff-proof-line { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 40px; color: var(--ink-soft); font-size: 12px; font-weight: 700; }
.ff-proof-line span { display: inline-flex; align-items: center; gap: 8px; }
.ff-proof-line svg { color: var(--teal); }
.ff-proof-line span:last-child svg { color: var(--amber); }
.ff-route-wrap { position: relative; min-height: 500px; margin: 20px 20px 20px 0; }
.ff-route-card { position: relative; height: 100%; min-height: 500px; overflow: hidden; border-radius: 24px; background: var(--mint-deep); box-shadow: 0 22px 60px rgba(32, 51, 58, .14); }
.ff-route-card::before { position: absolute; inset: 0; background: radial-gradient(circle at 75% 15%, rgba(255, 240, 192, .82), transparent 17rem), linear-gradient(145deg, rgba(255, 255, 255, .36), transparent 55%); content: ''; }
.ff-route-card::after { position: absolute; top: 23%; left: 8%; width: 90%; height: 46%; border: 2px dashed rgba(32, 51, 58, .43); border-left-color: transparent; border-radius: 48% 54% 38% 58%; content: ''; transform: rotate(-16deg); }
.ff-route-badge { position: absolute; top: 28px; left: 28px; z-index: 3; border: 1px solid rgba(32, 51, 58, .1); border-radius: 999px; background: rgba(249, 245, 235, .75); padding: 8px 12px; backdrop-filter: blur(8px); color: var(--ink-soft); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.ff-route-copy { position: absolute; bottom: 28px; left: 28px; z-index: 3; max-width: 210px; }
.ff-route-copy strong { display: block; font-family: var(--display); font-size: 29px; line-height: .98; letter-spacing: -.06em; }
.ff-route-copy p { margin: 12px 0 0; color: var(--ink-soft); font-size: 12px; line-height: 1.6; }
.ff-route-dot { position: absolute; z-index: 2; width: 17px; height: 17px; border: 4px solid var(--paper-light); border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 5px rgba(40, 155, 135, .16); }
.ff-route-dot-orange { background: var(--amber); box-shadow: 0 0 0 5px rgba(219, 152, 80, .17); }
.ff-route-label { position: absolute; z-index: 3; max-width: 132px; border: 1px solid rgba(32, 51, 58, .12); border-radius: 10px; background: rgba(249, 245, 235, .84); padding: 9px 11px; color: var(--ink); font-size: 12px; font-weight: 700; line-height: 1.25; box-shadow: 0 8px 18px rgba(32, 51, 58, .07); backdrop-filter: blur(8px); }
.ff-route-label small { color: var(--ink-soft); font-size: 11px; font-weight: 400; }
.ff-route-stat { position: absolute; top: 48%; right: 10%; z-index: 4; border-radius: 12px; background: var(--ink); padding: 8px 12px; color: var(--paper); font-size: 10px; font-weight: 700; line-height: 1.6; box-shadow: 0 10px 22px rgba(32, 51, 58, .18); animation: ff-float 5s ease-in-out infinite; }
.ff-route-stat strong { color: var(--amber-light); }
.ff-truck-marker { position: absolute; bottom: 19%; left: 47%; z-index: 3; display: flex; width: 36px; height: 36px; align-items: center; justify-content: center; border-radius: 50%; background: var(--paper-light); color: var(--teal); box-shadow: 0 8px 20px rgba(32, 51, 58, .12); }
.ff-proof-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--mint); }
.ff-proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.ff-proof-item { padding: 28px 24px; border-right: 1px solid #ccd7ce; }
.ff-proof-item:last-child { border-right: 0; }
.ff-proof-item b { display: block; color: var(--amber); font-family: monospace; font-size: 11px; }
.ff-proof-item strong { display: block; margin-top: 10px; font-size: 14px; line-height: 1.4; }
.ff-proof-item small { display: block; margin-top: 3px; color: #6b7d7d; font-size: 12px; }
.ff-section { padding: 96px 0; }
.ff-section-heading { display: grid; grid-template-columns: .8fr 1.2fr; gap: 40px; align-items: end; }
.ff-section-title { max-width: 470px; margin: 20px 0 0; font-family: var(--display); font-size: clamp(38px, 5vw, 60px); font-weight: 700; line-height: 1.02; letter-spacing: -.06em; }
.ff-section-intro { max-width: 520px; margin: 0; justify-self: end; color: var(--ink-soft); font-size: 16px; line-height: 1.75; }
.ff-service-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; margin-top: 56px; }
.ff-service-card { grid-column: span 5; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper-light); padding: 32px; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.ff-service-card:nth-child(1), .ff-service-card:nth-child(4) { grid-column: span 7; }
.ff-service-card:hover { border-color: rgba(40, 155, 135, .45); box-shadow: 0 18px 40px rgba(32, 51, 58, .1); transform: translateY(-5px); }
.ff-icon-box { display: flex; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 12px; background: #dcebe4; color: var(--teal-dark); }
.ff-service-index { float: right; color: #b0bbb4; font-family: monospace; font-size: 12px; font-weight: 700; }
.ff-service-card h3 { margin: 36px 0 0; font-family: var(--display); font-size: 24px; letter-spacing: -.04em; }
.ff-service-card p { max-width: 470px; margin: 12px 0 0; color: #657477; font-size: 14px; line-height: 1.7; }
.ff-included { display: flex; align-items: center; gap: 8px; margin-top: 28px; color: var(--teal); font-size: 12px; font-weight: 700; }
.ff-included i { width: 6px; height: 6px; border-radius: 50%; background: var(--amber); }
.ff-dark-band { background: var(--ink); color: var(--paper); }
.ff-dark-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 48px; align-items: center; }
.ff-dark-band .ff-section-title { max-width: 500px; }
.ff-dark-band .ff-section-title span { color: var(--amber-light); }
.ff-dark-band .ff-lead { color: #b8c8c1; }
.ff-dark-band .ff-button-quiet { border-color: #63827d; background: transparent; color: var(--paper); }
.ff-dark-band .ff-button-quiet:hover { border-color: #94cabe; background: #2d4b52; }
.ff-human-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.ff-human-card { border: 1px solid #38555a; border-radius: 16px; background: #263f45; padding: 24px; transition: border-color .18s ease; }
.ff-human-card:hover { border-color: #5b8d85; }
.ff-human-card svg { color: var(--amber-light); }
.ff-human-card h3 { margin: 28px 0 0; font-family: var(--display); font-size: 18px; letter-spacing: -.03em; }
.ff-human-card p { margin: 8px 0 0; color: #a9bcb5; font-size: 14px; line-height: 1.7; }
.ff-process-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px; }
.ff-process-line { position: absolute; top: 28px; right: 13%; left: 13%; height: 1px; background: #cdd9d0; }
.ff-process-step { position: relative; }
.ff-step-number { position: relative; z-index: 1; display: flex; width: 56px; height: 56px; align-items: center; justify-content: center; border: 5px solid var(--paper); border-radius: 50%; background: #dcebe4; color: var(--teal-dark); font-family: monospace; font-size: 14px; font-weight: 700; box-shadow: 0 0 0 1px #cdd9d0; }
.ff-process-step h3 { margin: 28px 0 0; font-family: var(--display); font-size: 24px; letter-spacing: -.04em; }
.ff-process-step p { max-width: 300px; margin: 12px 0 0; color: #657477; font-size: 14px; line-height: 1.7; }
.ff-coverage-band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--mint); }
.ff-coverage-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: center; }
.ff-tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.ff-tag { border: 1px solid #c6d2c9; border-radius: 999px; background: var(--paper); padding: 8px 12px; color: #476166; font-size: 12px; font-weight: 700; }
.ff-lane-card { position: relative; overflow: hidden; border: 1px solid #cbd8ce; border-radius: 22px; background: #dce8e0; padding: 32px; }
.ff-lane-card::before { position: absolute; inset: 0; opacity: .5; background-image: radial-gradient(#92afa5 1px, transparent 1px); background-size: 16px 16px; content: ''; }
.ff-lane-inner { position: relative; }
.ff-lane-header { display: flex; align-items: center; justify-content: space-between; padding-bottom: 20px; border-bottom: 1px solid #b6cbc0; }
.ff-lane-kicker { color: #66847d; font-family: monospace; font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.ff-lane-title { margin-top: 4px; font-family: var(--display); font-size: 21px; font-weight: 700; letter-spacing: -.04em; }
.ff-live { display: inline-flex; align-items: center; gap: 6px; border-radius: 999px; background: var(--paper); padding: 4px 10px; color: var(--teal-dark); font-size: 10px; font-weight: 700; }
.ff-live i { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }
.ff-lane-list { display: grid; gap: 12px; margin-top: 20px; }
.ff-lane-row { display: grid; grid-template-columns: 1fr auto auto; gap: 12px; align-items: center; border-radius: 11px; background: rgba(245, 241, 232, .7); padding: 14px; }
.ff-lane-row strong { color: #304b50; font-size: 12px; }
.ff-lane-row span { color: #66847d; font-size: 10px; font-weight: 700; }
.ff-lane-row b { color: var(--teal-dark); font-family: monospace; font-size: 12px; }
.ff-lane-row b small { font-size: 9px; font-weight: 400; }
.ff-lane-note { display: flex; align-items: center; gap: 8px; margin-top: 20px; color: #66847d; font-size: 11px; }
.ff-testimonials-faq { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; }
.ff-quote { max-width: 500px; margin: 24px 0 0; font-family: var(--display); font-size: clamp(28px, 4vw, 44px); font-weight: 700; line-height: 1.08; letter-spacing: -.055em; }
.ff-quote-person { display: flex; align-items: center; gap: 12px; margin-top: 28px; }
.ff-avatar { display: flex; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 50%; background: var(--amber); font-weight: 700; }
.ff-quote-person strong { display: block; font-size: 14px; }
.ff-quote-person span { display: block; margin-top: 2px; color: #657477; font-size: 12px; }
.ff-faq-list { margin-top: 24px; border-top: 1px solid #d5dbd2; }
.ff-faq-item { border-bottom: 1px solid #d5dbd2; }
.ff-faq-question { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 20px; border: 0; background: transparent; padding: 20px 0; color: var(--ink); text-align: left; font-size: 14px; font-weight: 700; }
.ff-faq-question svg { flex: 0 0 auto; color: var(--teal); transition: transform .2s ease; }
.ff-faq-item.is-open .ff-faq-question svg { transform: rotate(180deg); }
.ff-faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .26s ease; }
.ff-faq-answer > div { overflow: hidden; }
.ff-faq-item.is-open .ff-faq-answer { grid-template-rows: 1fr; }
.ff-faq-answer p { margin: 0; padding: 0 36px 20px 0; color: #657477; font-size: 14px; line-height: 1.7; }
.ff-contact-band { background: var(--mint-deep); }
.ff-contact-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 48px; align-items: start; }
.ff-contact-card { border: 1px solid #c7d6cc; border-radius: var(--radius); background: #f9f5eb; padding: 32px; box-shadow: 0 20px 60px rgba(32, 51, 58, .08); }
.ff-contact-card h3 { margin: 8px 0 0; font-family: var(--display); font-size: 27px; letter-spacing: -.05em; }
.ff-contact-form { display: grid; gap: 20px; }
.ff-form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.ff-field { display: block; color: #476166; font-size: 12px; font-weight: 700; }
.ff-field input, .ff-field select, .ff-field textarea { display: block; width: 100%; margin-top: 8px; border: 1px solid #ccd2c8; border-radius: 10px; outline: none; background: var(--paper-light); padding: 13px 14px; color: var(--ink); font: inherit; transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease; }
.ff-field textarea { min-height: 92px; resize: vertical; }
.ff-field input:focus, .ff-field select:focus, .ff-field textarea:focus { border-color: var(--teal); background: #fffdf8; box-shadow: 0 0 0 4px rgba(40, 155, 135, .12); }
.ff-field input::placeholder, .ff-field textarea::placeholder { color: #87918e; }
.ff-form-note { margin: -6px 0 0; color: #8a9691; font-size: 11px; line-height: 1.6; text-align: center; }
.ff-contact-details { display: grid; gap: 16px; margin-top: 36px; }
.ff-contact-detail { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; font-weight: 700; }
.ff-contact-detail address { color: var(--ink-soft); font-style: normal; font-weight: 500; line-height: 1.45; }
.ff-detail-icon { display: flex; width: 36px; height: 36px; flex: 0 0 auto; align-items: center; justify-content: center; border-radius: 50%; background: var(--paper); color: var(--teal-dark); }
.ff-detail-icon-amber { color: var(--amber); }
.ff-alert { margin-bottom: 20px; border-radius: 10px; padding: 12px 14px; font-size: 13px; font-weight: 600; }
.ff-alert-success { background: #dcebe4; color: var(--teal-dark); }
.ff-alert-error { background: #f4dddd; color: #8e3832; }
.ff-footer { background: var(--ink); color: var(--paper); }
.ff-footer-inner { display: flex; min-height: 170px; align-items: flex-end; justify-content: space-between; gap: 32px; padding: 40px 0; }
.ff-footer .ff-brand-name { color: var(--paper); }
.ff-footer-copy { max-width: 310px; margin: 16px 0 0; color: #9db2ac; font-size: 12px; line-height: 1.6; }
.ff-footer-right { color: #9db2ac; font-size: 12px; line-height: 1.9; text-align: right; }
.ff-footer-right a { color: var(--amber-light); font-weight: 700; }
.ff-footer-right small { display: block; margin-top: 8px; color: #6f8b87; }
.ff-float-wa { position: fixed; right: 22px; bottom: 22px; z-index: 30; display: inline-flex; align-items: center; gap: 10px; border: 2px solid var(--paper); border-radius: 999px; background: #277d6d; padding: 13px 17px 13px 14px; color: var(--paper-light); font-size: 12px; font-weight: 800; box-shadow: 0 14px 30px rgba(32, 51, 58, .21); transition: transform .18s ease, background-color .18s ease; }
.ff-float-wa:hover { background: var(--ink); transform: translateY(-3px); }
.ff-reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.ff-reveal.is-visible { opacity: 1; transform: translateY(0); }
.ff-noise::after { position: fixed; z-index: 50; inset: 0; pointer-events: none; opacity: .025; content: ''; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.4'/%3E%3C/svg%3E"); }
@keyframes ff-float { 0%, 100% { transform: translateY(0) rotate(1deg); } 50% { transform: translateY(-7px) rotate(-1deg); } }
@media (max-width: 960px) {
  .ff-nav-links, .ff-nav-actions { display: none; }
  .ff-mobile-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .ff-mobile-panel.is-open { display: block; border-top: 1px solid var(--line); background: var(--paper); padding: 20px 0 24px; }
  .ff-mobile-links { display: grid; gap: 18px; }
  .ff-mobile-links a { font-size: 18px; font-weight: 700; }
  .ff-mobile-links .ff-button { margin-top: 4px; }
  .ff-hero-copy { padding: 48px; }
  .ff-hero-grid { grid-template-columns: 1fr; }
  .ff-route-wrap { min-height: 420px; margin: 0 20px 20px; }
  .ff-route-card { min-height: 420px; }
  .ff-section-heading, .ff-dark-grid, .ff-coverage-grid, .ff-testimonials-faq, .ff-contact-grid { grid-template-columns: 1fr; }
  .ff-section-intro { justify-self: start; }
}
@media (max-width: 700px) {
  .ff-container { width: min(100% - 32px, 600px); }
  .ff-topbar { font-size: 10px; letter-spacing: .08em; }
  .ff-topbar span { display: none; }
  .ff-hero-wrap { padding: 32px 0 64px; }
  .ff-hero-copy { padding: 36px 24px; }
  .ff-h1 { font-size: clamp(46px, 14vw, 72px); }
  .ff-lead { font-size: 16px; }
  .ff-route-wrap, .ff-route-card { min-height: 360px; }
  .ff-proof-grid { grid-template-columns: repeat(2, 1fr); }
  .ff-proof-item { padding: 20px 16px; }
  .ff-proof-item:nth-child(2) { border-right: 0; }
  .ff-proof-item:nth-child(-n + 2) { border-bottom: 1px solid #ccd7ce; }
  .ff-section { padding: 72px 0; }
  .ff-service-grid { display: grid; grid-template-columns: 1fr; }
  .ff-service-card, .ff-service-card:nth-child(1), .ff-service-card:nth-child(4) { grid-column: auto; }
  .ff-human-grid, .ff-process-grid, .ff-form-grid { grid-template-columns: 1fr; }
  .ff-process-line { display: none; }
  .ff-lane-card, .ff-contact-card { padding: 24px; }
  .ff-footer-inner { align-items: flex-start; flex-direction: column; }
  .ff-footer-right { text-align: left; }
  .ff-float-wa { right: 14px; bottom: 14px; padding: 12px; }
  .ff-float-wa span { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}