@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;
  --surface3: #e8e8ed;
  --border: rgba(0,0,0,.06);
  --border2: rgba(0,0,0,.1);
  --text: #1d1d1f;
  --text-dim: #6e6e73;
  --text-muted: #aeaeb2;
  --accent: #0071e3;
  --accent-light: #2997ff;
  --accent-glow: rgba(0,113,227,.06);
  --green: #1a8d3e;
  --green-bg: rgba(26,141,62,.06);
  --red: #e3342f;
  --orange: #e67e22;
  --purple: #8b5cf6;
  --purple-bg: rgba(139,92,246,.06);
  --yellow-plate: #f7c948;
  --white-plate: #f0f0f0;
  --plate-text: #1a1a1a;
  --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);
  --glass: linear-gradient(180deg, rgba(255,255,255,.9) 0%, rgba(255,255,255,.7) 100%);
  --gloss: linear-gradient(180deg, rgba(255,255,255,.5) 0%, rgba(255,255,255,0) 50%);
}

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

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

/* ═══ 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 rgba(0,0,0,.06);
}
.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo { text-decoration: none; display: flex; align-items: center; }
.logo-svg { height: 44px; 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; letter-spacing: -.01em;
}
.main-nav a:hover { color: var(--text); }
.header-actions { display: flex; align-items: center; gap: 1rem; }
.header-phone {
  display: flex; align-items: center; gap: .4rem;
  color: var(--text-dim); text-decoration: none; font-size: .8rem; font-weight: 500;
  transition: color .2s;
}
.header-phone:hover { color: var(--accent); }
.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 {
  padding: 6rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  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 { max-width: 720px; margin: 0 auto; position: relative; z-index: 1; }
.hero-badge {
  display: inline-block; padding: .35rem 1.1rem; border-radius: 20px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  color: #fff; font-size: .68rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; margin-bottom: 1.5rem;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.hero h1 {
  font-size: 3.4rem; font-weight: 700; line-height: 1.1;
  letter-spacing: -.03em; margin-bottom: 1rem;
  color: #fff; text-shadow: 0 2px 16px rgba(0,0,0,.4);
}
.hero-sub {
  color: rgba(255,255,255,.85); font-size: 1.1rem; margin-bottom: 2.5rem;
  text-shadow: 0 1px 8px rgba(0,0,0,.3); font-weight: 400;
}
.hero-highlight { color: #FFD600; }
.hero-sub strong { color: var(--green); font-weight: 600; }

/* Search */
.search-wrap { max-width: 600px; margin: 0 auto; }
.search-bar {
  display: flex; align-items: center; gap: .75rem;
  background: rgba(255,255,255,.9); border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px; padding: .5rem .5rem .5rem 1.25rem;
  transition: border-color .3s, box-shadow .3s;
  box-shadow: 0 2px 12px rgba(0,0,0,.06), inset 0 1px 0 rgba(255,255,255,.8);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.search-bar:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(0,113,227,.1), 0 4px 20px rgba(0,0,0,.08);
}
.search-icon { width: 20px; height: 20px; fill: var(--text-muted); flex-shrink: 0; }
.search-bar input {
  flex: 1; background: none; border: none; color: var(--text);
  font-family: inherit; font-size: 1rem; outline: none;
  text-transform: uppercase;
}
.search-bar input::placeholder { color: var(--text-muted); text-transform: none; }
.search-btn {
  padding: .65rem 1.75rem; border: none; border-radius: var(--radius-sm);
  background: linear-gradient(180deg, #0077ED 0%, #0071e3 100%);
  color: #fff; font-family: inherit; font-size: .85rem; font-weight: 600;
  cursor: pointer; transition: all .2s;
  box-shadow: 0 1px 3px rgba(0,0,0,.12), inset 0 1px 0 rgba(255,255,255,.2);
}
.search-btn:hover { filter: brightness(1.08); box-shadow: 0 2px 8px rgba(0,113,227,.3), inset 0 1px 0 rgba(255,255,255,.2); }
.search-btn:active { transform: scale(.97); filter: brightness(.95); }
.search-hints {
  margin-top: .75rem; font-size: .72rem; color: #555;
  display: flex; align-items: center; gap: .4rem; justify-content: center; flex-wrap: wrap;
}
.search-hints button {
  background: rgba(255,255,255,.8); border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius-xs); padding: .2rem .6rem;
  color: var(--text-dim); font-family: inherit; font-size: .72rem;
  cursor: pointer; transition: all .2s;
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
}
.search-hints button:hover { border-color: var(--accent); color: var(--accent); background: #fff; }

/* Search results */
.search-results { max-width: 1200px; margin: 2rem auto 0; padding: 0 2rem; }
.search-results:empty { display: none; }
.search-results-inner {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: .75rem;
}
.search-results .results-header {
  text-align: center; margin-bottom: 1rem; font-size: .8rem; color: var(--text-dim);
}

/* Trust row */
.trust-row { display: flex; justify-content: center; gap: 2rem; margin-top: 2.5rem; flex-wrap: wrap; }
.trust-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .75rem; font-weight: 600; color: #fff;
  background: rgba(255,255,255,.15); padding: .4rem .9rem; border-radius: 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,.2); border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.trust-item svg { color: #30d158; }

/* ═══ PROMO STRIP ═══ */
.promo-strip { padding: 2rem 0; }
.promo-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.promo-card {
  border-radius: var(--radius); padding: 2rem;
  position: relative; overflow: hidden;
  transition: transform .3s cubic-bezier(.25,.46,.45,.94), box-shadow .3s;
}
.promo-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.promo-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,.15) 0%, transparent 100%);
  pointer-events: none;
}
.promo-blue { background: linear-gradient(135deg, #0071e3 0%, #2997ff 100%); color: #fff; }
.promo-dark { background: linear-gradient(135deg, #1d1d1f 0%, #3a3a3c 100%); color: #fff; }
.promo-green { background: linear-gradient(135deg, #1a8d3e 0%, #34c759 100%); color: #fff; }
.promo-tag {
  display: inline-block; padding: .15rem .6rem; border-radius: 12px;
  background: rgba(255,255,255,.2); font-size: .6rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: .75rem;
}
.promo-card h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: .4rem; letter-spacing: -.01em; }
.promo-card p { font-size: .82rem; opacity: .85; margin-bottom: 1rem; line-height: 1.5; }
.promo-link {
  color: #fff; text-decoration: none; font-size: .8rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: .3rem;
  opacity: .9; transition: opacity .2s;
}
.promo-link:hover { opacity: 1; }

/* ═══ STATS BAR ═══ */
.stats-bar { padding: 3rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat-item {
  text-align: center; padding: 1.5rem;
  background: #f0f0f3; border-radius: var(--radius);
  position: relative; overflow: hidden;
}
.stat-item::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,.7) 0%, transparent 100%);
  pointer-events: none; border-radius: inherit;
}
.stat-number {
  font-size: 2rem; font-weight: 700; letter-spacing: -.02em;
  color: var(--text); position: relative; z-index: 1;
}
.stat-label {
  font-size: .72rem; font-weight: 500; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: .06em; margin-top: .25rem;
  position: relative; z-index: 1;
}

/* ═══ POPULAR PLATES ═══ */
.popular-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
.popular-card {
  background: linear-gradient(170deg, #ffffff 0%, #eef0f4 50%, #e4e6eb 100%);
  border-radius: var(--radius); padding: 1.5rem 1rem; text-align: center;
  transition: all .3s cubic-bezier(.25,.46,.45,.94);
  box-shadow:
    4px 4px 10px rgba(0,0,0,.08),
    -3px -3px 8px rgba(255,255,255,.9),
    inset 0 1px 0 rgba(255,255,255,.7);
  border-top: 1px solid rgba(255,255,255,.8);
  cursor: pointer; position: relative; overflow: hidden;
}
.popular-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,.6) 0%, transparent 100%);
  pointer-events: none; border-radius: inherit;
}
.popular-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 6px 6px 16px rgba(0,0,0,.12), -4px -4px 10px rgba(255,255,255,1);
}
.popular-card .plate-example { margin-bottom: .75rem; }
.popular-name {
  font-size: .82rem; font-weight: 500; color: var(--text-dim); margin-bottom: .25rem;
  position: relative; z-index: 2;
}
.popular-price {
  font-size: 1.1rem; font-weight: 700; color: var(--green);
  position: relative; z-index: 2;
}

/* ═══ REPLACEMENT CTA BANNER ═══ */
.replacement-banner {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  background: linear-gradient(135deg, #1d1d1f 0%, #3a3a3c 100%);
  border-radius: var(--radius); padding: 2.5rem 3rem;
  color: #fff; position: relative; overflow: hidden;
}
.replacement-banner::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,.08) 0%, transparent 100%);
  pointer-events: none;
}
.replacement-text h2 {
  font-size: 1.5rem; font-weight: 700; margin-bottom: .5rem; letter-spacing: -.01em;
}
.replacement-text p {
  font-size: .9rem; opacity: .75; line-height: 1.6; max-width: 560px;
}
.replacement-btn {
  display: inline-flex; align-items: center; white-space: nowrap;
  padding: .75rem 2rem; border-radius: var(--radius-sm);
  background: linear-gradient(180deg, #FFD54F 0%, #f0b800 100%);
  color: #1a1a1a; text-decoration: none;
  font-size: .9rem; font-weight: 700; letter-spacing: -.01em;
  transition: all .2s; flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.4);
}
.replacement-btn:hover { filter: brightness(1.08); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,.3); }

/* ═══ SERVICES SHELF ═══ */
.services-shelf {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem;
}
.service-tile {
  background: #f0f0f3; border-radius: var(--radius); padding: 1.75rem 1.25rem;
  text-align: center; transition: all .3s cubic-bezier(.25,.46,.45,.94);
  cursor: pointer; position: relative; overflow: hidden;
}
.service-tile::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,.6) 0%, transparent 100%);
  pointer-events: none; border-radius: inherit;
}
.service-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); background: #fff; }
.service-icon-wrap {
  width: 48px; height: 48px; border-radius: 14px; margin: 0 auto .75rem;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.service-icon-wrap svg { width: 24px; height: 24px; }
.service-icon-wrap.blue { background: linear-gradient(135deg, #0071e3, #5ac8fa); color: #fff; }
.service-icon-wrap.green { background: linear-gradient(135deg, #1a8d3e, #34c759); color: #fff; }
.service-icon-wrap.purple { background: linear-gradient(135deg, #8b5cf6, #bf5af2); color: #fff; }
.service-icon-wrap.orange { background: linear-gradient(135deg, #e67e22, #ff9f0a); color: #fff; }
.service-icon-wrap.red { background: linear-gradient(135deg, #e3342f, #ff6482); color: #fff; }
.service-tile h4 {
  font-size: .82rem; font-weight: 600; color: var(--text); margin-bottom: .25rem;
  position: relative; z-index: 1;
}
.service-tile p {
  font-size: .7rem; color: var(--text-dim);
  position: relative; z-index: 1;
}

/* ═══ GUIDES ═══ */
.guides-section .section-sub {
  text-align: center; color: var(--text-dim); font-size: .95rem; margin-bottom: 2.5rem;
}
.guides-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
.guide-card {
  background: #f0f0f3; border-radius: var(--radius); overflow: hidden;
  text-decoration: none; color: var(--text); transition: all .3s ease;
  display: flex; flex-direction: column;
}
.guide-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg); background: #fff;
}
.guide-img {
  aspect-ratio: 16/10; overflow: hidden;
}
.guide-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.guide-card:hover .guide-img img { transform: scale(1.05); }
.guide-body {
  padding: 1rem 1.25rem 1.25rem; flex: 1; display: flex; flex-direction: column;
  text-align: left;
}
.guide-tag {
  display: inline-block; font-size: .6rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; padding: .2rem .6rem; border-radius: 4px; margin-bottom: .6rem;
  width: fit-content;
}
.guide-tag--gold { background: #FFD600; color: #1a1a1a; }
.guide-tag--orange { background: #e67e22; color: #fff; }
.guide-tag--green { background: #1a8d3e; color: #fff; }
.guide-tag--blue { background: #2997ff; color: #fff; }
.guide-body h3 {
  font-size: .85rem; font-weight: 700; line-height: 1.3; margin-bottom: .4rem;
  letter-spacing: -.01em;
}
.guide-body p {
  font-size: .72rem; color: var(--text-dim); line-height: 1.5;
}

/* ═══ SECTIONS ═══ */
.section { padding: 5rem 0; }
.section:nth-child(even) { background: #fff; }
.section-tag {
  display: block; width: fit-content; margin: 0 auto .75rem;
  padding: .2rem .8rem; border-radius: 6px;
  font-size: .62rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase;
  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-tag.tag-green { background: #1a8d3e; color: #fff; }
.section-title {
  text-align: center; font-size: 2.2rem; font-weight: 700; letter-spacing: -.02em;
  margin-bottom: .5rem; color: var(--text);
}
.section-sub {
  text-align: center; color: var(--text-dim); font-size: .95rem; margin-bottom: 3rem;
}

/* ═══ CARD BASE (shared gloss) ═══ */
.feature-card, .plate-card, .type-card, .step-card, .payment-card, .faq-item {
  position: relative;
  overflow: hidden;
}
.feature-card::before, .type-card::before, .step-card::before, .payment-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,.6) 0%, rgba(255,255,255,0) 100%);
  pointer-events: none; border-radius: inherit;
  z-index: 1;
}

/* ═══ FEATURES / WHY CHOOSE ═══ */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feature-card {
  background: linear-gradient(170deg, #ffffff 0%, #eef0f4 50%, #e4e6eb 100%);
  border: none;
  border-radius: var(--radius); padding: 2rem;
  text-align: center; transition: all .3s cubic-bezier(.25,.46,.45,.94);
  box-shadow:
    6px 6px 14px rgba(0,0,0,.12),
    -4px -4px 10px rgba(255,255,255,.9),
    inset 0 1px 0 rgba(255,255,255,.7),
    inset 0 -1px 2px rgba(0,0,0,.04);
  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);
}
.feature-card::before {
  background: linear-gradient(170deg, rgba(255,255,255,.8) 0%, rgba(255,255,255,.1) 40%, transparent 60%) !important;
  height: 100% !important;
}
.feature-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    8px 8px 20px rgba(0,0,0,.15),
    -6px -6px 14px rgba(255,255,255,1),
    inset 0 1px 0 rgba(255,255,255,.9),
    inset 0 -1px 2px rgba(0,0,0,.05);
  background: linear-gradient(170deg, #ffffff 0%, #f2f3f7 50%, #e8eaef 100%);
}
.feature-icon {
  width: 56px; height: 56px; border-radius: 16px; margin: 0 auto 1.25rem;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(0,113,227,.1) 0%, rgba(0,113,227,.04) 100%);
  color: var(--accent);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 1px 3px rgba(0,0,0,.04);
  position: relative; z-index: 2;
}
.feature-icon svg { width: 28px; height: 28px; }
.feature-icon.accent-green {
  background: linear-gradient(135deg, rgba(26,141,62,.1) 0%, rgba(26,141,62,.04) 100%);
  color: var(--green);
}
.feature-icon.accent-purple {
  background: linear-gradient(135deg, rgba(139,92,246,.1) 0%, rgba(139,92,246,.04) 100%);
  color: var(--purple);
}
.feature-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: .5rem; color: var(--text); position: relative; z-index: 2; }
.feature-card p { font-size: .85rem; color: var(--text-dim); line-height: 1.6; position: relative; z-index: 2; }

/* ═══ PLATES GRID ═══ */
.plates-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: .75rem;
}
.plates-grid.compact { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }

.plate-card {
  background: #f0f0f3; border: none;
  border-radius: var(--radius-sm); padding: 1.1rem;
  text-align: center; cursor: pointer;
  transition: all .25s cubic-bezier(.25,.46,.45,.94);
}
.plate-card:hover {
  background: #fff;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 28px rgba(0,113,227,.1), 0 2px 8px rgba(0,0,0,.04);
}
.plate-card .plate-reg {
  font-size: 1.05rem; font-weight: 700; letter-spacing: .04em;
  color: var(--text); margin-bottom: .4rem;
  font-family: 'Charles Wright', -apple-system, 'SF Mono', 'Inter', monospace;
}
.plate-reg-plate {
  display: inline-flex; align-items: center; justify-content: center;
  width: 100%; max-width: 180px; aspect-ratio: 520 / 111;
  padding: 2px 5% 0; border-radius: 6px;
  background: linear-gradient(180deg, #FFD54F 0%, #f7c948 50%, #f0b800 100%);
  color: var(--plate-text); border: 2px solid rgba(0,0,0,.12);
  font-family: 'Charles Wright', -apple-system, 'SF Mono', 'Inter', monospace;
  font-size: 1.6rem; font-weight: 400; letter-spacing: .04em;
  margin-bottom: .5rem; line-height: 1.3;
  white-space: nowrap; overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,.08), inset 0 1px 0 rgba(255,255,255,.4);
}
.plate-card .plate-price {
  font-size: .82rem; font-weight: 600; color: var(--green);
}
.plate-card .plate-view {
  display: inline-block; margin-top: .5rem; font-size: .7rem; font-weight: 600;
  color: var(--accent); text-transform: uppercase; letter-spacing: .06em;
}

/* ═══ PLATE TYPE EXAMPLES ═══ */
.types-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.25rem; }
.type-card {
  background: #f0f0f3; border: none;
  border-radius: var(--radius); padding: 1.5rem; text-align: center;
  transition: all .3s cubic-bezier(.25,.46,.45,.94);
}
.type-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); background: #fff; }
.type-card h3 { font-size: .9rem; font-weight: 600; margin-bottom: .5rem; color: var(--text); position: relative; z-index: 2; }
.type-card p { font-size: .75rem; color: var(--text-dim); line-height: 1.6; position: relative; z-index: 2; }
.plate-example {
  display: inline-flex; align-items: center; justify-content: center;
  width: 100%; max-width: 200px; aspect-ratio: 520 / 111;
  padding: 2px 5% 0; border-radius: 7px;
  font-size: 2rem; font-weight: 400; letter-spacing: .04em;
  margin-bottom: 1rem; border: 2px solid rgba(0,0,0,.12);
  font-family: 'Charles Wright', -apple-system, 'SF Mono', 'Inter', monospace;
  position: relative; z-index: 2;
  white-space: nowrap; overflow: hidden; line-height: 1.3;
  box-shadow: 0 2px 6px rgba(0,0,0,.08), inset 0 1px 0 rgba(255,255,255,.4);
}
.plate-example.current-style, .plate-example.prefix-style,
.plate-example.suffix-style, .plate-example.ni-style {
  background: linear-gradient(180deg, #FFD54F 0%, #f7c948 50%, #f0b800 100%);
  color: var(--plate-text);
}
.plate-example.dateless-style {
  background: linear-gradient(180deg, #FFD54F 0%, #f7c948 50%, #f0b800 100%);
  color: var(--plate-text);
}

/* ═══ PLATE BUILDER ═══ */
.builder-wrap {
  display: flex; gap: 3rem; align-items: center; justify-content: center; flex-wrap: wrap;
}
.builder-controls {
  display: flex; gap: 1rem; align-items: flex-end; flex-wrap: wrap;
}
.builder-group { display: flex; flex-direction: column; }
.builder-group label {
  font-size: .7rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .08em; color: var(--text-dim); margin-bottom: .4rem;
}
.builder-group select, .builder-group input {
  padding: .55rem .75rem; background: #fff; border: 1px solid var(--border2);
  border-radius: var(--radius-sm); color: var(--text); font-family: inherit;
  font-size: .85rem; height: 2.4rem; outline: none;
  transition: all .2s;
  box-shadow: inset 0 1px 2px rgba(0,0,0,.04);
}
.builder-group select:focus, .builder-group input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,113,227,.1), inset 0 1px 2px rgba(0,0,0,.04);
}
.btn-primary {
  padding: .55rem 1.5rem; border: none; border-radius: var(--radius-sm);
  background: linear-gradient(180deg, #0077ED 0%, #0071e3 100%);
  color: #fff; font-family: inherit;
  font-size: .85rem; font-weight: 600; cursor: pointer; height: 2.4rem;
  transition: all .2s;
  box-shadow: 0 1px 3px rgba(0,0,0,.12), inset 0 1px 0 rgba(255,255,255,.2);
}
.btn-primary:hover { filter: brightness(1.08); box-shadow: 0 2px 8px rgba(0,113,227,.3); }

.builder-preview { text-align: center; }
.plate-display {
  display: inline-flex; align-items: center; justify-content: center;
  width: 340px; aspect-ratio: 520 / 111;
  padding: 0 4%; border-radius: 8px;
  font-size: 3.4rem; font-weight: 400; letter-spacing: .04em;
  border: 3px solid rgba(0,0,0,.15); font-family: 'Charles Wright', -apple-system, 'SF Mono', 'Inter', monospace;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.1), inset 0 2px 0 rgba(255,255,255,.4);
}
.plate-display.yellow {
  background: linear-gradient(180deg, #FFD54F 0%, #f7c948 50%, #f0b800 100%);
  color: var(--plate-text);
}
.plate-display.white {
  background: linear-gradient(180deg, #FFD54F 0%, #f7c948 50%, #f0b800 100%);
  color: var(--plate-text);
}

/* ═══ STEPS ═══ */
.steps-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; }
.step-card {
  background: #f0f0f3; border: none;
  border-radius: var(--radius); padding: 1.5rem 1.25rem; text-align: center;
  transition: all .3s cubic-bezier(.25,.46,.45,.94);
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  background: #fff;
}
.step-num {
  width: 42px; height: 42px; border-radius: 50%; margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(0,113,227,.12) 0%, rgba(0,113,227,.04) 100%);
  color: var(--accent); font-size: 1rem; font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6), 0 1px 3px rgba(0,0,0,.04);
  position: relative; z-index: 2;
}
.step-card h3 { font-size: .85rem; font-weight: 600; margin-bottom: .4rem; color: var(--text); position: relative; z-index: 2; }
.step-card p { font-size: .72rem; color: var(--text-dim); line-height: 1.6; position: relative; z-index: 2; }

/* ═══ PAYMENTS ═══ */
.payments-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.payment-card {
  background: #f0f0f3; border: none;
  border-radius: var(--radius); padding: 2rem; text-align: center;
  transition: all .3s cubic-bezier(.25,.46,.45,.94);
}
.payment-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); background: #fff; }
.payment-icon {
  width: 56px; height: 56px; border-radius: 16px; margin: 0 auto 1.25rem;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(0,113,227,.1) 0%, rgba(0,113,227,.04) 100%);
  color: var(--accent);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 1px 3px rgba(0,0,0,.04);
  position: relative; z-index: 2;
}
.payment-icon svg { width: 28px; height: 28px; }
.payment-icon.accent-green {
  background: linear-gradient(135deg, rgba(26,141,62,.1) 0%, rgba(26,141,62,.04) 100%);
  color: var(--green);
}
.payment-icon.accent-purple {
  background: linear-gradient(135deg, rgba(139,92,246,.1) 0%, rgba(139,92,246,.04) 100%);
  color: var(--purple);
}
.payment-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: .5rem; color: var(--text); position: relative; z-index: 2; }
.payment-card p { font-size: .85rem; color: var(--text-dim); line-height: 1.6; position: relative; z-index: 2; }

/* ═══ FAQ ═══ */
.faq-list { display: flex; flex-direction: column; gap: .5rem; }
.faq-item {
  background: #f0f0f3; border: none;
  border-radius: var(--radius-sm);
  transition: all .3s;
}
.faq-item:hover { box-shadow: var(--shadow-md); background: #fff; }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 1.1rem 1.25rem; background: none; border: none;
  color: var(--text); font-family: inherit; font-size: .9rem; font-weight: 600;
  cursor: pointer; text-align: left;
}
.faq-q svg {
  width: 20px; height: 20px; flex-shrink: 0; fill: var(--text-muted);
  transition: transform .3s;
}
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease;
  padding: 0 1.25rem;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 1.25rem 1.1rem; }
.faq-a p { font-size: .85rem; color: var(--text-dim); line-height: 1.7; }

/* ═══ 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: 600; 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(--accent); }
.footer-text { font-size: .8rem; color: var(--text-dim); margin-bottom: 1rem; line-height: 1.6; }
.newsletter-form { display: flex; gap: .5rem; margin-bottom: 1.25rem; }
.newsletter-form input {
  flex: 1; padding: .5rem .75rem; background: var(--surface2); border: 1px solid var(--border2);
  border-radius: var(--radius-xs); color: var(--text); font-family: inherit; font-size: .8rem;
  outline: none; transition: all .2s;
  box-shadow: inset 0 1px 2px rgba(0,0,0,.04);
}
.newsletter-form input:focus {
  border-color: var(--accent); background: #fff;
  box-shadow: 0 0 0 3px rgba(0,113,227,.1);
}
.newsletter-form button {
  padding: .5rem 1rem; border: none;
  background: linear-gradient(180deg, #0077ED 0%, #0071e3 100%);
  color: #fff; border-radius: var(--radius-xs); font-family: inherit;
  font-size: .8rem; font-weight: 600; cursor: pointer;
  box-shadow: 0 1px 3px rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.2);
  transition: all .2s;
}
.newsletter-form button:hover { filter: brightness(1.08); }
.social-links { display: flex; gap: .75rem; }
.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;
  box-shadow: var(--shadow-sm);
}
.social-links a:hover { border-color: var(--accent); color: var(--accent); background: #fff; box-shadow: var(--shadow-md); }
.social-links a svg { width: 14px; height: 14px; }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 2rem;
  text-align: center;
}
.footer-logo { height: 48px; margin-bottom: 1.5rem; }
.footer-bottom p { font-size: .7rem; color: var(--text-muted); margin-bottom: .5rem; line-height: 1.6; }

/* ═══ RESPONSIVE ═══ */

/* --- Tablet landscape --- */
@media (max-width: 1024px) {
  .popular-grid { grid-template-columns: repeat(2, 1fr); }
  .types-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .promo-cards { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-shelf { grid-template-columns: repeat(3, 1fr); }
  .guides-grid { grid-template-columns: repeat(2, 1fr); }
  .replacement-banner { flex-direction: column; text-align: center; padding: 2rem; }
  .replacement-text p { max-width: none; }
}

/* --- Tablet portrait / large phones --- */
@media (max-width: 768px) {
  /* Top bar */
  .hide-mobile { display: none; }
  .top-bar { font-size: .65rem; }
  .top-bar-inner { padding-top: .35rem; padding-bottom: .35rem; }
  .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; gap: 0;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: .75rem 0; border-bottom: 1px solid var(--border); font-size: .95rem; }
  .header-phone { display: none; }
  .header-cta { display: none; }
  .header-inner { padding: 0 1rem; }
  .logo-svg { height: 36px; }

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

  /* Hero */
  .hero { padding: 3.5rem 1.25rem 2.5rem; }
  .hero h1 { font-size: 2rem; line-height: 1.15; }
  .hero-sub { font-size: .9rem; margin-bottom: 2rem; }
  .hero-badge { font-size: .6rem; padding: .3rem .9rem; margin-bottom: 1rem; }
  .search-wrap { max-width: 100%; }

  /* Trust */
  .trust-row { gap: .5rem; margin-top: 1.5rem; }
  .trust-item { font-size: .65rem; padding: .3rem .7rem; }

  /* Search results */
  .search-results { padding: 0 1rem; }
  .search-results-inner { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }

  /* Grids */
  .features-grid { grid-template-columns: 1fr; gap: 1rem; }
  .feature-card { padding: 1.5rem; }
  .promo-cards { grid-template-columns: 1fr; gap: .75rem; }
  .promo-card { padding: 1.5rem; }
  .promo-card h3 { font-size: 1.2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stat-item { padding: 1.25rem .75rem; }
  .stat-number { font-size: 1.6rem; }
  .types-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .type-card { padding: 1.25rem; }
  .plate-example { max-width: 170px; font-size: 1.8rem; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .step-card { padding: 1.25rem 1rem; }
  .payments-grid { grid-template-columns: 1fr; gap: 1rem; }
  .payment-card { padding: 1.5rem; }
  .services-shelf { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .service-tile { padding: 1.25rem 1rem; }
  .guides-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .popular-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .popular-card { padding: 1.25rem .75rem; }
  .popular-price { font-size: 1rem; }
  .replacement-banner { flex-direction: column; text-align: center; padding: 1.5rem; gap: 1.25rem; }
  .replacement-text h2 { font-size: 1.25rem; }
  .replacement-text p { font-size: .82rem; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

  /* Builder */
  .builder-wrap { flex-direction: column; gap: 1.5rem; }
  .builder-controls { justify-content: center; flex-wrap: wrap; gap: .75rem; }
  .plate-display { width: 290px; font-size: 3rem; }

  /* Plates */
  .plates-grid { grid-template-columns: repeat(3, 1fr); gap: .6rem; }
  .plate-card { padding: .9rem .6rem; }
  .plate-card .plate-reg { font-size: .9rem; }
  .plate-reg-plate { max-width: 155px; font-size: 1.3rem; }
  .plate-card .plate-price { font-size: .75rem; }

  /* FAQ */
  .faq-q { padding: 1rem; font-size: .85rem; }
  .faq-a { padding: 0 1rem; }
  .faq-item.open .faq-a { padding: 0 1rem .9rem; }

  /* Footer */
  .newsletter-form { flex-direction: column; }
  .newsletter-form button { width: 100%; padding: .6rem; }
  .footer-logo { height: 36px; }
}

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

  /* Hero */
  .hero { padding: 2.5rem 1rem 1.5rem; }
  .hero h1 { font-size: 1.5rem; }
  .hero-sub { font-size: .8rem; margin-bottom: 1.5rem; }
  .hero-badge { font-size: .56rem; padding: .25rem .7rem; }

  /* Search */
  .search-bar { flex-direction: column; padding: .6rem; gap: .5rem; }
  .search-bar input { text-align: center; font-size: .9rem; padding: .5rem; }
  .search-btn { width: 100%; padding: .7rem; font-size: .9rem; }
  .search-icon { display: none; }
  .search-hints { font-size: .65rem; }
  .search-hints button { padding: .25rem .5rem; font-size: .65rem; }

  /* Trust */
  .trust-row { flex-direction: column; align-items: center; gap: .4rem; }
  .trust-item { font-size: .62rem; }

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

  /* Search results */
  .search-results-inner { grid-template-columns: repeat(2, 1fr); gap: .5rem; }

  /* Grids single column */
  .features-grid { gap: .75rem; }
  .feature-card { padding: 1.25rem; }
  .feature-card h3 { font-size: .9rem; }
  .feature-card p { font-size: .8rem; }
  .types-grid { grid-template-columns: 1fr; }
  .type-card { padding: 1.25rem; }
  .type-card h3 { font-size: .85rem; }
  .type-card p { font-size: .72rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card h3 { font-size: .8rem; }
  .step-card p { font-size: .7rem; }
  .services-shelf { grid-template-columns: 1fr; }
  .service-tile h4 { font-size: .78rem; }
  .popular-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .popular-card { padding: 1rem .5rem; }
  .popular-card .plate-example { max-width: 160px; font-size: 1.5rem; }
  .popular-name { font-size: .72rem; }
  .popular-price { font-size: .9rem; }
  .replacement-banner { padding: 1.25rem; gap: 1rem; }
  .replacement-text h2 { font-size: 1.1rem; }
  .replacement-text p { font-size: .78rem; }
  .replacement-btn { padding: .65rem 1.5rem; font-size: .82rem; width: 100%; justify-content: center; }
  .guides-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  /* Plates 2-col */
  .plates-grid { grid-template-columns: repeat(2, 1fr); gap: .5rem; }
  .plate-card { padding: .75rem .5rem; border-radius: var(--radius-xs); }
  .plate-card .plate-reg { font-size: .82rem; letter-spacing: .02em; }
  .plate-reg-plate { max-width: 140px; font-size: 1.1rem; }
  .plate-card .plate-price { font-size: .7rem; }
  .plate-card .plate-view { font-size: .6rem; }

  /* Stats */
  .stats-grid { gap: .75rem; }
  .stat-item { padding: 1rem .5rem; }
  .stat-number { font-size: 1.4rem; }
  .stat-label { font-size: .6rem; }

  /* Promo */
  .promo-card { padding: 1.25rem; }
  .promo-card h3 { font-size: 1.1rem; }
  .promo-card p { font-size: .78rem; }

  /* Plate examples */
  .plate-example { max-width: 180px; font-size: 1.6rem; }

  /* Builder */
  .builder-controls { flex-direction: column; align-items: stretch; }
  .builder-group select, .builder-group input { width: 100%; }
  .btn-primary { width: 100%; }
  .plate-display { width: 100%; max-width: 300px; font-size: 2.8rem; }

  /* Payments */
  .payment-card { padding: 1.25rem; }
  .payment-card h3 { font-size: .9rem; }
  .payment-card p { font-size: .8rem; }

  /* Guide cards */
  .guide-body { padding: .9rem 1rem 1rem; }
  .guide-body h3 { font-size: .8rem; }
  .guide-body p { font-size: .68rem; }

  /* Footer */
  .footer-col { margin-bottom: .5rem; }
  .footer-logo { height: 32px; }
  .footer-bottom p { font-size: .65rem; }
  .social-links { justify-content: center; }
}

/* ═══ BASKET BUTTON ═══ */
.basket-btn {
  position: relative; background: none; border: none; cursor: pointer;
  color: var(--text-dim); padding: 4px; transition: color .2s;
  display: flex; align-items: center; justify-content: center;
}
.basket-btn:hover { color: var(--accent); }
.basket-count {
  position: absolute; top: -4px; right: -6px;
  background: var(--accent); color: #fff; font-size: .6rem; font-weight: 700;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}

/* ═══ BASKET DRAWER ═══ */
.basket-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,.4); z-index: 199;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.basket-overlay.open { opacity: 1; pointer-events: auto; }
.basket-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 380px; max-width: 90vw;
  background: #fff; z-index: 200; transform: translateX(100%);
  transition: transform .3s cubic-bezier(.25,.46,.45,.94);
  display: flex; flex-direction: column;
  box-shadow: -4px 0 24px rgba(0,0,0,.1);
}
.basket-drawer.open { transform: translateX(0); }
.basket-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border);
}
.basket-header h3 { font-size: 1.1rem; font-weight: 700; }
.basket-close {
  background: none; border: none; font-size: 1.5rem; cursor: pointer;
  color: var(--text-dim); padding: 4px 8px; line-height: 1;
}
.basket-close:hover { color: var(--text); }
.basket-items { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
.basket-empty {
  text-align: center; color: var(--text-muted); font-size: .9rem;
  padding: 3rem 0;
}
.basket-item {
  display: flex; align-items: center; gap: 1rem;
  padding: .75rem 0; border-bottom: 1px solid var(--border);
}
.basket-item-plate {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 120px; padding: 4px 12px; border-radius: 4px;
  background: linear-gradient(180deg, #FFD54F 0%, #f0b800 100%);
  color: var(--plate-text); border: 1.5px solid rgba(0,0,0,.12);
  font-family: 'Charles Wright', monospace; font-size: .9rem;
  white-space: nowrap;
}
.basket-item-info { flex: 1; }
.basket-item-price { font-size: .9rem; font-weight: 600; color: var(--green); }
.basket-item-transfer { font-size: .65rem; color: var(--text-muted); }
.basket-item-remove {
  background: none; border: none; color: var(--text-muted); cursor: pointer;
  font-size: .75rem; padding: 4px 8px; transition: color .2s;
}
.basket-item-remove:hover { color: var(--red); }
.basket-footer {
  padding: 1.25rem 1.5rem; border-top: 1px solid var(--border);
  background: var(--surface2);
}
.basket-total {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1rem; font-size: 1rem;
}
.basket-total strong { font-size: 1.3rem; color: var(--text); }
.basket-checkout-btn {
  width: 100%; padding: .75rem; border: none; border-radius: var(--radius-sm);
  background: linear-gradient(180deg, #0077ED 0%, #0071e3 100%);
  color: #fff; font-family: inherit; font-size: .95rem; font-weight: 600;
  cursor: pointer; transition: all .2s;
  box-shadow: 0 2px 8px rgba(0,113,227,.2), inset 0 1px 0 rgba(255,255,255,.2);
}
.basket-checkout-btn:hover { filter: brightness(1.08); }
.basket-note {
  text-align: center; font-size: .65rem; color: var(--text-muted);
  margin-top: .75rem;
}

/* ═══ ADD TO BASKET ON PLATE CARDS ═══ */
.plate-card .plate-add-btn {
  display: inline-block; margin-top: .35rem; padding: .3rem .7rem;
  border: none; border-radius: 6px;
  background: var(--accent); color: #fff;
  font-family: inherit; font-size: .65rem; font-weight: 600;
  cursor: pointer; transition: all .2s; text-transform: uppercase;
  letter-spacing: .04em;
}
.plate-card .plate-add-btn:hover { filter: brightness(1.1); }
.plate-card .plate-add-btn.added {
  background: var(--green); pointer-events: none;
}

/* ═══ CHECKOUT OVERLAY ═══ */
.checkout-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,.5); z-index: 300;
  display: none; align-items: center; justify-content: center;
  padding: 2rem;
}
.checkout-overlay.open { display: flex; }
.checkout-modal {
  background: #fff; border-radius: var(--radius); padding: 2.5rem;
  max-width: 560px; width: 100%; max-height: 90vh; overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,.2);
}
.checkout-close {
  position: absolute; top: 1rem; right: 1.25rem;
  background: none; border: none; font-size: 1.5rem; cursor: pointer;
  color: var(--text-muted); line-height: 1;
}
.checkout-close:hover { color: var(--text); }
.checkout-modal h2 {
  font-size: 1.5rem; font-weight: 700; margin-bottom: .25rem;
}
.checkout-sub { color: var(--text-dim); font-size: .85rem; margin-bottom: 1.5rem; }
.checkout-items { margin-bottom: 1.5rem; }
.checkout-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: .75rem 0; border-bottom: 1px solid var(--border);
}
.checkout-item-reg {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 3px 10px; border-radius: 4px;
  background: linear-gradient(180deg, #FFD54F 0%, #f0b800 100%);
  color: var(--plate-text); border: 1.5px solid rgba(0,0,0,.12);
  font-family: 'Charles Wright', monospace; font-size: .85rem;
}
.checkout-item-price { font-weight: 600; color: var(--green); }
.checkout-totals {
  padding: 1rem 0; border-top: 2px solid var(--text);
  margin-bottom: 1.5rem;
}
.checkout-total-row {
  display: flex; justify-content: space-between; margin-bottom: .4rem;
  font-size: .9rem;
}
.checkout-total-row.grand { font-size: 1.1rem; font-weight: 700; margin-top: .5rem; padding-top: .5rem; border-top: 1px solid var(--border); }
.checkout-form h3 { font-size: 1rem; font-weight: 600; margin-bottom: .75rem; }
.checkout-fields { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1rem; }
.checkout-input {
  padding: .6rem .75rem; border: 1px solid var(--border2); border-radius: var(--radius-xs);
  font-family: inherit; font-size: .85rem; outline: none; transition: all .2s;
}
.checkout-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,113,227,.1); }
.checkout-pay-btn {
  width: 100%; padding: .8rem; border: none; border-radius: var(--radius-sm);
  background: linear-gradient(180deg, #1a8d3e 0%, #34c759 100%);
  color: #fff; font-family: inherit; font-size: 1rem; font-weight: 600;
  cursor: pointer; transition: all .2s;
  box-shadow: 0 2px 8px rgba(26,141,62,.2), inset 0 1px 0 rgba(255,255,255,.2);
}
.checkout-pay-btn:hover { filter: brightness(1.08); }
.checkout-disclaimer {
  text-align: center; font-size: .7rem; color: var(--text-muted);
  margin-top: .75rem; font-style: italic;
}

/* ═══ HERO VIDEO (index.html) ═══ */
.hero-video {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  object-fit: cover; z-index: 0;
}
.hero-overlay {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,.55); z-index: 1;
}

/* ═══ RESPONSIVE — BASKET / CHECKOUT / VIDEO ═══ */

@media (max-width: 768px) {
  /* Basket drawer — nearly full width */
  .basket-drawer { width: 100%; max-width: 100vw; }
  .basket-header { padding: 1rem 1.25rem; }
  .basket-items { padding: .75rem 1.25rem; }
  .basket-footer { padding: 1rem 1.25rem; }
  .basket-item-plate { min-width: 100px; font-size: .8rem; padding: 3px 8px; }
  .basket-item-price { font-size: .82rem; }
  .basket-item-remove { font-size: .7rem; }

  /* Checkout modal */
  .checkout-overlay { padding: 1rem; }
  .checkout-modal { padding: 1.5rem; border-radius: var(--radius-sm); }
  .checkout-modal h2 { font-size: 1.25rem; }
  .checkout-sub { font-size: .8rem; margin-bottom: 1rem; }
  .checkout-item-reg { font-size: .78rem; padding: 2px 8px; }
  .checkout-item-price { font-size: .85rem; }
  .checkout-total-row { font-size: .82rem; }
  .checkout-total-row.grand { font-size: 1rem; }
  .checkout-form h3 { font-size: .9rem; }
  .checkout-input { font-size: .85rem; padding: .55rem .65rem; }
  .checkout-pay-btn { font-size: .9rem; }

  /* Add-to-basket buttons */
  .plate-card .plate-add-btn { font-size: .6rem; padding: .25rem .5rem; }
}

@media (max-width: 480px) {
  /* Basket drawer compact */
  .basket-header { padding: .75rem 1rem; }
  .basket-header h3 { font-size: 1rem; }
  .basket-items { padding: .5rem 1rem; }
  .basket-footer { padding: .75rem 1rem; }
  .basket-item { gap: .6rem; }
  .basket-item-plate { min-width: 90px; font-size: .75rem; padding: 3px 6px; }
  .basket-item-price { font-size: .78rem; }
  .basket-total strong { font-size: 1.1rem; }
  .basket-checkout-btn { font-size: .85rem; padding: .65rem; }
  .basket-note { font-size: .6rem; }

  /* Checkout fully compact */
  .checkout-overlay { padding: .5rem; }
  .checkout-modal { padding: 1.25rem; max-height: 95vh; }
  .checkout-modal h2 { font-size: 1.1rem; }
  .checkout-close { top: .75rem; right: .75rem; }
  .checkout-item { padding: .5rem 0; }
  .checkout-item-reg { font-size: .72rem; }
  .checkout-total-row { font-size: .78rem; }
  .checkout-total-row.grand { font-size: .95rem; }
  .checkout-input { font-size: .82rem; }
  .checkout-pay-btn { font-size: .85rem; padding: .7rem; }
  .checkout-disclaimer { font-size: .62rem; }

  /* Add-to-basket even smaller */
  .plate-card .plate-add-btn { font-size: .55rem; padding: .2rem .4rem; }
}

/* --- Touch-friendly minimum tap targets --- */
@media (pointer: coarse) {
  .search-btn { min-height: 44px; }
  .btn-primary { min-height: 44px; }
  .faq-q { min-height: 48px; }
  .hamburger { min-width: 44px; min-height: 44px; }
  .main-nav a { min-height: 44px; display: flex; align-items: center; }
  .newsletter-form button { min-height: 44px; }
  .plate-card { min-height: 44px; }
  .service-tile { min-height: 44px; }
  .promo-card { min-height: 44px; }
  .basket-btn { min-width: 44px; min-height: 44px; }
  .basket-close { min-width: 44px; min-height: 44px; }
  .basket-item-remove { min-height: 44px; display: flex; align-items: center; }
  .basket-checkout-btn { min-height: 48px; }
  .checkout-close { min-width: 44px; min-height: 44px; }
  .checkout-pay-btn { min-height: 48px; }
  .checkout-input { min-height: 44px; }
  .plate-card .plate-add-btn { min-height: 36px; display: inline-flex; align-items: center; justify-content: center; }
}
