/* ============================================
   GRIP TECH JAPAN - Main Stylesheet
   Base colors: White + #0045FF
   ============================================ */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Noto Sans JP", "Inter", sans-serif;
  color: #1a1a1a;
  line-height: 1.8;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}

ul {
  list-style: none;
}

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

/* ---------- Section Title ---------- */
.section-title {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 48px;
  letter-spacing: 0.02em;
}

.section-title--left {
  text-align: left;
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}

.section-title__sub {
  font-size: 0.875rem;
  font-weight: 400;
  color: #888;
  letter-spacing: 0.12em;
}

.section-subtitle {
  text-align: center;
  font-size: 0.875rem;
  color: #888;
  letter-spacing: 0.12em;
  margin-top: -40px;
  margin-bottom: 32px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  white-space: nowrap;
}

.btn--outline-white {
  border: 2px solid #fff;
  color: #0045FF;
  padding: 14px 32px;
  font-size: 0.9375rem;
  background: #fff;
  border-radius: 50px;
}

.btn--outline-white:hover {
  background: #0045FF;
  color: #fff;
  border-color: #0045FF;
}

.btn--outline-blue {
  border: 2px solid #1a1a1a;
  color: #1a1a1a;
  padding: 10px 24px;
  font-size: 0.875rem;
  background: transparent;
}

.btn--outline-blue:hover {
  background: #0045FF;
  color: #fff;
  border-color: #0045FF;
}

.btn--white {
  background: #fff;
  color: #0045FF;
  border: none;
  padding: 18px 36px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.btn--white:hover {
  background: #e8eeff;
}

.btn--lg {
  padding: 18px 40px;
  font-size: 1.0625rem;
}

.btn--sm {
  padding: 8px 20px;
  font-size: 0.8125rem;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  transition: box-shadow 0.3s;
}

.header.is-scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 80px;
  gap: 24px;
}

.header__logo {
  flex-shrink: 0;
}

/* Logo */
.header__logo-img {
  height: 48px;
  width: auto;
  display: block;
}

.footer__logo-img {
  height: 40px;
  width: auto;
  display: block;
}

/* Navigation */
.header__nav {
  flex: 1;
}

.nav-list {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.nav-icon {
  width: 18px;
  height: 18px;
  vertical-align: -3px;
  margin-right: 6px;
}

.nav-list__link {
  display: flex;
  align-items: center;
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #333;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.nav-list__link:hover,
.nav-list__link.is-active {
  color: #0045FF;
}

.nav-list__link.is-active {
  font-weight: 700;
}

/* Dropdown */
.nav-list__item--dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  z-index: 100;
}

.nav-list__item--dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown__link {
  display: block;
  padding: 10px 20px;
  font-size: 0.875rem;
  color: #333;
  transition: background 0.2s, color 0.2s;
}

.dropdown__link:hover {
  background: #f0f4ff;
  color: #0045FF;
}


/* Header Actions */
.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.header__phone {
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.header__phone-info {
  display: flex;
  flex-direction: column;
}

.header__phone-number {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #0045FF;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.header__phone-hours {
  font-size: 0.6875rem;
  color: #888;
  line-height: 1.3;
}

.header__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0045FF;
  color: #fff;
  padding: 10px 20px;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  border-radius: 4px;
  transition: background 0.25s;
}

.header__cta-btn:hover {
  background: #0038cc;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 6px;
  padding: 0;
  z-index: 1001;
}

.hamburger__line {
  display: block;
  width: 24px;
  height: 2px;
  background: #1a1a1a;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.is-open .hamburger__line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.is-open .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open .hamburger__line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  height: calc(100vh - 80px);
  height: calc(100dvh - 80px);
  background: rgba(0, 69, 255, 0.97);
  padding: 24px 20px;
  overflow-y: auto;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s, opacity 0.3s;
  z-index: 100;
}

.mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.mobile-menu__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mobile-menu__card {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  line-height: 1.4;
}

.mobile-menu__card:hover {
  background: rgba(255, 255, 255, 0.2);
}

.mobile-menu__card--primary {
  background: #fff;
  color: #0045FF;
  border-color: #fff;
  font-weight: 700;
}

.mobile-menu__card--primary:hover {
  background: #e8eeff;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url('logo.png2.png') center center / cover no-repeat;
  z-index: 0;
}

.hero__overlay {
  display: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  padding-left: 50%;
  color: #fff;
}

.hero__title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

.hero__subtitle {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

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

/* ============================================
   CLIENTS
   ============================================ */
.clients {
  padding: 12px 0 20px;
  background: #f8f9fb;
  border-bottom: 1px solid #eee;
}

.clients__lead {
  text-align: center;
  font-size: 0.875rem;
  color: #888;
  margin-bottom: 12px;
}

.clients__photos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: nowrap;
  overflow-x: auto;
}

.clients__photo {
  width: 160px;
  height: 160px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
}

.clients__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 80px 0;
  background: #f5f6fa;
}

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

.service-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.service-card__image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-card__image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card__image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card__image-placeholder--blue {
  background: linear-gradient(135deg, #0045FF 0%, #00b4d8 100%);
}

.service-card__image-placeholder--dark {
  background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
}

.service-card__image-placeholder span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  font-weight: 500;
}

.service-card__badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: #0045FF;
  color: #fff;
  padding: 6px 16px;
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: 3px;
}

.service-card__body {
  padding: 24px;
}

.service-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-card__icons {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.service-card__icons--center {
  justify-content: center;
}

.service-card__icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.service-card__icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f0f4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.service-card__icon-circle svg {
  width: 100%;
  height: 100%;
}

.service-card__icon-item span {
  font-size: 0.6875rem;
  color: #666;
  white-space: nowrap;
}

.service-card__features {
  margin-bottom: 20px;
}

.service-card__features li {
  position: relative;
  padding-left: 20px;
  font-size: 0.875rem;
  line-height: 2;
  color: #444;
}

.service-card__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0045FF;
  font-weight: 700;
}

.service-card--green .service-card__features li::before {
  color: #1fa848;
}

.service-card--green .service-card__icon-circle {
  background: #e8f5e9;
}

.service-card--orange .service-card__features li::before {
  color: #f08c00;
}

.service-card--orange .service-card__icon-circle {
  background: #fff3e0;
}

.service-card__link {
  display: inline-block;
  color: #0045FF;
  font-size: 0.875rem;
  font-weight: 600;
  transition: color 0.2s;
}

.service-card__link:hover {
  color: #0038cc;
}

/* ============================================
   NUMBERS
   ============================================ */
.numbers {
  padding: 80px 0;
  background: #fff;
}

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

.numbers__item {
  text-align: center;
  padding: 24px 16px;
}

.numbers__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
}

.numbers__icon svg {
  width: 100%;
  height: 100%;
}

.numbers__label {
  font-size: 0.8125rem;
  color: #888;
  margin-bottom: 8px;
}

.numbers__value {
  font-size: 0.875rem;
  color: #333;
  font-weight: 500;
}

.numbers__big {
  font-family: "Inter", sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: #0045FF;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

/* ============================================
   CASES
   ============================================ */
.cases {
  padding: 80px 0 60px;
  background: #f5f6fa;
}

.cases__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 32px;
  gap: 0;
}

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

.cases__more {
  text-align: center;
  margin-top: 24px;
}

.case-card {
  overflow: hidden;
}

.case-card__image {
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 10px;
}

.case-card__image-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 50%, #94a3b8 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 8px;
  position: relative;
}

.case-card__ba-labels {
  display: flex;
  gap: 4px;
  width: 100%;
}

.case-card__ba-label {
  flex: 1;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 0.625rem;
  font-weight: 700;
  padding: 4px 0;
  letter-spacing: 0.08em;
}

.case-card__image--split {
  display: flex;
  aspect-ratio: 4 / 3;
}

.case-card__half {
  flex: 1;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.case-card__half img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.case-card__half--before {
  border-right: 1px solid #fff;
}

.case-card__half--after {
  border-left: 1px solid #fff;
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 50%, #94a3b8 100%);
}

.case-card__half .case-card__ba-label {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 0 8px;
  padding: 4px 0;
}

.case-card__title {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #333;
  text-align: center;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 60px 0 80px;
  background: #fff;
}

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

.testimonial-card {
  background: #fff;
  border: 1px solid #e8ecf2;
  border-radius: 8px;
  padding: 28px;
  transition: box-shadow 0.3s;
}

.testimonial-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.testimonial-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.testimonial-card__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.testimonial-card__icon svg {
  width: 100%;
  height: 100%;
}

.testimonial-card__category {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
}

.testimonial-card__category small {
  font-size: 0.7em;
  font-weight: 500;
}

.testimonial-card__text {
  font-size: 0.875rem;
  line-height: 1.9;
  color: #444;
  margin-bottom: 16px;
}

.testimonial-card__author {
  font-size: 0.8125rem;
  color: #999;
}

/* ============================================
   CTA
   ============================================ */
.cta {
  padding: 56px 0;
  background: linear-gradient(135deg, #0045FF 0%, #0033cc 100%);
  color: #fff;
}

.cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.cta__subtitle {
  font-size: 0.9375rem;
  opacity: 0.85;
}

.cta__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cta__phone {
  text-align: center;
}

.cta__phone-label {
  font-size: 0.75rem;
  opacity: 0.8;
  margin-bottom: 4px;
}

.cta__phone-number {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
}

.cta__phone-hours {
  font-size: 0.6875rem;
  opacity: 0.7;
  margin-top: 4px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #fff;
  color: #333;
  padding: 48px 0 0;
  border-top: 1px solid #e0e0e0;
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.footer__company-info {
  margin-top: 16px;
  font-size: 0.75rem;
  color: #888;
  line-height: 1.8;
}

.footer__nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__nav a {
  font-size: 0.8125rem;
  color: #555;
  transition: color 0.2s;
}

.footer__nav a:hover {
  color: #0045FF;
}

.footer__nav-item--dropdown {
  position: relative;
}

.footer__dropdown {
  position: absolute;
  bottom: 100%;
  left: 0;
  background: #f5f5f5;
  border-radius: 6px;
  padding: 8px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  margin-bottom: 8px;
}

.footer__nav-item--dropdown:hover .footer__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.footer__dropdown a {
  display: block;
  padding: 6px 16px;
  white-space: nowrap;
}

.footer__social {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 24px 0;
  border-top: 1px solid #e0e0e0;
}

.footer__social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #555;
  text-decoration: none;
  font-size: 0.8125rem;
  transition: color 0.2s;
}

.footer__social-link:hover {
  color: #E1306C;
}

.footer__social-icon {
  width: 24px;
  height: 24px;
}

.footer__social-label {
  font-size: 0.6875rem;
  color: #999;
  display: block;
  line-height: 1.2;
}

.footer__social-account {
  font-weight: 500;
  display: block;
  line-height: 1.2;
}

.footer__bottom {
  padding: 20px 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.75rem;
  color: #aaa;
}

/* ============================================
   RESPONSIVE - Tablet (max-width: 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .header__nav {
    display: none;
  }

  .header__phone {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .hero__title {
    font-size: 2.25rem;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .numbers__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cases__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta__inner {
    flex-direction: column;
    text-align: center;
  }

  .cta__actions {
    justify-content: center;
  }
}

/* ============================================
   RESPONSIVE - Mobile (max-width: 640px)
   ============================================ */
@media (max-width: 640px) {
  .header__inner {
    height: 64px;
  }

  .header__cta-btn {
    display: none;
  }

  .mobile-menu {
    top: 64px;
    height: calc(100vh - 64px);
    height: calc(100dvh - 64px);
  }

  html {
    scroll-padding-top: 64px;
  }

  .hero {
    min-height: 480px;
    padding: 100px 0 60px;
  }

  .hero__content {
    padding-left: 24px;
  }

  .hero__title {
    font-size: 1.75rem;
  }

  .hero__subtitle {
    font-size: 0.9375rem;
  }

  .hero__buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero__buttons .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .clients__logos {
    gap: 12px;
  }

  .clients__logo-item {
    font-size: 0.6875rem;
    padding: 6px 10px;
  }

  .section-title {
    font-size: 1.375rem;
    margin-bottom: 32px;
  }

  .services {
    padding: 60px 0;
  }

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

  .numbers {
    padding: 60px 0;
  }

  .numbers__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .numbers__big {
    font-size: 2rem;
  }

  .cases {
    padding: 60px 0 40px;
  }

  .cases__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .testimonials {
    padding: 40px 0 60px;
  }

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

  .testimonial-card {
    padding: 20px;
  }

  .cta {
    padding: 40px 0;
  }

  .cta__title {
    font-size: 1.25rem;
  }

  .cta__phone-number {
    font-size: 1.5rem;
  }

  .cta__actions {
    flex-direction: column;
    width: 100%;
  }

  .btn--white {
    width: 100%;
  }

  .footer__inner {
    flex-direction: column;
    gap: 24px;
  }

  .footer__nav {
    flex-direction: column;
    gap: 12px;
  }
}

/* ============================================
   RESPONSIVE - Small Mobile (max-width: 375px)
   ============================================ */
@media (max-width: 375px) {
  .container {
    padding: 0 16px;
  }

  .hero__title {
    font-size: 1.5rem;
  }

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

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