:root {
  --page: #f7f9fb;
  --surface: #ffffff;
  --surface-soft: #eef4f8;
  --ink: #0b0f14;
  --muted: #56616d;
  --line: #d9e1e8;
  --blue: #1d70b8;
  --blue-dark: #003078;
  --green: #00703c;
  --green-dark: #005a30;
  --yellow: #ffdd00;
  --focus: #ffdd00;
  --max: 1160px;
  --shadow: 0 18px 46px rgba(11, 15, 20, 0.08);
  --ease: cubic-bezier(.2, .72, .2, 1);
  --radius: 8px;
  --radius-sm: 6px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--page);
  font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
body.site-intro-lock { overflow: hidden; }
body.nav-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(5, 12, 20, 0.52);
  backdrop-filter: blur(3px);
}
a { color: inherit; }
button, input { font: inherit; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease), backdrop-filter 220ms var(--ease);
}
.site-header.is-scrolled,
body.nav-open .site-header {
  background: rgba(247, 249, 251, 0.94);
  border-bottom-color: rgba(217, 225, 232, 0.86);
  box-shadow: 0 12px 30px rgba(11, 15, 20, 0.08);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0;
  white-space: nowrap;
}
.brand img {
  width: 110px;
  height: auto;
  display: block;
  margin-top: 15px;
}

.nav {
  position: fixed;
  top: 92px;
  right: max(32px, calc((100vw - var(--max)) / 2 + 32px));
  z-index: 95;
  width: min(360px, calc(100vw - 40px));
  display: grid;
  gap: 0;
  padding: 14px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 28px 70px rgba(11, 15, 20, 0.22);
  transform: translateY(-8px) scale(0.98);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 180ms var(--ease), opacity 180ms var(--ease);
}
body.nav-open .nav {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav a {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: #293440;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
  transition: color 160ms var(--ease), border-color 160ms var(--ease), background-color 160ms var(--ease);
}
.nav a:last-child { border-bottom: 0; }
.nav a:hover,
.nav a.active {
  color: var(--blue-dark);
  border-color: var(--line);
  background: rgba(29, 112, 184, 0.07);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.auth-link {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.34);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255,255,255,0.1);
  text-decoration: none;
  transition: background-color 160ms var(--ease), color 160ms var(--ease), border-color 160ms var(--ease), transform 160ms var(--ease);
}
.auth-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.auth-link:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.18);
}
.auth-link.is-signed-in {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}
.site-header.is-scrolled .auth-link,
body.nav-open .auth-link {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--line);
}
.site-header.is-scrolled .auth-link.is-signed-in,
body.nav-open .auth-link.is-signed-in {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}
.account-menu {
  position: fixed;
  top: 92px;
  right: max(32px, calc((100vw - var(--max)) / 2 + 32px));
  z-index: 96;
  width: min(300px, calc(100vw - 40px));
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 60px rgba(11, 15, 20, 0.18);
  color: var(--ink);
  opacity: 0;
  transform: translateY(-8px) scale(.98);
  pointer-events: none;
  transition: opacity 180ms var(--ease), transform 180ms var(--ease);
}
body.account-open .account-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.account-menu strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
  font-weight: 600;
}
.account-menu span {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}
.account-menu a,
.account-menu button {
  width: 100%;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
  font-weight: 600;
}
.account-menu a {
  margin-bottom: 8px;
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.header-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,0.34);
  border-radius: var(--radius);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: background-color 160ms var(--ease), color 160ms var(--ease), border-color 160ms var(--ease), opacity 180ms var(--ease), transform 180ms var(--ease);
}
.site-header.is-past-hero .header-cta {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.header-cta:hover { background: var(--green); border-color: var(--green); }

.nav-toggle {
  display: inline-flex;
  width: auto;
  height: 44px;
  gap: 10px;
  padding: 0 13px;
  border: 1px solid rgba(255,255,255,0.34);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.1);
  color: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: background-color 160ms var(--ease), color 160ms var(--ease), border-color 160ms var(--ease);
}
.site-header.is-scrolled .nav-toggle,
body.nav-open .nav-toggle {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--line);
}
.menu-lines,
.menu-lines::before,
.menu-lines::after {
  width: 20px;
  height: 2px;
  display: block;
  background: currentColor;
  content: "";
  transition: transform 180ms var(--ease), opacity 180ms var(--ease);
}
.menu-lines::before { transform: translateY(-7px); }
.menu-lines::after { transform: translateY(5px); }
body.nav-open .menu-lines { transform: rotate(45deg); }
body.nav-open .menu-lines::before { transform: translateY(0) rotate(90deg); }
body.nav-open .menu-lines::after { opacity: 0; }

@keyframes siteLogoIn {
  0%, 8% { opacity: 0; filter: blur(10px); transform: scale(.86); }
  48% { opacity: 1; filter: blur(0); transform: scale(1); }
  72% { opacity: 1; filter: blur(0); transform: scale(1.04); }
  100% { opacity: 0; filter: blur(14px); transform: scale(8); }
}
@keyframes siteIntroOut {
  to { opacity: 0; visibility: hidden; }
}

.hero {
  min-height: 720px;
  display: grid;
  align-items: center;
  padding: 104px 0 34px;
  background:
    linear-gradient(180deg, rgba(0, 48, 120, 0.88), rgba(12, 32, 58, 0.94)),
    url("/hero-vehicle-admin.png") center center / cover no-repeat,
    var(--blue-dark);
  color: #fff;
}

.site-intro {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  pointer-events: none;
  background:
    radial-gradient(circle at 24% 22%, rgba(29, 112, 184, 0.38), transparent 30%),
    radial-gradient(circle at 78% 18%, rgba(0, 112, 60, 0.3), transparent 28%),
    linear-gradient(135deg, #06101d, #0c203a);
  animation: siteIntroOut 620ms var(--ease) 1760ms forwards;
}
.site-intro img {
  width: 118px;
  opacity: 0;
  filter: blur(10px);
  transform: scale(.86);
  animation: siteLogoIn 1600ms var(--ease) 120ms forwards;
}
body.site-intro-done .site-intro { display: none; }
.hero-inner {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 22px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 0 14px;
  border: 0;
  border-radius: var(--radius-sm);
  background: rgba(12, 32, 58, 0.96);
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  font-size: 13px;
}
.eyebrow::before { display: none; }
.eyebrow-icon,
.list-icon {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  background: var(--green);
  border-radius: 999px;
}
.eyebrow-icon svg,
.list-icon svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.list-icon {
  width: 20px;
  height: 20px;
  background: transparent;
}
.list-icon svg {
  width: 20px;
  height: 20px;
  padding: 4px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 999px;
}
h1, h2, h3, p { margin-top: 0; }
.hero h1 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(36px, 5.4vw, 62px);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 600;
}
.hero-lede {
  max-width: 250px;
  margin-bottom: 0;
  color: rgba(255,255,255,0.82);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
}

.reg-panel {
  width: min(390px, 100%);
  display: grid;
  gap: 16px;
  justify-items: center;
  scroll-margin-top: 112px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--ink);
}
.reg-form {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  justify-items: center;
}
.reg-label {
  color: #26313c;
  font-size: 14px;
  font-weight: 500;
}
.plate-wrap {
  width: min(300px, 100%);
}
.main-vrm-input {
  width: 100%;
  max-width: 300px;
  height: 60px;
  min-height: 60px;
  padding: 5px 5px 5px 30px;
  border: 2px solid #777777;
  border-radius: 6px;
  background-color: var(--yellow);
  background-image: url(https://taxmyvehiclenow.co.uk/wp-content/uploads/2024/03/gb.png);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: left center;
  color: #000;
  text-align: center;
  text-transform: uppercase;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 1px;
  outline: none;
  transition: box-shadow 160ms var(--ease), transform 160ms var(--ease);
}
.main-vrm-input:focus {
  box-shadow: 0 0 0 5px var(--focus), 0 0 0 8px var(--ink);
}
.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  background: var(--green);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: transform 160ms var(--ease), background-color 160ms var(--ease), box-shadow 160ms var(--ease);
}
.reg-form .button {
  width: min(220px, 100%);
  margin-top: 2px;
  font-weight: 500;
}
.button:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0, 112, 60, 0.18);
}
.button.secondary {
  background: var(--surface);
  color: var(--blue-dark);
  border-color: var(--blue);
}
.button.secondary:hover { background: #e8f1f8; box-shadow: none; }
.entry-note {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.trust-row {
  width: min(840px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  border: 0;
  background: transparent;
  color: #fff;
}
.trust-item {
  display: grid;
  gap: 6px;
  justify-items: start;
  align-items: center;
  padding: 0;
  text-align: left;
  background: transparent;
}
.trust-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}
.trust-item strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
}
.trust-item > span {
  color: rgba(255,255,255,0.76);
  font-size: 13px;
  line-height: 1.42;
  padding-left: 0;
}
.trust-icon {
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  background: var(--green);
  border-radius: 999px;
}
.trust-icon svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section {
  padding: 86px 0;
  background: var(--surface);
}
.section.alt { background: var(--page); }
.section.deep {
  background:
    linear-gradient(180deg, rgba(0, 48, 120, 0.94), rgba(12, 32, 58, 0.96)),
    var(--blue-dark);
  color: #fff;
}
.section.green {
  background: var(--green);
  color: #fff;
}
.section.green .section-kicker,
.section.green .section-head p,
.section.green .content-block p {
  color: rgba(255,255,255,0.82);
}
.section.green .check-list {
  border-color: rgba(255,255,255,0.24);
}
.section.green .check-list li {
  color: #fff;
  border-color: rgba(255,255,255,0.24);
}
.section.green .check-list li::before {
  background: #fff;
}
.section-head {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(260px, .7fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}
.section-kicker {
  margin-bottom: 12px;
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}
.section h2,
.page-hero h1 {
  margin-bottom: 0;
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 600;
}
.section-head p,
.page-hero p,
.content-block p,
.service-panel p,
.faq-list p,
.legal-list p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}
.section.deep .section-kicker,
.section.deep .section-head p,
.section.deep .content-block p { color: rgba(255,255,255,0.72); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-panel {
  min-height: 320px;
  display: grid;
  align-content: space-between;
  gap: 22px;
  padding: 28px;
  background: var(--surface);
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease);
}
.service-panel:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  z-index: 1;
}
.service-panel-primary {
  background: var(--green);
  color: #fff;
}
.service-panel-primary p {
  color: rgba(255, 255, 255, 0.9);
}
.service-panel-primary .panel-link {
  color: #fff;
}
.service-title {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}
.service-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(0, 112, 60, 0.1);
  color: var(--green);
}
.service-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-panel-primary .service-icon {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.service-panel h3 {
  margin-bottom: 0;
  font-size: 23px;
  line-height: 1.12;
  font-weight: 600;
}
.service-points {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  font-size: 15px;
  line-height: 1.4;
  color: var(--ink);
}
.service-points li {
  position: relative;
  padding-left: 18px;
}
.service-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green);
}
.service-panel-primary .service-points {
  color: rgba(255, 255, 255, 0.94);
}
.service-panel-primary .service-points li::before {
  background: #fff;
}
.panel-link {
  color: var(--blue-dark);
  font-weight: 600;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.media-feature {
  margin-top: 34px;
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 1px;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}
.media-copy {
  display: grid;
  align-content: center;
  padding: 30px;
  background: var(--surface);
}
.media-copy h3,
.support-media h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.16;
  font-weight: 600;
}
.media-copy p,
.support-media p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}
.media-feature img,
.support-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.media-feature img {
  min-height: 280px;
  object-position: center;
}

.steps {
  display: grid;
  gap: 1px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  overflow: hidden;
}
.step {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 26px;
  padding: 30px;
  background: rgba(12, 32, 58, 0.96);
}
.step-num {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}
.step strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: 600;
}
.step span {
  color: rgba(255,255,255,0.72);
  line-height: 1.62;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}
.content-block {
  border-top: 4px solid var(--green);
  padding-top: 22px;
}
.section.green .content-block,
.section.deep .content-block {
  border-top-color: #fff;
}
.content-block h2 {
  margin-bottom: 1rem;
}
.content-block h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 600;
}
.check-list,
.legal-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.check-list li,
.legal-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: #293440;
  line-height: 1.55;
}
.check-list li::before { display: none; }

.faq-list {
  border-top: 1px solid var(--line);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  font-weight: 600;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--blue-dark);
}
.faq-list details[open] summary::after { content: "-"; }
.faq-list p {
  max-width: 820px;
  margin: 12px 0 0;
}

.support-media {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
}
.support-media img {
  aspect-ratio: 4 / 3;
  max-height: 220px;
  border-radius: var(--radius-sm);
}

.page-hero {
  padding: 78px 0 52px;
  background: linear-gradient(180deg, #ffffff, var(--page));
}
.page-hero-inner {
  max-width: 860px;
}
.page-hero h1 { margin-bottom: 16px; }

.cta-band {
  padding: 62px 0;
  background: var(--surface-soft);
}
.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  border-top: 4px solid var(--green);
  padding-top: 24px;
}
.cta-inner h2 {
  margin-bottom: 8px;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 600;
}
.cta-inner p { margin-bottom: 0; color: var(--muted); line-height: 1.6; }

.site-footer {
  padding: 48px 0 36px;
  background: #0b0f14;
  color: rgba(255,255,255,0.72);
}
.footer-shell {
  display: grid;
  gap: 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr minmax(360px, .7fr);
  gap: 42px;
  align-items: start;
}
.footer-brand img {
  width: 90px;
  height: auto;
}
.footer-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}
.footer-columns h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}
.footer-columns a {
  display: block;
  padding: 5px 0;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
}
.footer-columns a:hover,
.footer-terms a:hover { color: #fff; }
.footer-terms {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.footer-terms a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
.footer-legal {
  max-width: 820px;
  display: grid;
  gap: 8px;
  padding-top: 4px;
  font-size: 13px;
  line-height: 1.55;
}
.footer-legal p {
  margin: 0;
  color: rgba(255,255,255,0.62);
}
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms var(--ease), transform 520ms var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .site-intro { display: none; }
}

@media (max-width: 920px) {
  .nav {
    top: 80px;
    right: 20px;
    left: 20px;
    width: auto;
  }
  .account-menu {
    top: 80px;
    right: 20px;
    left: 20px;
    width: auto;
  }
  .nav a {
    min-height: 54px;
  }
  .section-head,
  .split,
  .cta-inner,
  .media-feature,
  .support-media {
    grid-template-columns: 1fr;
  }
  .service-grid,
  .trust-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .header-inner { min-height: 66px; }
  .brand span { font-size: 15px; }
  .brand img {
    width: 86px;
    margin-top: 8px;
  }
  .header-cta { display: none; }
  .nav { top: 76px; right: 20px; left: 20px; width: auto; }
  .hero {
    min-height: auto;
    padding: 94px 0 30px;
  }
  .hero h1 {
    font-size: clamp(32px, 10vw, 48px);
  }
  .reg-panel { padding: 18px; }
  .reg-form { grid-template-columns: 1fr; }
  .button { width: 100%; }
  .main-vrm-input { min-height: 66px; }
  .trust-row,
  .service-grid {
    grid-template-columns: 1fr;
  }
  .section { padding: 58px 0; }
  .step { grid-template-columns: 1fr; }
  .media-copy { padding: 22px; }
  .media-feature img { min-height: 210px; }
  .support-media img { max-height: 210px; }
  .support-media { padding: 14px; gap: 16px; }
  .footer-top,
  .footer-columns { grid-template-columns: 1fr; }
}
