/* IT365 — custom corporate theme */

:root {
  --navy: #14213d;
  --navy-light: #1f3462;
  --accent: #2f5fd6;
  --accent-light: #eaf0ff;
  --text: #16202e;
  --text-muted: #5b6472;
  --bg: #ffffff;
  --bg-alt: #f5f7fa;
  --border: #e6e9ee;
  --radius: 14px;
  --shadow: 0 6px 24px rgba(20, 33, 61, 0.08);
  --font: 'Inter Tight', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }

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

.container { max-width: 1180px; }

section { scroll-margin-top: 76px; }

.section { padding: 52px 0; }
.section-alt { background: var(--bg-alt); }
.section-tight { padding: 36px 0; }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-head { max-width: 680px; margin: 0 0 28px; text-align: left; }
.section-head h2 {
  font-size: clamp(28px, 3.6vw, 38px);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: 0 0 14px;
}
.section-head p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

/* ---------- Navbar ---------- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.promo-strip {
  display: block;
  background: linear-gradient(90deg, var(--accent), var(--navy-light));
}
.promo-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 38px;
  flex-wrap: wrap;
  text-align: center;
}
.promo-strip span { font-size: 13.5px; color: #fff; font-weight: 600; }
.promo-strip strong { font-weight: 800; }
.promo-arrow { text-decoration: underline; text-underline-offset: 2px; white-space: nowrap; }
.promo-strip:hover .promo-arrow { color: #fff; }

.has-promo section { scroll-margin-top: 114px; }
.has-promo .hero { padding-top: 154px; }
@media (max-width: 640px) {
  .promo-strip .container { height: auto; padding-top: 8px; padding-bottom: 8px; }
  .has-promo section { scroll-margin-top: 130px; }
  .has-promo .hero { padding-top: 140px; }
}
.site-nav .brand {
  font-weight: 800;
  font-size: 22px;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.site-nav .brand span { color: var(--accent); }
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  transition: color .15s;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 22px;
  border-radius: 999px;
  transition: background .15s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--accent); color: #fff; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 2px;
}

@media (max-width: 900px) {
  .nav-links { position: absolute; top: 72px; left: 0; right: 0; background: #fff; flex-direction: column; gap: 0; border-bottom: 1px solid var(--border); display: none; }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; padding: 14px 24px; border-top: 1px solid var(--border); }
  .nav-cta { display: none; }
  .nav-toggle { display: block; }
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #fff;
  padding: 116px 0 52px;
}
.hero h1 {
  font-size: clamp(32px, 4.6vw, 48px);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.12;
  margin: 0 0 16px;
  max-width: 700px;
}
.hero p.lead {
  font-size: 17.5px;
  line-height: 1.55;
  color: #c6cee3;
  max-width: 560px;
  margin: 0 0 26px;
}
.hero .btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }

.btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 999px;
  transition: transform .15s, box-shadow .15s;
}
.btn-solid:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(0,0,0,0.18); color: var(--navy); }

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,0.4);
  transition: border-color .15s, background .15s;
}
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.08); color: #fff; }

.hero .trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  font-size: 14px;
  color: #a8b3cb;
}
.hero .trust-row li { list-style: none; display: flex; align-items: center; gap: 8px; }
.hero .trust-row svg { flex: none; }

/* ---------- Brand strip ---------- */
.brand-strip { padding: 30px 0; }
.brand-strip .row-logos {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}
.brand-strip .logo-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 64px;
  animation: brandScroll 26s linear infinite;
}
.brand-strip .row-logos:hover .logo-track { animation-play-state: paused; }
.brand-strip .logo-track img {
  height: 46px;
  width: auto;
  flex: none;
  transition: transform .2s;
}
.brand-strip .logo-track img:hover { transform: scale(1.08); }
@keyframes brandScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (max-width: 640px) {
  .brand-strip .logo-track img { height: 32px; }
  .brand-strip .logo-track { gap: 40px; animation-duration: 18s; }
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 992px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px 20px;
  overflow: hidden;
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
.service-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--navy-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }

.service-card .index {
  position: absolute;
  top: 26px; right: 28px;
  font-size: 13px;
  font-weight: 800;
  color: var(--border);
}

.service-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--accent-light);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  transition: background .25s, color .25s;
}
.service-card:hover .service-icon { background: var(--navy); color: #fff; }
.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 6px;
  padding-right: 24px;
}
.service-card .lead {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0 0 14px;
}
.service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.service-chips span {
  background: var(--bg-alt);
  color: var(--text);
  font-size: 12.5px;
  font-weight: 600;
  padding: 7px 13px;
  border-radius: 999px;
  white-space: nowrap;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  padding: 10px 16px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 13.5px;
  font-weight: 700;
  border-radius: 999px;
  transition: background .15s, color .15s;
}
.service-link:hover { background: var(--navy); color: #fff; }

#features .services-grid { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 640px) { #features .services-grid { grid-template-columns: 1fr; } }

/* ---------- Qazparking page ---------- */
.license-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 760px) { .license-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }

.license-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 30px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.license-card::before {
  content: "";
  display: block;
  height: 6px;
  margin: 0 -30px 28px;
  background: var(--border);
}
.license-card.featured { border-color: var(--navy); box-shadow: var(--shadow); }
.license-card.featured::before { background: linear-gradient(90deg, var(--accent), var(--navy-light)); }
.license-card .badge {
  position: absolute;
  top: 20px; right: 24px;
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
}
.license-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin: 0 0 6px; padding-right: 90px; }
.license-card .price { font-size: 28px; font-weight: 800; color: var(--navy); margin: 0 0 4px; }
.license-card .desc { font-size: 14px; color: var(--text-muted); margin: 0 0 22px; }
.license-card ul { list-style: none; margin: 0 0 28px; padding: 0; flex: 1; }
.license-card li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 12px;
}
.license-card li .tick {
  flex: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.license-card.featured li .tick { background: var(--navy); color: #fff; }
.license-card .btn-navy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 14.5px;
  padding: 13px 20px;
  border-radius: 10px;
  transition: background .15s;
}
.license-card .btn-navy:hover { background: var(--accent); color: #fff; }

#howGrid { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { #howGrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { #howGrid { grid-template-columns: 1fr; } }

#includedGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
#includedGrid li { align-items: flex-start; }
#includedGrid strong { color: var(--navy); }
@media (max-width: 900px) { #includedGrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { #includedGrid { grid-template-columns: 1fr; } }

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 760px) { .stat-row { grid-template-columns: repeat(2, 1fr); } }
.stat-item {
  text-align: center;
  background: var(--bg-alt);
  border-radius: 12px;
  padding: 22px 16px;
}
.stat-value { font-size: 22px; font-weight: 800; color: var(--navy); }
.stat-label { font-size: 13px; color: var(--text-muted); margin-top: 6px; line-height: 1.4; }

/* ---------- Cooperation banner ---------- */
.banner-quote {
  background: var(--navy);
  color: #fff;
  padding: 34px 0;
  text-align: center;
}
.banner-quote p {
  max-width: 780px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 500;
  color: #dde3f2;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 24px; } }
.about-grid h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 14px;
}
.about-grid p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 12px;
}
.about-points { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.about-points li {
  display: flex; gap: 14px;
  background: var(--bg-alt);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.45;
}
.about-points svg { flex: none; color: var(--accent); margin-top: 2px; }

/* ---------- Process ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.process-grid::before {
  content: "";
  position: absolute;
  top: 20px; left: 8.5%; right: 8.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--border) 90%);
}
@media (max-width: 900px) { .process-grid { grid-template-columns: 1fr; } .process-grid::before { display: none; } }
.process-step { position: relative; }
.process-step .num {
  position: relative;
  z-index: 1;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  background: var(--navy);
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 0 0 6px var(--bg);
}
.process-step h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin: 0 0 10px; }
.process-step p { font-size: 14.5px; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ---------- Configurator ---------- */
.config-split {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 860px) { .config-split { grid-template-columns: 1fr; } }

.config-block {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 6px 28px 10px;
}

.config-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
}
.config-row-label { font-size: 14.5px; font-weight: 600; color: var(--navy); }
.config-row-label em { display: block; font-style: normal; color: var(--text-muted); font-weight: 500; font-size: 12.5px; margin-top: 2px; }

.config-group-title {
  grid-column: 1 / -1;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--accent);
  padding: 22px 0 2px;
}

.config-row-control {
  flex: none;
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: 9px;
  overflow: hidden;
  background: #fff;
}

.config-step {
  flex: none;
  width: 32px;
  border: none;
  background: var(--bg-alt);
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.config-step:hover { background: var(--accent-light); color: var(--accent); }
.config-step:active { background: var(--accent); color: #fff; }

.config-number {
  width: 42px;
  text-align: center;
  padding: 0 4px;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  font-family: var(--font);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--navy);
  -moz-appearance: textfield;
}
.config-number:focus { outline: none; background: var(--accent-light); }
.config-number::-webkit-outer-spin-button,
.config-number::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.config-block-right {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.config-summary-label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #9db4ff;
  margin-bottom: 8px;
}
.config-block-right strong { display: block; font-size: 32px; font-weight: 800; color: #fff; line-height: 1.1; }
.config-summary-sub { display: block; font-size: 13px; color: #a8b3cb; margin-top: 8px; }

.config-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: #fff;
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 26px;
  border-radius: 10px;
  white-space: nowrap;
  margin-top: auto;
  transition: background .15s, transform .15s;
}
.config-submit-btn:hover { background: var(--accent); color: #fff; transform: translateY(-1px); }

.config-included { list-style: none; margin: 24px 0 28px; padding: 22px 0 0; border-top: 1px solid rgba(255,255,255,0.14); display: flex; flex-direction: column; gap: 12px; }
.config-included li { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; color: #c6cee3; line-height: 1.4; }
.config-included svg { flex: none; color: #9db4ff; margin-top: 1px; }

@media (max-width: 640px) {
  .config-block { padding: 4px 22px 10px; }
  .config-block-right { padding: 24px; }
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.faq-toggle {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  background: none; border: none;
  padding: 15px 20px;
  text-align: left;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
}
.faq-toggle .chevron { flex: none; transition: transform .2s; color: var(--text-muted); }
.faq-toggle:not(.collapsed) .chevron { transform: rotate(180deg); }
.faq-body { padding: 0 24px 22px; font-size: 15px; line-height: 1.65; color: var(--text-muted); }

/* ---------- Contact form ---------- */
.contact-form-wrap {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}
.form-control-custom {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: var(--font);
  font-size: 15px;
  margin-bottom: 16px;
  transition: border-color .15s;
}
.form-control-custom:focus { outline: none; border-color: var(--accent); }
.btn-submit {
  width: 100%;
  background: var(--navy);
  color: #fff;
  border: none;
  font-family: var(--font);
  font-weight: 700;
  font-size: 15.5px;
  padding: 15px;
  border-radius: 10px;
  cursor: pointer;
  transition: background .15s;
}
.btn-submit:hover { background: var(--accent); }

/* ---------- Contacts ---------- */
.contacts-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: stretch;
}
@media (max-width: 900px) { .contacts-grid { grid-template-columns: 1fr; } }
.contacts-card {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 28px;
}
.contacts-card h3 { font-size: 19px; font-weight: 700; margin: 0 0 18px; }
.contacts-card ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.contacts-card li { display: flex; gap: 14px; align-items: flex-start; font-size: 15px; color: #d3d9e8; }
.contacts-card li a { color: #fff; font-weight: 600; }
.contacts-card li a:hover { color: #9db4ff; }
.contacts-card svg { flex: none; margin-top: 2px; color: #9db4ff; }
.map-frame { border-radius: var(--radius); overflow: hidden; min-height: 320px; height: 100%; border: 1px solid var(--border); }
.map-frame iframe { width: 100%; height: 100%; min-height: 320px; display: block; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #97a2ba; padding: 24px 0; text-align: center; font-size: 14px; }
.site-footer strong { color: #fff; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  z-index: 1000;
  transition: transform .15s;
}
.wa-float:hover { transform: scale(1.06); }

/* ---------- Mobile ---------- */
@media (max-width: 640px) {
  .section { padding: 48px 0; }
  .section-tight { padding: 36px 0; }
  .section-head { margin-bottom: 28px; }
  .section-head p { font-size: 15.5px; }

  .site-nav .container { height: 64px; }
  .site-nav .brand { font-size: 20px; }

  .hero { padding: 108px 0 48px; }
  .hero p.lead { font-size: 16.5px; margin-bottom: 26px; }
  .hero .btn-row { flex-direction: column; gap: 10px; margin-bottom: 28px; }
  .hero .btn-row a { width: 100%; justify-content: center; }
  .hero .trust-row { flex-direction: column; gap: 12px; }

  .brand-strip { padding: 28px 0; }
  .brand-strip .row-logos { gap: 22px 26px; }
  .brand-strip img { height: 22px; }

  .banner-quote { padding: 32px 0; }
  .banner-quote p { font-size: 16.5px; }

  .service-card { padding: 22px; }
  .service-icon { width: 44px; height: 44px; margin-bottom: 14px; }
  .services-grid { gap: 16px; }

  .about-points li { padding: 14px 16px; font-size: 14px; }
  .about-grid { gap: 24px; }

  .process-grid { gap: 24px; }

  .license-card { padding: 26px 22px; }
  .license-grid { gap: 16px; grid-template-columns: 1fr; }

  .faq-toggle { padding: 16px 18px; font-size: 15px; }
  .faq-body { padding: 0 18px 18px; font-size: 14.5px; }
  .faq-list { gap: 10px; }

  .contact-form-wrap { padding: 24px; }
  .contacts-card { padding: 26px; }
  .contacts-grid { gap: 16px; }
  .map-frame { min-height: 240px; }
  .map-frame iframe { min-height: 240px; }

  .site-footer { padding: 26px 0; }
}

/* ---------- Scroll reveal ---------- */
.reveal, .about-points li {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1);
}
.reveal.is-visible, .about-points li.is-visible { opacity: 1; transform: none; }

.services-grid .reveal:nth-child(2) { transition-delay: .08s; }
.services-grid .reveal:nth-child(3) { transition-delay: .16s; }
.services-grid .reveal:nth-child(4) { transition-delay: .08s; }
.services-grid .reveal:nth-child(5) { transition-delay: .16s; }
.services-grid .reveal:nth-child(6) { transition-delay: .24s; }

.about-points li:nth-child(2) { transition-delay: .08s; }
.about-points li:nth-child(3) { transition-delay: .16s; }
.about-points li:nth-child(4) { transition-delay: .24s; }

.process-grid .reveal:nth-child(2) { transition-delay: .1s; }
.process-grid .reveal:nth-child(3) { transition-delay: .2s; }

.license-grid .reveal:nth-child(2) { transition-delay: .1s; }

.hero h1, .hero p.lead, .hero .btn-row, .hero .trust-row {
  opacity: 0;
  animation: heroIn .7s cubic-bezier(.2,.7,.3,1) forwards;
}
.hero h1 { animation-delay: .05s; }
.hero p.lead { animation-delay: .15s; }
.hero .btn-row { animation-delay: .25s; }
.hero .trust-row { animation-delay: .35s; }
@keyframes heroIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  .reveal, .about-points li { opacity: 1; transform: none; transition: none; }
  .hero h1, .hero p.lead, .hero .btn-row, .hero .trust-row { animation: none; opacity: 1; }
}

/* nav shadow on scroll */
.site-nav.scrolled { box-shadow: 0 4px 18px rgba(20,33,61,0.08); }
