/* ═══════════════════════════════════════════════════════
   FlpLaundry – Main Stylesheet
   Aesthetic: Navy-deep / Icy cyan accent / Editorial
═══════════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --bg:          #060e18;
  --bg-card:     #0a1622;
  --bg-surface:  #0f1c2e;
  --accent:      #63d2ff;
  --accent-glow: rgba(99, 210, 255, 0.25);
  --accent-soft: rgba(99, 210, 255, 0.08);
  --white:       #f0f6ff;
  --muted:       #7a97b8;
  --border:      rgba(99, 210, 255, 0.12);
  --font-head:   'Syne', sans-serif;
  --font-body:   'DM Sans', sans-serif;
  --radius:      14px;
  --shadow:      0 20px 60px rgba(0,0,0,0.5);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
address { font-style: normal; }

/* ── Container ── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: var(--bg);
  font-weight: 600;
  box-shadow: 0 0 28px rgba(99,210,255,0.35);
}
.btn--primary:hover {
  background: #fff;
  box-shadow: 0 0 40px rgba(99,210,255,0.5);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--border);
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn--nav {
  background: var(--accent-soft);
  color: var(--accent);
  border: 1.5px solid var(--border);
  padding: 10px 22px;
  font-size: 0.875rem;
}
.btn--nav:hover {
  background: var(--accent);
  color: var(--bg);
}
.btn--outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  display: block;
  text-align: center;
}
.btn--outline:hover {
  background: var(--accent);
  color: var(--bg);
}
.btn--outline-dark {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--border);
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: 50px;
  transition: all 0.25s;
}
.btn--outline-dark:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn--full { width: 100%; justify-content: center; }

/* ════════════════════ NAV ════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 18px 40px;
  background: rgba(6,14,24,0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, padding 0.3s;
}
.nav.scrolled {
  border-bottom-color: var(--border);
  padding: 12px 40px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.2rem;
  letter-spacing: -0.3px;
  flex-shrink: 0;
}
.logo-mark svg { width: 36px; height: 36px; }
.logo-text strong { color: var(--accent); }
.nav__links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.nav__links a {
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--white); }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile drawer */
.nav__drawer {
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--bg-surface);
  border-left: 1px solid var(--border);
  z-index: 999;
  transition: right 0.3s ease;
  padding: 100px 32px 40px;
}
.nav__drawer.open { right: 0; }
.nav__drawer ul { display: flex; flex-direction: column; gap: 20px; }
.nav__drawer a {
  font-size: 1.1rem;
  font-family: var(--font-head);
  color: var(--white);
  transition: color 0.2s;
}
.nav__drawer a:hover { color: var(--accent); }

/* ════════════════════ HERO ════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 120px 80px 80px;
  position: relative;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.bubble {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}
.b1 {
  width: 500px; height: 500px;
  background: var(--accent);
  top: -100px; right: -100px;
  animation: float1 8s ease-in-out infinite;
}
.b2 {
  width: 300px; height: 300px;
  background: #3a7bd5;
  bottom: 50px; left: -80px;
  animation: float2 10s ease-in-out infinite;
}
.b3 {
  width: 200px; height: 200px;
  background: var(--accent);
  top: 40%; left: 30%;
  animation: float1 12s ease-in-out infinite reverse;
}
.wave-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(99,210,255,0.08);
}
.r1 { width: 600px; height: 600px; top: 50%; right: -100px; transform: translateY(-50%); }
.r2 { width: 800px; height: 800px; top: 50%; right: -200px; transform: translateY(-50%); }

@keyframes float1 {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(20px) scale(0.95); }
}

.hero__content { position: relative; z-index: 1; }
.hero__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 6px 16px;
  border: 1px solid var(--border);
  border-radius: 50px;
  background: var(--accent-soft);
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease both;
}
.hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease 0.1s both;
}
.hero__title em {
  font-style: normal;
  color: var(--accent);
  position: relative;
}
.hero__sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 40px;
  animation: fadeInUp 0.6s ease 0.2s both;
}
.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fadeInUp 0.6s ease 0.3s both;
}
.hero__stats {
  display: flex;
  align-items: center;
  gap: 28px;
  animation: fadeInUp 0.6s ease 0.4s both;
}
.stat { display: flex; flex-direction: column; }
.stat__num {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat__label {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 4px;
}
.stat__divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Hero visual */
.hero__visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 0.8s ease 0.2s both;
}
.machine-card {
  position: relative;
  width: 300px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.machine-svg { width: 100%; height: 100%; filter: drop-shadow(0 0 30px rgba(99,210,255,0.2)); }
.machine-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(99,210,255,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--accent);
  white-space: nowrap;
  box-shadow: var(--shadow);
}
.fb1 { top: 20px; right: -30px; animation: float2 6s ease-in-out infinite; }
.fb2 { bottom: 40px; left: -30px; animation: float1 7s ease-in-out infinite; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ════════════════════ SECTION SHARED ════════════════════ */
.section-head {
  text-align: center;
  margin-bottom: 64px;
}
.section-head--light { color: var(--white); }
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 5px 14px;
  border: 1px solid var(--border);
  border-radius: 50px;
  background: var(--accent-soft);
  margin-bottom: 20px;
}
.section-head h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-head h2 em {
  font-style: normal;
  color: var(--accent);
}
.section-head p {
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto;
  font-size: 1rem;
}

/* ════════════════════ SERVICES ════════════════════ */
.services {
  padding: 120px 0;
  position: relative;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, var(--accent-soft), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(99,210,255,0.3);
  box-shadow: 0 20px 60px rgba(99,210,255,0.1);
}
.service-card:hover::before { opacity: 1; }
.service-card.featured {
  border-color: rgba(99,210,255,0.4);
  background: linear-gradient(135deg, #0a1622 0%, #0d2038 100%);
}
.featured-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.service-card__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
}
.service-card__icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-card p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 20px;
  line-height: 1.6;
}
.service-card__tag {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 500;
  padding: 4px 12px;
  background: var(--accent-soft);
  border: 1px solid var(--border);
  border-radius: 50px;
}

/* ════════════════════ HOW IT WORKS ════════════════════ */
.how {
  padding: 120px 0;
  background: var(--bg-surface);
  position: relative;
  overflow: hidden;
}
.how__blob {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99,210,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.steps {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  justify-content: center;
}
.step {
  flex: 1;
  max-width: 300px;
  text-align: center;
  position: relative;
}
.step__num {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(99,210,255,0.2);
  line-height: 1;
  margin-bottom: 16px;
}
.step__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}
.step__icon svg { width: 100%; height: 100%; }
.step h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.step p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}
.step p em { font-style: italic; color: var(--accent); }
.step__arrow {
  font-size: 2rem;
  color: var(--border);
  margin-top: 80px;
  flex-shrink: 0;
  user-select: none;
}

/* ════════════════════ PRICING ════════════════════ */
.pricing {
  padding: 120px 0;
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: transform 0.3s;
}
.price-card:hover { transform: translateY(-6px); }
.price-card--featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, #0a1c35 0%, #0d2a3f 100%);
  box-shadow: 0 0 60px rgba(99,210,255,0.12);
  transform: scale(1.04);
}
.price-card--featured:hover { transform: scale(1.04) translateY(-6px); }
.price-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 50px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.price-card__header { margin-bottom: 28px; }
.price-card__header h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--muted);
}
.price-card--featured .price-card__header h3 { color: var(--accent); }
.price-card__amount {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  display: flex;
  align-items: flex-start;
  gap: 2px;
}
.currency { font-size: 1.5rem; margin-top: 8px; color: var(--accent); }
.unit { font-size: 1rem; color: var(--muted); font-weight: 400; align-self: flex-end; margin-bottom: 6px; }
.price-card__list {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.price-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--muted);
}
.check { color: var(--accent); font-weight: 700; flex-shrink: 0; }
.cross { color: rgba(255,255,255,0.2); flex-shrink: 0; }
.price-card--featured .price-card__list li { color: var(--white); }
.pricing__note {
  text-align: center;
  margin-top: 40px;
  font-size: 0.85rem;
  color: var(--muted);
}
.pricing__note a { color: var(--accent); }

/* ════════════════════ TESTIMONIALS ════════════════════ */
.testimonials {
  padding: 120px 0;
  background: var(--bg-surface);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: border-color 0.3s, transform 0.3s;
}
.testi-card:hover {
  border-color: rgba(99,210,255,0.25);
  transform: translateY(-4px);
}
.testi-stars {
  color: #ffd700;
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testi-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #3a7bd5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--bg);
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.9rem; font-weight: 600; }
.testi-author span { font-size: 0.78rem; color: var(--muted); }

/* ════════════════════ CONTACT ════════════════════ */
.contact {
  padding: 120px 0;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact__info .section-tag { margin-bottom: 16px; }
.contact__info h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.2;
}
.contact__info h2 em { font-style: normal; color: var(--accent); }
.contact__info > p {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 40px;
}
.contact-items { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-item__icon {
  width: 44px;
  height: 44px;
  background: var(--accent-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item__icon svg { width: 20px; height: 20px; }
.contact-item strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 4px;
}
.contact-item span,
.contact-item a {
  font-size: 0.95rem;
  color: var(--white);
  transition: color 0.2s;
}
.contact-item a:hover { color: var(--accent); }

/* Form */
.contact__form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); opacity: 0.7; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(99,210,255,0.5); }
.form-group select option { background: var(--bg-surface); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: -8px;
}

/* ════════════════════ FOOTER ════════════════════ */
.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
}
.footer__brand .nav__logo {
  margin-bottom: 16px;
  display: inline-flex;
}
.footer__brand p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 24px;
}
.social-links {
  display: flex;
  gap: 12px;
}
.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all 0.2s;
}
.social-links a svg { width: 16px; height: 16px; }
.social-links a:hover { background: var(--accent-soft); border-color: var(--accent); color: var(--accent); }
.footer__links h4,
.footer__contact h4 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
}
.footer__links ul { display: flex; flex-direction: column; gap: 12px; }
.footer__links a {
  font-size: 0.88rem;
  color: var(--muted);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--white); }
.footer__contact address,
.footer__contact a {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  display: block;
  transition: color 0.2s;
}
.footer__contact a:hover { color: var(--accent); }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--muted);
}

/* FAB call button */
.fab-call {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(99,210,255,0.4);
  z-index: 900;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: pulse 2.5s ease-in-out infinite;
}
.fab-call svg { width: 22px; height: 22px; }
.fab-call:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 32px rgba(99,210,255,0.6);
  animation: none;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(99,210,255,0.4); }
  50% { box-shadow: 0 4px 40px rgba(99,210,255,0.7); }
}

/* ════════════════════ SCROLL ANIMATIONS ════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════ RESPONSIVE ════════════════════ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 100px 40px 80px; }
  .hero__visual { display: none; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .price-card--featured { transform: scale(1); }
  .price-card--featured:hover { transform: translateY(-6px); }
  .testi-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .steps { flex-direction: column; align-items: center; }
  .step__arrow { display: none; }
}

@media (max-width: 768px) {
  .nav { padding: 16px 20px; }
  .nav__links, .btn--nav { display: none; }
  .nav__burger { display: flex; margin-left: auto; }
  .hero { padding: 80px 20px 60px; gap: 32px; }
  .hero__stats { flex-wrap: wrap; gap: 20px; }
  .services__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .contact__form { padding: 24px; }
}

@media (max-width: 480px) {
  .hero__cta { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .hero__cta .btn--ghost { width: auto; text-align: center; }
}
