/* ==========================================================================
   Prava-Live - Official Driving License & Academy Theme
   Light modern aesthetic, responsive, high-contrast, zero-font render blocking
   ========================================================================== */

/* --- CSS Variables / Design Tokens --- */
:root {
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;

  /* Colors */
  --bg-page: #f8fafc;
  --bg-card: #ffffff;
  --bg-card-muted: #f1f5f9;
  --bg-card-hover: #f8fafc;
  --bg-dark: #0f172a;
  
  --brand-navy: #0f2942;
  --brand-navy-dark: #091929;
  --brand-blue: #1d63b8;
  --brand-blue-hover: #154e96;
  --brand-blue-light: #eff6ff;
  --brand-blue-border: #bfdbfe;

  --accent-emerald: #059669;
  --accent-emerald-light: #ecfdf5;
  --accent-emerald-border: #a7f3d0;
  
  --accent-amber: #d97706;
  --accent-amber-light: #fffbeb;
  --accent-amber-border: #fde68a;

  --text-main: #0f172a;
  --text-muted: #475569;
  --text-subtle: #64748b;
  --text-inverse: #ffffff;

  --border-color: #e2e8f0;
  --border-color-dark: #cbd5e1;
  --border-focus: #3b82f6;

  /* Shadows */
  --shadow-xs: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
  --shadow-sm: 0 1px 3px 0 rgba(15, 23, 42, 0.08), 0 1px 2px 0 rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.03);
  --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.04);

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Spacing */
  --container-max: 1240px;
  --header-height: 72px;
  --sticky-bar-height: 68px;
}

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

html, body {
  width: 100%;
  overflow-x: hidden;
  overflow-wrap: break-word;
  background-color: var(--bg-page);
  color: var(--text-main);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

svg {
  display: block;
}

/* SVG & Icon Utility Classes */
.w-4 { width: 16px; height: 16px; min-width: 16px; min-height: 16px; max-width: 16px; max-height: 16px; flex-shrink: 0; }
.w-5 { width: 20px; height: 20px; min-width: 20px; min-height: 20px; max-width: 20px; max-height: 20px; flex-shrink: 0; }
.w-6 { width: 24px; height: 24px; min-width: 24px; min-height: 24px; max-width: 24px; max-height: 24px; flex-shrink: 0; }
.w-8 { width: 32px; height: 32px; min-width: 32px; min-height: 32px; max-width: 32px; max-height: 32px; flex-shrink: 0; }
.w-10 { width: 40px; height: 40px; min-width: 40px; min-height: 40px; max-width: 40px; max-height: 40px; flex-shrink: 0; }
.h-4 { height: 16px; }
.h-5 { height: 20px; }
.h-6 { height: 24px; }
.h-8 { height: 32px; }
.h-10 { height: 40px; }
.text-blue { color: var(--brand-blue); }
.text-emerald { color: var(--accent-emerald); }

body {
  padding-bottom: 0;
}

a {
  color: var(--brand-blue);
  text-decoration: none;
  transition: color 0.15s ease, opacity 0.15s ease;
}

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

h1, h2, h3, h4, h5, h6 {
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.25;
}

h1 { font-size: 2.25rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.15rem; }

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* ==========================================================================
   Header & Top Announcement
   ========================================================================== */
.top-bar {
  background-color: var(--brand-navy);
  color: #e2e8f0;
  font-size: 0.8125rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.top-bar__left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.badge-official {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #22c55e;
  display: inline-block;
}

.top-bar__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Country Switcher Dropdown */
.country-switcher {
  position: relative;
}

.country-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s ease;
}

.country-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.country-flag {
  border-radius: 2px;
  box-shadow: 0 0 1px rgba(0,0,0,0.5);
}

.chevron-icon {
  width: 14px;
  height: 14px;
}

.country-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 6px;
  background-color: var(--bg-card);
  color: var(--text-main);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  min-width: 220px;
  z-index: 100;
  padding: 8px 0;
}

.country-switcher.is-open .country-dropdown {
  display: block;
}

.country-dropdown__title {
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-subtle);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border-color);
}

.country-dropdown__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  font-size: 0.875rem;
  color: var(--text-main);
  transition: background 0.15s ease;
}

.country-dropdown__item:hover, .country-dropdown__item.active {
  background-color: var(--brand-blue-light);
  color: var(--brand-blue);
  font-weight: 600;
}

.top-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #93c5fd;
  font-size: 0.8125rem;
}

.top-contact-link:hover {
  color: #ffffff;
}

.top-icon {
  width: 14px;
  height: 14px;
}

/* Main Header */
.header {
  position: sticky;
  top: 0;
  z-index: 90;
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-xs);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 20px;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-svg {
  width: 38px;
  height: 38px;
}

.logo__text {
  display: flex;
  flex-direction: column;
}

.logo__title {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--brand-navy);
  line-height: 1.1;
}

.logo__highlight {
  color: var(--brand-blue);
}

.logo__subtitle {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-subtle);
}

/* Nav */
.nav {
  display: none;
}

.nav__list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 24px;
}

.nav__link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.15s ease;
  white-space: nowrap;
}

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

/* Header Actions */
.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--brand-blue);
  color: #ffffff;
  box-shadow: 0 1px 2px rgba(29, 99, 184, 0.3);
}

.btn-primary:hover {
  background-color: var(--brand-blue-hover);
  color: #ffffff;
}

.btn-primary-auth {
  background-color: var(--brand-blue);
  color: #ffffff;
}

.btn-primary-auth:hover {
  background-color: var(--brand-blue-hover);
  color: #ffffff;
}

.btn-outline-auth {
  background-color: transparent;
  border-color: var(--border-color);
  color: var(--text-main);
}

.btn-outline-auth:hover {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
  background-color: var(--brand-blue-light);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--border-color-dark);
  color: var(--text-main);
}

.btn-outline:hover {
  background-color: var(--bg-card-muted);
}

.btn-amber {
  background-color: var(--accent-amber);
  color: #ffffff;
}

.btn-amber:hover {
  background-color: #b45309;
  color: #ffffff;
}

.btn-full {
  width: 100%;
}

.btn-icon {
  width: 16px;
  height: 16px;
}

.btn-icon-right {
  width: 16px;
  height: 16px;
}

/* Burger Button */
.burger-btn {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px;
}

.burger-line {
  width: 22px;
  height: 2px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
}

.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 320px;
  height: 100%;
  background-color: #ffffff;
  box-shadow: var(--shadow-xl);
  padding: 24px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.close-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--text-muted);
}

.close-icon {
  width: 24px;
  height: 24px;
}

.mobile-menu__country {
  background-color: var(--bg-card-muted);
  border-radius: var(--radius-md);
  padding: 12px;
  margin-bottom: 20px;
}

.mobile-country-label {
  font-size: 0.75rem;
  color: var(--text-subtle);
  margin-bottom: 4px;
}

.mobile-country-active {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
}

.mobile-nav__list {
  list-style: none;
  margin-bottom: 24px;
}

.mobile-nav__item {
  border-bottom: 1px solid var(--border-color);
}

.mobile-nav__link {
  display: block;
  padding: 12px 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
}

.mobile-menu__actions {
  margin-bottom: 24px;
}

.mb-2 {
  margin-bottom: 10px;
}

.mobile-menu__contacts {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
  font-size: 0.875rem;
}

.mobile-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--text-muted);
}

/* ==========================================================================
   Breadcrumbs
   ========================================================================== */
.breadcrumbs-container {
  padding-top: 16px;
  padding-bottom: 8px;
}

.breadcrumbs-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  list-style: none;
  font-size: 0.8125rem;
  color: var(--text-subtle);
}

.breadcrumbs-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.breadcrumbs-link {
  color: var(--text-muted);
}

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

.breadcrumbs-current {
  color: var(--text-main);
  font-weight: 600;
}

.breadcrumbs-separator {
  color: var(--text-subtle);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #0f2942 0%, #1e3a8a 100%);
  color: #ffffff;
  padding: 48px 0 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  width: fit-content;
}

.hero-title {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero-lead {
  font-size: 1.05rem;
  color: #cbd5e1;
  line-height: 1.6;
}

.hero-features-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: #f1f5f9;
}

.hero-check-icon {
  width: 18px;
  height: 18px;
  color: #38bdf8;
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.hero-btn-main {
  background-color: var(--accent-amber);
  color: #ffffff;
  font-size: 1.05rem;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
}

.hero-btn-main:hover {
  background-color: #b45309;
  color: #ffffff;
}

.hero-btn-sec {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  padding: 14px 24px;
  font-size: 1.05rem;
}

.hero-btn-sec:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

/* Hero Card / Interactive Calculator Widget */
.hero-widget {
  background-color: #ffffff;
  color: var(--text-main);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.hero-widget__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 6px;
}

.hero-widget__subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

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

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 6px;
}

.form-select, .form-input {
  width: 100%;
  padding: 10px 14px;
  font-family: inherit;
  font-size: 0.9375rem;
  border: 1px solid var(--border-color-dark);
  border-radius: var(--radius-sm);
  background-color: #ffffff;
  color: var(--text-main);
  transition: border-color 0.15s ease;
}

.form-select:focus, .form-input:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(29, 99, 184, 0.15);
}

.hero-calc-result {
  background-color: var(--bg-page);
  border: 1px dashed var(--border-color-dark);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-top: 14px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.calc-price-label {
  font-size: 0.8125rem;
  color: var(--text-subtle);
}

.calc-price-val {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent-emerald);
}

/* Facts / Stats Bar */
.facts-bar {
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-color);
  padding: 24px 0;
  box-shadow: var(--shadow-xs);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.fact-card {
  display: flex;
  flex-direction: column;
}

.fact-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-navy);
  line-height: 1.1;
}

.fact-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-blue);
  margin-top: 4px;
}

.fact-desc {
  font-size: 0.75rem;
  color: var(--text-subtle);
  margin-top: 2px;
}

/* ==========================================================================
   Section Common
   ========================================================================== */
.section {
  padding: 56px 0;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px auto;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-blue);
  background-color: var(--brand-blue-light);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}

.section-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 12px;
}

.section-lead {
  font-size: 1rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Categories Grid
   ========================================================================== */
.categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.category-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-blue);
}

.category-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.category-card__badge {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: var(--accent-amber-light);
  color: var(--accent-amber);
  border: 1px solid var(--accent-amber-border);
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.category-icon-box {
  width: 48px;
  height: 48px;
  background-color: var(--brand-blue-light);
  color: var(--brand-blue);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.category-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 8px;
}

.category-card__title a {
  color: inherit;
}

.category-card__title a:hover {
  color: var(--brand-blue);
}

.category-card__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 18px;
  flex-grow: 1;
}

.category-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
  margin-top: auto;
}

.category-price-box {
  display: flex;
  flex-direction: column;
}

.price-tag {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand-navy);
}

.price-term {
  font-size: 0.75rem;
  color: var(--text-subtle);
}

.btn-card-order {
  padding: 8px 16px;
  font-size: 0.875rem;
}

/* ==========================================================================
   Promocode Interactive Box (Required)
   ========================================================================== */
.promocode-box {
  background: linear-gradient(135deg, #1e3a8a 0%, #0f2942 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  margin: 36px 0;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.promocode-box__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.promo-tag {
  background-color: var(--accent-amber);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.promocode-box__title {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 800;
}

.promocode-box__desc {
  color: #cbd5e1;
  font-size: 0.9375rem;
  max-width: 580px;
}

.promo-copy-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 440px;
}

.promo-input-group {
  display: flex;
  width: 100%;
  background-color: #ffffff;
  border-radius: var(--radius-sm);
  padding: 4px;
  box-shadow: var(--shadow-md);
}

.promo-code-display {
  flex-grow: 1;
  border: none;
  background: transparent;
  font-family: var(--font-mono);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand-navy);
  text-align: center;
  letter-spacing: 0.1em;
  padding: 8px 12px;
  outline: none;
  user-select: all;
}

.btn-copy-promo {
  background-color: var(--brand-blue);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.15s ease, transform 0.1s ease;
}

.btn-copy-promo:hover {
  background-color: var(--brand-blue-hover);
}

.btn-copy-promo:active {
  transform: scale(0.97);
}

.btn-copy-promo.copied {
  background-color: var(--accent-emerald);
}

.promo-note {
  font-size: 0.75rem;
  color: #94a3b8;
}

/* ==========================================================================
   Verification / Gosavtoinspektsiya Steps
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.step-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--brand-blue-light);
  color: var(--brand-blue);
  font-weight: 800;
  border-radius: 50%;
  font-size: 1rem;
  margin-bottom: 14px;
}

.step-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 8px;
}

.step-card__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Countries Grid (Required for multi-country architecture)
   ========================================================================== */
.countries-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.country-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.country-card:hover {
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.country-card__info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.country-card__flag {
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.country-card__name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-navy);
}

.country-card__currency {
  font-size: 0.8125rem;
  color: var(--text-subtle);
}

.country-card__arrow {
  color: var(--brand-blue);
}

/* ==========================================================================
   Articles & Content Layout
   ========================================================================== */
.articles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.article-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.article-card__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: var(--bg-card-muted);
  overflow: hidden;
}

.article-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.article-card:hover .article-card__img {
  transform: scale(1.04);
}

.article-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: var(--brand-navy);
  color: #ffffff;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.article-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.article-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  color: var(--text-subtle);
  margin-bottom: 8px;
}

.article-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand-navy);
  line-height: 1.35;
  margin-bottom: 8px;
}

.article-card__title a {
  color: inherit;
}

.article-card__title a:hover {
  color: var(--brand-blue);
}

.article-card__excerpt {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}

.article-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-color);
  padding-top: 14px;
  margin-top: auto;
}

.article-card__price {
  font-weight: 700;
  color: var(--brand-blue);
  font-size: 0.9375rem;
}

.article-card__link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand-navy);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.article-card__link:hover {
  color: var(--brand-blue);
}

/* ==========================================================================
   Article Detail Page Layout
   ========================================================================== */
.article-page-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-top: 24px;
  padding-bottom: 56px;
}

.article-main {
  min-width: 0;
}

.article-header {
  margin-bottom: 28px;
}

.article-category-badge {
  display: inline-block;
  background-color: var(--brand-blue-light);
  color: var(--brand-blue);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.article-h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-navy);
  line-height: 1.25;
  margin-bottom: 14px;
}

.article-byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-size: 0.8125rem;
  color: var(--text-subtle);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 16px;
}

.author-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--text-main);
}

.article-featured-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

.article-featured-image img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
}

/* Table of Contents (TOC) */
.toc-box {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--brand-blue);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 28px;
}

.toc-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 12px;
}

.toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.toc-item--2 {
  font-size: 0.9375rem;
  font-weight: 600;
}

.toc-item--3 {
  font-size: 0.875rem;
  padding-left: 16px;
  color: var(--text-muted);
}

.toc-link {
  color: var(--text-muted);
}

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

/* Content Body Styles */
.content-body {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #1e293b;
}

.content-p {
  margin-bottom: 1.25rem;
}

.content-heading-2 {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-color);
}

.content-heading-3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.content-list, .content-ordered-list {
  margin-bottom: 1.5rem;
  padding-left: 24px;
}

.content-list li, .content-ordered-list li {
  margin-bottom: 0.5rem;
}

/* Tables in Content */
.table-wrapper {
  overflow-x: hidden;
  margin: 24px 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  background-color: #ffffff;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9375rem;
}

.data-table th {
  background-color: var(--bg-card-muted);
  color: var(--brand-navy);
  font-weight: 700;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-color);
  white-space: nowrap;
}

.data-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-main);
}

.data-table tr:last-child td {
  border-bottom: none;
}

.data-table tr:hover td {
  background-color: var(--brand-blue-light);
}

/* Alert Boxes */
.alert-box {
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin: 20px 0;
  font-size: 0.9375rem;
}

.alert-success {
  background-color: var(--accent-emerald-light);
  border: 1px solid var(--accent-emerald-border);
  color: #065f46;
}

/* Sidebar Widget */
.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-widget {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.sidebar-widget__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 14px;
  border-bottom: 2px solid var(--brand-blue);
  padding-bottom: 8px;
}

.sidebar-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.sidebar-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-main);
  line-height: 1.4;
}

.sidebar-list svg,
.sidebar-list li svg {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  min-height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  flex-shrink: 0;
  display: inline-block;
}

.sidebar-list__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-main);
  padding: 6px 0;
  border-bottom: 1px dashed var(--border-color);
}

.sidebar-list__link:hover {
  color: var(--brand-blue);
}

/* Author Box */
.author-box {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: center;
  margin: 36px 0;
}

.author-box__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--brand-blue-light);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-box__name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 4px;
}

.author-box__role {
  font-size: 0.8125rem;
  color: var(--text-subtle);
  margin-bottom: 6px;
}

.author-box__bio {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FAQ Accordion Component
   ========================================================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.faq-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.15s ease;
}

.faq-item.is-open {
  border-color: var(--brand-blue);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 18px 20px;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-navy);
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--brand-blue);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 20px 18px 20px;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.faq-item.is-open .faq-answer {
  display: block;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background-color: var(--bg-dark);
  color: #94a3b8;
  padding: 56px 0 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo--footer .logo__title {
  color: #ffffff;
}

.footer__desc {
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 16px 0;
  color: #94a3b8;
}

.footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge-pill {
  background-color: rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.footer__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-size: 0.875rem;
  color: #94a3b8;
  transition: color 0.15s ease;
}

.footer__link:hover {
  color: #ffffff;
}

.footer__contacts-block {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: #cbd5e1;
}

.footer-contact-row a {
  color: #cbd5e1;
}

.footer-contact-row a:hover {
  color: #ffffff;
}

.footer-icon {
  width: 16px;
  height: 16px;
  color: #38bdf8;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 0.75rem;
  color: #64748b;
}

.footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__legal-links a {
  color: #94a3b8;
}

.footer__legal-links a:hover {
  color: #ffffff;
}

/* ==========================================================================
   Sticky Bottom Bonus Bar (Required by brief)
   ========================================================================== */
.sticky-bonus-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: var(--sticky-bar-height);
  background-color: var(--brand-navy);
  border-top: 2px solid var(--accent-amber);
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
  z-index: 100;
  display: flex;
  align-items: center;
}

.sticky-bonus-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sticky-bonus-bar__content {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.bonus-badge-live {
  display: none;
  align-items: center;
  gap: 6px;
  background-color: rgba(217, 119, 6, 0.2);
  border: 1px solid var(--accent-amber);
  color: #fbbf24;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  flex-shrink: 0;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background-color: #fbbf24;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.7; }
}

.sticky-bonus-bar__text {
  color: #ffffff;
  font-size: 0.8125rem;
  line-height: 1.25;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sticky-bonus-bar__text strong {
  color: #f8fafc;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sticky-bonus-bar__sub {
  color: #94a3b8;
  font-size: 0.75rem;
}

.promo-pill-small {
  color: #fbbf24;
  font-weight: 700;
  font-family: var(--font-mono);
}

.btn-bonus-claim {
  background: linear-gradient(135deg, var(--accent-amber) 0%, #b45309 100%);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(217, 119, 6, 0.4);
  flex-shrink: 0;
}

.btn-bonus-claim:hover {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff;
}

/* Toast Notification */
.toast-notification {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background-color: var(--brand-navy);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--accent-emerald);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 1000;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  width: 18px;
  height: 18px;
  color: #34d399;
}

/* ==========================================================================
   Responsive Media Queries (320px, 375px, 425px, 768px, 1024px, 1440px)
   ========================================================================== */

/* ≤ 425px Mobile */
@media (max-width: 425px) {
  .hero-title {
    font-size: 1.55rem;
  }
  .facts-grid {
    grid-template-columns: 1fr;
  }
  .btn {
    padding: 8px 14px;
    font-size: 0.875rem;
  }
  .promo-code-display {
    font-size: 1rem;
  }
}

/* ≤ 768px Tablet & Mobile Adjustments */
@media (max-width: 768px) {
  .top-bar__left {
    display: none;
  }
  .top-bar__inner {
    justify-content: flex-end;
  }
  .header__actions .btn-outline-auth,
  .header__actions .btn-primary-auth {
    display: none;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer__bottom {
    flex-direction: column;
  }
  .bonus-badge-live {
    display: none;
  }
}

/* ≥ 768px Tablet */
@media (min-width: 768px) {
  .bonus-badge-live {
    display: inline-flex;
  }
  .hero-title {
    font-size: 2.25rem;
  }
  .facts-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .countries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .promo-copy-wrapper {
    flex-direction: row;
  }
  .promocode-box__inner {
    padding: 0 32px;
  }
}

/* ≥ 1024px Desktop */
@media (min-width: 1024px) {
  .nav {
    display: block;
  }
  .burger-btn {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1.25fr 0.75fr;
    gap: 48px;
  }
  .hero-title {
    font-size: 2.65rem;
  }
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .countries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .articles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .article-page-layout {
    grid-template-columns: 1fr 340px;
    gap: 40px;
  }
}

/* ==========================================================================
   Lead Form Validation & States
   ========================================================================== */
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.field label, .field__l {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-main);
  text-transform: none;
}

.field input, .field select, .field textarea {
  width: 100%;
}

.field__err {
  font-size: 0.8125rem;
  color: #dc2626;
  font-weight: 500;
}

.field.is-invalid input,
.field.is-invalid select {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15) !important;
}

.form__ok {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background-color: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
  font-size: 0.9375rem;
  font-weight: 600;
}

.form__ok svg {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  color: #059669;
  flex-shrink: 0;
}

.form__fail {
  margin-top: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background-color: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.form__fail[hidden],
.form__ok[hidden] {
  display: none !important;
}

/* ==========================================================================
   Modal Dialog
   ========================================================================== */
body.is-locked {
  overflow: hidden;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal[hidden] {
  display: none !important;
}

.modal__bg {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 0;
  cursor: pointer;
}

.modal__box {
  position: relative;
  width: min(520px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-2xl);
  animation: modalPop 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalPop {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal__x {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal__x svg {
  width: 16px !important;
  height: 16px !important;
}

.modal__x:hover {
  color: var(--brand-navy);
  border-color: var(--brand-blue);
  transform: rotate(90deg);
}

.modal__t {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 8px;
  padding-right: 32px;
}

.modal__s {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

/* ≥ 1440px Large Desktop */
@media (min-width: 1440px) {
  :root {
    --container-max: 1320px;
  }
}
