/* ===========================
   ULTIONIS – MODERN LANDING PAGE
   =========================== */

:root {
  --navy: #1B2D5E;
  --navy-mid: #243B75;
  --navy-light: #2E4A8A;
  --orange: #C8102E;
  --orange-dark: #A50D26;
  --orange-glow: rgba(200, 16, 46, 0.12);
  --blue-accent: #3A5B9E;
  --white: #FFFFFF;
  --off-white: #F3F6FC;
  --gray-100: #E8EEF8;
  --gray-200: #D2DCF0;
  --gray-400: #8499BE;
  --gray-600: #4A5F85;
  --gray-800: #1B2D5E;
  --text: #192848;
  --text-light: #5A6E8C;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(27,45,94,0.10);
  --shadow-lg: 0 20px 60px rgba(27,45,94,0.18);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================
   BUTTONS
   =========================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn--primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  box-shadow: 0 8px 30px rgba(200,16,46,0.4);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
}

.btn--full { width: 100%; justify-content: center; border-radius: var(--radius-sm); }

/* ===========================
   NAV
   =========================== */

.nav {
  position: fixed;
  top: 20px;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease, top 0.3s ease;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.nav.scrolled {
  top: 0;
  background: rgba(27, 45, 94, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08);
}

.nav__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 26px 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  transition: padding 0.3s ease;
}

.nav.scrolled .nav__inner {
  padding: 14px 32px;
}

.nav__logo {
  font-size: 38px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1.5px;
  text-align: center;
  transition: font-size 0.3s ease, letter-spacing 0.3s ease;
  line-height: 1;
}

.nav.scrolled .nav__logo {
  font-size: 24px;
  letter-spacing: -0.5px;
}

.logo-u {
  color: var(--orange);
  font-style: italic;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: flex-start;
}

.nav__links a {
  color: rgba(255,255,255,0.92);
  font-weight: 500;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav__links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }

.nav__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.nav__cta-btn {
  padding: 10px 22px;
  font-size: 14px;
  border-radius: 50px;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 8px 24px 16px;
  background: rgba(27,45,94,0.99);
}
.nav__mobile a {
  color: rgba(255,255,255,0.8);
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav__mobile.open { display: flex; }

/* ===========================
   HERO
   =========================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 280px 24px 80px;
  overflow: hidden;
  background: var(--navy);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('images/semi-trailer-asphalt-road-highway-sunset-transportation-background.jpg');
  background-size: cover;
  background-position: center 55%;
}

.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg,
      rgba(27, 45, 94, 0.92) 0%,
      rgba(27, 45, 94, 0.82) 45%,
      rgba(27, 45, 94, 0.70) 70%,
      rgba(200, 16, 46, 0.22) 100%
    );
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 70% at 15% 50%, rgba(58, 91, 158, 0.25) 0%, transparent 70%);
}

.hero__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--white), transparent);
}

.hero__content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}

.hero__badge {
  display: inline-block;
  background: var(--orange-glow);
  color: var(--orange);
  border: 1px solid rgba(255,107,53,0.3);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero__title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.accent { color: var(--orange); }

.hero__sub {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 900px;
  margin: 72px auto 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(27,45,94,0.22), 0 2px 8px rgba(27,45,94,0.10);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 20px;
  background: var(--white);
  border-right: 1px solid var(--gray-100);
  transition: var(--transition);
}
.stat:last-child { border-right: none; }
.stat:hover { background: var(--off-white); }

.stat__num {
  font-size: 36px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.stat__label {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 6px;
  text-align: center;
  font-weight: 500;
}

/* ===========================
   SECTIONS COMMON
   =========================== */

.section { padding: 100px 0; }

.section__header {
  text-align: center;
  margin-bottom: 64px;
}

.section__tag {
  display: inline-block;
  color: var(--orange);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.section__header h2 {
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section__header p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===========================
   SERVICES
   =========================== */

.services {
  background: var(--white);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/headers-truck-running.jpg');
  background-size: cover;
  background-position: center 35%;
  opacity: 0.07;
  pointer-events: none;
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  cursor: default;
}

.service-card:hover {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-glow), var(--shadow);
  transform: translateY(-4px);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  color: var(--orange);
  margin-bottom: 20px;
}
.service-card__icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===========================
   WHY US
   =========================== */

.why-us {
  background: var(--white);
  position: relative;
}

.why-us::before { display: none; }

.why-us__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-us__text .section__tag { display: block; }
.why-us__text h2 {
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.why-us__lead {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 36px;
}

.why-us__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.why-us__list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.check-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-top: 2px;
}

.why-us__list li div strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.why-us__list li div span {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

.why-us__visual { position: relative; }

.why-us__img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  position: relative;
}

.why-us__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}
.why-us__img-wrap:hover img { transform: scale(1.03); }

.why-us__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(27, 45, 94, 0.75) 100%
  );
  pointer-events: none;
}

.why-us__metrics-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border-top: 1px solid rgba(255,255,255,0.15);
}

.why-us__metric {
  padding: 20px 16px;
  text-align: center;
  background: rgba(27, 45, 94, 0.55);
  backdrop-filter: blur(12px);
}

.why-us__metric-num {
  display: block;
  font-size: 30px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.why-us__metric-pct {
  font-size: 18px;
  color: var(--orange);
}

.why-us__metric-label {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  margin-top: 5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* keep old classes so JS doesn't break */
.why-us__card-stack { display: none; }
.metric-card { display: none; }
.metric-bar__fill { width: 0; }
.highlight-badge { display: none; }

/* ===========================
   ABOUT
   =========================== */

.about { background: var(--off-white); }

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

.about__img-wrap {
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  transition: transform 0.6s ease;
}

.about__img-wrap:hover img { transform: scale(1.03); }

.about__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(27, 45, 94, 0.35) 100%
  );
  pointer-events: none;
}

.about__visual { position: relative; }

.about__tag-float {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--orange);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
}

.about__text .section__tag { display: block; }
.about__text h2 {
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.about__text p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about__info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--gray-200);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}
.info-item svg { color: var(--orange); min-width: 20px; margin-top: 2px; }

/* ===========================
   CONTACT
   =========================== */

.contact { background: var(--navy); }
.contact .section__tag { color: var(--orange); }
.contact .section__header h2 { color: var(--white); }
.contact .section__header p { color: rgba(255,255,255,0.5); }

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
}

.contact__form-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 40px;
}

.contact__form { display: flex; flex-direction: column; gap: 20px; }

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form__group label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.3px;
}

.form__group input,
.form__group select,
.form__group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  padding: 12px 16px;
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form__group input::placeholder,
.form__group textarea::placeholder { color: rgba(255,255,255,0.25); }

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--orange);
  background: rgba(255,107,53,0.06);
  box-shadow: 0 0 0 3px rgba(255,107,53,0.12);
}

.form__group select option { background: var(--navy-mid); color: var(--white); }

.form__group textarea { resize: vertical; min-height: 100px; }

.file-drop {
  border: 2px dashed rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  font-size: 14px;
  transition: var(--transition);
  cursor: pointer;
}
.file-drop:hover { border-color: var(--orange); color: rgba(255,255,255,0.6); }
.file-drop svg { color: rgba(255,255,255,0.3); }
.file-link { color: var(--orange); cursor: pointer; }
.file-drop input[type="file"] { display: none; }
.file-name { color: var(--orange); font-size: 13px; }

/* SMS Consent */
.form__group--consent {
  gap: 12px;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.consent-label input[type="checkbox"] {
  display: none;
}

.consent-box {
  width: 20px;
  min-width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 5px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  transition: var(--transition);
}

.consent-label input[type="checkbox"]:checked + .consent-box {
  background: var(--orange);
  border-color: var(--orange);
}

.consent-label input[type="checkbox"]:checked + .consent-box::after {
  content: '';
  display: block;
  width: 5px;
  height: 9px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translate(-1px, -1px);
}

.consent-text {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  font-weight: 400;
}

.sms-disclaimer {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sms-disclaimer p {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
}

.sms-disclaimer strong {
  color: rgba(255,255,255,0.65);
  font-weight: 600;
}

.sms-disclaimer a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.sms-disclaimer a:hover { color: #ff9a5c; }

.form__success {
  display: none;
  align-items: center;
  gap: 12px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #86efac;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
}
.form__success.visible { display: flex; }

.contact__info { position: sticky; top: 100px; }

.contact__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 36px;
}

.contact__card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}

.contact__detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: var(--transition);
}
.contact__detail:hover .contact__detail-value { color: var(--orange); }

.contact__detail-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--orange-glow);
  border: 1px solid rgba(255,107,53,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}

.contact__detail-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 2px;
}

.contact__detail-value {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  transition: var(--transition);
}

.contact__map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

/* ===========================
   FOOTER
   =========================== */

.footer {
  background: #0F1E3D;
  padding: 64px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  margin-top: 12px;
  max-width: 300px;
}

.footer__links h4,
.footer__contact h4 {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer__links ul { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer__links a:hover { color: var(--orange); }

.footer__contact p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 8px;
}
.footer__contact a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer__contact a:hover { color: var(--orange); }

.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer__bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.25);
}
.footer__bottom a {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  transition: var(--transition);
}
.footer__bottom a:hover { color: var(--orange); }

/* ===========================
   REVEAL ANIMATIONS
   =========================== */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why-us__inner,
  .about__inner { gap: 48px; }
  .contact__inner {
    grid-template-columns: 1fr;
  }
  .contact__info { position: static; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav__inner {
    grid-template-columns: 1fr auto 1fr;
    padding: 16px 20px;
  }
  .nav.scrolled .nav__inner { padding: 12px 20px; }
  .nav__links { display: none; }
  .nav__cta-btn { display: none; }
  .nav__burger { display: flex; }
  .nav__logo { font-size: 28px; }
  .nav.scrolled .nav__logo { font-size: 22px; }

  .hero { padding: 120px 24px 60px; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }

  .services__grid { grid-template-columns: 1fr; }

  .why-us__inner,
  .about__inner { grid-template-columns: 1fr; }
  .about__visual { order: -1; }

  .form__row { grid-template-columns: 1fr; }

  .contact__form-wrap { padding: 24px; }
  .contact__inner { gap: 32px; }

  .footer__inner { grid-template-columns: 1fr; gap: 32px; }

  .hide-mobile { display: none; }

  .section { padding: 72px 0; }
}

@media (max-width: 480px) {
  .hero__title { letter-spacing: -1px; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 20px 12px; }
  .stat__num { font-size: 28px; }
  .btn { padding: 12px 22px; font-size: 14px; }
}
