/* ============================================================
   AU EQUIPMENTS — style.css
   Layout modelled on condensed-type sports-academy template:
   dark hero, accent chips/buttons, card grids, dark footer.
   ============================================================ */

:root {
  --accent: #FFC400;
  --accent-dark: #E6B000;
  --ink: #111312;
  --ink-soft: #1B1D1C;
  --body: #5F646B;
  --line: #E4E4DF;
  --bg: #F5F5F2;
  --white: #FFFFFF;
  --radius: 6px;
  --head: "Oswald", sans-serif;
  --text: "Inter", sans-serif;
  --shadow: 0 18px 45px rgba(17, 19, 18, .09);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--text);
  color: var(--body);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--head);
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: .3px;
}

h1 { font-size: clamp(46px, 6.2vw, 84px); }
h2 { font-size: clamp(32px, 3.6vw, 52px); }
h3 { font-size: 21px; }

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.section { padding: 110px 0; }

/* ---------- badges ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 16px;
  font-family: var(--head);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 22px;
}

.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 26px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}

.btn .arr { width: 15px; height: 15px; transition: transform .25s ease; }
.btn:hover .arr { transform: translateX(4px); }

.btn-accent { background: var(--accent); color: var(--ink); }
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .55);
}
.btn-ghost:hover { background: rgba(255, 255, 255, .12); transform: translateY(-2px); }

.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: #000; transform: translateY(-2px); }

.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border-color: rgba(17, 19, 18, .45);
}
.btn-outline-dark:hover { background: rgba(17, 19, 18, .08); transform: translateY(-2px); }

.center-btn { text-align: center; margin-top: 54px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .3s ease, padding .3s ease, box-shadow .3s ease;
}

.site-header.scrolled {
  background: rgba(14, 15, 14, .96);
  padding: 12px 0;
  box-shadow: 0 6px 30px rgba(0, 0, 0, .25);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--head);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 1px;
  color: var(--white);
  text-decoration: none;
}

.logo-mark {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.logo-mark svg { width: 20px; height: 20px; }

.main-nav {
  display: flex;
  gap: 34px;
  margin-left: auto;
}

.nav-link {
  font-family: var(--head);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .85);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color .2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width .25s ease;
}

.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.header-cta { padding: 13px 22px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 26px; height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.hero-slides, .hero-slide { position: absolute; inset: 0; }

.hero-slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.1s ease, transform 6s ease;
}
.hero-slide.is-active { opacity: 1; transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 11, 10, .82) 0%, rgba(10, 11, 10, .55) 45%, rgba(10, 11, 10, .25) 100%),
    linear-gradient(0deg, rgba(10, 11, 10, .55) 0%, rgba(10, 11, 10, .15) 35%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 160px 0 120px;
  max-width: 1200px;
}

.hero-badge {
  font-family: var(--head);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.hero h1 { color: var(--white); max-width: 720px; }

.hero-sub {
  max-width: 470px;
  margin: 26px 0 36px;
  color: rgba(255, 255, 255, .82);
  font-size: 17px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 58px;
}

.avatar-stack { display: flex; }
.avatar-stack img {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 3px solid var(--ink);
  object-fit: cover;
}
.avatar-stack img + img { margin-left: -14px; }

.proof-text strong {
  display: block;
  font-family: var(--head);
  font-size: 16px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--accent);
}
.proof-text span {
  font-family: var(--head);
  font-size: 13px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .85);
}

.hero-dots {
  position: absolute;
  right: 5%;
  bottom: 42px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.hero-dots .dot {
  width: 34px; height: 4px;
  border: 0;
  border-radius: 3px;
  background: rgba(255, 255, 255, .35);
  cursor: pointer;
  transition: background .3s ease;
}
.hero-dots .dot.is-active { background: var(--accent); }

.hero-card {
  position: absolute;
  z-index: 3;
  right: 5%;
  bottom: 90px;
  width: 300px;
  background: var(--white);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: var(--shadow);
}

.hero-card-icon {
  flex: none;
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card-icon svg { width: 22px; height: 22px; }

.hero-card h4 { font-size: 16px; letter-spacing: 1px; margin-bottom: 4px; }
.hero-card p { font-size: 13.5px; line-height: 1.5; color: var(--body); }

/* ============================================================
   ABOUT
   ============================================================ */
.about { padding-bottom: 70px; }

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

.about-media { position: relative; }

.about-media img {
  border-radius: 14px;
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.about-tag {
  position: absolute;
  left: 24px; bottom: 24px;
  background: var(--white);
  border-radius: 12px;
  padding: 14px 20px;
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 13px;
  color: var(--ink);
  box-shadow: var(--shadow);
}
.about-tag span {
  display: block;
  color: var(--accent-dark);
  font-size: 15px;
  font-weight: 600;
}

.about-copy h2 { margin-bottom: 24px; }
.about-copy p:not(.badge) { margin-bottom: 18px; max-width: 520px; }
.about-copy .btn { margin-top: 14px; }

.stats-row {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  padding-top: 46px;
  gap: 30px;
}

.stat { text-align: center; }

.stat-num {
  font-family: var(--head);
  font-size: clamp(40px, 4.5vw, 62px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}

.stat-label {
  display: block;
  margin-top: 10px;
  font-family: var(--head);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--body);
}

/* ============================================================
   FLEET
   ============================================================ */
.section-head.center {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-sub { margin-top: 18px; }

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.fleet-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 26px rgba(17, 19, 18, .06);
  transition: transform .3s ease, box-shadow .3s ease;
}

.fleet-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }

.fleet-media { height: 220px; overflow: hidden; }
.fleet-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.fleet-card:hover .fleet-media img { transform: scale(1.07); }

.fleet-body { padding: 28px 26px 30px; }
.fleet-body h3 { margin-bottom: 12px; }
.fleet-body > p { font-size: 14.5px; margin-bottom: 20px; }

.check-list { list-style: none; display: grid; grid-template-columns: 1fr; gap: 10px; }

.check-list li {
  position: relative;
  padding-left: 30px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 1px;
  width: 19px; height: 19px;
  border-radius: 50%;
  background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='m6 12.5 4 4 8-9' stroke='%23111312' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/12px no-repeat;
}

/* ============================================================
   WHY US
   ============================================================ */
.why {
  background: var(--ink);
}

.why .section-head h2 { color: var(--white); }

.badge.dark {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .16);
  color: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.why-card {
  background: var(--white);
  border-radius: 14px;
  padding: 34px 30px;
  transition: transform .3s ease;
}
.why-card:hover { transform: translateY(-6px); }

.why-icon {
  width: 54px; height: 54px;
  border-radius: 12px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.why-icon svg { width: 28px; height: 28px; }

.why-card h3 { margin-bottom: 10px; }
.why-card p { font-size: 14.5px; }

/* ============================================================
   TESTIMONY
   ============================================================ */
.testi-wrap {
  display: flex;
  align-items: center;
  gap: 22px;
  max-width: 860px;
  margin: 0 auto;
}

.testi-viewport { overflow: hidden; flex: 1; border-radius: 14px; }

.testi-track {
  display: flex;
  transition: transform .55s cubic-bezier(.4, 0, .2, 1);
}

.testi-card {
  flex: 0 0 100%;
  background: var(--white);
  border-radius: 14px;
  padding: 46px 54px;
  text-align: center;
  box-shadow: 0 8px 26px rgba(17, 19, 18, .05);
}

.stars {
  color: #F0A93B;
  letter-spacing: 5px;
  font-size: 18px;
  margin-bottom: 20px;
}

.testi-card blockquote {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-soft);
  font-weight: 500;
  margin-bottom: 28px;
}

.testi-author {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}

.testi-author img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.testi-author strong {
  display: block;
  font-family: var(--head);
  font-size: 15px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--ink);
}
.testi-author span { font-size: 13.5px; }

.testi-arrow {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .25s ease, color .25s ease;
}
.testi-arrow svg { width: 17px; height: 17px; }
.testi-arrow:hover { background: var(--accent); border-color: var(--accent); }

/* ============================================================
   TEAM
   ============================================================ */
.team { padding-top: 0; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.team-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 360px;
}

.team-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.team-card:hover img { transform: scale(1.06); }

.team-info {
  position: absolute;
  inset: auto 0 0 0;
  padding: 46px 20px 18px;
  background: linear-gradient(0deg, rgba(10, 11, 10, .88) 0%, rgba(10, 11, 10, 0) 100%);
}

.team-info h3 { color: var(--white); font-size: 18px; letter-spacing: 1px; }
.team-info span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { padding-top: 0; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 18px;
}

.g-item {
  border-radius: 14px;
  overflow: hidden;
}

.g-item.tall { grid-row: span 2; }

.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.g-item:hover img { transform: scale(1.08); }

/* ============================================================
   BLOG
   ============================================================ */
.blog { padding-top: 0; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.blog-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 26px rgba(17, 19, 18, .05);
  transition: transform .3s ease, box-shadow .3s ease;
  cursor: pointer;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }

.blog-media { height: 210px; overflow: hidden; }
.blog-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.blog-card:hover .blog-media img { transform: scale(1.07); }

.blog-body { padding: 24px 24px 28px; }

.blog-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  font-size: 13px;
}

.blog-tag {
  background: var(--accent);
  color: var(--ink);
  font-family: var(--head);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 4px 10px;
}

.blog-body h3 {
  font-size: 19px;
  line-height: 1.3;
  transition: color .25s ease;
}
.blog-card:hover h3 { color: var(--accent-dark); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding-top: 0; }
.faq-inner { max-width: 760px; }

.faq-list { display: grid; gap: 14px; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  font-family: var(--head);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-icon {
  flex: none;
  position: relative;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--bg);
  transition: background .25s ease, transform .3s ease;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 12px; height: 2px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform .3s ease;
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }

.faq-item[open] .faq-icon { background: var(--accent); transform: rotate(45deg); }

.faq-item p {
  padding: 0 24px 22px;
  font-size: 15px;
  max-width: 640px;
}

/* ============================================================
   CTA
   ============================================================ */
.cta {
  background: var(--accent);
  overflow: hidden;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 60px;
}

.cta-copy { padding: 90px 0; position: relative; }

.cta-brand {
  font-family: var(--head);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink);
  opacity: .75;
  display: block;
  margin-bottom: 14px;
}

.cta-copy h2 { margin-bottom: 18px; }
.cta-copy p { color: rgba(17, 19, 18, .75); max-width: 440px; font-size: 17px; }

.cta-actions { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; }

.cta-media { height: 100%; min-height: 420px; position: relative; }
.cta-media img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr 1fr;
  gap: 60px;
  padding: 70px 0 50px;
}

.footer .logo { margin-bottom: 20px; }
.footer-brand p { font-size: 14.5px; max-width: 300px; margin-bottom: 24px; }

.socials { display: flex; gap: 10px; }

.socials a {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease, background .25s ease;
}
.socials a:hover { transform: translateY(-3px); background: var(--accent-dark); }
.socials svg { width: 18px; height: 18px; }

.footer h4 {
  color: var(--white);
  font-size: 15px;
  letter-spacing: 1.8px;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
  font-family: var(--head);
  font-size: 14px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 5px 0;
  transition: color .2s ease;
}
.footer-col a:hover { color: var(--accent); }

.footer-contact {
  display: flex;
  gap: 14px;
  margin-bottom: 26px;
}

.footer-contact h4 { margin-bottom: 6px; }
.footer-contact p { font-size: 14.5px; }

.fc-icon {
  flex: none;
  width: 40px; height: 40px;
  border-radius: 9px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.fc-icon svg { width: 20px; height: 20px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 22px 0;
  text-align: center;
  font-size: 13.5px;
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .fleet-grid, .why-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); row-gap: 44px; }
  .hero-card { display: none; }
}

@media (max-width: 860px) {
  .section { padding: 80px 0; }

  .main-nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(320px, 82vw);
    background: var(--ink);
    flex-direction: column;
    gap: 8px;
    padding: 110px 36px 40px;
    transform: translateX(100%);
    transition: transform .35s ease;
    box-shadow: -20px 0 60px rgba(0, 0, 0, .35);
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav .nav-link { font-size: 18px; padding: 12px 0; }

  .nav-toggle { display: flex; margin-left: auto; z-index: 20; }
  .header-cta { display: none; }
  .site-header { background: rgba(14, 15, 14, .96); padding: 14px 0; }

  .about-grid, .cta-inner { grid-template-columns: 1fr; }
  .about-media img { height: 400px; }
  .cta-copy { padding: 70px 0 0; }
  .cta-media { min-height: 320px; margin-bottom: -1px; border-radius: 14px 14px 0 0; overflow: hidden; }
  .cta-inner { gap: 40px; }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; padding: 56px 0 40px; }

  .testi-wrap { flex-wrap: wrap; justify-content: center; }
  .testi-viewport { flex-basis: 100%; order: -1; margin-bottom: 18px; }
  .testi-card { padding: 36px 26px; }
}

@media (max-width: 560px) {
  .fleet-grid, .why-grid, .blog-grid, .team-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .g-item.tall { grid-row: span 1; }
  .hero-content { padding-top: 130px; }
  .hero-proof { margin-top: 40px; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .hero-dots { left: 4%; right: auto; }
}
