/* ═══════════════════════════════════════════
   SaurTech — Brand-aligned clean design
   Montserrat (headings) + Rubik (body)
   Colors from Terrasaur + SaurTech brand
   ═══════════════════════════════════════════ */

:root {
  /* Brand colors */
  --lime:       #B4D232;
  --lime-hover: #c5e04a;
  --lime-bg:    rgba(180,210,50,0.08);
  --gold:       #BB9532;
  --gold-bg:    rgba(187,149,50,0.08);
  --navy:       #32374D;
  --navy-hover: #232739;

  /* Neutrals */
  --ink:        #121212;
  --ink-muted:  #3C3F4C;
  --ink-light:  #6b7280;
  --border:     #E4E4E4;
  --border-light:#EFF2FB;
  --bg:         #FFFFFF;
  --bg-alt:     #F7F7FF;
  --bg-warm:    #F2F2F2;

  /* Logo */
  --logo-saur:  #2B5580;
  --logo-tech:  #7D8A96;

  /* System */
  --radius:     12px;
  --radius-sm:  10px;
  --shadow:     0 4px 24px rgba(0,0,0,0.06);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.10);
  --container:  min(1200px, 92vw);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Rubik', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
::selection { background: rgba(180,210,50,0.25); color: var(--ink); }
h1, h2, h3, h4 { font-family: 'Montserrat', system-ui, sans-serif; }

.container { width: var(--container); margin: 0 auto; }

/* ── Logo (text-based) ── */
.logo-text {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.55rem;
  letter-spacing: -0.03em;
  line-height: 1;
  white-space: nowrap;
}
.logo-saur { color: var(--logo-saur); }
.logo-tech { color: var(--logo-tech); }
.logo-text--footer { margin-bottom: 14px; font-size: 1.35rem; }
.logo-text--footer .logo-saur { color: #fff; }
.logo-text--footer .logo-tech { color: rgba(255,255,255,0.5); }

/* ── Labels ── */
.label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 12px;
}
.label--light { color: var(--lime); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none !important;
}
.btn--primary {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  box-shadow: 0 2px 8px rgba(50,55,77,0.2);
}
.btn--primary:hover {
  background: var(--navy-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(50,55,77,0.3);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.25);
}
.btn--outline-light:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}
.btn--sm { padding: 9px 18px; font-size: 0.8rem; }
.btn--full { width: 100%; }

/* ═══════════════════════════════════════
   HEADER
   ═══════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px) saturate(1.6);
  -webkit-backdrop-filter: blur(16px) saturate(1.6);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 1px 16px rgba(0,0,0,0.06);
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  height: 68px;
}
.brand { display: flex; align-items: center; text-decoration: none !important; }
.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--ink); }
.nav-actions { display: flex; gap: 10px; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ═══════════════════════════════════════
   HERO — Snake background, text overlay
   ═══════════════════════════════════════ */
.hero {
  position: relative;
  padding: 140px 0 60px;
  overflow: hidden;
  background: var(--bg);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 75% 60%;
  opacity: 0.18;
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}
.hero__content h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.hero__content h1 em {
  font-style: normal;
  color: var(--lime);
}
.hero__lead {
  color: var(--ink-muted);
  font-size: 1rem;
  max-width: 48ch;
  margin-bottom: 24px;
  line-height: 1.75;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Hero stats */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 40px;
}
.stat-card {
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.stat-card__num {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-card__label {
  font-size: 0.78rem;
  color: var(--ink-light);
  font-weight: 500;
}

/* ═══════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════ */
.about {
  padding: 80px 0;
  background: var(--bg-alt);
}
.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.about__copy h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 14px;
}
.about__copy p {
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}
.about__pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.pill-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.pill-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--lime);
}
.pill-card svg { color: var(--lime); flex-shrink: 0; }
.pill-card span { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.85rem; color: var(--ink); }

/* ═══════════════════════════════════════
   PRODUCTS
   ═══════════════════════════════════════ */
.products {
  padding: 80px 0;
  background: var(--bg);
}
.products .section-header { margin-bottom: 40px; }
.products .section-header h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 10px;
}
.products .section-header p {
  color: var(--ink-muted);
  max-width: 48ch;
  font-size: 0.95rem;
}
.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.product-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all var(--transition);
}
.product-card:hover {
  border-color: var(--lime);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.product-card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: var(--lime-bg);
  color: var(--navy);
  margin-bottom: 16px;
}
.product-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.product-card p {
  color: var(--ink-light);
  font-size: 0.88rem;
  line-height: 1.6;
}
.products__cta {
  text-align: center;
  margin-top: 32px;
}

/* ═══════════════════════════════════════
   WHY US
   ═══════════════════════════════════════ */
.why {
  padding: 80px 0;
  background: var(--bg-alt);
}
.section-header--center { text-align: center; margin-bottom: 40px; }
.section-header--center h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.why-card {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg);
  transition: all var(--transition);
}
.why-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--lime);
}
.why-card__num {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--border-light);
}
.why-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.why-card p {
  color: var(--ink-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   B2B — Navy section
   ═══════════════════════════════════════ */
.b2b {
  padding: 80px 0;
  background: var(--navy);
}
.b2b__card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}
.b2b__content h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 12px;
}
.b2b__content p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 24px;
}
.b2b__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.b2b__badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.badge-pill {
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: rgba(180,210,50,0.1);
  border: 1px solid rgba(180,210,50,0.2);
  text-align: center;
}
.badge-pill span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--lime);
}

/* ═══════════════════════════════════════
   CERTIFICATION
   ═══════════════════════════════════════ */
.cert-section {
  padding: 64px 0;
  background: var(--bg-alt);
}
.cert-section__grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: center;
}
.cert-section__badge img { width: 280px; height: auto; }
.cert-section__copy h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 800;
  margin-bottom: 8px;
}
.cert-section__copy p {
  color: var(--ink-muted);
  font-size: 0.92rem;
  line-height: 1.75;
  max-width: 52ch;
}

/* ═══════════════════════════════════════
   CTA BAND
   ═══════════════════════════════════════ */
.cta-band {
  padding: 64px 0;
  background: var(--navy);
}
.cta-band__inner { text-align: center; }
.cta-band h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.cta-band p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
  font-size: 0.95rem;
}
.cta-band__actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ═══════════════════════════════════════
   CONTACT FORM — centered, clean
   ═══════════════════════════════════════ */
.contact-section {
  padding: 80px 0 64px;
  background: var(--bg);
}
.contact-header {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 36px;
}
.contact-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 10px;
}
.contact-header p {
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.contact-form-card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 36px;
}
.contact-form { display: grid; gap: 18px; }
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form label { display: grid; gap: 6px; }
.contact-form label span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--ink);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 0.92rem;
  background: #fff;
  color: var(--ink);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(50,55,77,0.08);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--ink-light); }
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form .btn--primary { justify-self: start; margin-top: 4px; }
.contact-form__sent {
  display: none;
  text-align: center;
  padding: 16px;
  border-radius: var(--radius-sm);
  background: var(--lime-bg);
  color: #438513;
  font-weight: 700;
  font-size: 0.88rem;
}
.contact-form.sent .contact-form__sent { display: block; }
.contact-form.sent button[type="submit"] { display: none; }

/* ═══════════════════════════════════════
   CONTACT INFO — separate section
   ═══════════════════════════════════════ */
.contact-info-section {
  padding: 64px 0 80px;
  background: var(--bg);
  border-top: 1px solid var(--border-light);
}
.contact-info__header {
  text-align: center;
  margin-bottom: 36px;
}
.contact-info__header h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 800;
}
.contact-info__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}
.contact-info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 20px;
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.contact-info-card:hover {
  border-color: var(--lime);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.contact-info-card__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: var(--navy);
  color: #fff;
  flex-shrink: 0;
}
.contact-info-card__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}
.contact-info-card__value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink);
}
.contact-info-card__value:hover { color: var(--navy); }

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
  background: var(--ink);
  padding: 48px 0 28px;
  color: rgba(255,255,255,0.5);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand p { font-size: 0.82rem; line-height: 1.65; }
.footer h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}
.footer__links a,
.footer__contact a {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 6px;
  transition: color var(--transition);
}
.footer__links a:hover,
.footer__contact a:hover { color: var(--lime); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  font-size: 0.75rem;
}
.footer__bottom a { color: var(--lime); }
.footer__bottom a:hover { text-decoration: underline; }
.footer-gradient {
  background: linear-gradient(135deg, #F5A030, #FF2D78, #DC2626);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}
.footer-gradient:hover {
  background: linear-gradient(135deg, #FFB94D, #FF4D8F, #EF4444);
  -webkit-background-clip: text;
  background-clip: text;
  text-decoration: none !important;
}

/* ═══════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════ */

/* Default: fade up */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
[data-animate].visible {
  opacity: 1;
  transform: translate(0);
}

/* Slide from left */
[data-animate="left"] {
  opacity: 0;
  transform: translateX(-40px);
}
[data-animate="left"].visible {
  opacity: 1;
  transform: translateX(0);
}

/* Slide from right */
[data-animate="right"] {
  opacity: 0;
  transform: translateX(40px);
}
[data-animate="right"].visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scale up */
[data-animate="scale"] {
  opacity: 0;
  transform: scale(0.9);
}
[data-animate="scale"].visible {
  opacity: 1;
  transform: scale(1);
}

/* Delays */
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }

/* Hero intro animation */
.hero__content .label,
.hero__content h1,
.hero__content .hero__lead,
.hero__content .hero__actions {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 0.7s cubic-bezier(0.4,0,0.2,1) forwards;
}
.hero__content .label      { animation-delay: 0.1s; }
.hero__content h1           { animation-delay: 0.25s; }
.hero__content .hero__lead  { animation-delay: 0.4s; }
.hero__content .hero__actions { animation-delay: 0.55s; }

@keyframes heroFadeIn {
  to { opacity: 1; transform: translateY(0); }
}

/* stagger removed — individual items animate on scroll */

/* ═══════════════════════════════════════
   RESPONSIVE — TABLET (max 960px)
   ═══════════════════════════════════════ */
@media (max-width: 960px) {
  .hero__stats { grid-template-columns: repeat(4, 1fr); }
  .about__grid { grid-template-columns: 1fr; gap: 28px; }
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .b2b__card { grid-template-columns: 1fr; }
  .contact-info__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer__bottom { flex-direction: column; gap: 6px; text-align: center; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — MOBILE (max 640px)
   ═══════════════════════════════════════ */
@media (max-width: 640px) {
  /* Nav */
  .nav-links, .nav-actions { display: none; }
  .burger { display: flex; }
  .nav-links.open,
  .nav-actions.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
    padding: 16px 4vw;
    gap: 10px;
    border-bottom: 1px solid var(--border);
    animation: slideDown 0.25s ease;
  }
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .nav-actions.open { padding-top: 0; border-bottom: none; padding-bottom: 20px; }

  /* Hero */
  .hero { padding: 96px 0 40px; }
  .hero__content { max-width: 100%; }
  .hero__content h1 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .hero__lead { font-size: 0.9rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; text-align: center; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 8px; margin-top: 28px; }
  .stat-card { padding: 14px 10px; }
  .stat-card__num { font-size: 1.2rem; }
  .stat-card__label { font-size: 0.7rem; }

  /* About */
  .about { padding: 56px 0; }
  .about__pills { grid-template-columns: 1fr; }

  /* Products */
  .products { padding: 56px 0; }
  .products__grid { grid-template-columns: 1fr; }

  /* Why */
  .why { padding: 56px 0; }
  .why__grid { grid-template-columns: 1fr; }

  /* B2B */
  .b2b { padding: 56px 0; }
  .b2b__card { padding: 24px; gap: 24px; }
  .b2b__badges { grid-template-columns: 1fr 1fr; }
  .b2b__actions { flex-direction: column; }
  .b2b__actions .btn { width: 100%; text-align: center; }

  /* Cert */
  .cert-section { padding: 48px 0; }
  .cert-section__grid { grid-template-columns: 1fr; text-align: center; }
  .cert-section__badge { justify-self: center; }
  .cert-section__badge img { width: 180px; }

  /* CTA band */
  .cta-band { padding: 48px 0; }
  .cta-band__actions { flex-direction: column; align-items: center; }
  .cta-band__actions .btn { width: 100%; max-width: 320px; text-align: center; }

  /* Contact */
  .contact-section { padding: 56px 0 40px; }
  .contact-form-card { padding: 24px; }
  .contact-form__row { grid-template-columns: 1fr; }
  .contact-info-section { padding: 40px 0 56px; }
  .contact-info__grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: 24px; }
  .footer__bottom { flex-direction: column; gap: 6px; text-align: center; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (max 380px)
   ═══════════════════════════════════════ */
@media (max-width: 380px) {
  .b2b__badges { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
