:root {
  --chrome-light: #e8eaef;
  --chrome-mid: #c5c9d3;
  --chrome-dark: #8b90a0;
  --card-bg: linear-gradient(180deg, #1e2848 0%, #141c34 40%, #0e1525 100%);
  --blue: #2068c8;
  --blue-light: #4a90e8;
  --blue-glow: rgba(32,104,200,0.35);
  --gold: #d4a940;
  --text-card: #8a92b0;
  --text-dark: #2a2f40;
  --footer-bg: #161c32;
}
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family:'Barlow',sans-serif;
  color:#333;
  overflow-x:hidden;
  background:var(--chrome-mid);
}

/* ═══ PAGE BACKGROUND ═══ */
.page-bg {
  min-height:100vh;
  background:#caced8;
  background-image:
    radial-gradient(ellipse 120% 50% at 50% 0%,rgba(255,255,255,0.5) 0%,transparent 70%),
    radial-gradient(ellipse 80% 40% at 25% 15%,rgba(230,233,240,0.6) 0%,transparent 60%);
}
.container { max-width:1200px; margin:0 auto; padding:0 32px; }

/* ═══ NAV ═══ */
.nav {
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 48px; max-width:1200px; margin:0 auto;
}
.nav-logo img { height:44px; width:auto; }
.nav-menu { display:flex; align-items:center; gap:0; }
.nav-menu a {
  font-size:14px; font-weight:600; color:#3a3f50;
  text-decoration:none; padding:8px 18px;
  border-right:1px solid rgba(0,0,0,0.1);
  transition:color .2s;
}
.nav-menu a:last-of-type { border-right:none; }
.nav-menu a:hover { color:var(--blue); }
a.nav-cta {
  margin-left:16px; padding:11px 24px;
  background:
    repeating-linear-gradient(45deg,transparent 0px,transparent 2px,rgba(255,255,255,0.03) 2px,rgba(255,255,255,0.03) 4px),
    linear-gradient(180deg,#1e2848,#0e1525);
  color:#e8ecf8; font-weight:700; font-size:13px;
  text-transform:uppercase; letter-spacing:1px;
  border-radius:6px; text-decoration:none;
  border-right:none;
  box-shadow:
    0 0 0 3px #b8bcc8,
    0 0 0 4px #8b90a0,
    0 4px 12px rgba(0,0,0,0.2);
  transition:all .25s;
}
a.nav-cta:hover {
  transform:translateY(-2px);
  color:#fff;
  box-shadow:
    0 0 0 3px #ccd0da,
    0 0 0 4px #9a9eb0,
    0 6px 20px rgba(0,0,0,0.25);
}

/* ═══ HERO ═══ */
.hero {
  max-width:1200px; margin:0 auto;
  display:flex; align-items:center; padding:20px 48px 40px;
  min-height:380px;
}
.hero-content { flex:1; padding-right:20px; }
.hero h1 {
  font-family:'Barlow Condensed',sans-serif;
  font-weight:800; font-size:50px; line-height:1.05;
  color:#1a1f30; margin-bottom:16px;
}
.hero-sub { font-size:16px; color:#4a5068; line-height:1.6; max-width:440px; margin-bottom:24px; }
.btn-group { display:flex; gap:12px; flex-wrap:wrap; }
.btn-primary {
  padding:13px 28px;
  background:
    repeating-linear-gradient(45deg,transparent 0px,transparent 2px,rgba(255,255,255,0.03) 2px,rgba(255,255,255,0.03) 4px),
    linear-gradient(180deg,#1e2848,#0e1525);
  color:#e8ecf8; font-weight:700; font-size:13px;
  text-transform:uppercase; letter-spacing:1px;
  border:none; border-radius:6px; cursor:pointer;
  box-shadow:
    0 0 0 3px #b8bcc8,
    0 0 0 4px #8b90a0,
    0 4px 12px rgba(0,0,0,0.2);
  transition:all .25s; font-family:'Barlow',sans-serif; text-decoration:none;
  position:relative;
}
.btn-primary:hover {
  transform:translateY(-2px);
  color:#fff;
  box-shadow:
    0 0 0 3px #ccd0da,
    0 0 0 4px #9a9eb0,
    0 6px 20px rgba(0,0,0,0.25);
}
.btn-secondary {
  padding:13px 28px;
  background:linear-gradient(180deg,rgba(255,255,255,0.5),rgba(210,215,225,0.4));
  color:#3a3f50; font-weight:700; font-size:13px;
  text-transform:uppercase; letter-spacing:1px;
  border:1px solid rgba(0,0,0,0.1); border-radius:6px; cursor:pointer;
  transition:all .25s; font-family:'Barlow',sans-serif; text-decoration:none;
}
.btn-secondary:hover { transform:translateY(-2px); background:rgba(255,255,255,0.6); }
.hero-visual {
  flex:0 0 500px; height:320px;
  display:flex; align-items:center; justify-content:flex-start;
  margin-left:-60px;
}
.hero-car {
  max-width:115%; max-height:100%; object-fit:contain;
  filter:drop-shadow(0 16px 32px rgba(0,0,0,0.15));
}

/* ═══ SECTION HEADING ═══ */
.section-heading {
  text-align:center; font-family:'Barlow Condensed',sans-serif;
  font-weight:700; font-size:30px; color:var(--text-dark);
  margin:48px auto 28px; max-width:1200px; padding:0 48px;
}

/* ═══ CHROME CARD (shield style) ═══ */
.grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; max-width:1200px; margin:0 auto; padding:0 48px; }
.chrome-card {
  padding:5px; border-radius:14px;
  background:linear-gradient(160deg,#e8ecf4,#d0d4de 15%,#f0f2f8 25%,#b8bcc8 40%,#d8dce6 55%,#a0a4b0 70%,#c8ccd4 85%,#e0e4ec);
  box-shadow:0 4px 16px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.6);
  transition:transform .3s, box-shadow .3s;
}
.chrome-card:hover {
  transform:translateY(-4px);
  box-shadow:0 8px 28px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.6);
}
.card-inner {
  border-radius:10px; overflow:hidden; padding:28px 22px; text-align:center;
  min-height:200px; display:flex; flex-direction:column; align-items:center; justify-content:center;
  background:
    repeating-linear-gradient(45deg,transparent 0px,transparent 2px,rgba(255,255,255,0.02) 2px,rgba(255,255,255,0.02) 4px),
    radial-gradient(ellipse at 50% 20%,rgba(40,80,160,0.12) 0%,transparent 70%),
    linear-gradient(180deg,#1e2848,#141c34 40%,#0e1525);
  position:relative;
}
.card-inner::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(circle 1px at 3px 3px,rgba(255,255,255,0.04) 1px,transparent 1px),
    radial-gradient(circle 1px at 7px 7px,rgba(255,255,255,0.03) 1px,transparent 1px);
  background-size:8px 8px; pointer-events:none;
}
.card-inner > * { position:relative; z-index:1; }
.card-icon {
  width:48px; height:48px; margin:0 auto 12px;
  background:linear-gradient(135deg,rgba(40,80,160,0.3),rgba(20,50,100,0.5));
  border:1px solid rgba(100,140,220,0.25); border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  padding:10px;
}
.card-icon svg { width:100%; height:100%; }
.chrome-card h3 {
  font-family:'Barlow Condensed',sans-serif; font-weight:700;
  font-size:19px; color:#e0e6f0; margin-bottom:8px;
}
.chrome-card .card-desc { font-size:13px; color:var(--text-card); line-height:1.6; margin-bottom:12px; }
.card-stars { color:var(--gold); font-size:11px; letter-spacing:4px; }

/* ═══ PROMO SECTION ═══ */
.promo-section { padding:0 48px; margin-top:40px; }
.promo-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.promo-card {
  background:linear-gradient(135deg,rgba(45,107,207,0.12),rgba(45,107,207,0.03));
  border:1px solid rgba(45,107,207,0.2); border-radius:12px;
  padding:28px 20px; text-align:center;
}
.promo-badge {
  font-size:10px; font-weight:800; color:#e2001a;
  text-transform:uppercase; letter-spacing:2px; margin-bottom:10px;
}
.promo-card h4 { font-size:15px; font-weight:700; color:var(--text-dark); margin-bottom:6px; }
.promo-price {
  font-family:'Barlow Condensed',sans-serif;
  font-size:28px; font-weight:800; color:var(--blue); margin:8px 0;
}
.promo-card p { font-size:12px; color:#5a6078; }

/* ═══ SERVICES GRID (chrome style) ═══ */
.grid-4 { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; max-width:1200px; margin:0 auto; }
.chrome-sm .card-inner { min-height:160px; padding:22px 18px; }
.chrome-sm h3 { font-size:16px; }
.chrome-sm .card-desc { font-size:12px; margin-bottom:8px; }
.svc-link-chrome {
  font-size:11px; color:var(--blue-light); font-weight:600;
  text-transform:uppercase; letter-spacing:0.5px; margin-top:6px; cursor:pointer;
}

/* ═══ REVIEWS ═══ */
.review-avatar {
  width:64px; height:64px; border-radius:50%;
  background:linear-gradient(135deg,#2a3558,#1a2540);
  border:3px solid rgba(160,180,220,0.2);
  margin:0 auto 10px; display:flex; align-items:center; justify-content:center;
  font-size:11px; color:var(--text-card);
}
.review-name {
  font-family:'Barlow Condensed',sans-serif;
  font-weight:700; font-size:17px; color:#e0e6f0; margin-bottom:4px;
  text-align:center;
}
.review-stars { color:var(--gold); font-size:13px; letter-spacing:2px; margin-bottom:10px; text-align:center; }
.review-text { font-size:13px; color:var(--text-card); line-height:1.6; font-style:italic; text-align:center; }

/* ═══ CENTERED BUTTON ═══ */
.center-btn { text-align:center; margin:20px 0 8px; }
.chrome-btn {
  display:inline-block; padding:12px 36px;
  background:linear-gradient(180deg,rgba(230,234,242,0.7),rgba(200,206,218,0.6));
  border:1px solid rgba(0,0,0,0.1); border-radius:6px;
  font-weight:700; font-size:13px; color:#3a3f50; text-decoration:none;
  box-shadow:0 2px 6px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.5);
  transition:all .2s; cursor:pointer;
}
.chrome-btn:hover { transform:translateY(-1px); box-shadow:0 4px 12px rgba(0,0,0,0.1); }

/* ═══ CTA BANNER ═══ */
.cta-banner {
  max-width:1200px; margin:48px auto 0; padding:32px 40px;
  background:linear-gradient(135deg,rgba(32,104,200,0.15),rgba(32,104,200,0.05));
  border:1px solid rgba(32,104,200,0.2); border-radius:12px;
  display:flex; align-items:center; justify-content:space-between;
}
.cta-banner h3 {
  font-family:'Barlow Condensed',sans-serif;
  font-size:24px; font-weight:700; color:var(--text-dark);
}
.cta-banner p { font-size:14px; color:#5a6078; margin-top:4px; }

/* ═══ FOOTER ═══ */
.footer {
  background:transparent;
  margin-top:56px; padding:60px 48px 32px;
  color:#3a3f50;
}
.footer-grid {
  max-width:1200px; margin:0 auto;
  display:grid; grid-template-columns:1.5fr 1fr 1fr 1.5fr; gap:32px;
}
.footer-logo { height:50px; width:auto; margin-bottom:16px; }
.footer h4 {
  font-family:'Barlow Condensed',sans-serif;
  font-size:13px; font-weight:700; color:#2a2f40;
  text-transform:uppercase; letter-spacing:1px; margin-bottom:14px;
}
.footer p, .footer a { font-size:13px; color:#5a6078; line-height:2; text-decoration:none; }
.footer a:hover { color:var(--blue); }
.footer .map-box {
  width:100%; height:140px;
  background:linear-gradient(135deg,rgba(255,255,255,0.35),rgba(210,215,225,0.3));
  border:1px solid rgba(0,0,0,0.08); border-radius:8px;
  display:flex; align-items:center; justify-content:center;
  font-size:12px; color:#5a6078;
}
.footer-bottom {
  max-width:1200px; margin:28px auto 0; padding-top:16px;
  border-top:1px solid rgba(0,0,0,0.08);
  text-align:center; font-size:11px; color:#8090a0;
}

/* ═══ DIVIDER ═══ */
.divider {
  width:60%; max-width:700px; height:1px; margin:40px auto;
  background:rgba(0,0,0,0.06);
}

/* ═══ RESPONSIVE ═══ */
@media(max-width:1024px) {
  .hero { flex-direction:column; padding:20px 24px 30px; }
  .hero-content { padding-right:0; margin-bottom:20px; }
  .hero-visual { flex:none; width:100%; }
  .grid-3, .promo-grid { grid-template-columns:1fr; max-width:400px; margin:0 auto; }
  .grid-4 { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .cta-banner { flex-direction:column; gap:16px; text-align:center; margin:48px 24px 0; }
  .nav { padding:12px 24px; flex-wrap:wrap; gap:8px; }
  .nav-menu { flex-wrap:wrap; }
  .grid-3, .promo-section { padding:0 24px; }
}
@media(max-width:600px) {
  .hero h1 { font-size:36px; }
  .grid-4 { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; }
  .section-heading { font-size:24px; }
}

/* ═══ ANIMATIONS ═══ */
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
.hero-content { animation:fadeUp .7s ease-out; }
.hero-visual { animation:fadeUp .7s ease-out .1s both; }

/* ═══ SUB-PAGE HERO ═══ */
.hero-sub-page {
  max-width:1200px; margin:0 auto; padding:48px 48px 32px;
  text-align:center;
}
.hero-sub-page h1 {
  font-family:'Barlow Condensed',sans-serif;
  font-weight:800; font-size:42px; color:#1a1f30; line-height:1.1;
  margin-bottom:12px;
}
.hero-eyebrow {
  font-size:11px; font-weight:700; color:var(--blue);
  text-transform:uppercase; letter-spacing:2px; margin-bottom:12px;
}
.hero-desc { font-size:15px; color:#5a6078; max-width:560px; margin:0 auto; line-height:1.6; }

/* ═══ CONTENT WRAP ═══ */
.content-wrap { max-width:1200px; margin:0 auto; padding:0 48px 48px; }

/* ═══ GLASS CARD ═══ */
.glass-card {
  background:linear-gradient(180deg,rgba(255,255,255,0.5),rgba(220,225,235,0.35));
  border:1px solid rgba(255,255,255,0.4);
  border-radius:16px; padding:40px; line-height:1.7;
  box-shadow:0 4px 20px rgba(0,0,0,0.06);
  backdrop-filter:blur(10px);
}
.glass-card h2 {
  font-family:'Barlow Condensed',sans-serif;
  font-weight:700; font-size:26px; color:var(--text-dark); margin:28px 0 12px;
}
.glass-card h2:first-child { margin-top:0; }
.glass-card p { color:#3a3f50; margin-bottom:12px; }
.glass-card ul { padding-left:20px; margin-bottom:16px; }
.glass-card li { color:#3a3f50; margin-bottom:6px; }

/* ═══ PRICING TABLE ═══ */
.pricing-table {
  width:100%; border-collapse:separate; border-spacing:0;
  background:linear-gradient(180deg,rgba(255,255,255,0.4),rgba(220,225,235,0.3));
  border-radius:12px; overflow:hidden;
  box-shadow:0 4px 16px rgba(0,0,0,0.06);
}
.pricing-table thead th {
  font-family:'Barlow Condensed',sans-serif;
  font-weight:700; font-size:13px; color:#e0e6f0;
  text-transform:uppercase; letter-spacing:1px;
  padding:16px 20px; text-align:left;
  background:linear-gradient(180deg,#1e2848,#0e1525);
}
.pricing-table tbody td {
  padding:14px 20px; font-size:14px; color:#3a3f50;
  border-bottom:1px solid rgba(0,0,0,0.05);
}
.pricing-table tbody tr:last-child td { border-bottom:none; }
.pricing-table tbody tr:hover { background:rgba(32,104,200,0.04); }
.pricing-table .price-cell {
  font-family:'Barlow Condensed',sans-serif;
  font-weight:700; font-size:18px; color:var(--blue);
}
.pricing-note {
  font-size:12px; color:#5a6078; margin-top:16px; font-style:italic;
}

/* ═══ SERVICES LISTING ═══ */
.services-listing { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }

/* ═══ SERVICE DETAIL ═══ */
.service-detail { max-width:800px; margin:0 auto; }
.service-hero-img {
  width:100%; height:280px; object-fit:cover;
  border-radius:12px; margin-bottom:28px;
  box-shadow:0 4px 20px rgba(0,0,0,0.1);
}
.service-meta {
  display:flex; gap:12px; margin-bottom:20px; flex-wrap:wrap;
}
.service-badge {
  font-size:11px; font-weight:700; color:var(--blue);
  text-transform:uppercase; letter-spacing:1px;
  padding:4px 12px; border:1px solid rgba(32,104,200,0.2);
  border-radius:20px; background:rgba(32,104,200,0.06);
}
.service-cta {
  margin:40px 0; padding:32px;
  background:linear-gradient(135deg,rgba(32,104,200,0.12),rgba(32,104,200,0.04));
  border:1px solid rgba(32,104,200,0.15); border-radius:12px;
}
.service-cta-inner {
  display:flex; align-items:center; justify-content:space-between; gap:20px;
}
.service-cta h3 {
  font-family:'Barlow Condensed',sans-serif;
  font-size:22px; font-weight:700; color:var(--text-dark);
}
.service-cta p { font-size:14px; color:#5a6078; margin-top:4px; }

/* ═══ CONTACT GRID ═══ */
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:32px; }
.contact-info-card {
  background:linear-gradient(180deg,rgba(255,255,255,0.5),rgba(220,225,235,0.35));
  border:1px solid rgba(255,255,255,0.4); border-radius:16px; padding:32px;
  box-shadow:0 4px 20px rgba(0,0,0,0.06);
}
.contact-info-card h3 {
  font-family:'Barlow Condensed',sans-serif;
  font-weight:700; font-size:20px; color:var(--text-dark); margin-bottom:16px;
}
.contact-row {
  display:flex; gap:12px; align-items:flex-start;
  padding:12px 0; border-bottom:1px solid rgba(0,0,0,0.05);
}
.contact-row:last-child { border-bottom:none; }
.contact-label { font-size:12px; font-weight:700; color:#5a6078; text-transform:uppercase; letter-spacing:0.5px; min-width:80px; }
.contact-value { font-size:14px; color:#3a3f50; }
.contact-value a { color:var(--blue); text-decoration:none; }
.contact-value a:hover { text-decoration:underline; }
.contact-map {
  border-radius:12px; overflow:hidden;
  border:1px solid rgba(0,0,0,0.08); height:100%; min-height:300px;
}
.contact-map iframe { width:100%; height:100%; border:none; display:block; }

/* ═══ REVIEWS PAGE ═══ */
.reviews-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }

/* ═══ ABOUT PAGE ═══ */
.about-values { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin:32px 0; }

/* ═══ BLOG GRID ═══ */
.posts-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.post-card {
  padding:4px; border-radius:14px;
  background:linear-gradient(160deg,#e8ecf4,#d0d4de 15%,#f0f2f8 25%,#b8bcc8 40%,#d8dce6 55%,#a0a4b0 70%,#c8ccd4 85%,#e0e4ec);
  box-shadow:0 4px 16px rgba(0,0,0,0.12);
  transition:transform .3s,box-shadow .3s;
}
.post-card:hover { transform:translateY(-3px); box-shadow:0 8px 24px rgba(0,0,0,0.18); }
.post-inner {
  border-radius:10px; overflow:hidden;
  background:
    repeating-linear-gradient(45deg,transparent 0px,transparent 2px,rgba(255,255,255,0.02) 2px,rgba(255,255,255,0.02) 4px),
    linear-gradient(180deg,#1e2848,#141c34 40%,#0e1525);
}
.post-copy { padding:22px 18px; }
.badge {
  display:inline-block; font-size:10px; font-weight:700;
  color:var(--blue-light); text-transform:uppercase; letter-spacing:1px;
  margin-bottom:8px;
}
.post-copy h4 { font-family:'Barlow Condensed',sans-serif; font-size:17px; font-weight:700; color:#e0e6f0; margin-bottom:8px; }
.post-copy p { font-size:12px; color:var(--text-card); line-height:1.5; }
.post-footer { margin-top:12px; }
.read-link { font-size:12px; font-weight:600; color:var(--blue-light); text-decoration:none; }
.read-link:hover { text-decoration:underline; }

/* ═══ ARTICLE ═══ */
.article-header { max-width:800px; margin:0 auto; padding:40px 48px 20px; text-align:center; }
.breadcrumb { font-size:12px; color:#5a6078; margin-bottom:16px; }
.breadcrumb a { color:var(--blue); text-decoration:none; }
.article-header h1 {
  font-family:'Barlow Condensed',sans-serif;
  font-weight:800; font-size:36px; color:#1a1f30; margin:12px 0;
}
.article-meta { font-size:13px; color:#5a6078; margin-bottom:16px; }
.article-perex { font-size:15px; color:#4a5068; line-height:1.6; font-style:italic; }
.article-body {
  max-width:800px; margin:0 auto; padding:0 48px 40px;
  font-size:15px; color:#3a3f50; line-height:1.8;
}
.article-body h2 {
  font-family:'Barlow Condensed',sans-serif;
  font-weight:700; font-size:24px; color:var(--text-dark); margin:32px 0 12px;
}
.article-body h3 {
  font-family:'Barlow Condensed',sans-serif;
  font-weight:700; font-size:20px; color:var(--text-dark); margin:24px 0 10px;
}
.article-body p { margin-bottom:16px; }
.article-body img { max-width:100%; border-radius:8px; margin:16px 0; }
.related-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.related-card {
  background:linear-gradient(180deg,rgba(255,255,255,0.4),rgba(220,225,235,0.3));
  border:1px solid rgba(255,255,255,0.3); border-radius:12px; padding:24px;
}
.related-card h4 {
  font-family:'Barlow Condensed',sans-serif;
  font-size:16px; font-weight:700; color:var(--text-dark); margin:8px 0;
}
.related-card p { font-size:12px; color:#5a6078; margin-bottom:8px; }

/* ═══ FAQ ═══ */
.faq-list { max-width:800px; margin:0 auto; }
.faq-item {
  border-bottom:1px solid rgba(0,0,0,0.06); padding:0;
}
.faq-q {
  display:flex; justify-content:space-between; align-items:center;
  padding:18px 0; cursor:pointer; font-weight:600;
  font-size:15px; color:var(--text-dark);
}
.faq-q::after { content:'+'; font-size:20px; color:var(--blue); transition:transform .2s; }
.faq-item.open .faq-q::after { transform:rotate(45deg); }
.faq-a {
  max-height:0; overflow:hidden; transition:max-height .3s ease;
  font-size:14px; color:#5a6078; line-height:1.7;
}
.faq-item.open .faq-a { max-height:500px; padding-bottom:18px; }

/* ═══ RESPONSIVE ADDITIONS ═══ */
@media(max-width:1024px) {
  .hero-sub-page { padding:32px 24px 20px; }
  .content-wrap { padding:0 24px 32px; }
  .contact-grid { grid-template-columns:1fr; }
  .services-listing { grid-template-columns:repeat(2,1fr); }
  .reviews-grid { grid-template-columns:1fr; max-width:500px; margin:0 auto; }
  .about-values { grid-template-columns:1fr; max-width:400px; margin:0 auto; }
  .posts-grid { grid-template-columns:1fr; max-width:400px; margin:0 auto; }
  .related-grid { grid-template-columns:1fr; max-width:400px; margin:0 auto; padding:0 24px !important; }
  .article-header { padding:32px 24px 16px; }
  .article-body { padding:0 24px 32px; }
  .service-cta-inner { flex-direction:column; text-align:center; }
}
@media(max-width:600px) {
  .hero-sub-page h1 { font-size:32px; }
  .services-listing { grid-template-columns:1fr; }
}

/* ═══ MOBILE HAMBURGER NAV ═══ */
.nav {
  position: relative;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,0.45), rgba(210,215,225,0.35));
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #2a2f40;
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1024px) {
  .nav {
    padding: 12px 24px;
    align-items: center;
  }

  .nav-logo {
    flex: 1 1 auto;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
    z-index: 1001;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 24px;
    right: 24px;
    z-index: 1000;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(245,247,251,0.98), rgba(224,229,238,0.98));
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 16px 36px rgba(0,0,0,0.14);
    backdrop-filter: blur(10px);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    display: block;
    padding: 14px 10px;
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    text-align: left;
    font-size: 17px;
  }

  .nav-menu a:last-of-type {
    border-bottom: none;
  }

  .nav-menu .nav-cta {
    margin-left: 0;
    margin-top: 12px;
    text-align: center;
    padding: 14px 18px;
  }
}

@media (max-width: 600px) {
  .nav {
    padding: 12px 16px;
  }

  .nav-menu {
    left: 16px;
    right: 16px;
  }

  .nav-logo img {
    height: 38px;
  }
}

@media (max-width: 600px) {
  .hero {
    overflow: hidden;
    padding: 16px 16px 24px;
  }

  .hero-visual {
    flex: none;
    width: 100%;
    height: auto;
    margin-left: 0 !important;
    justify-content: center;
  }

  .hero-car {
    display: block;
    width: 100%;
    max-width: 100% !important;
    height: auto;
    max-height: none;
    margin: 0 auto;
  }
}

.glass-card ul{
  margin:12px 0 0 0;
  padding-left:18px;
}
.glass-card li{
  margin-bottom:8px;
  color:#4a5068;
  line-height:1.7;
}

.vehix-form-card .wpforms-container{
  margin:0;
}

.vehix-form-card .wpforms-form{
  font-family:'Barlow',sans-serif;
}

.vehix-form-card .wpforms-field-label{
  font-size:16px !important;
  font-weight:700 !important;
  color:#2a2f40 !important;
  margin-bottom:8px !important;
}

.vehix-form-card input[type="text"],
.vehix-form-card input[type="email"],
.vehix-form-card input[type="tel"],
.vehix-form-card textarea,
.vehix-form-card select{
  width:100% !important;
  min-height:48px;
  padding:12px 14px !important;
  border:1px solid rgba(0,0,0,0.10) !important;
  border-radius:10px !important;
  background:linear-gradient(180deg,rgba(255,255,255,0.55),rgba(220,225,235,0.35)) !important;
  color:#2a2f40 !important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.5);
}

.vehix-form-card textarea{
  min-height:140px;
}

.vehix-form-card input:focus,
.vehix-form-card textarea:focus,
.vehix-form-card select:focus{
  outline:none !important;
  border-color:#2068c8 !important;
  box-shadow:0 0 0 3px rgba(32,104,200,0.12) !important;
}

.vehix-form-card .wpforms-submit{
  padding:13px 28px !important;
  background:
    repeating-linear-gradient(45deg,transparent 0px,transparent 2px,rgba(255,255,255,0.03) 2px,rgba(255,255,255,0.03) 4px),
    linear-gradient(180deg,#1e2848,#0e1525) !important;
  color:#e8ecf8 !important;
  font-weight:700 !important;
  font-size:13px !important;
  text-transform:uppercase;
  letter-spacing:1px;
  border:none !important;
  border-radius:6px !important;
  box-shadow:
    0 0 0 3px #b8bcc8,
    0 0 0 4px #8b90a0,
    0 4px 12px rgba(0,0,0,0.2) !important;
}

.vehix-form-card .wpforms-field{
  padding-bottom:18px !important;
}

.vehix-form-card .wpforms-confirmation-container-full{
  background:linear-gradient(135deg,rgba(32,104,200,0.08),rgba(32,104,200,0.03)) !important;
  border:1px solid rgba(32,104,200,0.15) !important;
  border-radius:12px !important;
  color:#3a3f50 !important;
}

.vehix-vin-field input{
  text-transform: uppercase;
}

/* ═══ GDPR / LEGAL CONTENT ═══ */
.legal-content{
  padding:32px;
}

.legal-content h2{
  font-family:'Barlow Condensed',sans-serif;
  font-size:28px;
  font-weight:700;
  color:#2a2f40;
  margin:28px 0 12px;
}

.legal-content h3{
  font-family:'Barlow Condensed',sans-serif;
  font-size:22px;
  font-weight:700;
  color:#2a2f40;
  margin:24px 0 10px;
}

.legal-content p{
  font-size:14px;
  color:#4a5068;
  line-height:1.8;
  margin-bottom:12px;
}

.legal-content ul{
  margin:12px 0 16px;
  padding-left:20px;
}

.legal-content li{
  margin-bottom:8px;
  color:#4a5068;
  line-height:1.7;
}

.legal-content strong{
  color:#2a2f40;
}

@media (max-width: 600px){
  .legal-content{
    padding:22px 18px;
  }

  .legal-content h2{
    font-size:24px;
  }

  .legal-content h3{
    font-size:20px;
  }
}

.chrome-card-link{
  display:block;
  text-decoration:none;
  color:inherit;
}

.chrome-card-link:hover{
  text-decoration:none;
  color:inherit;
}

.chrome-card-link .card-inner{
  height:100%;
}

.chrome-card-link:focus-visible{
  outline:2px solid #2068c8;
  outline-offset:4px;
  border-radius:14px;
}

/* ═══ CENÍK TABULKY ═══ */
.pricing-table{
  width:100%;
  table-layout:fixed;
}

.pricing-table th:last-child,
.pricing-table td.price-cell{
  width:180px;
  text-align:right;
  white-space:nowrap;
}

.pricing-table td:first-child,
.pricing-table th:first-child{
  width:auto;
}

@media (max-width: 600px){
  .pricing-table th:last-child,
  .pricing-table td.price-cell{
    width:110px;
  }
}