/* ── RS Consulting – Shared Stylesheet ── */

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

:root {
  --teal:        #025CC2;
  --teal-dark:   #014FA8;
  --teal-deep:   #013070;
  --teal-light:  #E5F0FA;
  --lime:        #C8E02B;
  --lime-dark:   #4D5A0A;
  --lime-bg:     #F3FAC8;
  --white:       #FFFFFF;
  --off-white:   #F7F9F8;
  --gray-50:     #F2F4F3;
  --gray-100:    #E4E8E6;
  --gray-300:    #B0BDB7;
  --gray-500:    #6B7B74;
  --gray-700:    #3A4740;
  --text:        #0D1F1A;
  --nav-height:  90px;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}

body.subpage { margin-top: var(--nav-height); }

h1, h2, h3, h4, h5 { font-family: "Raleway", sans-serif; line-height: 1.25; }
a { text-decoration: none; color: inherit; }

/* ── LANGUAGE TOGGLE ── */
[data-lang="en"] { display: none; }
body.lang-en [data-lang="de"] { display: none; }
body.lang-en [data-lang="en"] { display: revert; }

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: var(--nav-height);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: 0 1px 16px rgba(0,0,0,0.06);
}

.nav-logo img { height: 80px; width: auto; display: block; }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-500);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--teal); }

.nav-cta {
  background: var(--teal) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--teal-dark) !important; }

.lang-btn {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--gray-100);
  border-radius: 20px;
  overflow: hidden;
}

.lang-btn button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.3rem 0.7rem;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--gray-500);
  transition: all 0.2s;
}

.lang-btn button.active { background: var(--teal); color: var(--white); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.85rem 1.75rem;
  border-radius: 4px;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); }

.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--teal);
  color: var(--teal);
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.85rem 1.75rem;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

.btn-outline:hover { background: var(--teal); color: var(--white); }

.btn-lime {
  display: inline-block;
  background: var(--lime);
  color: var(--teal-deep);
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}

.btn-lime:hover { background: #3D4808; color: var(--white); }

.btn-outline-white {
  display: inline-block;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.8);
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  transition: border-color 0.2s, color 0.2s;
}

.btn-outline-white:hover { border-color: var(--white); color: var(--white); }

/* ── SHARED LAYOUT ── */
.container { max-width: 1100px; margin: 0 auto; }
section { padding: 90px 5%; }

.section-eyebrow {
  font-family: "Raleway", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.section-eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--lime);
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 0.95rem;
  color: var(--gray-500);
  max-width: 540px;
  line-height: 1.85;
}

/* ── PAGE HERO (subpages) ── */
.page-hero {
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-100);
  padding: 3.5rem 5%;
}

.page-hero .section-eyebrow { margin-bottom: 0.5rem; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--text); }
.page-hero .lead { font-size: 1rem; color: var(--gray-500); max-width: 600px; margin-top: 0.75rem; line-height: 1.85; }

/* ── HERO (index only) ── */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-height);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 6% 80px 8%;
  background: var(--white);
}

.hero-eyebrow {
  font-family: "Raleway", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--lime); flex-shrink: 0; }

.hero h1 { font-size: clamp(2.4rem, 3.5vw, 3.4rem); font-weight: 800; color: var(--text); margin-bottom: 1.5rem; }
.hero h1 em { font-style: normal; color: var(--teal); }

.hero-sub { font-size: 1rem; color: var(--gray-500); line-height: 1.85; margin-bottom: 2.5rem; max-width: 460px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-stats { display: flex; gap: 2rem; border-top: 1px solid var(--gray-100); padding-top: 2rem; }
.stat-num { font-family: "Raleway", sans-serif; font-weight: 800; font-size: 1.9rem; color: var(--teal); display: block; }
.stat-label { font-size: 0.72rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.1em; }

.hero-image {
  position: relative;
  overflow: visible;
  display: flex;
  align-items: center;
  padding: 2.5rem 2.5rem 2.5rem 1.5rem;
  background: var(--white);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(2,92,194,0.13);
}
.hero-image-overlay {
  position: absolute;
  inset: 2.5rem 2.5rem 2.5rem 1.5rem;
  background: linear-gradient(105deg, rgba(1,48,112,0.2) 0%, rgba(1,48,112,0.05) 50%, transparent 100%);
  border-radius: 16px;
  pointer-events: none;
}

.hero-badge {
  position: absolute; bottom: 4rem; left: 3rem; right: 4rem;
  background: rgba(255,255,255,0.96);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  display: flex; gap: 0.5rem; flex-wrap: wrap;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}

.badge {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: 3px;
  background: var(--teal-light);
  color: var(--teal-deep);
  border: 1px solid rgba(2,92,194,0.15);
}

.badge.lime { background: var(--lime-bg); color: var(--lime-dark); border-color: rgba(77,90,10,0.2); }

/* ── TRUST BAR ── */
.trust-bar { padding: 28px 5%; background: var(--off-white); border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); }
.trust-bar .inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.trust-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray-300); white-space: nowrap; }
.trust-logos { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }
.trust-logo { font-family: "Raleway", sans-serif; font-weight: 700; font-size: 0.78rem; letter-spacing: 0.06em; color: var(--gray-500); padding: 0.3rem 0.85rem; border: 1px solid var(--gray-100); border-radius: 3px; background: var(--white); }

/* ── SERVICES ── */
.services-header { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: end; margin-bottom: 3rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--gray-100);
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  overflow: hidden;
}

.service-card { background: var(--white); padding: 2.25rem 2rem; transition: background 0.2s; }
.service-card:hover { background: var(--teal-light); }
.service-num { font-family: "Raleway", sans-serif; font-weight: 700; font-size: 0.65rem; color: var(--gray-300); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 1rem; }
.service-icon { width: 42px; height: 42px; background: var(--teal-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.service-icon svg { width: 22px; height: 22px; }
.service-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--text); margin-bottom: 0.75rem; }
.service-card p { font-size: 0.875rem; color: var(--gray-500); line-height: 1.8; margin-bottom: 1.25rem; }
.service-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.service-tag { font-family: "Raleway", sans-serif; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; padding: 0.25rem 0.6rem; background: var(--lime-bg); color: var(--lime-dark); border-radius: 2px; }

/* ── APPROACH ── */
.approach-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 3.5rem; }
.approach-step { padding: 2rem 1.75rem 2rem 0; border-right: 2px solid var(--gray-100); }
.approach-step:last-child { border-right: none; }
.approach-step:not(:first-child) { padding-left: 1.75rem; }
.step-num { font-family: "Raleway", sans-serif; font-weight: 800; font-size: 2.8rem; color: var(--lime); opacity: 0.6; line-height: 1; margin-bottom: 1rem; }
.approach-step h4 { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 0.6rem; }
.approach-step p { font-size: 0.82rem; color: var(--gray-500); line-height: 1.75; }

/* ── WHY / ÜBER UNS ── */
.why-grid { display: grid; grid-template-columns: 5fr 4fr; gap: 5rem; align-items: start; margin-top: 3.5rem; }
.why-list { display: flex; flex-direction: column; gap: 1.5rem; }
.why-item { display: flex; gap: 1.25rem; align-items: flex-start; background: var(--white); padding: 1.5rem; border-radius: 6px; border: 1px solid var(--gray-100); }
.why-icon { flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%; background: var(--teal-light); display: flex; align-items: center; justify-content: center; }
.why-icon svg { width: 18px; height: 18px; }
.why-item h4 { font-size: 0.92rem; font-weight: 700; color: var(--text); margin-bottom: 0.25rem; }
.why-item p { font-size: 0.85rem; color: var(--gray-500); line-height: 1.75; }
.why-panel { background: var(--teal-deep); border-radius: 8px; padding: 2rem; color: var(--white); }
.why-panel-title { font-family: "Raleway", sans-serif; font-weight: 700; font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--lime); margin-bottom: 1.5rem; }
.cert-list { display: flex; flex-direction: column; gap: 0.75rem; }
.cert-item { display: flex; justify-content: space-between; align-items: center; padding: 0.75rem 1rem; background: rgba(255,255,255,0.05); border-radius: 4px; border: 1px solid rgba(255,255,255,0.08); }
.cert-name { font-family: "Raleway", sans-serif; font-weight: 700; font-size: 0.78rem; color: rgba(255,255,255,0.9); }
.cert-check { width: 20px; height: 20px; border-radius: 50%; background: rgba(200,224,43,0.2); display: flex; align-items: center; justify-content: center; font-size: 0.65rem; color: var(--lime); font-weight: 700; }

/* ── KONTAKT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 3rem; align-items: start; }
.contact-info h3 { font-size: 1rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--text); }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.25rem; }
.contact-detail-icon { flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%; background: var(--teal-light); display: flex; align-items: center; justify-content: center; }
.contact-detail-icon svg { width: 18px; height: 18px; }
.contact-detail-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-300); margin-bottom: 0.1rem; }
.contact-detail-value { font-size: 0.9rem; color: var(--text); }
.contact-detail-value a { color: var(--teal); }
.contact-detail-value a:hover { text-decoration: underline; }

.contact-form-box { background: var(--off-white); border: 1px solid var(--gray-100); border-radius: 8px; padding: 2rem; }
.contact-form-box h3 { font-size: 1rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--text); }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--gray-700); margin-bottom: 0.4rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--gray-100);
  border-radius: 4px;
  font-family: "Open Sans", sans-serif;
  font-size: 0.875rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-light); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit { width: 100%; padding: 0.9rem; background: var(--teal); color: var(--white); border: none; border-radius: 4px; font-family: "Raleway", sans-serif; font-weight: 700; font-size: 0.9rem; letter-spacing: 0.04em; cursor: pointer; transition: background 0.2s; }
.form-submit:hover { background: var(--teal-dark); }
.form-note { font-size: 0.75rem; color: var(--gray-500); margin-top: 0.75rem; }
.form-note a { color: var(--teal); }

/* ── CTA SECTION ── */
.cta-section { background: var(--teal-deep); text-align: center; padding: 90px 5%; }
.cta-section .section-eyebrow { color: rgba(200,224,43,0.7); justify-content: center; }
.cta-section .section-eyebrow::before { background: rgba(200,224,43,0.4); }
.cta-section h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 800; color: var(--white); margin-bottom: 1.25rem; }
.cta-section p { font-size: 0.95rem; color: rgba(255,255,255,0.65); max-width: 540px; margin: 0 auto 2.5rem; line-height: 1.85; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── LEGAL CONTENT PAGES ── */
.legal-content { max-width: 860px; margin: 0 auto; padding: 3.5rem 5%; }
.legal-content h2 { font-size: 1.1rem; font-weight: 700; color: var(--text); margin: 2.25rem 0 0.75rem; padding-bottom: 0.4rem; border-bottom: 2px solid var(--lime); display: inline-block; }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p { font-size: 0.925rem; color: var(--gray-700); line-height: 1.85; margin-bottom: 0.75rem; }
.legal-content ul { margin: 0.5rem 0 0.75rem 1.25rem; }
.legal-content li { font-size: 0.925rem; color: var(--gray-700); line-height: 1.85; margin-bottom: 0.3rem; }
.legal-content a { color: var(--teal); }
.info-box { background: var(--teal-light); border-left: 3px solid var(--teal); border-radius: 0 6px 6px 0; padding: 1rem 1.25rem; margin: 1.5rem 0; }
.info-box p { margin: 0; font-size: 0.875rem; color: var(--teal-deep); }
.data-block { background: var(--off-white); border: 1px solid var(--gray-100); border-radius: 8px; padding: 1.5rem; margin: 1rem 0 2rem; }
.data-block p { margin: 0.2rem 0; font-size: 0.9rem; color: var(--gray-700); }

/* ── FOOTER ── */
footer { background: var(--gray-700); padding: 50px 5% 28px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo img { height: 80px; width: auto; display: block; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.82rem; line-height: 1.75; color: var(--gray-300); }
.footer-col h5 { font-family: "Raleway", sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a { font-size: 0.82rem; color: var(--gray-300); transition: color 0.2s; }
.footer-col a:hover { color: var(--lime); }
.footer-bottom { max-width: 1100px; margin: 0 auto; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center; font-size: 0.76rem; color: rgba(255,255,255,0.35); flex-wrap: wrap; gap: 0.5rem; }

/* ══════════════════════════════════════════
   RESPONSIVE – Tablet (≤ 1024px)
══════════════════════════════════════════ */
@media (max-width: 1024px) {

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image { display: none; }
  .hero-content { padding: 60px 6%; }
  .hero h1 { font-size: 2.4rem; }

  .approach-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .approach-step { border-right: none; border-bottom: 2px solid var(--gray-100); padding: 1.75rem 0; }
  .approach-step:nth-child(odd) { padding-right: 1.5rem; border-right: 2px solid var(--gray-100); }
  .approach-step:nth-child(even) { padding-left: 1.5rem; }
  .approach-step:nth-last-child(-n+2) { border-bottom: none; }

  .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .services-header { grid-template-columns: 1fr; gap: 1.5rem; }

  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ══════════════════════════════════════════
   RESPONSIVE – Mobile (≤ 768px)
══════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Nav — hamburger menu */
  nav { padding: 0 4%; height: 72px; }
  .nav-logo img { height: 60px; }

  .nav-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--gray-100);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    padding: 1rem 0 1.5rem;
    z-index: 99;
  }

  .nav-links.open { display: flex; }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 0.85rem 5%;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--gray-50);
  }

  .nav-links a[data-lang] { padding: 0.85rem 5%; }

  .nav-cta {
    margin: 0.5rem 5% 0;
    display: block;
    text-align: center;
    border-radius: 4px;
    padding: 0.85rem 1rem !important;
  }

  .lang-btn { margin: 0.5rem 5%; }

  /* Hamburger button */
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
  }

  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: all 0.25s;
  }

  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  body.subpage { margin-top: 72px; }
  :root { --nav-height: 72px; }

  /* Hero */
  .hero-content { padding: 48px 5%; }
  .hero h1 { font-size: 2rem; }
  .hero-sub { font-size: 0.9rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { text-align: center; }
  .hero-stats { gap: 1.25rem; }
  .stat-num { font-size: 1.5rem; }

  /* Sections */
  section { padding: 60px 5%; }
  .page-hero { padding: 2.5rem 5%; }
  .page-hero h1 { font-size: 1.75rem; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 1.75rem 1.5rem; }

  /* Approach */
  .approach-grid { grid-template-columns: 1fr; }
  .approach-step { border-right: none !important; border-bottom: 2px solid var(--gray-100); padding: 1.5rem 0 !important; }
  .approach-step:last-child { border-bottom: none; }
  .step-num { font-size: 2rem; }

  /* Why */
  .why-item { flex-direction: column; gap: 0.75rem; }

  /* Contact */
  .form-row { grid-template-columns: 1fr; }

  /* Trust bar */
  .trust-bar .inner { flex-direction: column; align-items: flex-start; gap: 0.75rem; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.25rem; }

  /* CTA */
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions a { width: 100%; max-width: 320px; text-align: center; }
}

/* ══════════════════════════════════════════
   RESPONSIVE – Small mobile (≤ 480px)
══════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero h1 { font-size: 1.75rem; }
  .section-title { font-size: 1.6rem; }
  .hero-stats { flex-direction: column; gap: 0.75rem; border-top: none; padding-top: 0; }
}
