/* ═══════════════════════════════════════════════════════
   CARE INTEGRITY AGENCY - Main Stylesheet
   Brand: Deep navy + gold (#C9A84C / #F0C040)
═══════════════════════════════════════════════════════ */

:root {
  --gold: #C9A84C;
  --gold-light: #F0C040;
  --gold-dark: #a07d2a;
  --navy: #0D1B2A;
  --navy-mid: #1a2d45;
  --navy-light: #243b55;
  --white: #ffffff;
  --off-white: #f8f7f4;
  --text: #2c2c2c;
  --text-muted: #666666;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-gold: 0 4px 24px rgba(201,168,76,0.25);
  --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0,0,0,.25);
    z-index: 9999;
    transition: all .3s ease;
}

.whatsapp-float:hover {
    background: #1EBE5D;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,.3);
}

.whatsapp-float svg {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 12px 18px;
        font-size: 14px;
    }

    .whatsapp-float span {
        display: none;
    }

    .whatsapp-float {
        width: 58px;
        height: 58px;
        justify-content: center;
        padding: 0;
        border-radius: 50%;
    }
}



a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

.section-pad { padding: 80px 0; }
.bg-light { background: var(--off-white); }

/* ── SECTION TAG ── */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}
.section-header h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--navy); margin-bottom: 12px; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; }

/* ═══════════════════════════════════
   BUTTONS
═══════════════════════════════════ */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 14px 32px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.03em;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 32px;
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-nav {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy) !important;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 0.88rem;
  transition: var(--transition);
}
.btn-nav:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

/* ═══════════════════════════════════
   HEADER / NAV
═══════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  flex-shrink: 0;
}

.logo-img { width: 44px; height: 44px; object-fit: contain; }

.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}
.brand-name small { font-size: 0.7rem; color: var(--gold); font-family: 'Inter', sans-serif; letter-spacing: 0.08em; text-transform: uppercase; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links li a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-links li a:hover, .nav-links li a.active {
  color: var(--gold-light);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ═══════════════════════════════════
   HERO (Home)
═══════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 50%, #1a3a5c 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.07) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding-top: 72px;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 24px;
  max-width: 720px;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
}
.hero-wave svg { width: 100%; height: 80px; display: block; }

/* ═══════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════ */
.page-hero {
  position: relative;
  padding: 140px 0 100px;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 60%, #1a3a5c 100%);
  overflow: hidden;
}
.page-hero-sm { padding: 130px 0 90px; }

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(201,168,76,0.08) 0%, transparent 65%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.page-hero-content h1 { font-size: clamp(2rem, 4vw, 3rem); color: var(--white); margin-bottom: 16px; }
.page-hero-content p { font-size: 1.1rem; color: rgba(255,255,255,0.75); }

/* ═══════════════════════════════════
   TWO COL
═══════════════════════════════════ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col.flip { direction: rtl; }
.two-col.flip > * { direction: ltr; }

.intro-text h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--navy); margin-bottom: 20px; }
.intro-text p { color: var(--text-muted); margin-bottom: 16px; font-size: 1.02rem; }
.intro-text .btn-primary { margin-top: 8px; }

/* STAT CARDS */
.intro-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat-card {
  background: var(--navy);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}
.stat-card:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); transform: translateY(-3px); }
.stat-num { display: block; font-size: 2rem; font-weight: 700; color: var(--gold-light); font-family: 'Playfair Display', serif; }
.stat-label { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.65); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.08em; }

/* ═══════════════════════════════════
   SERVICE CARDS (Home)
═══════════════════════════════════ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid #e8e4da;
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--gold); }
.service-card:hover::before { opacity: 1; }
.service-icon { font-size: 2.2rem; margin-bottom: 16px; }
.service-card h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.7; }
.card-link { font-size: 0.85rem; font-weight: 600; color: var(--gold-dark); transition: var(--transition); }
.card-link:hover { color: var(--gold); }

/* ═══════════════════════════════════
   WHY CHOOSE / GOLD BOX
═══════════════════════════════════ */
.gold-box {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 4px;
  box-shadow: var(--shadow-gold);
}
.gold-box-inner {
  background: var(--navy);
  border-radius: 10px;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-logo { width: 160px; height: 160px; object-fit: contain; }

.why-text h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--navy); margin-bottom: 24px; }
.why-list { list-style: none; padding: 0; margin-bottom: 32px; }
.why-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-size: 1rem; color: var(--text); }
.check { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; background: var(--gold); border-radius: 50%; color: var(--navy); font-size: 0.65rem; font-weight: 700; flex-shrink: 0; margin-top: 3px; }

/* ═══════════════════════════════════
   CTA SECTION
═══════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.12) 0%, transparent 65%);
}
.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.cta-inner h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--white); margin-bottom: 16px; }
.cta-inner p { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 40px; }

/* CONTACT FORM */
.cta-form {
  display: grid;
  gap: 16px;
  text-align: left;
}
.cta-form input,
.cta-form select,
.cta-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}
.cta-form input::placeholder,
.cta-form textarea::placeholder { color: rgba(255,255,255,0.4); }
.cta-form select { color: rgba(255,255,255,0.7); }
.cta-form select option { background: var(--navy); color: var(--white); }
.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus { border-color: var(--gold); background: rgba(255,255,255,0.1); }
.cta-form .btn-primary { justify-self: center; min-width: 200px; font-size: 1rem; padding: 16px 40px; }
.form-fallback-note { grid-column: 1 / -1; justify-self: center; font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-top: 4px; }
.form-fallback-note a { color: var(--gold); text-decoration: underline; }

/* ═══════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════ */
.about-visual .gold-box { max-width: 400px; }

/* Mission/Vision cards */
.mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.mv-card {
  background: var(--white);
  border: 1px solid #e8e4da;
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
}
.mv-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.mv-card.featured-mv {
  background: var(--navy);
  border-color: var(--gold);
}
.mv-card.featured-mv h3, .mv-card.featured-mv p { color: var(--white); }
.mv-card.featured-mv p { color: rgba(255,255,255,0.75); }
.mv-icon { font-size: 2.5rem; margin-bottom: 16px; }
.mv-card h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: 12px; }
.mv-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }

/* VALUES */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.value-item {
  border-left: 3px solid var(--gold);
  padding-left: 24px;
}
.value-num { font-size: 2rem; font-weight: 700; color: rgba(201,168,76,0.2); font-family: 'Playfair Display', serif; margin-bottom: 8px; }
.value-item h4 { font-size: 1.1rem; color: var(--navy); margin-bottom: 8px; }
.value-item p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ═══════════════════════════════════
   SERVICES DETAIL PAGE
═══════════════════════════════════ */
.service-detail {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 16px;
}
.service-detail.reverse {
  grid-template-columns: 1fr 140px;
}
.service-detail.reverse .service-detail-icon { order: 2; }

.service-detail-icon {
  font-size: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border: 2px solid rgba(201,168,76,0.3);
  border-radius: var(--radius);
  flex-shrink: 0;
}

.service-detail-body .section-tag { margin-bottom: 12px; }
.service-detail-body h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); color: var(--navy); margin-bottom: 16px; }
.service-detail-body p { color: var(--text-muted); margin-bottom: 24px; font-size: 1rem; line-height: 1.8; }

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.service-features li {
  font-size: 0.9rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.service-features li::before {
  content: '✔';
  color: var(--gold);
  font-size: 0.75rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.service-divider {
  border: none;
  border-top: 1px solid #e8e4da;
  margin: 56px 0;
}

/* ═══════════════════════════════════
   DISCLAIMER SECTION
═══════════════════════════════════ */
.disclaimer-section { padding: 0 0 56px; }
.disclaimer-box {
  background: #fff9ed;
  border: 1px solid rgba(201,168,76,0.4);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px 32px;
}
.disclaimer-box h4 { font-size: 1rem; color: var(--navy); margin-bottom: 10px; font-family: 'Inter', sans-serif; font-weight: 600; }
.disclaimer-box p { font-size: 0.88rem; color: #666; line-height: 1.7; }

/* ═══════════════════════════════════
   LEGAL PAGE
═══════════════════════════════════ */
.legal-tabs-section { background: var(--off-white); padding: 0; border-bottom: 1px solid #e8e4da; }
.legal-tabs {
  display: flex;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.legal-tab {
  display: inline-block;
  padding: 18px 32px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 3px solid transparent;
  transition: var(--transition);
  cursor: pointer;
}
.legal-tab:hover { color: var(--gold-dark); }
.legal-tab.active-tab { color: var(--navy); border-bottom-color: var(--gold); }

.legal-container { max-width: 860px; }
.legal-doc {}
.legal-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 2px solid var(--gold);
}
.legal-icon { font-size: 3rem; flex-shrink: 0; }
.legal-header h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--navy); margin-bottom: 6px; }
.legal-meta { font-size: 0.85rem; color: var(--text-muted); }

.legal-body h3 {
  font-size: 1.15rem;
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin: 32px 0 12px;
  padding-left: 16px;
  border-left: 3px solid var(--gold);
}
.legal-body p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 12px; line-height: 1.8; }
.legal-body ul { margin: 12px 0 16px 16px; }
.legal-body ul li {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
  line-height: 1.7;
}
.legal-body ul li::before {
  content: '•';
  color: var(--gold);
  position: absolute;
  left: 0;
  font-weight: 700;
}

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
.site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,0.2);
  padding-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand .footer-logo { width: 48px; height: 48px; object-fit: contain; margin-bottom: 10px; display: block; }
.brand-name-footer {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 280px; }

.footer-links h4 { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; font-family: 'Inter', sans-serif; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-links ul li a:hover { color: var(--gold-light); }
.disclaimer-mini { font-size: 0.75rem; color: rgba(255,255,255,0.35); margin-top: 16px; line-height: 1.6; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.35); }

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .two-col { gap: 40px; }
}

@media (max-width: 768px) {
  .section-pad { padding: 60px 0; }

  /* Nav mobile */
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--navy);
    border-top: 1px solid rgba(201,168,76,0.2);
    padding: 16px 24px 24px;
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links li a { display: block; width: 100%; padding: 12px 16px; }
  .btn-nav { text-align: center; }

  /* Two col → single */
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .two-col.flip { direction: ltr; }

  /* Services detail */
  .service-detail { grid-template-columns: 1fr; gap: 24px; }
  .service-detail.reverse { grid-template-columns: 1fr; }
  .service-detail.reverse .service-detail-icon { order: 0; }
  .service-detail-icon { width: 80px; height: 80px; font-size: 2.5rem; }
  .service-features { grid-template-columns: 1fr; }

  /* Hero */
  .hero-content h1 { font-size: 2.2rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-primary, .hero-btns .btn-outline { text-align: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand p { max-width: 100%; }

  /* Legal tabs */
  .legal-tabs { overflow-x: auto; }
  .legal-tab { padding: 14px 20px; white-space: nowrap; font-size: 0.85rem; }
  .legal-header { flex-direction: column; gap: 16px; }

  /* Stat cards */
  .intro-cards { grid-template-columns: 1fr 1fr; gap: 14px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-content h1 { font-size: 1.9rem; }
  .intro-cards { grid-template-columns: 1fr 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
}
