/* ========== ФУРА 78 — Global Styles (Light Theme) ========== */

:root {
  --bg: #ffffff;
  --bg2: #f0f5fb;
  --bg3: #e2ecf8;
  --accent: #C10818;
  --accent2: #9e0614;
  --accent-light: #d4091e;
  --text: #021A40;
  --text-muted: #4e6b8a;
  --border: #cdd8ea;
  --white: #021A40;   /* "strong" heading color on light bg */
  --success: #1a7a3c;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(2,26,64,0.09);
  --nav-height: 72px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent2); }
img { max-width: 100%; height: auto; display: block; }

/* ========== LAYOUT ========== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 640px;
}
.section-header { margin-bottom: 48px; }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }

/* ========== NAVIGATION ========== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 12px rgba(2,26,64,0.07);
}

.nav-inner { display: flex; align-items: center; height: 100%; gap: 32px; }

.nav-logo { display: flex; flex-direction: column; line-height: 1; margin-right: 16px; }
.nav-logo-main {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
}
.nav-logo-main span { color: var(--accent); }
.nav-logo-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; flex: 1; }
.nav-links > li { position: relative; }

.nav-links > li > a {
  display: block;
  padding: 8px 14px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--accent);
  background: rgba(193,8,24,0.06);
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(2,26,64,0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: all 0.2s;
  list-style: none;
  padding: 14px 8px 8px; /* 14px сверху = визуальный отступ без зазора */
}
.nav-links > li:hover .nav-dropdown {
  opacity: 1; pointer-events: all; transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 10px 14px;
  color: var(--text);
  font-size: 0.88rem;
  border-radius: 6px;
  transition: all 0.15s;
}
.nav-dropdown a:hover { background: var(--bg2); color: var(--accent); }

.nav-cta { margin-left: auto; display: flex; align-items: center; gap: 16px; }
.nav-phone { color: var(--text); font-weight: 700; font-size: 1rem; white-space: nowrap; }
.nav-phone:hover { color: var(--accent); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; margin-left: auto;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px; transition: 0.3s;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius);
  font-size: 0.95rem; font-weight: 600; cursor: pointer;
  transition: all 0.2s; border: none; text-decoration: none; white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover {
  background: var(--accent2); color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(193,8,24,0.3);
}
.btn-outline {
  background: transparent; color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-outline:hover {
  background: rgba(193,8,24,0.07); color: var(--accent);
  transform: translateY(-1px);
}
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: var(--nav-height);
  background: var(--bg);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 70% 60% at 60% 40%, rgba(193,8,24,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

.hero-label {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(193,8,24,0.08);
  border: 1px solid rgba(193,8,24,0.2);
  border-radius: 20px;
  color: var(--accent);
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 3rem; font-weight: 800;
  color: var(--text); line-height: 1.15; margin-bottom: 20px;
}
.hero-desc { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 36px; max-width: 480px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 32px; margin-top: 48px; }
.hero-stat-num { font-size: 2rem; font-weight: 800; color: var(--accent); }
.hero-stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }

/* ========== IMAGE PLACEHOLDER ========== */
.img-block { border-radius: var(--radius-lg); overflow: hidden; }

.img-placeholder {
  position: relative;
  background: var(--bg2);
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  min-height: 280px; overflow: hidden;
}
.img-placeholder img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; top: 0; left: 0;
}
.img-placeholder-inner { position: relative; z-index: 1; text-align: center; padding: 24px; }
.img-placeholder-icon { width: 48px; height: 48px; color: var(--text-muted); margin: 0 auto 12px; opacity: 0.4; }
.img-placeholder-inner p { color: var(--text-muted); font-size: 0.8rem; }

.img-caption {
  margin-top: 12px; padding: 12px 16px;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); font-size: 0.8rem;
  color: var(--text-muted); line-height: 1.5;
}
.img-caption strong { color: var(--accent); font-size: 0.75rem; letter-spacing: 0.5px; text-transform: uppercase; }

/* ========== CARDS ========== */
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.2s;
  box-shadow: 0 1px 4px rgba(2,26,64,0.05);
}
.card:hover {
  border-color: rgba(193,8,24,0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(2,26,64,0.1);
}
.card-icon {
  width: 48px; height: 48px;
  background: rgba(193,8,24,0.08);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; font-size: 1.5rem;
}
.card-title { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.card-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }

/* ========== SERVICE CARDS ========== */
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden; transition: all 0.2s;
  display: flex; flex-direction: column;
  box-shadow: 0 1px 4px rgba(2,26,64,0.05);
}
.service-card:hover {
  border-color: rgba(193,8,24,0.3);
  box-shadow: 0 8px 40px rgba(2,26,64,0.1);
  transform: translateY(-3px);
}
.service-card-body { padding: 28px; flex: 1; }
.service-card-footer { padding: 0 28px 28px; }

.service-card-tag {
  display: inline-block; padding: 4px 10px;
  background: rgba(193,8,24,0.08); color: var(--accent);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  border-radius: 4px; margin-bottom: 14px;
}
.service-card-title { font-size: 1.25rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.service-card-desc { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* ========== BENEFITS ========== */
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }
.benefit-item { display: flex; gap: 16px; align-items: flex-start; }
.benefit-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: rgba(193,8,24,0.08);
  border: 1px solid rgba(193,8,24,0.15);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.benefit-title { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.benefit-text { font-size: 0.85rem; color: var(--text-muted); line-height: 1.55; }

/* ========== FAQ ========== */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(2,26,64,0.04);
}
.faq-question {
  width: 100%; background: none; border: none;
  color: var(--text); font-size: 1rem; font-weight: 600;
  padding: 20px 24px; text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: 0.2s;
}
.faq-question:hover { color: var(--accent); }
.faq-arrow { font-size: 0.8rem; color: var(--accent); transition: transform 0.3s; min-width: 16px; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner { padding: 0 24px 20px; color: var(--text-muted); line-height: 1.7; }

/* ========== BRANDS ========== */
.brands-grid { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.brand-badge {
  padding: 8px 16px;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text-muted);
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.5px; transition: 0.2s;
}
.brand-badge:hover { border-color: rgba(193,8,24,0.3); color: var(--text); }

/* ========== PROCESS ========== */
.process-steps { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; }
.process-step {
  text-align: center; padding: 32px 24px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); position: relative;
  box-shadow: 0 1px 4px rgba(2,26,64,0.05);
}
.process-num {
  font-size: 3rem; font-weight: 900;
  color: rgba(193,8,24,0.1);
  position: absolute; top: 16px; right: 20px; line-height: 1;
}
.process-icon { font-size: 2rem; margin-bottom: 12px; }
.process-title { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.process-text { font-size: 0.85rem; color: var(--text-muted); }

/* ========== CTA BLOCK ========== */
.cta-block {
  background: linear-gradient(135deg, var(--bg3) 0%, rgba(193,8,24,0.05) 100%);
  border: 1px solid rgba(193,8,24,0.15);
  border-radius: var(--radius-lg); padding: 56px; text-align: center;
}
.cta-title { font-size: 2.2rem; font-weight: 800; color: var(--text); margin-bottom: 16px; }
.cta-text {
  color: var(--text-muted); font-size: 1.05rem; margin-bottom: 32px;
  max-width: 560px; margin-left: auto; margin-right: auto;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ========== FORMS ========== */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.form-label .required { color: var(--accent); }

.form-control {
  width: 100%; padding: 12px 16px;
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--radius); color: var(--text);
  font-size: 0.95rem; transition: border-color 0.2s; outline: none; font-family: inherit;
}
.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(193,8,24,0.1);
}
.form-control::placeholder { color: var(--text-muted); opacity: 0.7; }

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234e6b8a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; cursor: pointer;
}
textarea.form-control { min-height: 120px; resize: vertical; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 16px; line-height: 1.5; }
.form-note a { color: var(--accent); }

/* ========== FILE UPLOAD ========== */
.file-upload-zone {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--bg2);
  user-select: none;
}
.file-upload-zone:hover,
.file-upload-zone.drag-over {
  border-color: var(--accent);
  background: rgba(193,8,24,0.04);
}
.file-upload-zone.drag-over {
  box-shadow: 0 0 0 3px rgba(193,8,24,0.12);
}
.file-upload-icon { font-size: 2rem; margin-bottom: 10px; }
.file-upload-text { color: var(--text-muted); font-size: 0.9rem; }
.file-upload-text span { color: var(--accent); font-weight: 600; }
.file-upload-zone input[type="file"] { display: none; }
.file-upload-formats { font-size: 0.75rem; color: var(--text-muted); margin-top: 8px; opacity: 0.8; }

.file-selected {
  display: none; margin-top: 10px; padding: 10px 14px;
  background: rgba(26,122,60,0.08); border: 1px solid rgba(26,122,60,0.25);
  border-radius: var(--radius); font-size: 0.85rem; color: var(--success);
  align-items: center; gap: 8px;
}
.file-selected.visible { display: flex; }

/* ========== TABLE ========== */
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.data-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.data-table th {
  background: var(--bg2); padding: 14px 20px; text-align: left;
  font-size: 0.8rem; font-weight: 700; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.5px;
  border-bottom: 1px solid var(--border); white-space: nowrap;
}
.data-table td {
  padding: 14px 20px; border-bottom: 1px solid var(--border);
  color: var(--text); vertical-align: middle;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--bg2); }
.data-table .td-code { font-family: monospace; font-size: 0.85rem; color: var(--accent); white-space: nowrap; }

/* ========== PRICE TABLE ========== */
.price-table { display: flex; flex-direction: column; gap: 8px; }
.price-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px; background: var(--bg);
  border: 1px solid var(--border); border-radius: var(--radius);
  gap: 16px; transition: 0.2s;
  box-shadow: 0 1px 3px rgba(2,26,64,0.04);
}
.price-row:hover { border-color: rgba(193,8,24,0.2); box-shadow: 0 3px 12px rgba(2,26,64,0.08); }
.price-row-left { flex: 1; }
.price-name { font-weight: 600; color: var(--text); margin-bottom: 3px; }
.price-desc { font-size: 0.83rem; color: var(--text-muted); }
.price-val { font-size: 1.1rem; font-weight: 700; color: var(--accent); white-space: nowrap; }

/* ========== ALERTS ========== */
.alert {
  padding: 16px 20px; border-radius: var(--radius);
  font-size: 0.9rem; line-height: 1.6;
  display: flex; gap: 12px; align-items: flex-start;
}
.alert-info { background: rgba(2,26,64,0.05); border: 1px solid rgba(2,26,64,0.15); color: var(--text-muted); }
.alert-warning { background: rgba(217,119,6,0.07); border: 1px solid rgba(217,119,6,0.2); color: #92600a; }
.alert-success { background: rgba(26,122,60,0.07); border: 1px solid rgba(26,122,60,0.2); color: #1a7a3c; }

/* ========== DIVIDER ========== */
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ========== BREADCRUMB ========== */
.breadcrumb {
  display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-muted);
  padding-top: calc(var(--nav-height) + 24px); padding-bottom: 24px;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { color: var(--border); }
.breadcrumb-current { color: var(--text); }

/* ========== PAGE HERO ========== */
.page-hero {
  padding-top: calc(var(--nav-height) + 64px);
  padding-bottom: 64px;
  background: linear-gradient(to bottom, var(--bg) 0%, var(--bg2) 100%);
  border-bottom: 1px solid var(--border);
}
.page-hero-tag {
  display: inline-block; padding: 5px 12px;
  background: rgba(193,8,24,0.08); border: 1px solid rgba(193,8,24,0.2);
  border-radius: 20px; color: var(--accent);
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 16px;
}
.page-hero-title { font-size: 2.6rem; font-weight: 800; color: var(--text); line-height: 1.2; margin-bottom: 16px; }
.page-hero-desc { font-size: 1.05rem; color: var(--text-muted); max-width: 600px; margin-bottom: 28px; }

/* ========== FOOTER ========== */
.footer {
  background: var(--text);   /* dark navy footer */
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 64px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }

.footer-brand-name { font-size: 1.5rem; font-weight: 800; color: #fff; margin-bottom: 4px; }
.footer-brand-name span { color: var(--accent); }
.footer-brand-sub { font-size: 0.72rem; color: rgba(255,255,255,0.45); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; }
.footer-desc { color: rgba(255,255,255,0.55); font-size: 0.875rem; line-height: 1.65; margin-bottom: 20px; max-width: 280px; }

.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; font-size: 0.875rem; }
.footer-contact-icon { color: var(--accent); min-width: 16px; margin-top: 2px; }
.footer-contact-text { color: rgba(255,255,255,0.55); }
.footer-contact-text a { color: rgba(255,255,255,0.85); }
.footer-contact-text a:hover { color: var(--accent); }

.footer-col-title { font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,0.85); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.875rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-copy { color: rgba(255,255,255,0.35); font-size: 0.8rem; }
.footer-legal-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal-links a { color: rgba(255,255,255,0.35); font-size: 0.78rem; transition: color 0.2s; }
.footer-legal-links a:hover { color: var(--accent); }

/* ========== BADGES ========== */
.badge { display: inline-flex; align-items: center; padding: 3px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; }
.badge-orange { background: rgba(193,8,24,0.1); color: var(--accent); }
.badge-green { background: rgba(26,122,60,0.1); color: #1a7a3c; }
.badge-blue { background: rgba(2,26,64,0.08); color: var(--text); }

/* ========== HIGHLIGHT LIST ========== */
.hl-list { list-style: none; }
.hl-list li {
  padding: 10px 0; border-bottom: 1px solid var(--border);
  color: var(--text); display: flex; align-items: flex-start; gap: 10px; font-size: 0.93rem;
}
.hl-list li:last-child { border-bottom: none; }
.hl-list li::before { content: '✓'; color: var(--accent); font-weight: 700; min-width: 16px; margin-top: 1px; }

/* ========== SUCCESS MESSAGE ========== */
.success-message {
  display: none; padding: 20px 24px;
  background: rgba(26,122,60,0.08); border: 1px solid rgba(26,122,60,0.25);
  border-radius: var(--radius); color: var(--success);
  text-align: center; font-size: 1rem;
}
.success-message.visible { display: block; }

/* ========== LAYOUT UTILITY CLASSES ========== */
/* Two-column page layout (sidebar + main) */
.page-two-col {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.page-two-col-wide {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}
/* Two-column symmetric (fleet, features) */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
/* Two-column feature comparison */
.two-col-64 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-title { font-size: 2.4rem; }
}
@media (max-width: 768px) {
  /* Prevent horizontal scroll globally */
  html, body { overflow-x: hidden; max-width: 100%; }

  /* Utility grid classes collapse to 1 column */
  .page-two-col,
  .page-two-col-wide,
  .two-col,
  .two-col-64 {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  /* Hero */
  .hero { min-height: auto; padding-top: calc(var(--nav-height) + 32px); padding-bottom: 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-title { font-size: 2rem; }
  .hero-stats { gap: 20px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Buttons */
  .btn-lg { padding: 14px 20px; font-size: 0.95rem; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { width: 100%; justify-content: center; }

  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: var(--nav-height); left: 0; right: 0;
    background: var(--bg); border-bottom: 1px solid var(--border);
    padding: 16px; gap: 4px; box-shadow: 0 8px 24px rgba(2,26,64,0.1);
    z-index: 999;
  }
  .nav-links.open .nav-dropdown {
    position: static; opacity: 1; pointer-events: all; transform: none;
    box-shadow: none; border: none; background: var(--bg2); padding: 4px 0 4px 16px;
  }

  /* Sections */
  .section { padding: 48px 0; }
  .section-sm { padding: 36px 0; }
  .section-title { font-size: 1.6rem; }
  .section-subtitle { margin-bottom: 28px; }

  /* Cards */
  .cards-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 16px; }

  /* CTA */
  .cta-block { padding: 32px 20px; }
  .cta-title { font-size: 1.6rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .footer-legal-links { justify-content: center; }

  /* Forms */
  .form-grid { grid-template-columns: 1fr; }

  /* Page hero */
  .page-hero { padding-top: calc(var(--nav-height) + 32px); padding-bottom: 40px; }
  .page-hero-title { font-size: 1.8rem; }
  .breadcrumb { padding-top: calc(var(--nav-height) + 12px); }

  /* Tables */
  .data-table th, .data-table td { padding: 10px 12px; font-size: 0.82rem; }

  /* Price rows */
  .price-row { flex-direction: column; gap: 8px; }
  .price-val { align-self: flex-start; }
}
