@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

:root {
  --ink: #0a0a0f;
  --white: #ffffff;
  --cream: #f9f7f4;
  --accent: #ff4d2e;
  --accent-dark: #d93a1e;
  --muted: #6b6b7a;
  --border: #e5e3df;
  --section-alt: #f4f2ee;
  --success: #1a8a4a;
--font-display: 'Poppins', sans-serif;
--font-body: 'Inter', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(10,10,15,0.08);
  --shadow-lg: 0 12px 48px rgba(10,10,15,0.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.03em;
}
.nav-logo span { color: var(--accent); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-cta {
  background: var(--ink) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 500 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--accent) !important; }
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: 0.3s;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.22s;
  justify-content: center;
}
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,77,46,0.3); }
.btn-outline { background: transparent; color: var(--ink); border: 2px solid var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--white); transform: translateY(-2px); }
.btn-outline-light { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.35); }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--accent); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--ink); font-weight: 600; }
.btn-white:hover { background: var(--cream); transform: translateY(-2px); }
.btn-full { width: 100%; }

/* ─── HERO ─── */
.hero {
  padding-top: 68px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.hero-bg-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,77,46,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,77,46,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,77,46,0.16) 0%, transparent 70%);
  right: -150px; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.hero-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 5%;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,77,46,0.12);
  border: 1px solid rgba(255,77,46,0.25);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.75rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  max-width: 1200px;
}
.hero-title em { color: var(--accent); font-style: normal; }
.hero-desc {
  color: rgba(255,255,255,0.58);
  font-size: 1.12rem;
  max-width: 520px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 4rem; }
.hero-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--white);
  display: block;
  letter-spacing: -0.03em;
}
.hero-stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ─── SECTIONS ─── */
section { padding: 6rem 5%; }
.container { max-width: 1200px; margin: 0 auto; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-sub {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 540px;
  line-height: 1.8;
  font-weight: 300;
}

/* ─── SERVICES ─── */
.services-section { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  border: 1px solid var(--border);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: var(--accent);
  transition: height 0.3s;
}
.service-card:hover::before { height: 100%; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-icon-wrap {
  width: 52px; height: 52px;
  background: rgba(255,77,46,0.08);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.service-card p { color: var(--muted); font-size: 0.92rem; line-height: 1.7; margin-bottom: 1.5rem; font-weight: 300; }
.service-link {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s;
}
.service-link:hover { gap: 0.65rem; }

/* ─── PRICING ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.price-card {
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  border: 2px solid var(--border);
  transition: all 0.3s;
  position: relative;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-card.featured { border-color: var(--accent); background: var(--ink); color: var(--white); }
.price-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  white-space: nowrap;
}
.price-type { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); margin-bottom: 0.5rem; }
.price-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: 1.25rem; letter-spacing: -0.02em; }
.price-amount { font-family: var(--font-display); font-size: 2.6rem; font-weight: 800; letter-spacing: -0.04em; line-height: 1; margin-bottom: 0.25rem; }
.price-amount sup { font-size: 1.1rem; vertical-align: super; }
.price-period { font-size: 0.8rem; color: var(--muted); margin-bottom: 1.75rem; }
.price-card.featured .price-period { color: rgba(255,255,255,0.42); }
.price-features { list-style: none; margin-bottom: 2rem; }
.price-features li {
  padding: 0.5rem 0;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 0.7rem;
  font-weight: 300;
  color: var(--ink);
}
.price-card.featured .price-features li { border-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.78); }
.check-icon { flex-shrink: 0; color: var(--accent); }

/* ─── HOW IT WORKS ─── */
.how-section { background: var(--section-alt); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}
.step-item { text-align: center; position: relative; }
.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1rem; top: 1.85rem;
  width: 18px; height: 2px;
  background: var(--border);
}
.step-num {
  width: 60px; height: 60px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.step-item h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.step-item p { color: var(--muted); font-size: 0.87rem; line-height: 1.65; font-weight: 300; }

/* ─── ABOUT ─── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-visual { background: var(--ink); border-radius: var(--radius-lg); padding: 3rem; color: var(--white); position: relative; overflow: hidden; }
.about-visual::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,77,46,0.2), transparent 70%);
  bottom: -80px; right: -80px;
}
.about-visual-tag {
  display: inline-block;
  background: rgba(255,77,46,0.15);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.about-visual-title { font-family: var(--font-display); font-size: 2rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 1.25rem; position: relative; }
.about-visual p { color: rgba(255,255,255,0.52); font-size: 0.92rem; line-height: 1.8; font-weight: 300; position: relative; }
.about-pillars { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.about-pillar { display: flex; gap: 1rem; align-items: flex-start; }
.pillar-dot { width: 10px; height: 10px; background: var(--accent); border-radius: 50%; flex-shrink: 0; margin-top: 0.45rem; }
.about-pillar h4 { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; margin-bottom: 0.2rem; }
.about-pillar p { color: var(--muted); font-size: 0.87rem; font-weight: 300; line-height: 1.6; }

/* ─── CTA STRIP ─── */
.cta-strip { background: var(--accent); padding: 4rem 5%; text-align: center; }
.cta-strip h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800; color: var(--white); letter-spacing: -0.03em; margin-bottom: 0.75rem; }
.cta-strip p { color: rgba(255,255,255,0.76); margin-bottom: 2rem; font-weight: 300; }

/* ─── FOOTER ─── */
footer { background: var(--ink); color: rgba(255,255,255,0.48); padding: 4rem 5% 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; margin-bottom: 3rem; }
.footer-brand .nav-logo { display: inline-block; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.8; font-weight: 300; max-width: 280px; }
footer h4 { font-family: var(--font-display); font-size: 0.78rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.25rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.65rem; }
.footer-links a { color: rgba(255,255,255,0.42); text-decoration: none; font-size: 0.88rem; font-weight: 300; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.82rem; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(255,255,255,0.35); font-size: 0.78rem; text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--white); }

/* ─── PAGE HEADER ─── */
.page-header {
  background: var(--ink);
  padding: calc(68px + 3.5rem) 5% 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,77,46,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,77,46,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
}
.page-header h1 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; color: var(--white); letter-spacing: -0.03em; position: relative; }
.page-header p { color: rgba(255,255,255,0.48); margin-top: 0.75rem; font-weight: 300; position: relative; }

/* ─── CHECKOUT ─── */
.checkout-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 5%;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  align-items: start;
}
.checkout-form-box { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); padding: 2.5rem; }
.checkout-form-box h2 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 1.75rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.75rem; font-weight: 600; color: var(--ink); margin-bottom: 0.45rem; text-transform: uppercase; letter-spacing: 0.07em; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); }
.order-summary-box { background: var(--ink); border-radius: var(--radius-lg); padding: 2rem; color: var(--white); position: sticky; top: 90px; }
.order-summary-box h3 { font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.order-item { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.25rem; padding-bottom: 1.25rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.order-item-name { font-size: 0.92rem; font-weight: 500; }
.order-item-desc { font-size: 0.78rem; color: rgba(255,255,255,0.38); margin-top: 0.2rem; }
.order-item-price { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; white-space: nowrap; }
.order-subtotal { display: flex; justify-content: space-between; padding: 0.5rem 0; font-size: 0.83rem; color: rgba(255,255,255,0.42); }
.order-total { display: flex; justify-content: space-between; align-items: center; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.12); }
.order-total span { font-size: 0.75rem; color: rgba(255,255,255,0.48); text-transform: uppercase; letter-spacing: 0.08em; }
.order-total strong { font-family: var(--font-display); font-size: 1.65rem; font-weight: 800; }
.secure-badge { display: flex; align-items: center; gap: 0.6rem; margin-top: 1.5rem; padding: 0.8rem 1rem; background: rgba(255,255,255,0.05); border-radius: var(--radius); font-size: 0.77rem; color: rgba(255,255,255,0.42); border: 1px solid rgba(255,255,255,0.07); }
.alert { padding: 1rem 1.25rem; border-radius: var(--radius); margin-bottom: 1.5rem; font-size: 0.9rem; display: flex; align-items: flex-start; gap: 0.7rem; }
.alert-success { background: #e8f8ef; color: var(--success); border: 1px solid #a8e6c0; }
.alert-error { background: #feeaea; color: #c0392b; border: 1px solid #f5c0c0; }

/* ─── CONTACT ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; max-width: 1100px; margin: 0 auto; padding: 4rem 5%; }
.contact-info h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 1rem; }
.contact-info > p { color: var(--muted); font-size: 0.92rem; line-height: 1.8; font-weight: 300; margin-bottom: 2rem; }
.contact-detail { display: flex; gap: 1rem; margin-bottom: 1.25rem; align-items: flex-start; }
.contact-detail-icon { width: 44px; height: 44px; background: rgba(255,77,46,0.08); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--accent); }
.contact-detail h4 { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.2rem; }
.contact-detail p { color: var(--muted); font-size: 0.9rem; }
.contact-detail a { color: var(--ink); text-decoration: none; transition: color 0.2s; }
.contact-detail a:hover { color: var(--accent); }
.contact-form-box { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); padding: 2.5rem; }
.contact-form-box h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 1.75rem; }

/* ─── POLICY ─── */
.policy-wrap { max-width: 820px; margin: 0 auto; padding: 4rem 5%; }
.policy-wrap h2 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; letter-spacing: -0.02em; margin: 2.5rem 0 0.75rem; }
.policy-wrap h2:first-of-type { margin-top: 0; }
.policy-wrap p { color: var(--muted); line-height: 1.9; margin-bottom: 1rem; font-size: 0.95rem; font-weight: 300; }
.policy-wrap ul { color: var(--muted); padding-left: 1.5rem; margin-bottom: 1rem; }
.policy-wrap ul li { margin-bottom: 0.5rem; font-size: 0.95rem; font-weight: 300; line-height: 1.75; }
.policy-date { font-size: 0.82rem; color: var(--muted); margin-bottom: 2.5rem; }

/* ─── SERVICES PAGE ─── */
.services-detail-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; margin-top: 3rem; }
.service-detail-card { border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.25rem; background: var(--white); transition: all 0.3s; }
.service-detail-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-detail-card h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.5rem; }
.service-price-tag { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--accent); margin: 0.75rem 0; }
.service-detail-card > p { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.25rem; font-weight: 300; line-height: 1.7; }
.includes-list { list-style: none; margin-bottom: 1.75rem; }
.includes-list li { padding: 0.5rem 0; font-size: 0.88rem; color: var(--muted); display: flex; align-items: center; gap: 0.7rem; border-bottom: 1px solid var(--border); font-weight: 300; }
.includes-list li:last-child { border-bottom: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 68px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); flex-direction: column; padding: 1.5rem 5%; gap: 1rem; z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }
  .hero-stats { gap: 1.5rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .checkout-wrap { grid-template-columns: 1fr; }
  .order-summary-box { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 4rem 5%; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .step-item:not(:last-child)::after { display: none; }
}
@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
}
