/* ============================================================
   Safiyurahman — The Lifestyle Engineer
   Stylesheet
   ============================================================ */

:root {
  /* Brand palette (from logo) */
  --green: #0C9A48;
  --green-light: #9EDB5A;
  --navy: #16233F;
  --yellow: #F2B31B;
  --bg: #F8FBFA;
  --glass-bg: rgba(255, 255, 255, 0.25);
  --glass-bg-strong: rgba(255, 255, 255, 0.55);
  --glass-border: rgba(255, 255, 255, 0.35);
  --text: #2B2B2B;
  --text-soft: #55605C;

  /* Type */
  --font-heading: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;

  /* Layout */
  --max-width: 1200px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 20px 50px rgba(22, 35, 63, 0.10);
  --shadow-card: 0 10px 30px rgba(22, 35, 63, 0.08);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.2;
  font-weight: 600;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
}

.section {
  position: relative;
  padding: 110px 0;
}

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}

.section-head h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  margin-bottom: 14px;
}

.section-head p {
  color: var(--text-soft);
  font-size: 1.02rem;
}

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---------- Floating background shapes ---------- */
.bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  animation: drift 16s ease-in-out infinite;
}

.blob.green { background: var(--green-light); }
.blob.navy { background: #8fb8ff; opacity: 0.18; }
.blob.yellow { background: var(--yellow); opacity: 0.22; }

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -25px) scale(1.08); }
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ---------- Gear motif (signature element) ---------- */
.gear-motif {
  position: absolute;
  opacity: 0.07;
  z-index: 0;
  pointer-events: none;
}
.gear-motif svg { width: 100%; height: 100%; }
.gear-spin-slow { animation: spin 60s linear infinite; }
.gear-spin-slow-rev { animation: spin 46s linear infinite reverse; }
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ============================================================
   Navigation
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: padding 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.navbar .nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 12px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--glass-bg-strong);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  box-shadow: var(--shadow-card);
}

.navbar.scrolled { padding: 10px 0; }

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--navy);
  font-size: 1rem;
}

.nav-brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-brand span strong { color: var(--green); }

.nav-links {
  display: flex;
  gap: 34px;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: width 0.3s var(--ease);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--navy);
  color: #fff;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}
.nav-cta:hover { background: var(--green); transform: translateY(-2px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 150px 0 90px;
  background: linear-gradient(120deg, #F8FBFA 0%, #EFF8F1 45%, #F4FBF6 100%);
  background-size: 200% 200%;
  animation: gradientShift 18s ease infinite;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  margin-bottom: 22px;
}

.hero-text h1 .accent { color: var(--green); }

.hero-text p {
  font-size: 1.08rem;
  color: var(--text-soft);
  max-width: 480px;
  margin-bottom: 34px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.94rem;
  cursor: pointer;
  border: none;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}

.btn-primary {
  background: linear-gradient(135deg, var(--green), #0b7f3d);
  color: #fff;
  box-shadow: 0 14px 30px rgba(12, 154, 72, 0.28);
}
.btn-primary:hover { transform: translateY(-4px); box-shadow: 0 20px 36px rgba(12, 154, 72, 0.34); }

.btn-outline {
  background: var(--glass-bg);
  border: 1px solid rgba(22, 35, 63, 0.18);
  color: var(--navy);
  backdrop-filter: blur(10px);
}
.btn-outline:hover { transform: translateY(-4px); background: #fff; }

.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 48px;
}
.hero-stats div { text-align: left; }
.hero-stats strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--navy);
}
.hero-stats span {
  font-size: 0.82rem;
  color: var(--text-soft);
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.hero-glass-card {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-soft);
  animation: floaty 6s ease-in-out infinite;
}

.hero-glass-card img {
  border-radius: calc(var(--radius-lg) - 10px);
  width: 100%;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

.floating-badge {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--navy);
  animation: floaty 5s ease-in-out infinite;
}
.floating-badge.badge-1 { top: 12%; left: -8%; animation-delay: 0.5s; }
.floating-badge.badge-2 { bottom: 8%; right: -10%; animation-delay: 1.2s; }
.floating-badge .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--green);
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-soft);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-cue .stick {
  width: 1px;
  height: 34px;
  background: linear-gradient(var(--green), transparent);
  animation: scrollcue 2s ease-in-out infinite;
}
@keyframes scrollcue {
  0% { transform: scaleY(0.4); transform-origin: top; opacity: 0.4; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.4; }
}

/* ============================================================
   About
   ============================================================ */
.about {
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 14px;
  box-shadow: var(--shadow-soft);
}
.about-card img { border-radius: calc(var(--radius-lg) - 8px); }

.about-ring {
  position: absolute;
  inset: -18px;
  border: 2px dashed rgba(12, 154, 72, 0.35);
  border-radius: 40px;
  z-index: -1;
}

.about-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-soft);
  margin-bottom: 18px;
  font-size: 1.02rem;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  border: 1px solid rgba(22, 35, 63, 0.06);
}

.pillar .icon-dot {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12, 154, 72, 0.12);
  color: var(--green);
  flex-shrink: 0;
}

.pillar span { font-size: 0.9rem; font-weight: 500; color: var(--navy); }

/* ============================================================
   Services
   ============================================================ */
.services {
  position: relative;
  background: linear-gradient(180deg, #F8FBFA, #EFF8F1);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  position: relative;
  z-index: 1;
}

.service-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius-md);
  padding: 34px 26px;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--green-light), transparent 40%, var(--yellow) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 26px 46px rgba(12, 154, 72, 0.16);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: #fff;
  margin-bottom: 22px;
  box-shadow: 0 10px 20px rgba(12, 154, 72, 0.25);
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-soft);
}

/* ============================================================
   Why Choose Me
   ============================================================ */
.why {
  background: #fff;
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 70px;
}

.why-box {
  text-align: center;
  padding: 36px 22px;
  border-radius: var(--radius-md);
  background: var(--bg);
  border: 1px solid rgba(22, 35, 63, 0.06);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.why-box:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); }

.why-check {
  width: 46px;
  height: 46px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(242, 179, 27, 0.16);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-box h3 {
  font-size: 1.02rem;
  margin-bottom: 10px;
}

.why-box p {
  font-size: 0.88rem;
  color: var(--text-soft);
}

.counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 50px 30px;
  position: relative;
  overflow: hidden;
}

.counters::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(12,154,72,0.35), transparent 55%),
              radial-gradient(circle at 85% 80%, rgba(242,179,27,0.25), transparent 55%);
}

.counter-item {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}

.counter-item .num {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--green-light);
  display: block;
}

.counter-item .label {
  font-size: 0.86rem;
  opacity: 0.85;
  margin-top: 6px;
}

/* ============================================================
   Journey Timeline
   ============================================================ */
.journey {
  background: linear-gradient(180deg, #EFF8F1, #F8FBFA);
}

.timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  margin-top: 20px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(12,154,72,0.35) 0 10px, transparent 10px 20px);
  z-index: 0;
}

.timeline-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}

.timeline-step .step-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--green);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}

.timeline-step:hover .step-circle {
  transform: scale(1.1);
  background: var(--green);
  color: #fff;
}

.timeline-step h4 {
  font-size: 0.94rem;
  padding: 0 6px;
}

/* ============================================================
   CTA Banner
   ============================================================ */
.cta {
  padding: 90px 0;
}

.cta-banner {
  max-width: var(--max-width);
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(12,154,72,0.92), rgba(22,35,63,0.94));
  border-radius: var(--radius-lg);
  padding: 70px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.cta-banner::before,
.cta-banner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
}
.cta-banner::before {
  width: 220px; height: 220px;
  background: var(--yellow);
  opacity: 0.28;
  top: -80px; left: -60px;
}
.cta-banner::after {
  width: 260px; height: 260px;
  background: var(--green-light);
  opacity: 0.22;
  bottom: -100px; right: -60px;
}

.cta-banner h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  max-width: 520px;
  margin: 0 auto 32px;
  opacity: 0.88;
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary {
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 0 16px 34px rgba(242, 179, 27, 0.3);
  position: relative;
  z-index: 1;
}
.cta-banner .btn-primary:hover { background: #ffc846; }

/* ============================================================
   Contact
   ============================================================ */
.contact {
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease);
}
.contact-card:hover { transform: translateY(-6px); }

.contact-card .icon-dot {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contact-card p, .contact-card a {
  font-size: 0.9rem;
  color: var(--text-soft);
}

.contact-form {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.field input,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(22, 35, 63, 0.14);
  background: rgba(255, 255, 255, 0.7);
  font-family: var(--font-body);
  font-size: 0.94rem;
  color: var(--text);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(12, 154, 72, 0.12);
}

.field textarea { resize: vertical; min-height: 110px; }

.form-note {
  font-size: 0.82rem;
  color: var(--text-soft);
  margin-top: 14px;
  text-align: center;
}

.form-note.success { color: var(--green); font-weight: 600; }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  padding: 70px 0 26px;
  position: relative;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-brand {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.footer-brand img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  flex-shrink: 0;
}

.footer-brand h4 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.footer-brand p {
  font-size: 0.88rem;
  opacity: 0.7;
}

.footer-col h5 {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 0.92rem;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.footer-col p, .footer-col a {
  display: block;
  font-size: 0.88rem;
  opacity: 0.75;
  margin-bottom: 10px;
  transition: opacity 0.25s var(--ease);
}
.footer-col a:hover { opacity: 1; color: var(--green-light); }

.footer-bottom {
  padding-top: 26px;
  text-align: center;
  font-size: 0.82rem;
  opacity: 0.6;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero-inner,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual { order: -1; max-width: 340px; margin: 0 auto; }
  .services-grid,
  .why-grid,
  .counters,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-pillars { grid-template-columns: 1fr; }
  .timeline { flex-wrap: wrap; row-gap: 40px; }
  .timeline::before { display: none; }
  .timeline-step { flex: 0 0 45%; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }

  .navbar.open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 84px;
    left: 20px;
    right: 20px;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 24px;
    gap: 18px;
    box-shadow: var(--shadow-soft);
  }

  .section { padding: 76px 0; }
  .hero { padding-top: 130px; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .services-grid,
  .why-grid,
  .counters,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { padding: 50px 26px; }
  .timeline-step { flex: 0 0 100%; }
  .floating-badge { display: none; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Focus visibility ---------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}
