/* ==========================================================================
   Kotoyori Road Service — Mobile-first styles
   Breakpoints: 761px (tablet), 1051px (desktop)
   ========================================================================== */

:root {
  --red: #d71927;
  --red-dark: #980b13;
  --navy: #111827;
  --navy-2: #202936;
  --ink: #1a2230;
  --muted: #677180;
  --paper: #f5f7fa;
  --line: #dce1e7;
  --white: #fff;
  --yellow: #f6b51d;
  --max: 1180px;
  --shadow: 0 18px 50px rgba(17, 24, 39, 0.12);
}

/* --------------------------------------------------------------------------
   Base (mobile)
   -------------------------------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Noto Sans JP", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.75;
  background: #fff;
  padding-bottom: 67px;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 28px), var(--max));
  margin-inline: auto;
}

.sp-only {
  display: block;
}

/* --------------------------------------------------------------------------
   Top alert — hidden on small mobile, shown from tablet up
   -------------------------------------------------------------------------- */

.top-alert {
  display: none;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
}

.top-alert__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-block: 6px;
}

.top-alert p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 9px;
}

.top-alert a {
  color: #fff;
  white-space: nowrap;
}

.top-alert strong {
  margin-left: 8px;
  font-size: 15px;
  letter-spacing: 0.04em;
}

.pulse-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 0 rgba(246, 181, 29, 0.7);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 9px rgba(246, 181, 29, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(246, 181, 29, 0);
  }
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.header-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.brand-mark {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--red);
  border-radius: 9px;
  transform: skew(-5deg);
}

.brand-mark svg {
  width: 31px;
  fill: #fff;
  transform: skew(5deg);
}

.brand-mark .cut {
  fill: var(--red);
}

.brand-mark .wheel {
  fill: var(--navy);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
}

.brand-copy strong {
  font-size: 16px;
  letter-spacing: 0.02em;
}

.brand-copy small {
  font-size: 7px;
  color: var(--muted);
  letter-spacing: 0.14em;
  margin-top: 5px;
}

.global-nav {
  display: none;
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  background: #fff;
  padding: 25px 20px;
  box-shadow: 0 20px 35px rgba(17, 24, 39, 0.12);
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  font-size: 13px;
  font-weight: 700;
}

.global-nav.open {
  display: flex;
}

.global-nav a {
  position: relative;
}

.global-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: 0.25s;
}

.global-nav a:hover::after {
  width: 100%;
}

.header-call {
  display: none;
}

.menu-toggle {
  display: block;
  margin-left: auto;
  flex-shrink: 0;
  border: 0;
  background: none;
  width: 42px;
  height: 42px;
  padding: 8px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  margin: 6px 0;
  transition: 0.25s;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   Hero — mobile-first single column
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f6 53%, #e6ebf1 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.72));
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(17, 24, 39, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 24, 39, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 28px;
  padding: 40px 0 48px;
}

.eyebrow,
.section-kicker {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: var(--red);
  margin: 0 0 14px;
}

.eyebrow span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 25px;
  background: var(--red);
  color: #fff;
  margin-right: 8px;
  transform: skew(-7deg);
}

.hero h1 {
  font-size: clamp(28px, 7.2vw, 62px);
  line-height: 1.28;
  letter-spacing: -0.045em;
  margin: 0 0 18px;
  color: var(--navy);
}

.hero h1 > span {
  white-space: normal;
}

.hero h1 em {
  font-style: normal;
  color: var(--red);
  position: relative;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  left: 1%;
  right: 0;
  bottom: -5px;
  height: 6px;
  background: var(--yellow);
  transform: skew(-15deg);
  z-index: -1;
}

.hero-lead {
  font-size: 15px;
  color: #495565;
  margin: 0 0 20px;
}

.hero-lead br {
  display: none;
}

.hero-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.hero-badges span {
  font-size: 11px;
  font-weight: 800;
  border: 1px solid #cbd2dc;
  background: rgba(255, 255, 255, 0.78);
  padding: 6px 11px;
  border-radius: 99px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 800;
  transition: 0.25s;
}

.btn-call {
  width: 100%;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--red);
  color: #fff;
  padding: 14px 20px;
  box-shadow: 0 14px 30px rgba(215, 25, 39, 0.26);
}

.btn-call small {
  font-size: 10px;
  font-weight: 700;
}

.btn-call strong {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px;
  font-size: clamp(22px, 6vw, 25px);
  letter-spacing: 0.04em;
  line-height: 1.25;
}

.btn-call svg {
  width: 22px;
  flex-shrink: 0;
  fill: #fff;
}

.btn-outline {
  width: 100%;
  min-height: 51px;
  border: 2px solid var(--navy);
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.5);
}

.btn:hover {
  transform: translateY(-2px);
}

.hero-note {
  font-size: 10px;
  color: #7b8490;
  margin: 12px 0 0;
  line-height: 1.6;
}

.hero-visual {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(200px, 55vw, 280px);
}

.visual-light {
  position: absolute;
  width: min(75vw, 300px);
  height: min(75vw, 300px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 181, 29, 0.35), rgba(246, 181, 29, 0) 66%);
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.tow-illustration {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: min(100%, 480px);
  height: auto;
  filter: saturate(1.06);
}

.dispatch-card {
  position: absolute;
  z-index: 3;
  right: clamp(8px, 3vw, 20px);
  bottom: clamp(6px, 2vw, 16px);
  background: var(--navy);
  color: #fff;
  border-left: 5px solid var(--yellow);
  padding: 12px 16px;
  box-shadow: var(--shadow);
  transform: skew(-4deg);
}

.dispatch-card > * {
  transform: skew(4deg);
}

.dispatch-card span {
  display: block;
  color: var(--yellow);
  font-size: 8px;
  letter-spacing: 0.14em;
  font-weight: 900;
}

.dispatch-card strong {
  display: block;
  font-size: clamp(22px, 6vw, 31px);
  line-height: 1.2;
}

.dispatch-card p {
  font-size: 10px;
  margin: 2px 0 0;
}

.hero-wave {
  position: absolute;
  z-index: 3;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 36px;
  background: #fff;
  clip-path: polygon(0 58%, 58% 100%, 100% 28%, 100% 100%, 0 100%);
}

/* --------------------------------------------------------------------------
   Quick trust
   -------------------------------------------------------------------------- */

.quick-trust {
  position: relative;
  z-index: 5;
  margin-top: 0;
  background: #fff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  box-shadow: 0 14px 45px rgba(17, 24, 39, 0.12);
  border-radius: 8px;
  overflow: hidden;
}

.trust-grid > div {
  padding: 20px 14px;
  text-align: center;
  border-right: 1px solid var(--line);
  background: #fff;
}

.trust-grid > div:nth-child(2) {
  border-right: 0;
}

.trust-grid > div:nth-child(-n + 2) {
  border-bottom: 1px solid var(--line);
}

.trust-grid > div:last-child {
  border-right: 0;
}

.trust-grid strong {
  font-size: 28px;
  color: var(--red);
  line-height: 1;
}

.trust-grid strong span {
  font-size: 12px;
  color: var(--ink);
  margin-left: 3px;
}

.trust-grid p {
  font-size: 11px;
  color: var(--muted);
  margin: 7px 0 0;
}

/* --------------------------------------------------------------------------
   Sections — mobile layouts
   -------------------------------------------------------------------------- */

.section {
  padding: 76px 0;
}

.section-heading {
  max-width: 550px;
}

.section-heading.centered {
  text-align: center;
  margin: 0 auto 35px;
  max-width: 670px;
}

.section-heading h2,
.price-title h2,
.area-copy h2,
.company-copy h2,
.contact-copy h2 {
  font-size: clamp(26px, 6.5vw, 46px);
  line-height: 1.35;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
  color: var(--navy);
}

.section-heading > p:last-child,
.area-lead,
.company-copy > p:last-child {
  color: var(--muted);
  font-size: 15px;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.service-card {
  position: relative;
  padding: 28px 22px 22px;
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
  transition: 0.3s;
}

.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--red);
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-card:hover::after {
  width: 100%;
}

.service-no {
  position: absolute;
  right: 18px;
  top: 12px;
  font-size: 34px;
  font-weight: 900;
  color: #edf0f4;
  line-height: 1;
}

.service-icon {
  width: 55px;
  height: 55px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--yellow);
  font-size: 27px;
  border-radius: 3px;
  margin-bottom: 20px;
  transform: skew(-5deg);
}

.service-card h3 {
  font-size: 20px;
  margin: 0 0 12px;
}

.service-card p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

.inline-cta {
  margin-top: 32px;
  background: var(--paper);
  border-left: 5px solid var(--red);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.inline-cta small {
  display: block;
  color: var(--muted);
  font-size: 11px;
}

.inline-cta strong {
  font-size: 17px;
}

.inline-cta a {
  font-size: 24px;
  font-weight: 900;
  color: var(--red);
  letter-spacing: 0.04em;
}

.strengths {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.strengths::after {
  content: "KOTOYORI";
  position: absolute;
  right: -25px;
  bottom: -45px;
  font-weight: 900;
  font-size: 100px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.025);
  letter-spacing: -0.05em;
  pointer-events: none;
}

.section-heading.light h2 {
  color: #fff;
}

.strength-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.strength-card {
  position: relative;
  padding: 30px 24px 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
}

.strength-card span {
  display: block;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.strength-card h3 {
  font-size: 22px;
  margin: 28px 0 13px;
}

.strength-card p {
  font-size: 14px;
  color: #c3c9d1;
  margin: 0;
}

.flow {
  background: var(--paper);
}

.flow-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.flow-list li {
  position: relative;
  text-align: center;
  padding: 0 10px;
}

.flow-list li:not(:last-child)::after,
.flow-list li:not(:last-child)::before {
  display: none;
}

.flow-list span {
  font-size: 10px;
  font-weight: 900;
  color: var(--red);
  letter-spacing: 0.13em;
}

.flow-icon {
  width: 83px;
  height: 83px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 13px auto 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 25px rgba(17, 24, 39, 0.08);
  font-size: 30px;
  color: var(--navy);
}

.flow-list h3 {
  font-size: 19px;
  margin: 0 0 10px;
}

.flow-list p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

.price-info {
  padding-top: 0;
  background: var(--paper);
}

.price-box {
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr;
  padding: 30px 24px;
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.06);
}

.price-title {
  padding: 0 0 18px;
  border-bottom: 1px solid var(--line);
}

.price-title h2 {
  font-size: 30px;
  margin: 0;
}

.price-body {
  padding: 20px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.price-body p {
  margin-top: 0;
}

.price-body ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.area-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 38px;
  align-items: center;
}

.area-map {
  background: var(--paper);
  min-height: 280px;
  display: grid;
  place-items: center;
  position: relative;
}

.area-map::before {
  content: "AREA";
  position: absolute;
  font-size: 60px;
  font-weight: 900;
  color: rgba(17, 24, 39, 0.035);
  letter-spacing: 0.06em;
}

.area-map svg {
  width: 82%;
  position: relative;
}

.area-placeholder {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  margin: 25px 0;
}

.area-placeholder strong {
  font-size: 13px;
  color: var(--red);
}

.area-placeholder p {
  margin: 4px 0;
  font-weight: 800;
}

.area-placeholder small {
  color: var(--muted);
}

.text-link {
  display: inline-block;
  font-weight: 800;
  color: var(--red);
  font-size: 14px;
}

.faq {
  background: var(--paper);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  align-items: start;
}

.accordion details {
  background: #fff;
  border-top: 1px solid var(--line);
}

.accordion details:last-child {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 44px 22px 18px;
  font-weight: 800;
  position: relative;
  font-size: 14px;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 25px;
  color: var(--red);
  font-weight: 400;
}

.accordion details[open] summary::after {
  content: "−";
}

.accordion summary span,
.accordion details > div > span {
  color: var(--red);
  font-size: 18px;
  margin-right: 10px;
}

.accordion details > div {
  display: flex;
  padding: 0 18px 22px;
  color: var(--muted);
  font-size: 14px;
}

.accordion details > div p {
  margin: 2px 0 0;
}

.company-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.company-table {
  border-top: 2px solid var(--navy);
}

.company-table dl {
  display: grid;
  grid-template-columns: 105px 1fr;
  margin: 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.company-table dt {
  padding: 15px 12px;
  font-weight: 800;
  background: var(--paper);
}

.company-table dd {
  padding: 15px 12px;
  margin: 0;
}

.company-table small {
  color: var(--red);
}

.contact {
  position: relative;
  padding: 76px 0;
  background: var(--red);
  color: #fff;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(123, 4, 12, 0.65), rgba(215, 25, 39, 0.6)),
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.025) 0, rgba(255, 255, 255, 0.025) 18px, transparent 18px, transparent 36px);
}

.contact-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

.contact-copy .section-kicker {
  color: var(--yellow);
}

.contact-copy h2 {
  color: #fff;
}

.contact-copy > p:last-child {
  color: #f4c8cb;
}

.contact-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.contact-phone {
  background: var(--navy);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  min-height: 190px;
  border-bottom: 5px solid var(--yellow);
}

.contact-phone small {
  font-size: 11px;
  color: #d2d7df;
}

.contact-phone strong {
  font-size: clamp(26px, 6vw, 31px);
  letter-spacing: 0.03em;
  margin: 9px 0;
}

.contact-phone span {
  font-size: 11px;
  color: var(--yellow);
}

.contact-form {
  background: #fff;
  color: var(--ink);
  padding: 24px 20px;
}

.contact-form label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 12px;
}

.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 11px 12px;
  margin-top: 5px;
  border-radius: 2px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  background: #fff;
}

.contact-form button {
  width: 100%;
  border: 0;
  background: var(--navy);
  color: #fff;
  padding: 14px;
  cursor: pointer;
  font-weight: 800;
}

.contact-form > p {
  font-size: 9px;
  color: var(--muted);
  margin: 8px 0 0;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: #0a0f16;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding: 45px 0;
}

.footer-brand .brand-copy strong {
  color: #fff;
}

.footer-grid > div > p {
  font-size: 12px;
  color: #8f98a5;
  margin-top: 18px;
}

.footer-grid nav {
  display: none;
}

.footer-call small {
  display: block;
  color: #8f98a5;
}

.footer-call a {
  display: block;
  font-size: 25px;
  font-weight: 900;
  color: var(--yellow);
  margin: 4px 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom .container {
  min-height: 58px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 10px;
  color: #6f7885;
  text-align: center;
  padding-block: 12px;
}

/* --------------------------------------------------------------------------
   Mobile sticky CTA
   -------------------------------------------------------------------------- */

.mobile-sticky {
  position: fixed;
  z-index: 60;
  bottom: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  height: 67px;
  box-shadow: 0 -7px 20px rgba(17, 24, 39, 0.2);
}

.mobile-sticky a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
}

.mobile-mail {
  background: var(--navy);
  font-size: 13px;
}

.mobile-phone {
  background: var(--red);
  font-size: 18px;
  flex-direction: column;
  line-height: 1.1;
}

.mobile-phone span {
  font-size: 9px;
  margin-bottom: 3px;
}

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */

.toast {
  position: fixed;
  z-index: 80;
  right: 12px;
  left: 12px;
  bottom: 80px;
  background: var(--navy);
  color: #fff;
  padding: 15px 20px;
  border-left: 4px solid var(--yellow);
  box-shadow: var(--shadow);
  font-size: 13px;
  transform: translateY(130%);
  opacity: 0;
  transition: 0.35s;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay {
  transition-delay: 0.16s;
}

/* ==========================================================================
   Tablet — min-width: 761px
   ========================================================================== */

@media (min-width: 761px) {
  html {
    scroll-padding-top: 100px;
  }

  body {
    padding-bottom: 0;
  }

  .container {
    width: min(calc(100% - 40px), var(--max));
  }

  .sp-only {
    display: none;
  }

  .top-alert {
    display: block;
  }

  .top-alert__inner {
    flex-wrap: nowrap;
    height: 38px;
    padding-block: 0;
  }

  .header-inner {
    min-height: 88px;
    gap: 28px;
  }

  .brand {
    min-width: max-content;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .brand-mark svg {
    width: 37px;
  }

  .brand-copy strong {
    font-size: 20px;
  }

  .brand-copy small {
    font-size: 9px;
  }

  .global-nav {
    top: 88px;
  }

  .eyebrow,
  .section-kicker {
    font-size: 12px;
    margin-bottom: 18px;
  }

  .eyebrow span {
    width: 48px;
    height: 27px;
    margin-right: 10px;
  }

  .hero {
    background: linear-gradient(120deg, #f8fafc 0%, #eef2f6 53%, #e6ebf1 100%);
  }

  .hero::before {
    background: linear-gradient(110deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 42%, rgba(255, 255, 255, 0.2) 75%);
  }

  .hero-grid {
    opacity: 0.24;
    mask-image: linear-gradient(to right, #000, transparent 80%);
  }

  .hero-inner {
    padding: 54px 0 64px;
    gap: 36px;
  }

  .hero h1 {
    font-size: clamp(34px, 4.6vw, 52px);
    margin-bottom: 22px;
  }

  .hero-lead {
    font-size: 16px;
    margin-bottom: 23px;
  }

  .hero-lead br {
    display: inline;
  }

  .hero-badges {
    gap: 9px;
    margin-bottom: 26px;
  }

  .hero-badges span {
    font-size: 12px;
    padding: 6px 12px;
  }

  .hero-visual {
    min-height: 320px;
  }

  .tow-illustration {
    max-width: min(100%, 580px);
  }

  .dispatch-card {
    padding: 14px 19px;
    border-left-width: 6px;
  }

  .dispatch-card span {
    font-size: 9px;
    letter-spacing: 0.16em;
  }

  .dispatch-card p {
    font-size: 11px;
  }

  .hero-wave {
    height: 48px;
  }

  .quick-trust {
    margin-top: -10px;
  }

  .trust-grid > div {
    padding: 23px 20px;
  }

  .trust-grid strong {
    font-size: 31px;
  }

  .trust-grid strong span {
    font-size: 13px;
  }

  .trust-grid p {
    font-size: 12px;
  }

  .section {
    padding: 90px 0;
  }

  .section-heading.centered {
    margin-bottom: 42px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 19px;
  }

  .inline-cta {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 22px 30px;
    margin-top: 38px;
    gap: 20px;
  }

  .inline-cta strong {
    font-size: 19px;
  }

  .inline-cta a {
    font-size: 27px;
  }

  .strengths::after {
    font-size: 145px;
  }

  .strength-grid {
    gap: 22px;
  }

  .strength-card {
    padding: 36px 30px 33px;
    min-height: 265px;
  }

  .strength-card h3 {
    font-size: 24px;
    margin-top: 34px;
  }

  .flow-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }

  .area-map {
    min-height: 350px;
  }

  .area-map::before {
    font-size: 80px;
  }

  .accordion summary {
    padding: 25px 50px 25px 23px;
    font-size: inherit;
  }

  .accordion summary span,
  .accordion details > div > span {
    font-size: 20px;
    margin-right: 12px;
  }

  .accordion details > div {
    padding: 0 25px 24px;
  }

  .company-table dl {
    grid-template-columns: 130px 1fr;
  }

  .company-table dt,
  .company-table dd {
    padding: 18px 15px;
  }

  .company-table dd {
    padding-inline: 22px;
  }

  .contact {
    padding: 90px 0;
  }

  .contact-inner {
    gap: 55px;
  }

  .contact-phone {
    padding: 32px 25px;
    min-height: 240px;
  }

  .contact-form {
    padding: 26px;
  }

  .footer-grid {
    padding: 55px 0;
    gap: 40px;
  }

  .footer-bottom .container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding-block: 0;
  }

  .mobile-sticky {
    display: none;
  }

  .toast {
    right: 22px;
    left: auto;
    bottom: 22px;
  }
}

/* ==========================================================================
   Desktop — min-width: 1051px
   ========================================================================== */

@media (min-width: 1051px) {
  .menu-toggle {
    display: none;
  }

  .global-nav {
    display: flex;
    position: static;
    margin-left: auto;
    flex-direction: row;
    align-items: center;
    gap: 26px;
    padding: 0;
    box-shadow: none;
    background: transparent;
  }

  .global-nav.open {
    display: flex;
  }

  .header-call {
    display: flex;
    flex-direction: column;
    background: var(--red);
    color: #fff;
    padding: 10px 18px 11px;
    border-radius: 5px;
    line-height: 1.2;
    box-shadow: 0 8px 20px rgba(215, 25, 39, 0.22);
    flex-shrink: 0;
  }

  .header-call span {
    font-size: 10px;
  }

  .header-call strong {
    font-size: 19px;
    letter-spacing: 0.04em;
    margin-top: 3px;
  }

  .hero {
    min-height: 650px;
  }

  .hero-inner {
    grid-template-columns: 1.06fr 0.94fr;
    min-height: 650px;
    align-items: center;
    gap: 20px;
    padding: 70px 0 95px;
  }

  .hero h1 {
    font-size: clamp(40px, 4.6vw, 62px);
    line-height: 1.22;
    margin-bottom: 25px;
  }

  .hero h1 > span {
    white-space: nowrap;
  }

  .hero h1 em::after {
    bottom: -7px;
    height: 7px;
  }

  .hero-actions {
    flex-direction: row;
    gap: 12px;
    align-items: stretch;
  }

  .btn-call {
    width: auto;
    min-width: 295px;
    align-items: flex-start;
    text-align: left;
    padding: 13px 22px;
  }

  .btn-call strong {
    justify-content: flex-start;
    font-size: 25px;
  }

  .btn-call svg {
    width: 23px;
  }

  .btn-outline {
    width: auto;
    min-height: auto;
  }

  .hero-visual {
    align-self: stretch;
    margin-right: -60px;
    min-height: auto;
    overflow: visible;
  }

  .visual-light {
    width: 460px;
    height: 460px;
    right: 9%;
    left: auto;
    top: 13%;
    transform: none;
  }

  .tow-illustration {
    width: 100%;
    max-width: 760px;
    height: auto;
  }

  .dispatch-card {
    right: 60px;
    bottom: 100px;
    padding: 15px 21px;
  }

  .hero-wave {
    height: 65px;
  }

  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .trust-grid > div:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .trust-grid > div:nth-child(-n + 2) {
    border-bottom: 0;
  }

  .section {
    padding: 105px 0;
  }

  .section-heading.centered {
    margin-bottom: 48px;
  }

  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-card {
    min-height: 270px;
    padding: 31px 27px 25px;
  }

  .strength-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .flow-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  .flow-list li {
    padding: 0 25px;
  }

  .flow-list li:not(:last-child)::after {
    display: block;
    content: "";
    position: absolute;
    right: -18px;
    top: 54px;
    width: 35px;
    height: 1px;
    background: #b7bec7;
  }

  .flow-list li:not(:last-child)::before {
    display: block;
    content: "";
    position: absolute;
    right: -18px;
    top: 50px;
    border-left: 7px solid #b7bec7;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
  }

  .price-box {
    grid-template-columns: 280px 1fr;
    padding: 42px 48px;
  }

  .price-title {
    padding-right: 38px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
    padding-bottom: 0;
  }

  .price-title h2 {
    font-size: 34px;
  }

  .price-body {
    padding-left: 45px;
    padding-top: 0;
  }

  .area-grid {
    grid-template-columns: 1fr 1fr;
    gap: 70px;
  }

  .area-map {
    min-height: 410px;
  }

  .faq-layout {
    grid-template-columns: 310px 1fr;
    gap: 70px;
  }

  .company-grid {
    grid-template-columns: 360px 1fr;
    gap: 75px;
  }

  .company-table dl {
    grid-template-columns: 150px 1fr;
  }

  .contact {
    padding: 100px 0;
  }

  .contact-inner {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
  }

  .contact-actions {
    grid-template-columns: 0.92fr 1.08fr;
    max-width: none;
  }

  .contact-phone {
    min-height: 275px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    gap: 55px;
    padding: 60px 0;
  }

  .footer-grid nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    font-size: 12px;
    color: #c6ccd4;
  }
}
