/* =====================================================================
   Innovatix Infosys — styles.css
   Theme: red primary pulled from logo, charcoal/navy neutrals, white base
   Mobile-first. Breakpoints at 768px (md) and 1024px (lg).
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  --primary: #e60012;
  --primary-600: #c70010;
  --primary-50:  #ffe5e8;

  --bg:        #ffffff;
  --bg-alt:    #f6f7fb;
  --ink:       #0f172a;
  --ink-2:     #1f2937;
  --muted:     #64748b;
  --line:      #e5e7eb;

  --navy:      #0b1224;
  --navy-2:    #111a33;

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;

  --shadow-sm: 0 2px 8px rgba(15,23,42,.06);
  --shadow:    0 12px 30px rgba(15,23,42,.08);
  --shadow-lg: 0 24px 60px rgba(15,23,42,.14);

  --font-body:    'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;

  --container: 1200px;
  --nav-h: 72px;

  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink); line-height: 1.15; margin: 0 0 .5rem; letter-spacing: -.01em; }
p { margin: 0 0 1rem; color: var(--ink-2); }

:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px; top: 0;
  background: var(--ink); color: #fff;
  padding: 10px 16px; z-index: 9999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section   { padding: 80px 0; }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-tag {
  display: inline-block;
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 12px;
}
.section-title { font-size: clamp(1.7rem, 2.6vw, 2.4rem); }
.section-sub   { color: var(--muted); margin-top: 12px; }
.text-accent   { color: var(--primary); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 22px rgba(230,0,18,.28);
}
.btn-primary:hover { background: var(--primary-600); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(230,0,18,.36); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }

/* ---------- Navbar ---------- */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.navbar.scrolled {
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h);
}
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 44px; width: auto; object-fit: contain; }
.brand-logo-footer { height: 50px; background: #fff; padding: 6px 10px; border-radius: 8px; }

.nav-list {
  display: flex; align-items: center; gap: 6px;
}
.nav-link {
  position: relative;
  padding: 10px 14px;
  font-weight: 500;
  color: var(--ink-2);
  border-radius: 8px;
  transition: color .25s var(--ease);
}
.nav-link::after {
  content: "";
  position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 2px; background: var(--primary);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
  border-radius: 2px;
}
.nav-link:hover { color: var(--primary); }
.nav-link.active { color: var(--primary); }
.nav-link.active::after { transform: scaleX(1); }
.nav-cta { padding: 10px 20px; }
.nav-cta::after { display: none; }

.hamburger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 10px;
  position: relative;
}
.hamburger span {
  position: absolute; left: 12px; right: 12px;
  height: 2px; background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), top .3s var(--ease), opacity .25s;
}
.hamburger span:nth-child(1) { top: 14px; }
.hamburger span:nth-child(2) { top: 21px; }
.hamburger span:nth-child(3) { top: 28px; }
.hamburger.is-open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 96px 0 120px;
  background: linear-gradient(180deg, #fff 0%, #fff5f6 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: -1;
  pointer-events: none;
}
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: .55;
  animation: drift 14s ease-in-out infinite;
}
.orb-a {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(230,0,18,.55), transparent 70%);
  top: -120px; left: -120px;
}
.orb-b {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(11,18,36,.35), transparent 70%);
  bottom: -160px; right: -160px;
  animation-delay: -7s;
}
@keyframes drift {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(40px, -30px); }
}
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(15,23,42,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}

.hero-inner { position: relative; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: .85rem;
  color: var(--ink-2);
  margin: 0 0 24px;
  box-shadow: var(--shadow-sm);
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 4px rgba(230,0,18,.18); }

.hero-title {
  font-size: clamp(2rem, 5.2vw, 4rem);
  font-weight: 700;
  margin: 0 0 20px;
}
.hero-sub {
  max-width: 640px;
  margin: 0 auto 36px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
}
.hero-cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-bottom: 60px; }

.hero-marquee {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 16px;
  margin-top: 8px;
}
.hero-marquee li {
  font-size: .85rem;
  color: var(--muted);
  padding: 6px 14px;
  border: 1px dashed var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.6);
}

.scroll-cue {
  position: absolute; left: 50%; bottom: 24px;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid var(--ink-2);
  border-radius: 14px;
}
.scroll-cue span {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; background: var(--ink-2);
  border-radius: 2px;
  animation: cue 1.6s infinite;
}
@keyframes cue {
  0%   { opacity: 1; top: 8px; }
  100% { opacity: 0; top: 22px; }
}

/* ---------- Services ---------- */
.services { background: var(--bg-alt); }
.services-grid {
  display: grid; gap: 22px;
  grid-template-columns: 1fr;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .25s var(--ease);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(230,0,18,.06), transparent 60%);
  opacity: 0; transition: opacity .35s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(230,0,18,.4); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--primary-50);
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 18px;
  transition: transform .35s var(--ease);
}
.service-card:hover .service-icon { transform: rotate(-6deg) scale(1.05); }
.service-card h3 { font-size: 1.2rem; margin-bottom: 6px; }
.service-card p { color: var(--muted); margin: 0; font-size: .96rem; }

/* ---------- About ---------- */
.about-grid {
  display: grid; gap: 48px;
  grid-template-columns: 1fr;
  align-items: center;
}
.about-copy p { color: var(--muted); }
.mv-grid {
  display: grid; gap: 18px;
  grid-template-columns: 1fr;
  margin-top: 28px;
}
.mv-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.mv-card h4 { display: flex; align-items: center; gap: 10px; font-size: 1rem; margin-bottom: 8px; }
.mv-card h4 i { color: var(--primary); }
.mv-card p { margin: 0; color: var(--muted); font-size: .95rem; }

.about-stats {
  display: grid; gap: 18px;
  grid-template-columns: repeat(2, 1fr);
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-stats::before {
  content: "";
  position: absolute; top: -60%; right: -30%;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(230,0,18,.45), transparent 70%);
  filter: blur(10px);
}
.stat { position: relative; }
.stat-num { font-family: var(--font-display); font-size: clamp(1.8rem, 3.2vw, 2.6rem); font-weight: 700; color: #fff; }
.plus { color: var(--primary); font-weight: 700; font-size: clamp(1.4rem, 2.8vw, 2rem); margin-left: 2px; }
.stat p { color: rgba(255,255,255,.7); margin: 4px 0 0; font-size: .9rem; }

/* ---------- Portfolio ---------- */
.filter-bar {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin-bottom: 36px;
}
.filter-btn {
  padding: 8px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 500;
  color: var(--ink-2);
  background: #fff;
  transition: all .25s var(--ease);
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }

.portfolio-grid {
  display: grid; gap: 22px;
  grid-template-columns: 1fr;
}
.portfolio-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.portfolio-item.hide { display: none; }
.portfolio-item:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.thumb {
  aspect-ratio: 16 / 10;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--g1, #e60012), var(--g2, #1a1a2e));
  color: #fff;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.thumb::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.18), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,.10), transparent 50%);
  transform: translateY(0);
  transition: transform .5s var(--ease);
}
.portfolio-item:hover .thumb::after { transform: translateY(-10%); }
.thumb-meta { padding: 22px; }
.badge {
  display: inline-block;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-50);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.thumb-meta h3 { font-size: 1.15rem; margin-bottom: 6px; }
.thumb-meta p { margin: 0; color: var(--muted); font-size: .92rem; }

/* ---------- Team ---------- */
.team { background: var(--bg-alt); }
.team-grid {
  display: grid; gap: 22px;
  grid-template-columns: 1fr;
}
.team-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 28px 22px;
  text-align: center;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.avatar {
  width: 96px; height: 96px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--av, #e60012), #1a1a2e);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.6rem;
  letter-spacing: .03em;
  box-shadow: 0 10px 28px rgba(15,23,42,.18);
}
.team-card h3 { font-size: 1.1rem; margin: 0 0 4px; }
.role { color: var(--primary); font-weight: 500; font-size: .9rem; margin: 0 0 14px; }
.socials {
  display: flex; justify-content: center; gap: 10px;
}
.socials a {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--ink-2);
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.socials a:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.socials-lg a { width: 42px; height: 42px; font-size: 1rem; background: #fff; border: 1px solid var(--line); }

/* ---------- Testimonials ---------- */
.testimonials { background: linear-gradient(180deg, #fff, var(--bg-alt)); }
.slider {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.slides {
  display: flex;
  transition: transform .55s var(--ease);
}
.slide {
  min-width: 100%;
  padding: 56px 56px 72px;
  text-align: center;
}
.quote-mark {
  font-size: 2rem;
  color: var(--primary);
  opacity: .35;
  margin-bottom: 14px;
  display: inline-block;
}
.quote { font-size: clamp(1.05rem, 1.4vw, 1.25rem); color: var(--ink); line-height: 1.55; max-width: 640px; margin: 0 auto 22px; }
.author strong { display: block; font-family: var(--font-display); }
.author span { color: var(--muted); font-size: .9rem; }
.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink-2);
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.slider-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.slider-btn.prev { left: 14px; }
.slider-btn.next { right: 14px; }
.dots {
  position: absolute; left: 0; right: 0; bottom: 24px;
  display: flex; justify-content: center; gap: 8px;
}
.dots button {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--line);
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.dots button.active { background: var(--primary); transform: scale(1.3); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid; gap: 36px;
  grid-template-columns: 1fr;
}
.contact-info { display: grid; gap: 18px; margin: 24px 0; }
.contact-info li { display: flex; align-items: flex-start; gap: 14px; }
.contact-info i {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--primary-50);
  color: var(--primary);
  flex-shrink: 0;
}
.contact-info strong { display: block; margin-bottom: 2px; }
.contact-info a { color: var(--ink-2); transition: color .2s var(--ease); }
.contact-info a:hover { color: var(--primary); }

.map {
  margin-top: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 9;
  background: var(--bg-alt);
}
.map iframe { width: 100%; height: 100%; border: 0; display: block; }

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.contact-form h3 { font-size: 1.3rem; margin: 0 0 20px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: .85rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--ink-2);
}
.field input,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  color: var(--ink);
  background: #fff;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(230,0,18,.18);
}
.field.invalid input,
.field.invalid textarea { border-color: var(--primary); }
.error { display: block; min-height: 16px; font-size: .8rem; color: var(--primary); margin-top: 4px; }
.form-note { margin-top: 10px; font-size: .9rem; }
.form-note.success { color: #166534; }
.form-note.error   { color: var(--primary); }

/* ---------- Footer ---------- */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.78);
  padding-top: 64px;
}
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer-grid {
  display: grid; gap: 36px;
  grid-template-columns: 1fr;
  padding-bottom: 48px;
}
.footer-col p { color: rgba(255,255,255,.65); margin-top: 14px; }
.footer-col ul li { margin-bottom: 10px; font-size: .94rem; }
.footer-col a { color: rgba(255,255,255,.7); transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--primary); }
.footer-contact i { color: var(--primary); margin-right: 8px; }
.footer .socials a { background: rgba(255,255,255,.08); color: #fff; }
.footer .socials a:hover { background: var(--primary); }

.footer-base {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.footer-base-inner {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: space-between;
  font-size: .85rem; color: rgba(255,255,255,.6);
}
.footer-base p { margin: 0; color: inherit; }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed; bottom: 22px; right: 22px;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 28px rgba(230,0,18,.4);
  opacity: 0; pointer-events: none;
  transform: translateY(10px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), background .2s var(--ease);
  z-index: 90;
}
.back-to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--primary-600); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .orb, .scroll-cue span { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============ Breakpoints ============ */

/* ---------- md: 768px ---------- */
@media (min-width: 768px) {
  .section { padding: 100px 0; }

  .services-grid  { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid      { grid-template-columns: repeat(2, 1fr); }
  .mv-grid        { grid-template-columns: repeat(2, 1fr); }
  .footer-grid    { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }

  .about-stats { padding: 44px; }
}

/* ---------- lg: 1024px ---------- */
@media (min-width: 1024px) {
  .services-grid  { grid-template-columns: repeat(3, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid      { grid-template-columns: repeat(4, 1fr); }

  .about-grid    { grid-template-columns: 1.2fr 1fr; gap: 64px; }
  .contact-grid  { grid-template-columns: 1.1fr 1fr; gap: 48px; }
}

/* ---------- Mobile nav drawer (< 1024px) ---------- */
@media (max-width: 1023.98px) {
  .hamburger { display: block; }

  .nav-list {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: #fff;
    padding: 18px 20px 28px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform .3s var(--ease), opacity .25s var(--ease);
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
  }
  .nav-list.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-link { padding: 14px 12px; border-radius: 10px; }
  .nav-link::after { display: none; }
  .nav-link:hover { background: var(--bg-alt); }
  .nav-cta { margin-top: 10px; justify-content: center; }
}

/* ---------- Small phones ---------- */
@media (max-width: 480px) {
  .hero { padding: 72px 0 88px; }
  .slide { padding: 44px 24px 64px; }
  .contact-form { padding: 24px; }
  .about-stats { padding: 28px; }
  .footer-base-inner { justify-content: center; text-align: center; }
}
