/* ==========================================================================
   FrenchPlates — Main Stylesheet
   Design system, layout, components, utilities
   ========================================================================== */

/* --------------------------------------------------------------------------
   @font-face — Lato
   -------------------------------------------------------------------------- */

@font-face {
  font-family: 'Lato';
  src: url('/assets/fonts/Lato-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url('/assets/fonts/Lato-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url('/assets/fonts/Lato-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* --------------------------------------------------------------------------
   CSS Custom Properties
   -------------------------------------------------------------------------- */

:root {
  --blue-brand:   #1d4ed8;
  --blue-dark:    #1e3a5f;
  --blue-eu:      #003189;
  --gold-eu:      #ffcc00;
  --text:         #1f2937;
  --text-muted:   #6b7280;
  --bg:           #ffffff;
  --bg-alt:       #f8fafc;
  --border:       #e5e7eb;
  --success:      #16a34a;
  --warning:      #d97706;
  --error:        #dc2626;
  --radius:       8px;
  --shadow:       0 1px 3px rgba(0, 0, 0, 0.12);
  --shadow-lg:    0 4px 16px rgba(0, 0, 0, 0.12);
  --container:    1200px;
}

/* --------------------------------------------------------------------------
   CSS Reset + Box Sizing
   -------------------------------------------------------------------------- */

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

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

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

a {
  color: var(--blue-brand);
}

ul,
ol {
  list-style: none;
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lato', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: var(--blue-dark);
}

h1 { font-size: 36px; }
h2 { font-size: 28px; }
h3 { font-size: 22px; }
h4 { font-size: 18px; }
h5 { font-size: 16px; }
h6 { font-size: 14px; }

p {
  margin-bottom: 16px;
}

p:last-child {
  margin-bottom: 0;
}

strong { font-weight: 700; }
em     { font-style: italic; }

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn-primary {
  background: var(--blue-brand);
  color: #fff;
  border-radius: var(--radius);
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s, transform 0.1s;
  line-height: 1.4;
}

.btn-primary:hover {
  background: #1741b8;
  color: #fff;
  text-decoration: none;
}

.btn-primary:active {
  transform: translateY(1px);
}

.btn-secondary {
  background: transparent;
  color: var(--blue-brand);
  border: 2px solid var(--blue-brand);
  border-radius: var(--radius);
  padding: 11px 26px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s, color 0.15s;
  line-height: 1.4;
}

.btn-secondary:hover {
  background: var(--blue-brand);
  color: #fff;
  text-decoration: none;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 14px;
}

.btn-white {
  background: #fff;
  color: var(--blue-brand);
  font-weight: 700;
  border-radius: var(--radius);
  padding: 12px 28px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s;
}

.btn-white:hover {
  background: #f0f4ff;
  color: var(--blue-brand);
  text-decoration: none;
}

.btn-danger {
  background: var(--error);
  color: #fff;
  border-radius: var(--radius);
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s;
}

.btn-danger:hover {
  background: #b91c1c;
  color: #fff;
}

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.card-lg {
  padding: 32px;
}

/* --------------------------------------------------------------------------
   Badges
   -------------------------------------------------------------------------- */

.badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
}

.badge-success {
  background: #dcfce7;
  color: var(--success);
}

.badge-info {
  background: #dbeafe;
  color: var(--blue-brand);
}

.badge-warning {
  background: #fef3c7;
  color: var(--warning);
}

.badge-error {
  background: #fee2e2;
  color: var(--error);
}

/* --------------------------------------------------------------------------
   Form Controls
   -------------------------------------------------------------------------- */

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 6px;
}

.form-label .required {
  color: var(--error);
  margin-left: 2px;
}

.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--text);
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none;
  -webkit-appearance: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--blue-brand);
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.15);
}

.form-control::placeholder {
  color: #9ca3af;
}

.form-control:disabled {
  background: var(--bg-alt);
  color: var(--text-muted);
  cursor: not-allowed;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.form-hint {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.form-error {
  color: var(--error);
  font-size: 13px;
  margin-top: 4px;
}

.form-control.is-invalid {
  border-color: var(--error);
}

.form-control.is-valid {
  border-color: var(--success);
}

/* Checkbox / Radio */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.form-check-input {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--blue-brand);
  cursor: pointer;
}

.form-check-label {
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   Alerts
   -------------------------------------------------------------------------- */

.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.5;
}

.alert-success {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.alert-error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.alert-warning {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
}

.alert-info {
  background: #dbeafe;
  color: #1e40af;
  border: 1px solid #bfdbfe;
}

/* --------------------------------------------------------------------------
   Trust Bar
   -------------------------------------------------------------------------- */

.trust-bar {
  background: var(--blue-dark);
  color: #fff;
  padding: 8px 0;
  font-size: 13px;
}

.trust-bar .container {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.trust-item svg,
.trust-item .trust-icon-inline {
  flex-shrink: 0;
  opacity: 0.9;
}

/* --------------------------------------------------------------------------
   Site Header
   -------------------------------------------------------------------------- */

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}

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

.site-logo {
  font-size: 22px;
  font-weight: 900;
  color: var(--blue-dark);
  text-decoration: none;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.site-logo:hover {
  text-decoration: none;
  color: var(--blue-dark);
}

.site-logo span {
  color: var(--blue-brand);
}

/* Main Nav */
.site-nav {
  display: flex;
  gap: 4px;
  align-items: center;
}

.nav-link {
  padding: 8px 14px;
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  transition: background 0.12s, color 0.12s;
  white-space: nowrap;
}

.nav-link:hover {
  background: var(--bg-alt);
  color: var(--blue-brand);
  text-decoration: none;
}

.nav-link.active {
  color: var(--blue-brand);
  background: #eff6ff;
}

.nav-cta {
  background: var(--blue-brand) !important;
  color: #fff !important;
  padding: 8px 18px;
  border-radius: var(--radius);
  font-weight: 700;
  transition: background 0.15s !important;
}

.nav-cta:hover {
  background: #1741b8 !important;
  color: #fff !important;
}

/* Basket */
.nav-basket {
  position: relative;
  display: flex;
  align-items: center;
  padding: 8px 10px;
  color: var(--text);
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.12s;
}

.nav-basket:hover {
  background: var(--bg-alt);
  color: var(--blue-brand);
}

.basket-count {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--blue-brand);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  border-radius: 6px;
}

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

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 12px 0 20px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav .nav-link {
  border-radius: 0;
  padding: 12px 20px;
  font-size: 15px;
  border-bottom: 1px solid var(--border);
}

.mobile-nav .nav-cta {
  margin: 12px 20px 0;
  border-radius: var(--radius) !important;
  text-align: center;
  display: block;
}

/* Header right cluster */
.header-right {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* --------------------------------------------------------------------------
   Breadcrumb
   -------------------------------------------------------------------------- */

.breadcrumb {
  padding: 12px 0;
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.12s;
}

.breadcrumb a:hover {
  color: var(--blue-brand);
  text-decoration: underline;
}

.breadcrumb-sep {
  color: #d1d5db;
  user-select: none;
}

.breadcrumb [aria-current="page"] {
  color: var(--text);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */

.hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #1d4ed8 100%);
  color: #fff;
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #fff;
}

.hero p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 560px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Plate mock in hero */
.plate-mock {
  background: #fff;
  border-radius: 6px;
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: inline-flex;
  align-items: center;
  gap: 0;
  height: 70px;
}

.plate-mock-eu {
  background: #003189;
  color: #fff;
  width: 44px;
  height: 100%;
  border-radius: 4px 0 0 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  gap: 2px;
  flex-shrink: 0;
}

.plate-mock-eu .eu-stars {
  font-size: 10px;
  letter-spacing: 1px;
}

.plate-mock-eu .eu-code {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.5px;
}

.plate-mock-reg {
  font-family: 'Official2', 'Arial Black', Arial, sans-serif;
  font-size: 38px;
  font-weight: 900;
  color: #000;
  letter-spacing: 2px;
  padding: 0 16px;
  line-height: 1;
}

.hero-plate-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */

.section {
  padding: 64px 0;
}

.section-alt {
  background: var(--bg-alt);
}

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

.section-title {
  font-size: 30px;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 0;
  max-width: 600px;
}

/* --------------------------------------------------------------------------
   Product Grid
   -------------------------------------------------------------------------- */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.product-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.15s, box-shadow 0.15s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  color: inherit;
}

.product-card-img {
  background: var(--bg-alt);
  padding: 24px;
  text-align: center;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-body {
  padding: 16px;
}

.product-card-name {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 4px;
  color: var(--text);
}

.product-card-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.product-card-price {
  color: var(--blue-brand);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
}

.product-card-price .price-from {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  margin-right: 4px;
}

/* --------------------------------------------------------------------------
   Trust Signals Block
   -------------------------------------------------------------------------- */

.trust-block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.trust-item-card {
  text-align: center;
  padding: 28px 20px;
}

.trust-icon {
  font-size: 36px;
  margin-bottom: 12px;
  line-height: 1;
}

.trust-title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 6px;
  color: var(--blue-dark);
}

.trust-desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   Steps Indicator
   -------------------------------------------------------------------------- */

.steps {
  display: flex;
  gap: 0;
  counter-reset: step;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 18px;
  left: calc(50% / 3);
  right: calc(50% / 3);
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.step-item {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue-brand);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 16px;
  box-shadow: 0 0 0 4px #fff;
}

.step-item.inactive .step-num {
  background: var(--border);
  color: var(--text-muted);
}

.step-item.done .step-num {
  background: var(--success);
}

.step-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.step-item.inactive .step-label {
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   FAQ Accordion
   -------------------------------------------------------------------------- */

.faq-list {
  list-style: none;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  padding: 18px 0;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
  gap: 16px;
  transition: color 0.12s;
}

.faq-q:hover {
  color: var(--blue-brand);
}

.faq-q::after {
  content: "+";
  font-size: 20px;
  color: var(--blue-brand);
  flex-shrink: 0;
  font-weight: 400;
  line-height: 1;
}

.faq-item.open .faq-q::after {
  content: "\2212";
}

.faq-a {
  display: none;
  padding: 0 0 16px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.faq-item.open .faq-a {
  display: block;
}

/* --------------------------------------------------------------------------
   Site Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--blue-dark);
  color: #fff;
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .site-logo {
  color: #fff;
  font-size: 20px;
}

.footer-brand .site-logo:hover {
  color: rgba(255, 255, 255, 0.85);
}

.footer-brand .site-logo span {
  color: var(--gold-eu);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  margin-top: 10px;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 8px;
  transition: color 0.12s;
}

.footer-col a:hover {
  color: #fff;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  margin: 0;
}

.footer-payment {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.footer-payment-icons {
  display: flex;
  gap: 6px;
  align-items: center;
}

.payment-icon {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.03em;
}

/* --------------------------------------------------------------------------
   Legal Disclaimer
   -------------------------------------------------------------------------- */

.legal-disclaimer {
  background: #fef3c7;
  border: 1px solid #f59e0b;
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 14px;
  color: #92400e;
  margin: 20px 0;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Utility Classes
   -------------------------------------------------------------------------- */

.text-center { text-align: center; }
.text-right  { text-align: right; }
.text-muted  { color: var(--text-muted); }
.text-brand  { color: var(--blue-brand); }
.text-dark   { color: var(--blue-dark); }
.text-success { color: var(--success); }
.text-error  { color: var(--error); }
.text-sm     { font-size: 14px; }
.text-xs     { font-size: 12px; }

.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }

.mb-0  { margin-bottom: 0; }
.mb-8  { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }

.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

.d-flex         { display: flex; }
.align-center   { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-8          { gap: 8px; }
.gap-12         { gap: 12px; }
.gap-16         { gap: 16px; }

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 24px 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   Responsive Breakpoints
   -------------------------------------------------------------------------- */

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 26px; }
  h2 { font-size: 22px; }
  h3 { font-size: 18px; }

  /* Hero */
  .hero {
    padding: 48px 0 56px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-plate-wrap {
    display: none;
  }

  /* Navigation */
  .site-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Trust bar */
  .trust-bar .container {
    gap: 16px;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
    flex-wrap: nowrap;
  }

  .trust-item:not(:first-child):not(:nth-child(2)) {
    display: none;
  }

  /* Sections */
  .section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 24px;
  }

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

  /* Steps */
  .steps {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .steps::before {
    display: none;
  }

  .step-item {
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
  }

  .step-num {
    margin: 0;
    flex-shrink: 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .hero-cta-group {
    flex-direction: column;
  }

  .hero-cta-group .btn-primary,
  .hero-cta-group .btn-white {
    text-align: center;
    width: 100%;
  }

  .trust-block {
    grid-template-columns: 1fr 1fr;
  }
}

/* --------------------------------------------------------------------------
   Print
   -------------------------------------------------------------------------- */

@media print {
  .trust-bar,
  .site-header,
  .site-nav,
  .hero,
  .site-footer {
    display: none;
  }

  body {
    font-size: 12px;
    color: #000;
  }
}
