@font-face {
  font-family: 'Charles Wright';
  src: url('charles-wright.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --bg: #f5f5f7;
  --surface: #fff;
  --surface2: #f0f0f3;
  --border: rgba(0,0,0,.06);
  --border2: rgba(0,0,0,.1);
  --text: #1d1d1f;
  --text-dim: #6e6e73;
  --text-muted: #aeaeb2;
  --accent: #1d1d1f;
  --blue: #0071e3;
  --green: #1a8d3e;
  --purple: #8b5cf6;
  --orange: #e67e22;
  --gold: #FFD600;
  --yellow-plate: #f7c948;
  --radius: 20px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.04), 0 2px 8px rgba(0,0,0,.03);
  --shadow-md: 0 4px 20px rgba(0,0,0,.06), 0 2px 6px rgba(0,0,0,.03);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.08), 0 4px 16px rgba(0,0,0,.04);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', 'Helvetica Neue', sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ═══ TOP BAR ═══ */
.top-bar {
  background: #1d1d1f; color: rgba(255,255,255,.8); font-size: .72rem;
}
.top-bar-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: .4rem; padding-bottom: .4rem;
}
.top-bar-left { display: flex; align-items: center; gap: 1.5rem; }
.top-bar-item { display: flex; align-items: center; gap: .4rem; }
.top-bar-item svg { opacity: .6; }
.top-bar-right { display: flex; gap: 1.25rem; }
.top-bar-right a { color: rgba(255,255,255,.6); text-decoration: none; font-size: .72rem; transition: color .2s; }
.top-bar-right a:hover { color: #fff; }

/* ═══ HEADER ═══ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(20px); -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo { text-decoration: none; display: flex; align-items: center; }
.logo-img { height: 32px; width: auto; }
.main-nav { display: flex; gap: 2rem; }
.main-nav a {
  color: var(--text-dim); text-decoration: none; font-size: .82rem; font-weight: 500;
  transition: color .2s;
}
.main-nav a:hover { color: var(--text); }
.header-actions { display: flex; align-items: center; gap: 1rem; }
.header-cta {
  padding: .45rem 1.2rem; border-radius: var(--radius-xs);
  background: #1d1d1f; color: #fff; text-decoration: none;
  font-size: .78rem; font-weight: 600; transition: all .2s;
}
.header-cta:hover { background: #333; }
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 24px; position: relative; flex-direction: column; justify-content: space-between;
}
.hamburger span {
  display: block; width: 100%; height: 2px; background: var(--text);
  border-radius: 2px; transition: all .3s;
}

/* ═══ HERO ═══ */
.hero {
  position: relative; overflow: hidden;
  padding: 5rem 2rem 4rem;
  background: linear-gradient(165deg, #1d1d1f 0%, #2c2c2e 40%, #1d1d1f 100%);
  color: #fff;
}
.hero-bg {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,214,0,.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(0,113,227,.06) 0%, transparent 50%);
}
.hero-inner { position: relative; z-index: 1; text-align: center; max-width: 900px; margin: 0 auto; }
.hero-badge {
  display: inline-block; padding: .3rem 1rem; border-radius: 20px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  font-size: .68rem; font-weight: 600; letter-spacing: .04em; color: rgba(255,255,255,.7);
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: 3.6rem; font-weight: 800; line-height: 1.08;
  letter-spacing: -.03em; margin-bottom: 1rem;
}
.hero-accent { color: var(--gold); }
.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,.6); max-width: 580px;
  margin: 0 auto 3rem; line-height: 1.6;
}

/* Hero cards */
.hero-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  max-width: 820px; margin: 0 auto;
}
.hero-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 2rem;
  text-decoration: none; color: #fff;
  transition: all .35s cubic-bezier(.25,.46,.45,.94);
  display: flex; flex-direction: column; text-align: left;
  position: relative; overflow: hidden;
}
.hero-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,.06) 0%, transparent 100%);
  pointer-events: none;
}
.hero-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.3);
}
.hero-card-visual {
  display: flex; flex-direction: column; gap: .5rem; align-items: center;
  margin-bottom: 1.5rem;
}
.mini-plate {
  display: inline-flex; align-items: center; justify-content: center;
  width: 200px; aspect-ratio: 520 / 111;
  padding: 0 4%;
  border-radius: 7px;
  font-family: 'Charles Wright', 'Arial Black', Impact, sans-serif;
  font-size: 2.4rem; font-weight: 400; letter-spacing: .12em; text-align: center;
  white-space: nowrap; overflow: hidden;
  border: 1.5px solid rgba(0,0,0,.2);
}
.mini-plate.yellow {
  background: linear-gradient(180deg, #FFD54F 0%, #f0b800 100%);
  color: #1a1a1a;
}
.mini-plate.white {
  background: linear-gradient(180deg, #FFD54F 0%, #f0b800 100%);
  color: #1a1a1a;
}
.hero-card h2 {
  font-size: 1.25rem; font-weight: 700; margin-bottom: .5rem;
  letter-spacing: -.01em;
}
.hero-card p {
  font-size: .85rem; color: rgba(255,255,255,.55); line-height: 1.5;
  margin-bottom: 1.25rem; flex: 1;
}
.hero-card-cta {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .82rem; font-weight: 600;
  transition: gap .2s;
  background: none; border: none; cursor: pointer;
  font-family: inherit; padding: 0;
}
.hero-card--plates .hero-card-cta { color: var(--gold); }
.hero-card--regs .hero-card-cta { color: #5ac8fa; }
.hero-card:hover .hero-card-cta { gap: .7rem; }

/* Plate input fields on hero cards */
.plate-input-wrap {
  width: 100%; max-width: 280px;
  text-align: center;
}
.plate-input {
  display: flex; align-items: center; justify-content: center;
  width: 100%; aspect-ratio: 520 / 111;
  background: linear-gradient(180deg, #FFD54F 0%, #f0b800 100%);
  border: 2px solid rgba(0,0,0,.25); border-radius: 8px;
  font-family: 'Charles Wright', 'Arial Black', Impact, sans-serif;
  font-size: 2rem; font-weight: 400; letter-spacing: .08em;
  color: #1a1a1a; text-align: center; text-transform: uppercase;
  padding: 2px 4% 0; line-height: 1.3;
  box-shadow: inset 0 2px 6px rgba(0,0,0,.08), 0 3px 10px rgba(0,0,0,.15);
  transition: all .2s;
  cursor: pointer;
}
.plate-input--link:hover {
  border-color: var(--gold);
  box-shadow: inset 0 2px 6px rgba(0,0,0,.08), 0 0 0 4px rgba(255,214,0,.3), 0 3px 10px rgba(0,0,0,.15);
  transform: scale(1.03);
}

/* Handwritten CTA hints */
.handwritten-hint {
  display: block;
  font-family: 'Caveat', cursive;
  font-size: 1.15rem; font-weight: 700;
  color: #4cd964;
  margin-bottom: .4rem;
  line-height: 1.2;
  text-align: center;
  text-shadow: 0 1px 4px rgba(0,0,0,.3);
}
.hint-arrow {
  width: 28px; height: 28px;
  vertical-align: middle;
  margin-left: .1rem;
  display: inline-block;
  stroke: #4cd964;
}
.hint-arrow-down {
  animation: bounceDown 1.5s ease-in-out infinite;
}
@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* ═══ TRUST BAR ═══ */
.trust-bar { padding: 2rem 0; background: #fff; border-bottom: 1px solid var(--border); }
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.trust-item {
  display: flex; align-items: center; gap: .75rem;
  padding: .5rem 0;
}
.trust-item svg { color: var(--green); flex-shrink: 0; }
.trust-item div { display: flex; flex-direction: column; gap: .15rem; }
.trust-item strong { display: block; font-size: .85rem; font-weight: 700; color: var(--text); line-height: 1.3; }
.trust-item span { font-size: .72rem; color: var(--text-dim); line-height: 1.3; }

/* ═══ SECTIONS ═══ */
.section { padding: 5rem 0; }
.section:nth-child(even) { background: #fff; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-tag {
  display: inline-block; padding: .2rem .8rem; border-radius: 6px;
  font-size: .62rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; margin-bottom: .75rem;
  background: #FFD600; color: #1a1a1a;
}
.section-tag.tag-blue { background: #0071e3; color: #fff; }
.section-tag.tag-dark { background: #1d1d1f; color: #fff; }
.section-tag.tag-gold { background: #FFD600; color: #1a1a1a; }
.section-title {
  font-size: 2.2rem; font-weight: 700; letter-spacing: -.02em;
  color: var(--text); margin-bottom: .5rem;
}
.section-sub {
  color: var(--text-dim); font-size: .95rem;
}

/* ═══ PLATE STYLES GRID ═══ */
.plate-styles-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
.plate-style-card {
  background: #fff; border-radius: var(--radius); padding: 1.75rem;
  text-align: center; position: relative; overflow: hidden;
  border: 1px solid var(--border);
  transition: all .3s cubic-bezier(.25,.46,.45,.94);
  cursor: pointer;
}
.plate-style-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.plate-style-img {
  margin-bottom: 1.25rem; display: flex; justify-content: center;
}
.demo-plate {
  display: inline-flex; align-items: center; justify-content: center;
  width: 100%; max-width: 240px; aspect-ratio: 520 / 111;
  padding: 2px 5% 0;
  border-radius: 8px;
  font-family: 'Charles Wright', 'Arial Black', Impact, sans-serif;
  font-size: 2.2rem; font-weight: 400; letter-spacing: .08em;
  line-height: 1.3;
  white-space: nowrap; overflow: hidden;
  border: 1.5px solid rgba(0,0,0,.2);
  box-shadow: 0 3px 10px rgba(0,0,0,.1);
  background: linear-gradient(180deg, #FFD54F 0%, #f7c948 50%, #f0b800 100%);
  color: #1a1a1a;
}
/* Plate style variations */
.plate-4d { text-shadow: 1px 1px 0 rgba(0,0,0,.15); }
.plate-3d { text-shadow: 0 1px 2px rgba(0,0,0,.1); }
.plate-hex {
  border: none; border-radius: 0;
  clip-path: polygon(8% 0%, 92% 0%, 100% 50%, 92% 100%, 8% 100%, 0% 50%);
  padding: 2px 14% 0;
}
.plate-printed { }
.plate-5d { text-shadow: 1px 1px 0 rgba(0,0,0,.15), 0 2px 4px rgba(0,0,0,.1); }
.plate-ev {
  padding-left: 0; gap: 0;
  position: relative;
}
.ev-flash {
  display: flex; align-items: center; justify-content: center;
  width: 10%; align-self: stretch;
  background: #4cd964; color: #fff;
  border-radius: 6px 0 0 6px;
  font-size: .9rem; line-height: 1;
  margin: -1px 0 -1px -1px;
  flex-shrink: 0;
}
.ev-text { flex: 1; text-align: center; }
/* Motorcycle plate — 9x7 inch square format, reg over two lines */
.plate-moto {
  aspect-ratio: 9 / 7;
  width: 130px; max-width: 130px;
  flex-direction: column; gap: 0;
  font-size: 2.2rem; letter-spacing: .06em;
  line-height: 1.15; padding: 4% 6% 0;
  white-space: normal;
}
/* Show plate — dashed border to differentiate */
.plate-show {
  border-style: dashed;
  border-color: rgba(0,0,0,.35);
}

.plate-style-badge {
  position: absolute; top: 1rem; right: 1rem;
  padding: .15rem .6rem; border-radius: 4px;
  font-size: .6rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .05em;
}
.plate-style-badge.bestseller { background: var(--green); color: #fff; }
.plate-style-badge.new { background: var(--blue); color: #fff; }
.plate-style-card h3 {
  font-size: 1rem; font-weight: 700; margin-bottom: .35rem; color: var(--text);
}
.plate-style-card p {
  font-size: .78rem; color: var(--text-dim); line-height: 1.5; margin-bottom: .75rem;
}
.plate-style-price {
  font-size: .75rem; color: var(--text-dim); margin-bottom: .75rem;
}
.plate-style-price strong { color: var(--text); font-weight: 700; font-size: .9rem; }
.plate-style-cta {
  font-size: .78rem; font-weight: 600; color: var(--blue); text-decoration: none;
}

.section-cta-wrap { text-align: center; margin-top: 2.5rem; }
.btn-primary-lg {
  display: inline-block; padding: .8rem 2.5rem; border-radius: var(--radius-sm);
  background: #1d1d1f; color: #fff; text-decoration: none;
  font-size: .9rem; font-weight: 600; transition: all .2s;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.btn-primary-lg:hover { background: #333; transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,.2); }

/* ═══ SECTION DIVIDER ═══ */
.section-divider {
  background: linear-gradient(165deg, #1d1d1f 0%, #2c2c2e 40%, #1d1d1f 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.section-divider::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,214,0,.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(0,113,227,.08) 0%, transparent 50%);
}
.divider-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
}
.divider-line {
  width: 60px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, #FFD600, #f0b800);
}
.divider-content {
  text-align: center; padding: 2rem 0; max-width: 600px;
}
.divider-label {
  display: inline-block; padding: .25rem .9rem; border-radius: 20px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  color: #FFD600; font-size: .62rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; margin-bottom: 1rem;
}
.divider-title {
  font-size: 1.8rem; font-weight: 700; letter-spacing: -.02em;
  color: #fff; margin-bottom: .75rem; line-height: 1.2;
}
.divider-sub {
  font-size: .9rem; color: rgba(255,255,255,.65); margin-bottom: 1.5rem; line-height: 1.6;
}
.divider-cta {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .65rem 2rem; border-radius: var(--radius-sm);
  background: linear-gradient(180deg, #FFD54F 0%, #f0b800 100%);
  color: #1a1a1a; text-decoration: none;
  font-size: .85rem; font-weight: 700; letter-spacing: -.01em;
  transition: all .2s;
  box-shadow: 0 2px 8px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.4);
}
.divider-cta:hover { filter: brightness(1.08); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,.4); }

/* ═══ REGISTRATIONS SECTION ═══ */
.reg-search-box {
  max-width: 640px; margin: 0 auto 3rem;
}
.reg-search-bar {
  display: flex; align-items: center; gap: .75rem;
  background: #fff; border: 2px solid var(--border2);
  border-radius: var(--radius); padding: .5rem .5rem .5rem 1.25rem;
  transition: all .3s;
  box-shadow: var(--shadow-md);
}
.reg-search-bar:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0,113,227,.1), var(--shadow-md);
}
.reg-search-icon { color: var(--text-muted); flex-shrink: 0; }
.reg-search-input {
  flex: 1; background: none; border: none; color: var(--text);
  font-family: inherit; font-size: 1rem; outline: none;
  text-transform: uppercase;
}
.reg-search-input::placeholder { color: var(--text-muted); text-transform: none; }
.reg-search-btn {
  padding: .7rem 2rem; border: none; border-radius: 14px;
  background: var(--blue); color: #fff;
  font-family: inherit; font-size: .9rem; font-weight: 600;
  cursor: pointer; transition: all .2s;
}
.reg-search-btn:hover { filter: brightness(1.08); }
.reg-search-hints {
  text-align: center; margin-top: .75rem; font-size: .72rem; color: var(--text-dim);
  display: flex; align-items: center; gap: .4rem; justify-content: center; flex-wrap: wrap;
}
.reg-search-hints button {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--radius-xs); padding: .2rem .6rem;
  color: var(--text-dim); font-family: inherit; font-size: .72rem;
  cursor: pointer; transition: all .2s;
}
.reg-search-hints button:hover { border-color: var(--blue); color: var(--blue); }

.reg-features {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
.reg-feature {
  text-align: center; padding: 1.25rem;
  background: var(--surface2); border-radius: var(--radius);
  transition: all .3s;
}
.reg-feature:hover { background: #fff; box-shadow: var(--shadow-md); transform: translateY(-3px); }
.reg-feature-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto .75rem; color: #fff;
}
.reg-feature-icon.blue { background: linear-gradient(135deg, #0071e3, #5ac8fa); }
.reg-feature-icon.green { background: linear-gradient(135deg, #1a8d3e, #34c759); }
.reg-feature-icon.purple { background: linear-gradient(135deg, #8b5cf6, #bf5af2); }
.reg-feature-icon.orange { background: linear-gradient(135deg, #e67e22, #ff9f0a); }
.reg-feature h4 { font-size: .82rem; font-weight: 700; margin-bottom: .2rem; }
.reg-feature p { font-size: .7rem; color: var(--text-dim); }

/* ═══ WHY US ═══ */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.why-card {
  background: linear-gradient(170deg, #ffffff 0%, #eef0f4 50%, #e4e6eb 100%);
  border-radius: var(--radius); padding: 2rem; text-align: center;
  transition: all .3s cubic-bezier(.25,.46,.45,.94);
  border-top: 1px solid rgba(255,255,255,.8);
  border-left: 1px solid rgba(255,255,255,.6);
  border-right: 1px solid rgba(0,0,0,.04);
  border-bottom: 1px solid rgba(0,0,0,.08);
  box-shadow:
    6px 6px 14px rgba(0,0,0,.1),
    -4px -4px 10px rgba(255,255,255,.9);
}
.why-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow:
    8px 8px 20px rgba(0,0,0,.13),
    -6px -6px 14px rgba(255,255,255,1);
}
.why-icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  background: rgba(0,0,0,.04); color: var(--text);
}
.why-card h3 { font-size: .95rem; font-weight: 700; margin-bottom: .4rem; }
.why-card p { font-size: .8rem; color: var(--text-dim); line-height: 1.5; }

/* ═══ REVIEWS ═══ */
.reviews-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.review-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem;
  transition: all .3s;
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.review-stars { font-size: 1rem; color: #FFB800; margin-bottom: .75rem; letter-spacing: 2px; }
.review-card p {
  font-size: .85rem; color: var(--text-dim); line-height: 1.6;
  margin-bottom: 1rem; font-style: italic;
}
.review-author {
  font-size: .78rem; font-weight: 700; color: var(--text);
}
.review-author span { font-weight: 400; color: var(--text-muted); margin-left: .4rem; }

/* ═══ CTA BANNER ═══ */
.cta-banner {
  background: linear-gradient(165deg, #1d1d1f 0%, #2c2c2e 100%);
  color: #fff; padding: 4rem 2rem; text-align: center;
}
.cta-inner h2 { font-size: 2rem; font-weight: 700; margin-bottom: .5rem; }
.cta-inner p { color: rgba(255,255,255,.6); font-size: .95rem; margin-bottom: 2rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-btn {
  padding: .75rem 2rem; border-radius: var(--radius-sm);
  text-decoration: none; font-size: .88rem; font-weight: 600;
  transition: all .2s;
}
.cta-btn--light { background: #fff; color: #1d1d1f; }
.cta-btn--light:hover { background: var(--gold); }
.cta-btn--outline {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,.25);
}
.cta-btn--outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.4); }

/* ═══ FOOTER ═══ */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
  background: #fff;
}
.footer-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  margin-bottom: 3rem;
}
.footer-col h4 {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--text); margin-bottom: 1rem;
}
.footer-col a {
  display: block; color: var(--text-dim); text-decoration: none;
  font-size: .8rem; margin-bottom: .5rem; transition: color .2s;
}
.footer-col a:hover { color: var(--blue); }
.footer-text { font-size: .8rem; color: var(--text-dim); margin-bottom: 1rem; line-height: 1.6; }
.social-links { display: flex; gap: .6rem; }
.social-links a {
  width: 34px; height: 34px; border-radius: 10px; background: var(--surface2);
  border: 1px solid var(--border); display: flex; align-items: center;
  justify-content: center; color: var(--text-dim); transition: all .2s;
}
.social-links a:hover { border-color: var(--text); color: var(--text); background: #fff; }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 2rem; text-align: center;
}
.footer-bottom p { font-size: .7rem; color: var(--text-muted); margin-bottom: .5rem; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .plate-styles-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .reg-features { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* Top bar */
  .hide-mobile { display: none; }
  .top-bar-inner { padding-top: .35rem; padding-bottom: .35rem; }
  .top-bar { font-size: .65rem; }
  .top-bar-right { gap: .75rem; }
  .top-bar-right a { font-size: .65rem; }

  /* Header */
  .hamburger { display: flex; }
  .main-nav {
    display: none; position: absolute; top: 64px; left: 0; right: 0;
    background: rgba(255,255,255,.95); backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--border); flex-direction: column;
    padding: 1rem 2rem;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: .75rem 0; border-bottom: 1px solid var(--border); font-size: .95rem; }
  .header-cta { display: none; }
  .header-inner { padding: 0 1rem; }
  .logo-img { height: 28px; }

  /* Layout */
  .container { padding: 0 1rem; }
  .section { padding: 3rem 0; }
  .section-title { font-size: 1.5rem; }
  .section-sub { font-size: .85rem; }
  .section-header { margin-bottom: 2rem; }

  /* Hero */
  .hero { padding: 3rem 1.25rem 2.5rem; }
  .hero h1 { font-size: 2.2rem; }
  .hero-sub { font-size: .9rem; margin-bottom: 2rem; }
  .hero-cards { grid-template-columns: 1fr; gap: 1rem; max-width: 400px; margin: 0 auto; }
  .hero-card { padding: 1.5rem; }
  .hero-card h2 { font-size: 1.1rem; }
  .hero-card p { font-size: .8rem; }
  .mini-plate { width: 170px; font-size: 2rem; }
  .plate-input-wrap { max-width: 240px; }
  .plate-input { font-size: 1.7rem; }
  .handwritten-hint { font-size: 1rem; }

  /* Divider */
  .section-divider { padding: 2.5rem 0; }
  .divider-title { font-size: 1.4rem; }
  .divider-sub { font-size: .82rem; }

  /* Trust */
  .trust-bar { padding: 1.5rem 0; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .trust-item { gap: .5rem; padding: .4rem 0; }
  .trust-item svg { width: 22px; height: 22px; }
  .trust-item strong { font-size: .78rem; }
  .trust-item span { font-size: .66rem; }

  /* Grids */
  .plate-styles-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .plate-style-card { padding: 1.25rem; }
  .demo-plate { max-width: 100%; font-size: 1.8rem; }
  .plate-style-card h3 { font-size: .9rem; }
  .plate-style-card p { font-size: .72rem; }
  .plate-style-price { font-size: .7rem; }
  .reg-features { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .why-grid { grid-template-columns: 1fr; gap: 1rem; }
  .reviews-grid { grid-template-columns: 1fr; gap: 1rem; }
  .review-card { padding: 1.25rem; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }

  /* CTA */
  .cta-banner { padding: 3rem 1.25rem; }
  .cta-inner h2 { font-size: 1.5rem; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-btn { width: 100%; max-width: 300px; text-align: center; }
}

@media (max-width: 480px) {
  /* Top bar */
  .top-bar-right { gap: .5rem; }
  .top-bar-left { gap: .75rem; }

  /* Hero */
  .hero { padding: 2rem 1rem 1.5rem; }
  .hero h1 { font-size: 1.6rem; }
  .hero-sub { font-size: .8rem; margin-bottom: 1.5rem; }
  .hero-badge { font-size: .58rem; padding: .25rem .7rem; }
  .hero-card { padding: 1.25rem; }
  .hero-card-visual { margin-bottom: .75rem; }
  .hero-card h2 { font-size: 1rem; }
  .hero-card p { font-size: .75rem; margin-bottom: 1rem; }
  .hero-card-cta { font-size: .78rem; }
  .plate-input-wrap { max-width: 100%; }
  .plate-input { font-size: 1.4rem; }
  .handwritten-hint { font-size: .85rem; }
  .hint-arrow { width: 22px; height: 22px; }

  /* Divider */
  .section-divider { padding: 2rem 0; }
  .divider-title { font-size: 1.2rem; }
  .divider-sub { font-size: .78rem; margin-bottom: 1rem; }
  .divider-cta { font-size: .8rem; padding: .6rem 1.5rem; }
  .divider-line { width: 40px; }

  /* Trust */
  .trust-bar { padding: 1rem 0; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: .6rem .8rem; }
  .trust-item { padding: .3rem 0; }
  .trust-item strong { font-size: .72rem; }
  .trust-item span { font-size: .62rem; }

  /* Section tags */
  .section-tag { font-size: .58rem; padding: .15rem .6rem; margin-bottom: .5rem; }

  /* Plates */
  .plate-styles-grid { grid-template-columns: 1fr; }
  .demo-plate { max-width: 260px; font-size: 2rem; }
  .plate-style-card { padding: 1.5rem; }

  /* Search */
  .reg-search-bar { flex-direction: column; padding: .6rem; gap: .5rem; }
  .reg-search-input { text-align: center; padding: .5rem; }
  .reg-search-btn { width: 100%; }
  .reg-search-icon { display: none; }

  /* Features */
  .reg-features { grid-template-columns: 1fr 1fr; gap: .6rem; }
  .reg-feature { padding: 1rem .75rem; }
  .reg-feature h4 { font-size: .75rem; }
  .reg-feature p { font-size: .65rem; }

  /* Why us */
  .why-card { padding: 1.5rem; }
  .why-card h3 { font-size: .88rem; }
  .why-card p { font-size: .75rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .social-links { justify-content: center; }
  .footer-bottom p { font-size: .65rem; }

  /* CTA */
  .cta-banner { padding: 2.5rem 1rem; }
  .cta-inner h2 { font-size: 1.3rem; }
  .cta-inner p { font-size: .82rem; }
}

@media (pointer: coarse) {
  .reg-search-btn { min-height: 44px; }
  .cta-btn { min-height: 44px; display: flex; align-items: center; justify-content: center; }
  .hamburger { min-width: 44px; min-height: 44px; }
  .main-nav a { min-height: 44px; display: flex; align-items: center; }
  .hero-card { min-height: 44px; }
  .plate-style-card { min-height: 44px; }
  .plate-style-card { min-height: 44px; }
}

/* ═══ ANIMATIONS & EFFECTS ═══ */

/* Lenis smooth scroll */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

/* Noise texture overlay */
body::after {
  content: ''; position: fixed; inset: 0; z-index: 9999;
  pointer-events: none; opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 256px;
}

/* Selection colour */
::selection { background: var(--gold); color: #1a1a1a; }

/* Loading screen */
.loader {
  position: fixed; inset: 0; z-index: 10000;
  background: #1d1d1f; display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1.5rem;
}
.loader-bar {
  width: 120px; height: 2px; background: rgba(255,255,255,.1); border-radius: 2px; overflow: hidden;
}
.loader-fill {
  height: 100%; width: 0; background: var(--gold); border-radius: 2px;
  animation: loaderFill 1.2s cubic-bezier(.65,.05,0,1) forwards;
}
.loader-text {
  font-weight: 800; font-size: .7rem;
  letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.4);
}
.loader.done {
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  transition: clip-path .8s cubic-bezier(.65,.05,0,1) .1s;
}
@keyframes loaderFill { to { width: 100%; } }

/* Scroll progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; z-index: 101;
  background: var(--gold); width: 0%; transform-origin: left;
}

/* Cursor glow (desktop only) */
.cursor-glow {
  position: fixed; width: 350px; height: 350px;
  border-radius: 50%; pointer-events: none; z-index: 1;
  background: radial-gradient(circle, rgba(255,214,0,.05), transparent 70%);
  transform: translate(-50%, -50%);
  transition: opacity .4s;
  opacity: 0; mix-blend-mode: multiply;
}
body:hover .cursor-glow { opacity: 1; }

/* Mouse trail */
.trail-dot {
  position: fixed; pointer-events: none; z-index: 9998;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(255,214,0,.5), 0 0 16px rgba(255,214,0,.15);
  animation: trailFade .7s cubic-bezier(.65,.05,0,1) forwards;
}
.trail-dot.on-dark {
  background: var(--gold);
  box-shadow: 0 0 10px rgba(255,214,0,.7), 0 0 20px rgba(255,214,0,.25);
}
@keyframes trailFade {
  0% { opacity: .7; transform: scale(1); }
  100% { opacity: 0; transform: scale(0); }
}

/* Scroll reveal animations */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity .75s cubic-bezier(.65,.05,0,1), transform .75s cubic-bezier(.65,.05,0,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0; transform: translateX(-60px);
  transition: opacity .75s cubic-bezier(.65,.05,0,1), transform .75s cubic-bezier(.65,.05,0,1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0; transform: translateX(60px);
  transition: opacity .75s cubic-bezier(.65,.05,0,1), transform .75s cubic-bezier(.65,.05,0,1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0; transform: scale(.85);
  transition: opacity .9s cubic-bezier(.65,.05,0,1), transform .9s cubic-bezier(.65,.05,0,1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

.reveal-rotate {
  opacity: 0; transform: translateY(40px) rotate(3deg);
  transition: opacity .75s cubic-bezier(.65,.05,0,1), transform .75s cubic-bezier(.65,.05,0,1);
}
.reveal-rotate.visible { opacity: 1; transform: translateY(0) rotate(0); }

/* Stagger delays */
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; } .d4 { transition-delay: .4s; }
.d5 { transition-delay: .5s; } .d6 { transition-delay: .6s; }
.d7 { transition-delay: .7s; } .d8 { transition-delay: .8s; }

/* Horizontal wipe line */
.wipe-line {
  height: 1px; position: relative; overflow: hidden;
}
.wipe-line::after {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 1.4s cubic-bezier(.65,.05,0,1);
}
.wipe-line.visible::after { transform: scaleX(1); }

/* Marquee */
.marquee {
  overflow: hidden; padding: 1rem 0;
  background: var(--gold); position: relative;
}
.marquee-track {
  display: flex; width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-item {
  font-weight: 800; font-size: .8rem; letter-spacing: .05em;
  text-transform: uppercase; color: #1a1a1a;
  white-space: nowrap; padding: 0 1.5rem;
  display: flex; align-items: center; gap: 1.5rem;
}
.marquee-item::after {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: rgba(0,0,0,.2); flex-shrink: 0;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marqueeScroll { to { transform: translateX(-50%); } }

/* Stats counter bar */
.stats-bar {
  display: flex; justify-content: center; gap: 4rem;
  padding: 3.5rem 2rem; background: #1d1d1f;
}
.stat { text-align: center; }
.stat-num {
  font-weight: 800; font-size: 2.5rem;
  color: var(--gold); letter-spacing: -.02em;
}
.stat-label {
  font-size: .72rem; color: rgba(255,255,255,.5); text-transform: uppercase;
  letter-spacing: .08em; font-weight: 500; margin-top: .25rem;
}

/* 3D tilt card glow */
.tilt-card {
  transform-style: preserve-3d; will-change: transform;
  position: relative;
}
.tilt-card::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255,214,0,.08), transparent 60%);
  opacity: 0; transition: opacity .4s; pointer-events: none;
}
.tilt-card:hover::after { opacity: 1; }

/* Magnetic buttons */
.magnetic { transition: transform .3s cubic-bezier(.16,1,.3,1); }

/* Hero text line reveal */
.hero h1 .line-wrap {
  display: block; overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.hero h1 .line-inner {
  display: block; transform: translateY(110%);
  animation: lineReveal .9s cubic-bezier(.65,.05,0,1) forwards;
}
.hero h1 .line-wrap:nth-child(1) .line-inner { animation-delay: 1.5s; }
.hero h1 .line-wrap:nth-child(2) .line-inner { animation-delay: 1.65s; }
@keyframes lineReveal { to { transform: translateY(0); } }

/* Hero badge reveal */
.hero-badge {
  opacity: 0; transform: translateY(15px) scale(.95);
  animation: badgeReveal .6s cubic-bezier(.65,.05,0,1) 1.3s forwards;
}
@keyframes badgeReveal { to { opacity: 1; transform: translateY(0) scale(1); } }

/* Hero sub & cards staggered reveal */
.hero-sub {
  opacity: 0; transform: translateY(25px);
  animation: fadeUp .8s cubic-bezier(.65,.05,0,1) 1.9s forwards;
}
.hero-cards {
  opacity: 0; transform: translateY(30px);
  animation: fadeUp .8s cubic-bezier(.65,.05,0,1) 2.1s forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Touch ripple effect (mobile replacement for mouse trail) */
.touch-ripple {
  position: fixed; pointer-events: none; z-index: 9998;
  width: 60px; height: 60px; border-radius: 50%;
  border: 2px solid var(--gold);
  animation: rippleExpand .6s cubic-bezier(.16,1,.3,1) forwards;
}
.touch-ripple.on-dark {
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(255,214,0,.3);
}
@keyframes rippleExpand {
  0% { opacity: .6; transform: translate(-50%, -50%) scale(0); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.5); }
}

/* Mobile scroll hint — show on all sizes */
.scroll-hint {
  position: absolute; bottom: 1.5rem; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  opacity: 0; animation: fadeUp .8s cubic-bezier(.65,.05,0,1) 2.6s forwards;
}
.scroll-hint span {
  font-size: .6rem; color: rgba(255,255,255,.4); text-transform: uppercase;
  letter-spacing: .15em; font-weight: 500;
}
.scroll-line {
  width: 1px; height: 35px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .3; transform: scaleY(.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Hero parallax */
.hero { position: relative; }
.hero-bg { will-change: transform; }

/* Hide cursor glow on touch devices */
@media (pointer: coarse) {
  .cursor-glow { display: none !important; }
}

/* Prefers reduced motion — respect accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-track { animation: none !important; }
  .reveal, .reveal-left, .reveal-right, .reveal-scale, .reveal-rotate {
    opacity: 1 !important; transform: none !important;
  }
  .hero-badge, .hero-sub, .hero-cards, .hero h1 .line-inner {
    opacity: 1 !important; transform: none !important;
  }
}

/* ═══ MOBILE ANIMATIONS RESPONSIVE ═══ */

@media (max-width: 900px) {
  /* Reduce animation travel distances on mobile */
  .reveal { transform: translateY(25px); }
  .reveal-left { transform: translateX(-30px); }
  .reveal-right { transform: translateX(30px); }
  .reveal-rotate { transform: translateY(25px) rotate(2deg); }

  /* Faster stagger on mobile so content doesn't feel slow */
  .d1 { transition-delay: .05s; } .d2 { transition-delay: .1s; }
  .d3 { transition-delay: .15s; } .d4 { transition-delay: .2s; }
  .d5 { transition-delay: .25s; } .d6 { transition-delay: .3s; }
  .d7 { transition-delay: .35s; } .d8 { transition-delay: .4s; }

  /* Hero animations — faster on mobile */
  .hero h1 .line-wrap:nth-child(1) .line-inner { animation-delay: 1.2s; }
  .hero h1 .line-wrap:nth-child(2) .line-inner { animation-delay: 1.35s; }
  .hero-badge { animation-delay: 1s; }
  .hero-sub { animation-delay: 1.55s; }
  .hero-cards { animation-delay: 1.7s; }
  .scroll-hint { animation-delay: 2.2s; bottom: 1rem; }
  .scroll-line { height: 25px; }
}

@media (max-width: 768px) {
  /* Stats bar — 2x2 grid on mobile */
  .stats-bar {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1.5rem; padding: 2.5rem 1.5rem;
  }
  .stat-num { font-size: 1.8rem; }
  .stat-label { font-size: .65rem; }

  /* Marquee */
  .marquee { padding: .75rem 0; }
  .marquee-item { font-size: .68rem; padding: 0 .8rem; gap: .8rem; }
  .marquee-item::after { width: 4px; height: 4px; }
  .marquee-track { animation-duration: 20s; }

  /* Scroll progress — slightly thicker on mobile for visibility */
  .scroll-progress { height: 3px; }

  /* Loader — slightly smaller text */
  .loader-text { font-size: .6rem; letter-spacing: .15em; }
  .loader-bar { width: 100px; }
}

@media (max-width: 480px) {
  /* Stats bar — stays 2x2 but tighter */
  .stats-bar { gap: 1rem; padding: 2rem 1rem; }
  .stat-num { font-size: 1.5rem; }
  .stat-label { font-size: .6rem; letter-spacing: .05em; }

  /* Marquee — even smaller */
  .marquee { padding: .6rem 0; }
  .marquee-item { font-size: .6rem; padding: 0 .6rem; gap: .6rem; }

  /* Hero pad bottom for scroll hint */
  .hero { padding-bottom: 3.5rem; }
  .scroll-hint { bottom: .75rem; }
  .scroll-hint span { font-size: .5rem; }
  .scroll-line { height: 20px; }
}
