/* ============================================================
   ACMT — Professional Consulting Website
   Design: Clean, corporate, no gradients
   ============================================================ */

:root {
  --primary: #e07c2a;
  --primary-dark: #c0621a;
  --primary-light: #fef3e8;
  --dark: #1b2a4a;
  --text: #1f2937;
  --muted: #6b7280;
  --light: #f9fafb;
  --white: #ffffff;
  --border: #e5e7eb;
  --shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.09);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 6px;
  --radius-lg: 12px;
  --transition: all 0.25s ease;
}

/* ── Reset ─────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* ── Typography ─────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
}

/* ── Layout ─────────────────────────────────────────────── */
.container {
  width: 92%;
  max-width: 1160px;
  margin: 0 auto;
}
.section {
  padding: 80px 0;
}
.section--light {
  background: var(--light);
}
.section--dark {
  background: var(--dark);
}

/* ── Section header ─────────────────────────────────────── */
.section-header {
  margin-bottom: 48px;
}
.section-header .label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}
.section-header h2 {
  font-size: 2.2rem;
  color: var(--dark);
}
.section-header h2 span {
  color: var(--primary);
}
.section-header p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
}
.section-header.centered {
  text-align: center;
}
.section-header.centered p {
  margin-left: auto;
  margin-right: auto;
}

/* ── Divider accent ─────────────────────────────────────── */
.accent-line {
  width: 48px;
  height: 3px;
  background: var(--primary);
  margin: 12px 0 0;
  border-radius: 2px;
}
.centered .accent-line {
  margin: 12px auto 0;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}
.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

/* ── Card ────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

/* ── Badge ───────────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 4px 14px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ─────────────────────────────────────────────────────────
   HEADER / NAV
   ───────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
}
.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--dark);
  letter-spacing: -0.5px;
}
.logo-sub {
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--muted);
  display: block;
  line-height: 1;
}
.logo-img {
  height: 40px;
  max-width: 150px;
  width: auto;
  object-fit: contain;
  display: block;
}
.footer-logo-img {
  height: 40px;
  filter: brightness(0) invert(1);
}

/* Nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav-link:hover,
.nav-link.active {
  color: var(--dark);
  background: var(--light);
}
.nav-link.active {
  color: var(--primary);
  font-weight: 600;
}
.nav-cta {
  margin-left: 12px;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  margin: 5px 0;
  transition: var(--transition);
}

/* ─────────────────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────────────────── */
.hero {
  background: var(--dark);
  color: var(--white);
  padding: 100px 0 80px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
}
.hero h1 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}
.hero h1 em {
  font-style: normal;
  color: var(--primary);
}
.hero-desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ─────────────────────────────────────────────────────────
   SERVICES (5 pillars)
   ───────────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  margin-bottom: 14px;
}
.service-card h3 {
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ─────────────────────────────────────────────────────────
   REFERENCES PREVIEW (homepage)
   ───────────────────────────────────────────────────────── */
.ref-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.ref-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: var(--transition);
}
.ref-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}
.ref-country {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
}
.ref-card h4 {
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.ref-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}
.ref-card .year {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary);
}

/* ─────────────────────────────────────────────────────────
   TABLE (references page)
   ───────────────────────────────────────────────────────── */
.ref-table-wrapper {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
table {
  width: 100%;
  border-collapse: collapse;
}
thead th {
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 20px;
  text-align: left;
}
thead th:first-child {
  border-radius: 0;
}
tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
tbody tr:last-child {
  border-bottom: none;
}
tbody tr:hover {
  background: var(--primary-light);
}
tbody td {
  padding: 14px 20px;
  font-size: 0.9rem;
  color: var(--text);
  vertical-align: top;
}
tbody td:first-child {
  font-weight: 600;
  color: var(--dark);
}
.tag-year {
  display: inline-block;
  padding: 2px 10px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
}

/* ─────────────────────────────────────────────────────────
   FORMATION PAGE
   ───────────────────────────────────────────────────────── */
.formation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.formation-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.formation-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.formation-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.formation-card h3 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 10px;
}
.formation-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}
.formation-client-table {
  margin-top: 16px;
  font-size: 0.82rem;
}
.formation-client-table li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.formation-client-table li:last-child {
  border-bottom: none;
}
.formation-client-table li::before {
  content: '—';
  color: var(--primary);
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────────────────
   ABOUT / VISION PAGE
   ───────────────────────────────────────────────────────── */
.vision-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.vision-content h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
.vision-content p {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 16px;
}
.positioning-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.positioning-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--light);
  border-radius: var(--radius);
  border-left: 3px solid var(--primary);
}
.positioning-item i {
  font-size: 1.2rem;
  color: var(--primary);
  flex-shrink: 0;
}
.positioning-item span {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--dark);
}
.sectors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.sector-item {
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sector-item::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Director */
.director-section {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: start;
}
.director-photo {
  position: sticky;
  top: 100px;
}
.director-photo img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.director-name {
  margin-top: 16px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
}
.director-title {
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}
.director-quote {
  position: relative;
  padding: 36px;
  background: var(--dark);
  border-radius: var(--radius-lg);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 28px;
}
.director-quote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 24px;
  font-family: Georgia, serif;
  font-size: 6rem;
  color: var(--primary);
  line-height: 1;
}
.director-body p {
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.75;
}
.director-body strong {
  color: var(--dark);
}
.director-sig {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.director-sig .name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
}
.director-sig .role {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ─────────────────────────────────────────────────────────
   PARTNERS
   ───────────────────────────────────────────────────────── */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  align-items: center;
}
.partner-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  min-height: 72px;
}
.partner-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}
.partner-item span {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
}

/* Clients mosaic */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  align-items: center;
}
.client-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 90px;
  transition: var(--transition);
}
.client-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}
.client-item img {
  max-height: 45px;
  max-width: 80%;
  object-fit: contain;
}
.client-item span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  line-height: 1.3;
  display: none;
}

/* ─────────────────────────────────────────────────────────
   CTA BAND
   ───────────────────────────────────────────────────────── */
.cta-band {
  background: var(--primary);
  padding: 60px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.cta-band h2 {
  color: var(--white);
  font-size: 1.8rem;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.75);
  margin-top: 6px;
  font-size: 0.97rem;
}

/* ─────────────────────────────────────────────────────────
   PAGE HERO (inner pages)
   ───────────────────────────────────────────────────────── */
.page-hero {
  background: var(--dark);
  padding: 64px 0;
  color: var(--white);
}
.page-hero .label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-hero .label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--primary);
}
.page-hero h1 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 12px;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  max-width: 520px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: var(--white);
}
.breadcrumb span {
  color: var(--primary);
  font-weight: 600;
}

/* ─────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand .logo-text {
  color: var(--white);
  font-size: 1.4rem;
}
.footer-brand p {
  margin-top: 12px;
  font-size: 0.88rem;
  line-height: 1.65;
  max-width: 280px;
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--primary);
}
.footer-col address {
  font-style: normal;
  font-size: 0.88rem;
  line-height: 1.8;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

/* ─────────────────────────────────────────────────────────
   REVEAL ANIMATION
   ───────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ─────────────────────────────────────────────────────────
   MOBILE NAV OVERLAY
   ───────────────────────────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 1000;
  flex-direction: column;
  padding: 28px 24px;
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.mobile-nav-close {
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--dark);
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.mobile-nav-links a {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  padding: 14px 12px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.mobile-nav-links a:hover {
  background: var(--light);
  color: var(--primary);
}
.mobile-nav-links a.active {
  color: var(--primary);
}

/* ─────────────────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .formation-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .partners-grid,
  .clients-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ref-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 56px 0;
  }
  .section-header h2 {
    font-size: 1.7rem;
  }
  .vision-two-col {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .sectors-grid {
    grid-template-columns: 1fr 1fr;
  }
  .director-section {
    grid-template-columns: 1fr;
  }
  .director-photo {
    position: static;
  }
  .director-quote {
    padding: 56px 24px 28px;
  }
  .director-quote::before {
    font-size: 4rem;
    top: 8px;
    left: 16px;
  }
  .formation-grid {
    grid-template-columns: 1fr;
  }
  .partners-grid,
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .page-hero h1 {
    font-size: 1.9rem;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    flex-direction: column;
  }
  .partners-grid,
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.white-text {
  color: var(--white) !important;
}
