/* ============================================================
   NUMBER1PLATES.COM — MODERN REDESIGN CONCEPT
   CSS by Blue Digital / Claude Code — April 2026
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --yellow: #FFC200;
  --yellow-hover: #e6af00;
  --yellow-light: #fff8e1;
  --dark: #1a1a1a;
  --dark-secondary: #2a2a2a;
  --dark-tertiary: #333333;
  --nav-bar: #242424;
  --white: #ffffff;
  --off-white: #f8f8f8;
  --light-gray: #f0f0f0;
  --mid-gray: #cccccc;
  --text: #333333;
  --text-light: #666666;
  --text-muted: #999999;
  --red: #d32f2f;
  --red-light: #ffebee;
  --green: #2e7d32;
  --border: #e5e5e5;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.15), 0 4px 12px rgba(0,0,0,0.08);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.20);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-pill: 50px;
  --transition: 0.25s ease;
  --transition-slow: 0.4s ease;
  --max-width: 1280px;
  --header-height: 64px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* --- Utility Classes --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  letter-spacing: -0.03em;
}

.section-subheading {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.65;
  max-width: 600px;
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  background: rgba(255, 194, 0, 0.12);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.section-label--dark {
  color: var(--dark);
  background: rgba(26, 26, 26, 0.08);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  text-decoration: none;
}

@keyframes btn-shimmer {
  0%   { transform: translateX(-120%) skewX(-20deg); }
  100% { transform: translateX(250%) skewX(-20deg); }
}
@keyframes hero-btn-breathe {
  0%, 100% { box-shadow: 0 4px 24px rgba(255,194,0,0.4); }
  50%       { box-shadow: 0 4px 40px rgba(255,194,0,0.75), 0 0 0 8px rgba(255,194,0,0.15); }
}
.btn-primary {
  background: var(--yellow);
  color: var(--dark);
  border-color: var(--yellow);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55), transparent);
  animation: btn-shimmer 3.5s ease-in-out infinite;
  animation-delay: 1.2s;
  pointer-events: none;
}
.btn-primary:hover {
  background: var(--yellow-hover);
  border-color: var(--yellow-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 194, 0, 0.35);
}
.btn-primary:hover::after { animation: none; }

.btn-primary-lg {
  font-size: 1rem;
  font-weight: 700;
  padding: 15px 32px;
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.btn-dark:hover {
  background: var(--dark-secondary);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   PREVIEW BANNER
   ============================================================ */
.preview-banner {
  background: #1d3557;
  color: #a8dadc;
  text-align: center;
  padding: 9px 16px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  z-index: 1000;
  position: relative;
}

.preview-banner a {
  color: var(--yellow);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.preview-banner a:hover {
  opacity: 0.85;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

/* Top bar */
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 16px;
}

.header-logo {
  flex-shrink: 0;
}

.header-logo img {
  height: 42px;
  width: auto;
  filter: brightness(1.05);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
}

.header-phone-icon {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.header-phone-icon svg {
  width: 15px;
  height: 15px;
  fill: var(--yellow);
}

.header-phone-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.header-phone-number {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
}

.header-phone-hours {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 400;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-cart-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  padding: 8px 12px;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  font-weight: 500;
  transition: all var(--transition);
  background: rgba(255,255,255,0.06);
}

.header-cart-btn:hover {
  background: rgba(255,255,255,0.12);
}

.header-cart-btn svg {
  width: 18px;
  height: 18px;
  stroke: var(--white);
  fill: none;
}

/* Nav bar */
.header-nav-bar {
  background: var(--nav-bar);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.header-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.primary-nav > li {
  position: relative;
}

.primary-nav > li > a,
.primary-nav > li > span {
  display: block;
  padding: 13px 14px;
  color: rgba(255,255,255,0.82);
  font-size: 0.82rem;
  font-weight: 500;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.primary-nav > li > a:hover,
.primary-nav > li > span:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
}

.primary-nav > li > a.active {
  color: var(--yellow);
}

/* Dropdown */
.has-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown-toggle .chevron {
  width: 12px;
  height: 12px;
  transition: transform var(--transition);
}

.has-dropdown:hover .chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 200;
  border: 1px solid var(--border);
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.dropdown-menu li a:hover {
  background: var(--off-white);
  color: var(--dark);
}

.dropdown-menu li a .drop-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
}

/* Secondary nav (right side of nav bar) */
.secondary-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.secondary-nav a {
  display: block;
  padding: 10px 12px;
  color: rgba(255,255,255,0.6);
  font-size: 0.78rem;
  font-weight: 500;
  transition: all var(--transition);
  border-radius: var(--radius-sm);
}

.secondary-nav a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

/* Mobile hamburger */
.hamburger-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.hamburger-toggle:hover {
  background: rgba(255,255,255,0.08);
}

.hamburger-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

#mobile-menu-toggle {
  display: none;
}

.mobile-nav {
  display: none;
  background: var(--dark-secondary);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 16px 24px 20px;
}

.mobile-nav a {
  display: block;
  padding: 13px 0;
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition);
}

.mobile-nav a:hover {
  color: var(--yellow);
}

.mobile-nav .mobile-cta {
  display: inline-flex;
  margin-top: 16px;
  background: var(--yellow);
  color: var(--dark);
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.9rem;
  border-bottom: none;
}

.mobile-nav .mobile-cta:hover {
  background: var(--yellow-hover);
  color: var(--dark);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  background: #000;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,10,10,0.82) 0%,
    rgba(10,10,10,0.65) 45%,
    rgba(10,10,10,0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}

.hero-inner {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 194, 0, 0.15);
  border: 1px solid rgba(255, 194, 0, 0.35);
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.hero-badge svg {
  width: 12px;
  height: 12px;
  fill: var(--yellow);
}

.hero-headline {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}

.hero-headline span {
  color: var(--yellow);
}

.hero-subtext {
  font-size: 1rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-ctas .btn-primary-lg {
  background: var(--yellow);
  color: var(--dark);
  border-radius: var(--radius-pill);
  padding: 16px 36px;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 4px 24px rgba(255, 194, 0, 0.4);
  transition: all var(--transition);
  animation: hero-btn-breathe 2.8s ease-in-out infinite;
}
.hero-ctas .btn-primary-lg:hover {
  animation: none;
}

.hero-ctas .btn-primary-lg:hover {
  background: var(--yellow-hover);
  box-shadow: 0 8px 32px rgba(255, 194, 0, 0.5);
  transform: translateY(-2px);
}

.hero-ctas .btn-outline-white {
  padding: 14px 28px;
  font-size: 0.9rem;
}

.hero-trust-pills {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  flex-wrap: nowrap;
}

.hero-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.hero-trust-pill svg {
  width: 11px;
  height: 11px;
  fill: var(--yellow);
  flex-shrink: 0;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 0;
}

.trust-bar-inner {
  display: flex;
  align-items: stretch;
  max-width: var(--max-width);
  margin: 0 auto;
}

.trust-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 16px;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: background var(--transition);
}

.trust-item:last-child {
  border-right: none;
}

.trust-item:hover {
  background: rgba(255,255,255,0.03);
}

.trust-item-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-item-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--yellow);
}

.trust-item-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.trust-item-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}

.trust-item-sub {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 400;
  white-space: nowrap;
}

/* ============================================================
   PLATE TYPES GRID
   ============================================================ */
.plate-types-section {
  padding: 80px 0;
  background: var(--off-white);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header .section-subheading {
  margin: 12px auto 0;
  max-width: 720px;
  font-size: 0.97rem;
}

.plate-types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.plate-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-slow);
  display: block;
  text-decoration: none;
}

.plate-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.plate-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.plate-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition-slow);
}

.plate-card:hover .plate-card-bg img {
  transform: scale(1.07);
}

.plate-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.0) 0%,
    rgba(0,0,0,0.3) 50%,
    rgba(0,0,0,0.82) 100%
  );
  z-index: 1;
  transition: background var(--transition);
}

.plate-card:hover .plate-card-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.05) 0%,
    rgba(0,0,0,0.35) 45%,
    rgba(0,0,0,0.88) 100%
  );
}


.plate-card-hex {
  background: #1a1a1a;
}
/* Hex card uses transparent WebP on dark background — same as other cards */
.plate-card-hex .plate-card-bg img {
  object-fit: cover;
  object-position: center;
}

.plate-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 18px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plate-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.plate-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--yellow);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  width: fit-content;
  transform: translateY(4px);
  opacity: 0;
  transition: all var(--transition);
  letter-spacing: 0.01em;
}

.plate-card:hover .plate-card-btn {
  transform: translateY(0);
  opacity: 1;
}

.plate-card-btn svg {
  width: 11px;
  height: 11px;
  stroke: var(--dark);
  fill: none;
  stroke-width: 2.5;
}


/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-choose-section {
  padding: 88px 0;
  background: var(--white);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.why-card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
}

.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--yellow);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card-icon {
  width: 52px;
  height: 52px;
  background: var(--yellow-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition);
}

.why-card:hover .why-card-icon {
  background: var(--yellow);
}

.why-card-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--yellow);
  transition: fill var(--transition);
}

.why-card:hover .why-card-icon svg {
  fill: var(--dark);
}

.why-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.why-card-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ============================================================
   CTA BANNER (mid-page)
   ============================================================ */
.cta-banner {
  background: var(--dark);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,194,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,194,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-banner-text {
  max-width: 600px;
}

.cta-banner-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
}

.cta-banner-headline {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin-bottom: 14px;
}

.cta-banner-headline span {
  color: var(--yellow);
}

.cta-banner-desc {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

.cta-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}

.cta-banner-actions .btn-primary {
  font-size: 1rem;
  font-weight: 800;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.cta-banner-note {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
}

/* ============================================================
   BRANDS STRIP
   ============================================================ */
.brands-section {
  padding: 64px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.brands-header {
  text-align: center;
  margin-bottom: 36px;
}

.brands-header .section-heading {
  font-size: 1.5rem;
  margin-top: 8px;
}

.brands-image-wrap {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.brands-image-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0.75;
  filter: grayscale(30%);
  transition: opacity var(--transition);
}

.brands-image-wrap img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-section {
  background: var(--yellow);
  padding: 52px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.stat-item {
  padding: 16px 24px;
  border-right: 1px solid rgba(0,0,0,0.12);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(26,26,26,0.65);
  letter-spacing: 0.01em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  padding: 60px 0 0;
  color: rgba(255,255,255,0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {}

.footer-brand-logo {
  margin-bottom: 16px;
}

.footer-brand-logo img {
  height: 38px;
  width: auto;
  filter: brightness(1.1);
}

.footer-brand-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
}

.footer-contact-item svg {
  width: 15px;
  height: 15px;
  fill: var(--yellow);
  flex-shrink: 0;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.footer-contact-item a:hover {
  color: var(--yellow);
}

.footer-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: 0.6;
  flex-shrink: 0;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-links a:hover::before {
  opacity: 1;
}

.footer-trust-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  transition: all var(--transition);
}

.footer-badge:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,194,0,0.25);
}

.footer-badge-icon {
  width: 28px;
  height: 28px;
  background: rgba(255,194,0,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-badge-icon svg {
  width: 15px;
  height: 15px;
  fill: var(--yellow);
}

/* Footer bottom */
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-copyright {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-legal-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}

.footer-legal-links a:hover {
  color: rgba(255,255,255,0.65);
}

.footer-legal-links span {
  color: rgba(255,255,255,0.15);
}

/* ============================================================
   PLATE PREVIEW SECTION
   ============================================================ */
.plate-preview-section {
  padding: 72px 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
}

.plate-preview-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.plate-preview-text {
  flex: 1;
  max-width: 480px;
}

.plate-preview-text .section-heading {
  margin-bottom: 16px;
}

.plate-preview-text .section-subheading {
  margin-bottom: 28px;
}

.plate-preview-feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.plate-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
}

.plate-feature-item .check-icon {
  width: 20px;
  height: 20px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.plate-feature-item .check-icon svg {
  width: 11px;
  height: 11px;
  stroke: var(--dark);
  fill: none;
  stroke-width: 2.5;
}

.plate-preview-visual {
  flex: 0 0 auto;
  width: 480px;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.plate-mockup {
  background: var(--yellow);
  border-radius: var(--radius-md);
  padding: 18px 28px;
  text-align: center;
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.4);
  border: 3px solid #000;
  width: 100%;
  max-width: 380px;
  position: relative;
}

.plate-mockup.front {
  background: var(--yellow);
}

.plate-mockup.rear {
  background: #ffdd00;
}

.plate-mockup-text {
  font-family: 'Charles Wright', 'Arial Black', 'Impact', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: #000;
  letter-spacing: 0.06em;
  line-height: 1;
}

.plate-mockup-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  margin-top: 4px;
}

.plate-mockup-gb-flag {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.gb-stripe {
  width: 28px;
  height: 7px;
  border-radius: 2px;
}

.gb-blue { background: #003399; }
.gb-white { background: #fff; height: 5px; }
.gb-red { background: #cc0000; }

.plate-mockup-gb-text {
  font-size: 0.5rem;
  font-weight: 700;
  color: #003399;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */

/* --- Keyframes: 8s cycle, each step active for 25% (2s) --- */
/* Step delays: 0s, -6s, -4s, -2s  */

@keyframes step-card {
  0%   { opacity: 0.38; transform: translateY(0); }
  3%   { opacity: 1;    transform: translateY(-10px); }
  22%  { opacity: 1;    transform: translateY(-10px); }
  25%  { opacity: 0.38; transform: translateY(0); }
  100% { opacity: 0.38; transform: translateY(0); }
}

@keyframes step-circle {
  0%   { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.35);
         box-shadow: 0 0 0 0 rgba(255,194,0,0); }
  3%   { background: var(--yellow); color: var(--dark);
         box-shadow: 0 0 0 6px rgba(255,194,0,0.25), 0 8px 32px rgba(255,194,0,0.5); }
  22%  { background: var(--yellow); color: var(--dark);
         box-shadow: 0 0 0 6px rgba(255,194,0,0.25), 0 8px 32px rgba(255,194,0,0.5); }
  25%  { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.35);
         box-shadow: 0 0 0 0 rgba(255,194,0,0); }
  100% { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.35);
         box-shadow: 0 0 0 0 rgba(255,194,0,0); }
}

@keyframes step-ring {
  0%   { transform: scale(1);   opacity: 0; }
  3%   { transform: scale(1);   opacity: 0.7; }
  22%  { transform: scale(2.2); opacity: 0; }
  25%  { transform: scale(1);   opacity: 0; }
  100% { transform: scale(1);   opacity: 0; }
}

@keyframes step-bar {
  0%   { width: 0%; }
  3%   { width: 0%; }
  23%  { width: 100%; }
  25%  { width: 0%; }
  100% { width: 0%; }
}

@keyframes step-title {
  0%   { color: rgba(255,255,255,0.35); }
  3%   { color: #ffffff; }
  22%  { color: #ffffff; }
  25%  { color: rgba(255,255,255,0.35); }
  100% { color: rgba(255,255,255,0.35); }
}

@keyframes step-desc {
  0%   { opacity: 0.25; transform: translateY(5px); }
  3%   { opacity: 1;    transform: translateY(0); }
  22%  { opacity: 1;    transform: translateY(0); }
  25%  { opacity: 0.25; transform: translateY(5px); }
  100% { opacity: 0.25; transform: translateY(5px); }
}

@keyframes connector-sweep {
  0%   { width: 0%; }
  25%  { width: 33.33%; }
  50%  { width: 66.66%; }
  75%  { width: 100%; }
  76%  { width: 0%; }
  100% { width: 0%; }
}

.process-section {
  padding: 88px 0;
  background: var(--dark);
}

.process-section .section-label--yellow {
  background: rgba(255,194,0,0.15);
  color: var(--yellow);
  border: 1px solid rgba(255,194,0,0.3);
}

.process-section .section-heading--white {
  color: #ffffff;
}

.process-section .section-subheading--muted {
  color: rgba(255,255,255,0.55);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}

/* Connector track — static base line */
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  z-index: 0;
}

/* Connector animated fill */
.process-steps::after {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  border-radius: 2px;
  z-index: 1;
  animation: connector-sweep 8s linear infinite;
  background: var(--yellow);
  box-shadow: 0 0 8px rgba(255,194,0,0.7);
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 20px 24px;
  animation: step-card 8s var(--step-delay, 0s) infinite;
}

/* Circle */
.process-step-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 8px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: step-circle 8s var(--step-delay, 0s) infinite;
}

.process-step-num {
  font-size: 1.4rem;
  font-weight: 900;
  position: relative;
  z-index: 2;
  letter-spacing: -0.02em;
}

/* Pulse ring */
.process-step-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--yellow);
  animation: step-ring 8s var(--step-delay, 0s) infinite;
}

/* Progress bar under circle */
.process-step-bar {
  width: 40px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  margin: 0 auto 20px;
  overflow: hidden;
}

.process-step-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--yellow);
  border-radius: 3px;
  animation: step-bar 8s var(--step-delay, 0s) infinite;
  box-shadow: 0 0 6px rgba(255,194,0,0.8);
}

.process-step-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  animation: step-title 8s var(--step-delay, 0s) infinite;
}

.process-step-desc {
  font-size: 0.82rem;
  line-height: 1.65;
  animation: step-desc 8s var(--step-delay, 0s) infinite;
}

/* ============================================================
   TRUSTPILOT SECTION
   ============================================================ */
.trustpilot-section {
  padding: 64px 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trustpilot-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trustpilot-score {
  text-align: center;
}

.tp-logo {
  font-size: 1.6rem;
  font-weight: 900;
  color: #00b67a;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.tp-stars {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-bottom: 6px;
}

.tp-star {
  width: 28px;
  height: 28px;
  background: #00b67a;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.tp-score-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
}

.tp-count-text {
  font-size: 0.8rem;
  color: var(--text-light);
}

.trustpilot-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

.trustpilot-copy {
  max-width: 400px;
}

.tp-headline {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.025em;
  margin-bottom: 6px;
}

.tp-subtext {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  z-index: 500;
  opacity: 0.9;
}

.scroll-top-btn:hover {
  background: var(--yellow-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  opacity: 1;
}

.scroll-top-btn svg {
  width: 20px;
  height: 20px;
  stroke: var(--dark);
  fill: none;
  stroke-width: 2.5;
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .plate-types-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .cta-banner-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-banner-text {
    max-width: 100%;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item:nth-child(3) {
    border-right: 1px solid rgba(0,0,0,0.12);
    border-top: 1px solid rgba(0,0,0,0.12);
  }

  .stat-item:nth-child(4) {
    border-top: 1px solid rgba(0,0,0,0.12);
  }

  .trust-bar-inner {
    flex-wrap: wrap;
  }

  .trust-item {
    flex-basis: 33.333%;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .process-steps::before,
  .process-steps::after {
    display: none;
  }

  .plate-preview-inner {
    flex-direction: column;
    gap: 40px;
  }

  .plate-preview-text {
    max-width: 100%;
  }

  .plate-preview-visual {
    width: 100%;
    max-width: 100%;
  }

  .header-phone-info {
    display: none;
  }

  .header-phone-icon {
    width: 38px;
    height: 38px;
  }

  .trustpilot-divider {
    display: none;
  }

}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --header-height: 56px;
  }

  /* Header */
  .header-top {
    padding: 10px 16px;
  }

  .header-logo img {
    height: 34px;
  }

  .header-phone {
    display: none;
  }

  /* Hide "Build Plates Now" btn from header on mobile — it's in the mobile nav */
  .header-actions .btn-primary {
    display: none;
  }

  /* Shrink basket label on mobile */
  .header-cart-btn {
    font-size: 0;
    padding: 8px;
    background: transparent;
  }
  .header-cart-btn svg {
    width: 22px;
    height: 22px;
  }

  .hamburger-toggle {
    display: flex;
  }

  .primary-nav,
  .secondary-nav {
    display: none;
  }

  .header-nav-bar {
    padding: 0 16px;
  }

  .header-nav-inner {
    padding: 0;
    justify-content: flex-end;
  }

  /* Mobile menu toggle */
  #mobile-menu-toggle:checked ~ .site-header .mobile-nav {
    display: block;
  }

  #mobile-menu-toggle:checked ~ .site-header .hamburger-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  #mobile-menu-toggle:checked ~ .site-header .hamburger-toggle span:nth-child(2) {
    opacity: 0;
    transform: translateX(-8px);
  }

  #mobile-menu-toggle:checked ~ .site-header .hamburger-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Hero */
  .hero {
    min-height: 480px;
  }

  .hero-content {
    padding: 52px 16px 60px;
  }

  .hero-headline {
    font-size: 1.8rem;
  }

  .hero-subtext {
    font-size: 0.9rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-ctas .btn-outline-white {
    display: none;
  }

  .hero-trust-pills {
    gap: 8px;
  }

  /* Trust bar */
  .trust-bar-inner {
    flex-direction: column;
  }

  .trust-item {
    flex-basis: 100%;
    justify-content: flex-start;
    padding: 12px 16px;
    border-right: none;
  }

  .trust-item-title,
  .trust-item-sub {
    white-space: normal;
  }

  /* Plate grid */
  .plate-types-section {
    padding: 52px 0;
  }

  .plate-types-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .plate-card {
    aspect-ratio: 3/2;
  }

  .plate-card-title {
    font-size: 0.88rem;
  }

  /* Why choose */
  .why-choose-section {
    padding: 56px 0;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .why-card {
    padding: 24px 20px;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    padding: 20px 12px;
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item:nth-child(3) {
    border-right: 1px solid rgba(0,0,0,0.12);
    border-top: 1px solid rgba(0,0,0,0.12);
  }

  .stat-item:nth-child(4) {
    border-top: 1px solid rgba(0,0,0,0.12);
  }

  /* CTA Banner */
  .cta-banner {
    padding: 52px 0;
  }

  .cta-banner-headline {
    font-size: 1.6rem;
  }

  /* Process */
  .process-section {
    padding: 56px 0;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* Builder iframe — reduce height on mobile */
  .builder-iframe-wrap iframe {
    min-height: 480px !important;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-legal-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  /* Trustpilot */
  .trustpilot-inner {
    flex-direction: column;
    gap: 24px;
  }

  /* Container padding */
  .container {
    padding: 0 16px;
  }

  /* Contact chat widget */
  #n1p-chat-replace {
    height: 480px;
  }

  .section-header {
    margin-bottom: 32px;
  }

  /* Plate preview */
  .plate-preview-section {
    padding: 52px 0;
  }

  .plate-gallery {
    height: 260px;
  }

  .plate-preview-inner {
    gap: 32px;
  }

  .plate-mockup-text {
    font-size: 1.8rem;
  }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .plate-types-grid {
    grid-template-columns: 1fr;
  }

  .plate-card {
    aspect-ratio: 16/9;
  }

  .hero-headline {
    font-size: 1.6rem;
  }

  .hero-badge {
    font-size: 0.65rem;
  }

  .hero-trust-pills {
    gap: 6px;
  }

  .hero-trust-pill {
    font-size: 0.68rem;
    padding: 4px 10px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-banner-actions .btn-primary {
    font-size: 0.92rem;
    padding: 14px 28px;
  }

  .footer-legal-links {
    flex-direction: column;
    align-items: center;
  }

  .footer-legal-links span {
    display: none;
  }
}

/* ============================================================
   MOBILE — SUB-PAGE PATTERNS
   Covers pages that use inline styles for content sections
   ============================================================ */
@media (max-width: 768px) {

  /* Page hero sections (sub-pages use inline padding: 80px 0 60px) */
  .page-hero,
  section[style*="padding: 80px"],
  section[style*="padding:80px"] {
    padding-top: 52px !important;
    padding-bottom: 40px !important;
  }

  /* Inline flex trust bars — reduce gap on mobile */
  div[style*="gap: 32px"],
  div[style*="gap: 28px"],
  div[style*="gap:32px"],
  div[style*="gap:28px"] {
    gap: 14px !important;
  }

  /* Inline flex rows on sub-pages — force wrap */
  div[style*="display: flex"][style*="gap"],
  div[style*="display:flex"][style*="gap"] {
    flex-wrap: wrap !important;
  }

  /* Feature / benefit grids — stack on mobile */
  div[style*="grid-template-columns: repeat(3"],
  div[style*="grid-template-columns:repeat(3"] {
    grid-template-columns: 1fr 1fr !important;
  }

  div[style*="grid-template-columns: repeat(4"],
  div[style*="grid-template-columns:repeat(4"] {
    grid-template-columns: 1fr 1fr !important;
  }

  /* Inline two-column flex rows (text + image side-by-side on sub-pages) */
  div[style*="display: flex; align-items: center; gap"],
  div[style*="display:flex;align-items:center;gap"] {
    flex-direction: column !important;
  }

  /* Inline two-column grids — stack to single column on mobile */
  div[style*="display: grid"][style*="grid-template-columns: 1fr 1fr"],
  div[style*="display:grid"][style*="grid-template-columns:1fr 1fr"],
  div[style*="display: grid"][style*="grid-template-columns: 1fr 1.5fr"],
  div[style*="display: grid"][style*="grid-template-columns: 1.5fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  /* Dropdown — prevent overflow on narrow screens */
  .dropdown-menu {
    min-width: auto;
    max-width: calc(100vw - 32px);
  }

  /* Large inline font sizes */
  h1[style*="font-size: clamp"] {
    line-height: 1.2 !important;
  }

  /* Inline max-width containers — ensure full width on mobile */
  div[style*="max-width: 600px"],
  div[style*="max-width:600px"],
  div[style*="max-width: 800px"],
  div[style*="max-width:800px"] {
    max-width: 100% !important;
  }

  /* Pricing cards / feature boxes — 1 column on small screens */
  div[style*="grid-template-columns: 1fr 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* Inline padding on content sections */
  section[style*="padding: 60px"],
  section[style*="padding:60px"] {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  /* Sub-page dark hero sections */
  section[style*="padding: 5rem"],
  section[style*="padding:5rem"],
  section[style*="padding: 4rem"],
  section[style*="padding:4rem"] {
    padding-top: 48px !important;
    padding-bottom: 36px !important;
  }

  section[style*="padding: 80px"],
  section[style*="padding:80px"] {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
}

@media (max-width: 480px) {
  div[style*="grid-template-columns: repeat(2"],
  div[style*="grid-template-columns:repeat(2"] {
    grid-template-columns: 1fr !important;
  }

  div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* Hero — reduce min-height on small phones */
  .hero {
    min-height: 380px;
  }

  /* Sub-page hero sections — tighter padding on small screens */
  section[style*="padding: 80px"],
  section[style*="padding:80px"],
  section[style*="padding: 70px"],
  section[style*="padding:70px"] {
    padding-top: 36px !important;
    padding-bottom: 32px !important;
  }

  section[style*="min-height: 420px"],
  section[style*="min-height:420px"] {
    min-height: 260px !important;
  }

  /* Process steps connector — adjust for narrow viewport */
  .process-steps::before,
  .process-steps::after {
    display: none;
  }
}

/* ============================================================
   ANIMATIONS & MICRO-INTERACTIONS
   ============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulse-yellow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 194, 0, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(255, 194, 0, 0); }
}

.hero-inner {
  animation: fadeInUp 0.7s ease both;
}

.trust-bar {
  animation: fadeIn 0.5s ease 0.3s both;
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* Print styles */
@media print {
  .site-header,
  .preview-banner,
  .scroll-top-btn {
    display: none;
  }
}

/* ── Product Gallery ───────────────────────────────────────────── */
.plate-gallery {
  position: relative;
  width: 100%;
  height: 360px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.18), 0 8px 24px rgba(0,0,0,0.10);
  background: #111;
}

.plate-gallery-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.plate-gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
}

.plate-gallery-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.plate-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.plate-gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 24px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
  color: #fff;
  transform: translateY(6px);
  opacity: 0;
  transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s;
}

.plate-gallery-slide.active .plate-gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

.plate-gallery-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 6px;
}

.plate-gallery-caption p {
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0;
  color: rgba(255,255,255,0.92);
}

/* Dots */
.plate-gallery-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}

.plate-gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s, width 0.3s;
}

.plate-gallery-dot.active {
  background: var(--yellow);
  width: 24px;
  border-radius: 4px;
}

/* Nav arrows */
.plate-gallery-nav {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  pointer-events: none;
  z-index: 10;
}

.plate-gallery-prev,
.plate-gallery-next {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  transition: background 0.2s, transform 0.2s;
  opacity: 0;
  transition: opacity 0.3s;
}

.plate-gallery:hover .plate-gallery-prev,
.plate-gallery:hover .plate-gallery-next {
  opacity: 1;
}

.plate-gallery-prev:hover,
.plate-gallery-next:hover {
  background: rgba(255,194,0,0.85);
  color: #1a1a1a;
  transform: scale(1.08);
}

.plate-gallery-prev svg,
.plate-gallery-next svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 768px) {
  .plate-gallery {
    max-width: 100%;
    aspect-ratio: 4/3;
  }
  .plate-gallery-prev,
  .plate-gallery-next {
    opacity: 0.7;
  }
}
