/* ============================================================
   HR helper group — Main Stylesheet
   Reconstructed from screenshots | hrhelperg.com
   ============================================================ */

/* ── 1. Root Variables ─────────────────────────────────────── */
:root {
  --navy:        #1a2d5a;
  --navy-dark:   #0d1b3e;
  --navy-mid:    #1e3a8a;
  --accent:      #3b82f6;
  --accent-light:#dbeafe;
  --text:        #111827;
  --text-sec:    #374151;
  --muted:       #6b7280;
  --muted-light: #9ca3af;
  --bg:          #ffffff;
  --bg-section:  #edf2ff;
  --bg-card:     #ffffff;
  --border:      #e5e7eb;
  --border-light:#f3f4f6;
  --red:         #ef4444;
  --shadow-xs:   0 1px 2px rgba(0,0,0,.06);
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:   0 4px 12px rgba(0,0,0,.10);
  --shadow-lg:   0 10px 25px rgba(0,0,0,.12);
  --radius-xs:   4px;
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   14px;
  --radius-xl:   20px;
  --radius-pill: 50px;
  --container:   1200px;
  --header-h:    76px;
  --t:           0.2s ease;
}

/* ── 2. Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea { font-family: inherit; }

/* ── 3. Layout Utility ─────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

/* ── 4. Typography ─────────────────────────────────────────── */
h1 { font-size: clamp(32px, 4vw, 48px); font-weight: 700; line-height: 1.2; color: var(--navy-dark); }
h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 700; line-height: 1.25; color: var(--navy-dark); }
h3 { font-size: 17px; font-weight: 600; line-height: 1.4; color: var(--navy-dark); }
p  { color: var(--text-sec); font-size: 15px; line-height: 1.65; }

/* ── 5. Components ─────────────────────────────────────────── */

/* Badge / Label pill */
.badge {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.01em;
}

/* Word highlight inside headings */
.word-hl {
  background: var(--navy);
  color: #fff;
  padding: 1px 10px 3px;
  border-radius: var(--radius-sm);
  display: inline-block;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: all var(--t);
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: #fff;
}
.btn-primary:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: #fff;
}

/* Icon box (service/process cards) */
.icon-box {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-box svg { width: 24px; height: 24px; }

/* Cards */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--t), transform var(--t);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* ── 6. HEADER ─────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
  display: flex;
  align-items: center;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  font-style: italic;
  letter-spacing: -1px;
}
.logo-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy-dark);
  white-space: nowrap;
}

/* Main nav */
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-sec);
  text-decoration: none;
  transition: color var(--t);
  position: relative;
  padding-bottom: 2px;
}
.nav-link:hover,
.nav-link.active {
  color: var(--navy);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
}
.lang-btn {
  background: none;
  border: none;
  padding: 3px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 22px;
  opacity: 0.65;
  transition: opacity var(--t), transform var(--t);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}
.lang-btn:hover { opacity: 1; transform: scale(1.1); }
.lang-btn.active { opacity: 1; }
/* Overlapping flag effect */
.lang-switcher .lang-btn:not(:first-child) { margin-left: -6px; }

/* Hamburger */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--navy);
  padding: 4px 8px;
  cursor: pointer;
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
  z-index: 99;
  box-shadow: var(--shadow-lg);
}
.mobile-nav.open { display: block; }
.mobile-nav .nav-link {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 16px;
}
.mobile-nav .lang-switcher {
  margin-top: 16px;
  gap: 8px;
}
.mobile-nav .lang-btn { margin-left: 0 !important; opacity: 0.8; }

/* ── 7. HERO ───────────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  background: linear-gradient(130deg, #ffffff 48%, #e8f0fe 100%);
  padding: 60px 0 40px;
  overflow: hidden;
}
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}
.hero-content { max-width: 500px; }
.hero-title {
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy-dark);
  margin-bottom: 20px;
}
.hero-subtitle {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 420px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-social-proof p {
  font-size: 14px;
  color: var(--muted);
}
.hero-social-proof p strong { color: var(--navy-dark); font-weight: 700; }

/* Avatar cluster */
.avatar-group {
  display: flex;
  align-items: center;
}
.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #fff;
  overflow: hidden;
  margin-left: -8px;
  background: var(--bg-section);
}
.avatar:first-child { margin-left: 0; }
.avatar img { width: 100%; height: 100%; object-fit: cover; }

/* Hero visual */
.hero-visual { position: relative; }
.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}
.hero-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-xl);
  display: block;
}
.hero-img-placeholder {
  width: 100%;
  height: 520px;
  background: linear-gradient(135deg, #c7d9f8, #a5c0f0);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4b72ba;
  font-size: 14px;
  font-weight: 500;
}

/* Floating profile card */
.float-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 14px 18px;
  z-index: 5;
}
.float-card.card-profile {
  top: 40px;
  left: -30px;
  min-width: 160px;
}
.fc-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 2px;
}
.fc-sub {
  font-size: 11px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 10px;
}
.fc-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 36px;
}
.fc-chart span {
  flex: 1;
  background: var(--navy);
  border-radius: 3px 3px 0 0;
  display: block;
  opacity: 0.85;
}
.fc-chart span:nth-child(1) { height: 30%; opacity: 0.4; }
.fc-chart span:nth-child(2) { height: 55%; opacity: 0.5; }
.fc-chart span:nth-child(3) { height: 75%; }
.fc-chart span:nth-child(4) { height: 90%; }
.fc-chart span:nth-child(5) { height: 100%; }

/* Floating badge */
.float-badge {
  position: absolute;
  bottom: 60px;
  left: -20px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  z-index: 5;
}

/* Floating star */
.float-star {
  position: absolute;
  bottom: 30px;
  right: -10px;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: var(--shadow-md);
  z-index: 5;
}

/* ── 8. STATS + ABOUT ──────────────────────────────────────── */
.about-stats {
  padding: 80px 0;
  background: var(--bg);
}
.about-stats-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: start;
}
.about-col .badge { margin-bottom: 20px; }
.about-heading {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 700;
  line-height: 1.35;
  color: var(--navy-dark);
  margin-bottom: 28px;
}

/* Partner logos */
.partner-logos {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.partner-logo {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  opacity: 0.75;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: opacity var(--t);
}
.partner-logo:hover { opacity: 1; }
.partner-logo svg { width: 20px; height: 20px; }
.partner-logo.shopify  { color: #96bf48; }
.partner-logo.ms       { color: #737373; }
.partner-logo.mcafee   { color: #c41230; }
.partner-logo.google   { color: #4285F4; }

/* Stats grid */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 48px;
}
.stat-item {}
.stat-num {
  font-size: 40px;
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 14px;
  color: var(--muted);
  font-weight: 400;
}

/* ── 9. SERVICES ───────────────────────────────────────────── */
.services {
  padding: 80px 0;
  background: var(--bg-section);
}
.services > .container > .badge { margin-bottom: 32px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--t), transform var(--t);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.service-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.service-card-header h3 { font-size: 16px; font-weight: 600; color: var(--navy-dark); }
.service-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── 10. MISSION TEXT ──────────────────────────────────────── */
.mission-text {
  padding: 72px 0;
  background: var(--bg);
}
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.mission-col-left .badge {
  margin-right: 8px;
}
.mission-col-left p,
.mission-col-right p {
  font-size: 15px;
  color: var(--text-sec);
  line-height: 1.75;
}

/* ── 11. PROCESS STEPS ─────────────────────────────────────── */
.process {
  padding: 80px 0;
  background: var(--bg-section);
}
.process > .container > .badge {
  margin-bottom: 32px;
  display: block;
  width: fit-content;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.process-grid .process-card:nth-child(4),
.process-grid .process-card:nth-child(5) {
  /* 4th and 5th cards form the second row, only 2 items */
}
.process-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-xs);
}
.process-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  transition: all var(--t);
}
.process-num-badge {
  width: 36px;
  height: 36px;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
  flex-shrink: 0;
}
.process-card h3 { font-size: 15px; font-weight: 600; color: var(--navy-dark); margin-bottom: 10px; }
.process-card p  { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── 12. VALUES / COMPANY MISSION ──────────────────────────── */
.values {
  padding: 80px 0;
  background: var(--bg);
}
.values > .container > .badge { margin-bottom: 32px; }
.values-list {}
.value-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-light);
}
.value-item:last-child { border-bottom: none; }
.value-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  padding-top: 2px;
}
.value-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 6px;
}
.value-content p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 780px;
}

/* ── 13. CTA FORM ──────────────────────────────────────────── */
.cta-form {
  background: linear-gradient(135deg, #e8f0fe 0%, #dce9ff 100%);
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
}
.cta-content { max-width: 580px; }
.cta-content h2 {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 28px;
  line-height: 1.3;
}
.contact-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.form-row {
  display: flex;
  gap: 12px;
  width: 100%;
  flex-wrap: wrap;
}
.contact-form input {
  flex: 1;
  min-width: 140px;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 14px;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color var(--t);
}
.contact-form input::placeholder { color: var(--muted-light); }
.contact-form input:focus { border-color: var(--navy); }
.cta-visual {
  position: relative;
  width: 280px;
  flex-shrink: 0;
  align-self: flex-end;
}
.cta-img {
  width: 280px;
  height: 320px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  display: block;
}
.cta-img-placeholder {
  width: 280px;
  height: 320px;
  background: linear-gradient(180deg, #b8ceee, #8bafd4);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 13px;
}

/* ── 14. FOOTER ────────────────────────────────────────────── */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
}
.footer-main {
  padding: 52px 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col {}

/* Footer nav */
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}
.footer-nav a {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  padding: 4px 0;
  transition: color var(--t);
  text-decoration: none;
}
.footer-nav a:hover { color: #fff; }

/* Footer social icons */
.footer-socials {
  display: flex;
  gap: 10px;
}
.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--t), transform var(--t);
  overflow: hidden;
}
.social-icon:hover { opacity: 0.9; transform: translateY(-2px); }
.social-icon.yt   { background: #FF0000; }
.social-icon.fb   { background: #1877F2; }
.social-icon.li   { background: #0A66C2; }
.social-icon svg  { width: 20px; height: 20px; fill: #fff; }

/* Footer contact */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-contact p, .footer-contact a {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  transition: color var(--t);
  text-decoration: none;
}
.footer-contact a { color: rgba(255,255,255,0.85); }
.footer-contact a:hover { color: #fff; }

/* Footer legal */
.footer-legal {}
.footer-flags {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}
.footer-flag-btn {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--t);
  padding: 2px;
  line-height: 1;
}
.footer-flag-btn:hover { opacity: 1; }
.footer-legal-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-legal-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color var(--t);
  line-height: 1.5;
}
.footer-legal-links a:hover { color: #fff; text-decoration: underline; }

/* Footer bottom bar */
.footer-bottom {
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-terms {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}
.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-align: center;
}

/* ── 15. ABOUT PAGE ────────────────────────────────────────── */
.about-hero {
  min-height: 420px;
  display: flex;
  align-items: center;
  background: linear-gradient(130deg, #ffffff 45%, #e8f0fe 100%);
  padding: 60px 0;
  overflow: hidden;
}
.about-hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}
.about-hero-content { max-width: 480px; }
.about-hero-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy-dark);
  margin-bottom: 28px;
}
.about-hero-img-wrap {
  position: relative;
}
.about-hero-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-xl);
}
.about-hero-img-placeholder {
  width: 100%;
  height: 380px;
  background: linear-gradient(135deg, #c7d9f8, #a5bfe0);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4b72ba;
  font-size: 14px;
  font-weight: 500;
}

/* ── 16. PARTNER PAGE ──────────────────────────────────────── */
.partner-page {
  min-height: calc(100vh - var(--header-h) - 300px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: var(--bg);
}
.partner-center {
  text-align: center;
  max-width: 480px;
}
.partner-center h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 28px;
}
/* Closed button with red X */
.btn-closed {
  position: relative;
  display: inline-block;
  pointer-events: none;
  opacity: 0.6;
}
.btn-closed .btn {
  pointer-events: none;
}
.btn-closed::before,
.btn-closed::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 10%;
  width: 80%;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  z-index: 2;
}
.btn-closed::before {
  transform: rotate(20deg);
}
.btn-closed::after {
  transform: rotate(-20deg);
}
.partner-email {
  display: block;
  font-size: 18px;
  color: var(--red);
  margin-top: 20px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity var(--t);
}
.partner-email:hover { opacity: 0.75; }

/* ── 17. RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-container { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-stats-container { grid-template-columns: 1fr 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  :root { --header-h: 68px; }
  .nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .lang-switcher { display: none; }
  .hero-container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero { min-height: auto; padding: 48px 0; }
  .about-stats-container { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; gap: 24px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; padding: 40px 0 24px; }
  .cta-grid { grid-template-columns: 1fr; }
  .cta-visual { display: none; }
  .about-hero-container { grid-template-columns: 1fr; }
  .about-hero-img-wrap { display: none; }
  .form-row { flex-direction: column; }
  .contact-form input { min-width: 100%; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px 32px; }
  .process-grid { grid-template-columns: 1fr; }
  .value-item { grid-template-columns: 60px 1fr; gap: 16px; }
  .value-num { font-size: 22px; }
}
