/* ============================================================
   ZemInfoTech - Main Stylesheet
   Website designed and developed by MaSoftware (masoftware.in)
   Developer: MaSoftware | Contact: masoftware.in
   © 2025 ZemInfoTech. All rights reserved.
============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --blue: #1a56db;
  --blue-dark: #1240a8;
  --blue-light: #eff4ff;
  --orange: #e8590c;
  --text: #111827;
  --text-mid: #374151;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --bg: #f9fafb;
  --white: #ffffff;
  --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 10px 30px rgba(0,0,0,0.08);
  --radius: 10px;
  --nav-h: 104px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); line-height: 1.65; font-size: 15px; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  display: flex; align-items: center;
  padding-top: 2px;
}
.nav-inner {
  max-width: 1160px; width: 100%; margin: 0 auto;
  padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-img {
  height: clamp(72px, 9vw, 96px);
  width: auto;
  display: block;
  object-fit: contain;
}
.logo-name { font-size: 1.15rem; font-weight: 800; color: var(--text); letter-spacing: -0.3px; }
.logo-name span { color: var(--blue); }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  padding: 7px 14px; border-radius: 7px;
  font-size: 0.9rem; font-weight: 500; color: var(--text-muted);
  transition: background 0.15s, color 0.15s;
}
.nav-links a:hover { background: var(--bg); color: var(--text); }
.nav-links a.active { color: var(--blue); background: var(--blue-light); }
.nav-cta {
  background: var(--blue); color: #fff !important;
  padding: 8px 18px !important; border-radius: 7px; font-weight: 600 !important;
}
.nav-cta:hover { background: var(--blue-dark) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.25s; }

/* ── HERO ── */
.hero {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 80px 28px 70px;
}
.hero-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-label {
  display: inline-block;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--blue); background: var(--blue-light);
  padding: 5px 12px; border-radius: 4px; margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 800;
  line-height: 1.18; color: var(--text); margin-bottom: 18px; letter-spacing: -0.5px;
}
.hero h1 em { font-style: normal; color: var(--blue); }
.hero p { font-size: 1rem; color: var(--text-muted); margin-bottom: 32px; max-width: 440px; line-height: 1.7; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  background: var(--blue); color: #fff;
  padding: 11px 24px; border-radius: 8px; font-weight: 600; font-size: 0.92rem;
  border: none; cursor: pointer; transition: background 0.15s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn-secondary {
  background: var(--white); color: var(--text);
  padding: 11px 24px; border-radius: 8px; font-weight: 600; font-size: 0.92rem;
  border: 1.5px solid var(--border); cursor: pointer; transition: border-color 0.15s, transform 0.15s;
  display: inline-block;
}
.btn-secondary:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-1px); }
.hero-visual {
  background: var(--blue-light);
  border-radius: 16px; padding: 40px;
  display: flex; flex-direction: column; gap: 14px;
}
.hero-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hero-stat {
  background: var(--white); border-radius: 10px; padding: 20px;
  border: 1px solid var(--border);
  display: block; color: inherit; cursor: pointer;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
}
.hero-stat:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-2px); }
.hero-stat-num { font-size: 1.9rem; font-weight: 800; color: var(--blue); line-height: 1; margin-bottom: 4px; }
.hero-stat-label { font-size: 0.82rem; color: var(--text-muted); font-weight: 500; }
.hero-tagline {
  background: var(--blue); color: #fff;
  border-radius: 10px; padding: 18px 22px;
  font-size: 0.92rem; font-weight: 600; line-height: 1.5;
  display: block; cursor: pointer;
  transition: background 0.18s, transform 0.18s;
}
.hero-tagline:hover { background: var(--blue-dark); transform: translateY(-1px); }
.hero-tagline span { display: block; font-size: 0.78rem; font-weight: 400; opacity: 0.8; margin-top: 4px; }

/* ── SECTIONS ── */
.section { padding: 72px 28px; }
.section-white { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.container { max-width: 1160px; margin: 0 auto; }
.sec-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--blue); margin-bottom: 10px;
}
.sec-title { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; color: var(--text); margin-bottom: 12px; letter-spacing: -0.3px; }
.sec-sub { color: var(--text-muted); max-width: 500px; line-height: 1.7; }
.sec-head { margin-bottom: 44px; }
.sec-head-center { text-align: center; }
.sec-head-center .sec-sub { margin: 0 auto; }

/* ── SERVICE CARDS ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.svc-card {
  background: var(--white); padding: 32px 28px;
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  display: block; color: inherit; cursor: pointer;
  position: relative;
}
.svc-card:hover { background: var(--blue-light); transform: translateY(-2px); box-shadow: var(--shadow-md); z-index: 1; }
.svc-num { font-size: 0.75rem; font-weight: 700; color: var(--blue); letter-spacing: 1px; margin-bottom: 14px; }
.svc-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.svc-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.svc-list { display: flex; flex-direction: column; gap: 6px; }
.svc-list li { font-size: 0.83rem; color: var(--text-mid); padding-left: 14px; position: relative; }
.svc-list li::before { content: '—'; position: absolute; left: 0; color: var(--blue); font-weight: 700; }
.svc-arrow { display: inline-block; margin-top: 18px; font-size: 0.82rem; font-weight: 700; color: var(--blue); opacity: 0; transform: translateX(-4px); transition: opacity 0.18s, transform 0.18s; }
.svc-card:hover .svc-arrow { opacity: 1; transform: translateX(0); }

/* ── WHY US ── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  padding: 28px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white);
  display: block; color: inherit; cursor: pointer;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
}
.why-card:hover { border-color: var(--blue); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.why-card h4 { font-size: 0.97rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.why-card p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.65; }
.why-num { font-size: 2rem; font-weight: 800; color: var(--border); margin-bottom: 14px; line-height: 1; }
.why-card:hover .why-num { color: var(--blue-light); }

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--blue); color: #fff;
  padding: 52px 28px;
}
.cta-inner { max-width: 1160px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-strip h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 6px; }
.cta-strip p { opacity: 0.85; font-size: 0.95rem; }
.btn-white { background: #fff; color: var(--blue); padding: 11px 26px; border-radius: 8px; font-weight: 700; font-size: 0.92rem; border: none; cursor: pointer; transition: opacity 0.15s; display: inline-block; }
.btn-white:hover { opacity: 0.9; }
.btn-white-outline { background: transparent; color: #fff; padding: 11px 26px; border-radius: 8px; font-weight: 600; font-size: 0.92rem; border: 2px solid rgba(255,255,255,0.5); cursor: pointer; transition: border-color 0.15s; display: inline-block; }
.btn-white-outline:hover { border-color: #fff; }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── PAGE HERO ── */
.page-hero { background: var(--white); border-bottom: 1px solid var(--border); padding: 52px 28px 44px; }
.page-hero-inner { max-width: 1160px; margin: 0 auto; }
.breadcrumb { display: flex; gap: 6px; align-items: center; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 16px; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb span { color: var(--border); }
.page-hero h1 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; color: var(--text); margin-bottom: 8px; letter-spacing: -0.4px; }
.page-hero p { color: var(--text-muted); font-size: 0.97rem; }

/* ── PRICING ── */
.pricing-search-wrap { margin-bottom: 20px; }
.pricing-search-wrap input {
  width: 100%; max-width: 420px;
  padding: 10px 16px; border: 1.5px solid var(--border); border-radius: 8px;
  font-size: 0.92rem; font-family: inherit; outline: none; background: var(--white);
  transition: border-color 0.15s;
}
.pricing-search-wrap input:focus { border-color: var(--blue); }
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); }
.pricing-table { width: 100%; border-collapse: collapse; background: var(--white); }
.pricing-table thead th { background: var(--text); color: #fff; padding: 13px 20px; text-align: left; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.3px; }
.pricing-table tbody td { padding: 11px 20px; border-bottom: 1px solid var(--border); font-size: 0.88rem; color: var(--text-mid); }
.pricing-table tbody tr:last-child td { border-bottom: none; }
.pricing-table tbody tr:hover td { background: var(--blue-light); }
.price-col { color: var(--blue); font-weight: 700; white-space: nowrap; }
.pricing-note { margin-top: 16px; padding: 14px 18px; background: #fffbeb; border: 1px solid #fde68a; border-radius: 8px; font-size: 0.85rem; color: #92400e; }

/* ── ABOUT ── */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.about-stat { padding: 20px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); }
.about-stat-num { font-size: 1.8rem; font-weight: 800; color: var(--blue); line-height: 1; margin-bottom: 4px; }
.about-stat-label { font-size: 0.82rem; color: var(--text-muted); }
.about-text p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.75; font-size: 0.95rem; }
.check-list { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.check-list li { font-size: 0.9rem; color: var(--text-mid); padding-left: 20px; position: relative; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--blue); font-weight: 700; }
.about-image-block {
  background: var(--blue-light); border-radius: 16px; padding: 40px 36px;
  border: 1px solid #c7d7f9;
}
.about-image-block h3 { font-size: 1.3rem; font-weight: 800; color: var(--text); margin-bottom: 10px; }
.about-image-block p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.val-item { background: var(--white); border-radius: 8px; padding: 14px 16px; border: 1px solid var(--border); }
.val-item h5 { font-size: 0.88rem; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.val-item p { font-size: 0.8rem; color: var(--text-muted); }

/* ── CONTACT ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; align-items: start; }
.contact-details { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--white); }
.contact-row { padding: 20px 24px; border-bottom: 1px solid var(--border); }
.contact-row:last-child { border-bottom: none; }
.contact-row h4 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--text-muted); margin-bottom: 5px; }
.contact-row p, .contact-row a { font-size: 0.95rem; color: var(--text); font-weight: 500; }
.contact-row a:hover { color: var(--blue); }
.contact-row .note { font-size: 0.8rem; color: var(--text-muted); margin-top: 3px; font-weight: 400; }
.map-wrap { margin-top: 16px; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }

/* ── FORM ── */
.form-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; }
.form-box h3 { font-size: 1.2rem; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.form-box .form-sub { font-size: 0.87rem; color: var(--text-muted); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { display: flex; flex-direction: column; gap: 5px; margin-bottom: 16px; }
.fg label { font-size: 0.82rem; font-weight: 600; color: var(--text-mid); }
.fg input, .fg select, .fg textarea {
  padding: 10px 13px; border: 1.5px solid var(--border); border-radius: 7px;
  font-size: 0.9rem; font-family: inherit; background: var(--bg); outline: none;
  transition: border-color 0.15s, background 0.15s; color: var(--text);
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--blue); background: var(--white); }
.fg textarea { resize: vertical; min-height: 100px; }
.captcha-row {
  display: flex; align-items: center; gap: 12px;
  border: 1.5px solid var(--border); border-radius: 7px;
  padding: 12px 16px; background: var(--bg); margin-bottom: 16px;
}
.captcha-row input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--blue); cursor: pointer; flex-shrink: 0; }
.captcha-row label { font-size: 0.9rem; color: var(--text-mid); cursor: pointer; font-weight: 500; }
.captcha-brand { margin-left: auto; text-align: right; font-size: 0.68rem; color: #9ca3af; line-height: 1.4; }
.captcha-brand strong { display: block; font-size: 0.75rem; color: #6b7280; }
.g-recaptcha { margin-bottom: 16px; }
.btn-submit {
  width: 100%; padding: 13px; background: var(--blue); color: #fff;
  border: none; border-radius: 8px; font-size: 0.95rem; font-weight: 700;
  cursor: pointer; transition: background 0.15s; font-family: inherit;
}
.btn-submit:hover { background: var(--blue-dark); }
.success-msg { display: none; margin-top: 14px; padding: 13px 16px; background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 7px; font-size: 0.88rem; color: #166534; font-weight: 600; }

/* ── BOOKING ── */
.booking-layout { display: grid; grid-template-columns: 1fr 1.7fr; gap: 40px; align-items: start; }
.booking-sidebar { display: flex; flex-direction: column; gap: 16px; }
.info-block { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 24px; }
.info-block h4 { font-size: 0.88rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.info-block p, .info-block a { font-size: 0.87rem; color: var(--text-muted); line-height: 1.6; }
.info-block a { color: var(--blue); font-weight: 600; }
.steps-block { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.steps-block h4 { font-size: 0.88rem; font-weight: 700; color: var(--text); margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.5px; }
.step-item { display: flex; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.step-item:last-child { border-bottom: none; padding-bottom: 0; }
.step-n { width: 28px; height: 28px; border-radius: 50%; background: var(--blue); color: #fff; font-size: 0.8rem; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.step-t h5 { font-size: 0.88rem; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.step-t p { font-size: 0.82rem; color: var(--text-muted); }

/* ── FOOTER ── */
footer { background: #111827; color: #9ca3af; padding: 56px 28px 0; }
.footer-inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 40px; }
.footer-brand .logo-img {
  height: clamp(68px, 8vw, 88px);
  width: auto;
  filter: brightness(0) invert(1);
  object-fit: contain;
}
.footer-brand .logo-name { color: #fff; }
.footer-brand p { margin-top: 12px; font-size: 0.87rem; line-height: 1.7; color: #6b7280; }
.footer-col h5 { color: #fff; font-size: 0.85rem; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a { font-size: 0.87rem; color: #6b7280; transition: color 0.15s; }
.footer-col ul a:hover { color: #fff; }
.footer-contact-line { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-line div { font-size: 0.87rem; color: #6b7280; }
.footer-contact-line a { color: #9ca3af; transition: color 0.15s; }
.footer-contact-line a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #1f2937; max-width: 1160px; margin: 0 auto; padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem; color: #4b5563; flex-wrap: wrap; gap: 8px; }
.masoftware-badge {
  color: #60a5fa !important;
  text-decoration: none !important;
  font-weight: 600;
  transition: color 0.15s;
}
.masoftware-badge:hover { color: #93c5fd !important; }

/* ── WHATSAPP POPUP ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
.wa-bubble {
  background: #25d366; color: #fff;
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,0.45);
  cursor: pointer; border: none;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.wa-bubble:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(37,211,102,0.55); }
.wa-pulse {
  position: absolute; top: 0; right: 0;
  width: 14px; height: 14px; background: #ff3b30;
  border-radius: 50%; border: 2px solid #fff;
  animation: waPulse 1.8s infinite;
}
@keyframes waPulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}
.wa-tooltip {
  background: #fff; color: var(--text);
  border-radius: 12px; padding: 14px 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.13);
  font-size: 0.88rem; max-width: 230px;
  border: 1px solid var(--border);
  display: none; flex-direction: column; gap: 8px;
}
.wa-tooltip.open { display: flex; }
.wa-tooltip strong { font-size: 0.92rem; color: var(--text); }
.wa-tooltip p { color: var(--text-muted); font-size: 0.82rem; line-height: 1.5; margin: 0; }
.wa-tooltip a {
  display: block; text-align: center;
  background: #25d366; color: #fff;
  padding: 9px 14px; border-radius: 8px;
  font-weight: 700; font-size: 0.88rem;
  transition: background 0.15s;
}
.wa-tooltip a:hover { background: #1ebe5d; }
.wa-close {
  position: absolute; top: 8px; right: 10px;
  background: none; border: none; font-size: 1rem;
  color: var(--text-muted); cursor: pointer; line-height: 1;
}
@media(max-width:480px){
  .wa-float { bottom: 18px; right: 16px; }
  .wa-bubble { width: 52px; height: 52px; }
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .about-layout { grid-template-columns: 1fr; gap: 36px; }
  .contact-layout { grid-template-columns: 1fr; }
  .booking-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .logo-img { height: 72px; width: auto; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 12px 16px; gap: 2px; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .hero-stat-row { grid-template-columns: 1fr 1fr; }
  .hero { padding: 48px 16px 40px; }
  .section { padding: 48px 16px; }
  .page-hero { padding: 32px 16px 28px; }
  .cta-strip { padding: 36px 16px; }
  .form-box { padding: 22px 16px; }
  .nav-inner { padding: 0 16px; }
  .container { padding: 0 4px; }
  .footer-inner { padding-bottom: 28px; }
  footer { padding: 40px 16px 0; }
  .pricing-table thead th, .pricing-table tbody td { padding: 10px 12px; font-size: 0.82rem; }
  .svc-card { padding: 22px 18px; }
  .about-image-block { padding: 24px 18px; }
  .steps-block { padding: 18px; }
  .info-block { padding: 16px 18px; }
}
@media (max-width: 400px) {
  .about-stats { grid-template-columns: 1fr; }
  .hero-stat-row { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { text-align: center; }
}
