/* Rapid Response Tyres - mobile-first Google Ads landing system */
:root {
  --charcoal: #080a0c;
  --black: #050607;
  --graphite: #101419;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(247, 196, 0, 0.42);
  --amber: #f7c400;
  --call-green: #18c964;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --soft: rgba(255, 255, 255, 0.58);
  --dark-text: #090b0d;
  --shadow: 0 22px 64px rgba(0, 0, 0, 0.44);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at 50% 160px, rgba(247, 196, 0, 0.12), transparent 310px),
    linear-gradient(180deg, #0a0d10 0%, var(--charcoal) 54%, #050607 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}

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

p,
h1,
h2,
h3 {
  margin: 0;
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  height: 3px;
  transform-origin: left;
  background: var(--amber);
  animation: scroll-progress linear;
  animation-timeline: scroll();
}

@keyframes scroll-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.shell {
  width: min(100% - 28px, 1140px);
  margin-inline: auto;
}

.top-alert {
  overflow: hidden;
  background: var(--amber);
  color: var(--dark-text);
  font-size: 0.84rem;
  font-weight: 950;
  text-align: center;
}

.top-alert-track {
  display: flex;
  min-width: 200%;
  min-height: 38px;
  align-items: center;
  gap: 44px;
  white-space: nowrap;
  animation: alert-slide 22s linear infinite;
}

.top-alert-track span {
  flex: 0 0 50%;
  padding-inline: 22px;
}

@keyframes alert-slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 10, 12, 0.93);
  backdrop-filter: blur(16px);
}

.nav {
  position: relative;
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  display: grid;
  min-width: 0;
  line-height: 1;
  text-transform: uppercase;
}

.brand-logo {
  width: clamp(228px, 26vw, 365px) !important;
  max-width: 365px !important;
  gap: 3px;
}

.brand-logo img {
  display: block;
  width: 100% !important;
  max-width: 365px !important;
  height: auto !important;
  max-height: 68px !important;
  object-fit: contain;
  object-position: left center;
}

.brand-logo span {
  display: none !important;
}

.brand strong {
  font-size: clamp(1rem, 4vw, 1.34rem);
  font-weight: 1000;
}

.brand span {
  margin-top: 4px;
  color: var(--amber);
  font-size: 0.64rem;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.nav-links a {
  border-radius: 7px;
  padding: 10px 11px;
  color: rgba(255, 255, 255, 0.76);
}

.nav-links a:hover {
  background: rgba(247, 196, 0, 0.12);
  color: var(--amber);
}

.nav-links .review-link {
  background: var(--amber);
  color: var(--dark-text);
}

.nav-links .review-link:hover {
  background: #fff;
  color: var(--dark-text);
}

.nav-toggle {
  display: inline-flex;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav.nav-open .nav-toggle span:first-child {
  transform: translateY(7px) rotate(45deg);
}

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

.nav.nav-open .nav-toggle span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-call {
  display: inline-flex;
  min-height: 44px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--amber);
  color: var(--dark-text);
  padding: 0 13px;
  font-size: 0.82rem;
  font-weight: 1000;
  text-transform: uppercase;
  animation: none !important;
  transform: none !important;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: start;
  min-height: calc(100svh - 106px);
  padding: clamp(32px, 7vh, 58px) 0 28px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(8, 10, 12, 0.42) 0%, rgba(8, 10, 12, 0.28) 42%, rgba(8, 10, 12, 0.9) 100%),
    url("hero-tyre-van-bg.png?v=20260706-hero-v2") center 42% / cover no-repeat;
  opacity: 0.36;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 10%, #000 72%, transparent 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 15% 10% auto;
  z-index: 0;
  height: 300px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(247, 196, 0, 0.18), transparent 66%);
  filter: blur(10px);
  animation: soft-glow 6s ease-in-out infinite alternate;
}

@keyframes soft-glow {
  from { opacity: 0.55; transform: translateY(0); }
  to { opacity: 0.95; transform: translateY(10px); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  text-align: center;
}

.hero-inner.shell {
  width: min(100% - 40px, 1360px);
}

.badge {
  display: none;
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(247, 196, 0, 0.08);
  color: var(--amber);
  padding: 8px 12px;
  font-size: 0.72rem;
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.badge::before {
  display: none;
  content: none;
}

@keyframes shine {
  0%, 55% { transform: translateX(-120%); }
  78%, 100% { transform: translateX(120%); }
}

.hero h1 {
  max-width: 1060px;
  margin-inline: auto;
  font-size: clamp(2.15rem, 7.2vw, 4.45rem);
  font-weight: 1000;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.long-hero-page .hero h1 {
  max-width: 980px;
  font-size: clamp(2.15rem, 5.2vw, 4rem);
  line-height: 0.98;
}

.long-hero-page .hero-inner {
  gap: 12px;
}

.long-hero-page .hero-copy {
  max-width: 760px;
  font-size: clamp(0.98rem, 2vw, 1.1rem);
  line-height: 1.4;
}

.hero-copy {
  max-width: 680px;
  margin-inline: auto;
  color: var(--muted);
  font-size: clamp(1rem, 2.6vw, 1.18rem);
  font-weight: 720;
  line-height: 1.45;
}

.call-card {
  position: relative;
  display: grid;
  gap: 8px;
  width: min(100%, 570px);
  margin: 2px auto 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(23, 30, 37, 0.94), rgba(10, 13, 16, 0.94));
  padding: 12px;
  box-shadow: var(--shadow);
}

.call-card::before {
  display: none;
  content: none;
}

@keyframes border-beam {
  to { transform: rotate(1turn); }
}

.call-primary {
  position: relative;
  display: grid;
  min-height: 78px;
  place-items: center;
  overflow: hidden;
  border-radius: 9px;
  background: var(--call-green);
  color: #031108;
  border: 3px solid rgba(155, 255, 194, 0.92);
  padding: 16px 14px;
  text-align: center;
  font-weight: 1000;
  text-transform: uppercase;
  box-shadow: 0 18px 42px rgba(24, 201, 100, 0.36);
}

.call-primary::after {
  content: "";
  position: absolute;
  inset: -45% auto -45% -70%;
  width: 42%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.82), transparent);
  animation: call-glint 2.25s ease-in-out infinite;
  pointer-events: none;
}

@keyframes call-glint {
  0%, 48% { left: -70%; opacity: 0; }
  56% { opacity: 0.86; }
  78%, 100% { left: 128%; opacity: 0; }
}

.call-primary .label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: clamp(1.18rem, 5.2vw, 2rem);
  line-height: 1.05;
}

.call-primary svg {
  width: clamp(18px, 0.72em, 25px);
  height: clamp(18px, 0.72em, 25px);
  flex: 0 0 auto;
}

.call-primary .hint {
  display: none;
}

.intent-line {
  max-width: 570px;
  margin-inline: auto;
  color: var(--amber);
  font-size: 0.84rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.secondary-cta {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  padding: 0 14px;
  font-weight: 950;
  text-transform: uppercase;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: min(100%, 620px);
  margin: 0 auto;
}

.trust-pill {
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.045);
  padding: 11px 9px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.83rem;
  font-weight: 900;
}

.section {
  padding: clamp(38px, 6vw, 64px) 0;
}

.section[id] {
  scroll-margin-top: 82px;
}

.section.compact {
  padding-top: 26px;
}

.section.compact[id] {
  scroll-margin-top: 82px;
}

#benefits {
  padding-bottom: clamp(24px, 3vw, 36px);
}

#faqs {
  padding-top: clamp(24px, 3vw, 36px);
}

.section-light {
  background: #fff;
  color: var(--dark-text);
}

.section-yellow {
  background: var(--amber);
  color: var(--dark-text);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.section-head .kicker {
  color: var(--amber);
  font-size: 0.76rem;
  font-weight: 1000;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-light .section-head .kicker,
.section-yellow .section-head .kicker {
  color: rgba(8, 10, 12, 0.72);
}

.section-head h2 {
  margin-top: 8px;
  font-size: clamp(1.85rem, 7vw, 3.4rem);
  font-weight: 1000;
  line-height: 1;
  text-transform: uppercase;
}

.section-head p {
  margin-top: 12px;
  color: var(--muted);
  font-size: clamp(1rem, 3vw, 1.12rem);
  font-weight: 700;
}

.review-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  border-radius: 8px;
  background: var(--amber);
  color: var(--dark-text);
  padding: 0 18px;
  font-size: 0.86rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.final-actions {
  display: grid;
  gap: 10px;
}

.google-review-call {
  display: inline-flex;
  min-height: 54px;
  width: 100%;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--dark-text);
  border-radius: 9px;
  background: #fff;
  color: var(--dark-text);
  padding: 0 20px;
  font-size: 0.86rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.section-light .section-head p,
.section-yellow .section-head p {
  color: rgba(8, 10, 12, 0.68);
}

.grid {
  display: grid;
  gap: 12px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(16, 20, 25, 0.86);
  padding: 18px;
}

.section-light .card {
  border-color: rgba(8, 10, 12, 0.11);
  background: #f6f7f8;
}

.card h3 {
  font-size: 1.05rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.card p {
  margin-top: 8px;
  color: var(--soft);
  font-weight: 680;
}

.section-light .card p {
  color: rgba(8, 10, 12, 0.66);
}

.service-card {
  min-height: 100%;
  transition: transform 160ms ease, border-color 160ms ease;
}

.service-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
}

.step-num {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 8px;
  background: rgba(247, 196, 0, 0.14);
  color: var(--amber);
  font-weight: 1000;
}

.section-light .step-num {
  background: var(--amber);
  color: var(--dark-text);
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.area-list span,
.area-list a {
  border: 1px solid rgba(8, 10, 12, 0.11);
  border-radius: 999px;
  background: #f7f8f9;
  padding: 9px 12px;
  font-size: 0.9rem;
  font-weight: 850;
}

.areas-compact {
  max-width: 860px;
  margin-inline: auto;
}

.area-list .area-break {
  flex-basis: 100%;
  width: 100%;
  height: 0;
  border: 0;
  background: transparent;
  padding: 0;
}

@media (max-width: 700px) {
  .area-list .area-break {
    display: none;
  }
}
.areas-compact .section-head {
  margin-bottom: 18px;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 880px;
  margin: 0 auto;
}

details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(16, 20, 25, 0.86);
  overflow: hidden;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

summary {
  cursor: pointer;
  padding: 17px;
  font-weight: 1000;
  list-style: none;
  transition: color 180ms ease;
}

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

details p {
  border-top: 1px solid var(--line);
  padding: 0 17px 17px;
  color: var(--muted);
  font-weight: 680;
}

details[open] {
  border-color: var(--line-strong);
  background: rgba(18, 23, 29, 0.94);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

details[open] summary {
  color: var(--amber);
}

details[open] p {
  animation: faq-answer-in 220ms ease both;
}

@keyframes faq-answer-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.final-call {
  display: grid;
  gap: 18px;
  align-items: center;
  text-align: center;
}

.final-call h2 {
  font-size: clamp(2rem, 8vw, 4rem);
  font-weight: 1000;
  line-height: 1;
  text-transform: uppercase;
}

.final-call p {
  font-size: 1.06rem;
  font-weight: 780;
}

.dark-call {
  display: inline-flex;
  min-height: 60px;
  width: 100%;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: var(--dark-text);
  color: #fff;
  padding: 0 20px;
  font-weight: 1000;
  text-transform: uppercase;
}

.footer {
  border-top: 1px solid var(--line);
  background: var(--black);
  padding: 34px 0 128px;
  color: var(--soft);
}

.footer-grid {
  display: grid;
  gap: 24px;
}

.footer strong,
.footer a {
  color: #fff;
  font-weight: 900;
}

.footer h3 {
  color: var(--amber);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.floating-actions {
  position: fixed;
  right: 14px;
  bottom: calc(var(--floating-bottom, 10px) + env(safe-area-inset-bottom));
  left: 14px;
  z-index: 45;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(8, 10, 12, 0.68);
  padding: 7px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(14px);
}

.floating-actions a {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 9px;
  padding: 0 12px;
  font-weight: 1000;
  text-transform: uppercase;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.34);
  animation: none !important;
  transform: none !important;
}

.whatsapp-icon {
  width: 1.22em;
  height: 1.22em;
  flex: 0 0 auto;
}

.float-whatsapp {
  background: var(--call-green);
  color: #031108;
}

.float-call {
  background: var(--amber);
  color: var(--dark-text);
}

@media (min-width: 700px) {
  .grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .dark-call {
    width: auto;
    min-width: 270px;
  }

  .google-review-call {
    width: auto;
    min-width: 270px;
  }
}

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

  .nav-links {
    display: flex;
  }

  .hero {
    min-height: 610px;
  }

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

  .final-call {
    grid-template-columns: 1fr auto;
    text-align: left;
  }

  .footer {
    padding-bottom: 104px;
  }

  .footer-grid {
    grid-template-columns: 1.1fr 0.85fr 1fr 1fr;
  }

  .floating-actions {
    right: auto;
    bottom: 22px;
    left: 50%;
    width: 360px;
    transform: translateX(-50%);
  }
}

@media (min-width: 1180px) {
  .floating-actions {
    right: auto;
    bottom: 22px;
    left: 50%;
    width: 360px;
    transform: translateX(-50%);
  }
}

@media (max-width: 959px) {
  .nav.nav-open .nav-links {
    position: absolute;
    top: calc(100% + 9px);
    right: 0;
    left: 0;
    display: grid;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(8, 10, 12, 0.96);
    padding: 10px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
  }

  .nav.nav-open .nav-links a {
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 700px) {
  html {
    scroll-padding-top: 78px;
  }

  .section {
    padding: clamp(32px, 8vw, 52px) 0;
  }

  .section[id],
  .section.compact[id] {
    scroll-margin-top: 78px;
  }

  #benefits {
    padding-bottom: 28px;
  }

  #faqs {
    padding-top: 28px;
  }

  .top-alert-track {
    animation-duration: 16s;
  }

  .footer {
    padding-bottom: 150px;
  }

  .floating-actions {
    right: 18px;
    left: 18px;
    bottom: calc(var(--floating-bottom, 10px) + env(safe-area-inset-bottom));
    gap: 7px;
    padding: 6px;
  }

  .floating-actions a {
    min-height: 46px;
    padding-inline: 10px;
    font-size: 0.84rem;
  }
}

@supports (-webkit-touch-callout: none) {
  @media (max-width: 700px) {
    .footer {
      padding-bottom: 168px;
    }

    .floating-actions {
      bottom: calc(var(--floating-bottom, 74px) + env(safe-area-inset-bottom));
    }
  }
}

@media (max-width: 430px) {
  .shell {
    width: min(100% - 22px, 1140px);
  }

  .top-alert-track {
    font-size: 0.78rem;
  }

  .nav {
    min-height: 64px;
  }

  .brand span {
    font-size: 0.58rem;
  }

  .brand-logo {
    width: 204px !important;
    max-width: 204px !important;
  }

  .brand-logo img {
    max-width: 204px !important;
    max-height: 48px !important;
  }

  .nav-call {
    min-height: 42px;
    padding-inline: 11px;
  }

  .hero {
    min-height: calc(100svh - 102px);
    padding-top: 18px;
  }

  .hero-inner {
    gap: 14px;
  }

  .long-hero-page .hero h1 {
    font-size: clamp(1.85rem, 10.8vw, 3.15rem);
    line-height: 1;
  }

  .long-hero-page .hero-copy {
    font-size: 0.98rem;
  }

  .call-primary {
    min-height: 74px;
  }

  .floating-actions a {
    min-height: 44px;
    padding-inline: 10px;
    font-size: 0.82rem;
  }

  .trust-row {
    gap: 7px;
  }

  .trust-pill {
    padding: 10px 8px;
    font-size: 0.79rem;
  }
}
