:root {
  --bg: #080c16;
  --bg-2: #0d1424;
  --card: #111a2c;
  --card-2: #172238;
  --text: #f7f3e8;
  --muted: #aeb8cb;
  --muted-2: #748197;
  --white: #ffffff;
  --cream: #f7f3e8;
  --red: #df111a;
  --red-2: #ff3545;
  --orange: #ff7a2b;
  --yellow: #ffcd50;
  --green: #18c77c;
  --line: rgba(255,255,255,.12);
  --shadow: 0 26px 80px rgba(0,0,0,.36);
  --shadow-soft: 0 18px 48px rgba(0,0,0,.24);
  --radius: 28px;
  --radius-lg: 40px;
  --container: 1240px;
  --header-height: 72px;
  --font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(223,17,26,.18), transparent 34rem),
    radial-gradient(circle at 90% 18%, rgba(255,122,43,.12), transparent 28rem),
    var(--bg);
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
::selection { background: var(--yellow); color: #111; }

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 999;
  padding: 12px 16px;
  background: var(--yellow);
  color: #111;
  border-radius: 12px;
  font-weight: 800;
}
.skip-link:focus { top: 14px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 12, 22, .78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  box-shadow: 0 0 0 1px rgba(255,255,255,.1), 0 12px 30px rgba(0,0,0,.35);
  overflow: hidden;
}
.brand-mark img { width: 38px; height: 38px; object-fit: cover; border-radius: 50%; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-size: .98rem; letter-spacing: -.03em; }
.brand-text small { margin-top: 3px; color: var(--muted); font-size: .68rem; }
.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  font-size: .84rem;
  font-weight: 800;
  color: rgba(255,255,255,.78);
}
.primary-nav a {
  padding: 9px 10px;
  border-radius: 999px;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,.09);
}
.nav-cta {
  margin-left: 8px;
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--red), var(--orange)) !important;
  box-shadow: 0 12px 34px rgba(223,17,26,.28);
}
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  border-radius: 15px;
  cursor: pointer;
  position: relative;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 10px;
  background: var(--white);
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.section { padding: 76px 0; position: relative; }
section[id] { scroll-margin-top: calc(var(--header-height) + 18px); }
.hero { padding: 56px 0 42px; min-height: auto; display: grid; align-items: center; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .78fr); gap: clamp(28px, 4vw, 52px); align-items: center; }
.offer-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--cream);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.13);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.09);
  font-weight: 800;
  font-size: .86rem;
}
.offer-badge span { width: 9px; height: 9px; border-radius: 999px; background: var(--green); box-shadow: 0 0 0 7px rgba(24,199,124,.12); }
.offer-badge del { color: var(--muted); margin-left: 4px; font-weight: 700; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin: 22px 0 18px;
  max-width: 760px;
  font-size: clamp(2.85rem, 5.25vw, 5.35rem);
  line-height: .94;
  letter-spacing: -.07em;
  text-wrap: balance;
}
h2 {
  font-size: clamp(2rem, 3.65vw, 3.75rem);
  line-height: 1;
  letter-spacing: -.055em;
  margin-bottom: 18px;
  text-wrap: balance;
}
h3 { letter-spacing: -.035em; }
p { color: var(--muted); line-height: 1.7; }
.hero-lead {
  max-width: 690px;
  font-size: clamp(1.02rem, 1.45vw, 1.18rem);
  line-height: 1.58;
  color: #d5dceb;
  margin-bottom: 18px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 19px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover, .btn:focus-visible { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: var(--white);
  box-shadow: 0 18px 45px rgba(223,17,26,.32);
}
.btn-primary:hover { box-shadow: 0 22px 58px rgba(223,17,26,.42); }
.btn-ghost {
  background: rgba(255,255,255,.07);
  color: var(--white);
  border-color: rgba(255,255,255,.14);
}
.btn-wide { width: 100%; }
.hero-note {
  max-width: 590px;
  padding: 14px 16px;
  border-left: 3px solid var(--yellow);
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  color: var(--muted);
}
.hero-note strong { color: var(--white); }
.hero-visual { position: relative; }
.hero-visual::before {
  content: "";
  position: absolute;
  inset: -24px;
  border-radius: 46px;
  background: linear-gradient(135deg, rgba(223,17,26,.35), rgba(255,205,80,.18));
  filter: blur(18px);
  opacity: .7;
  z-index: -1;
}
.hero-visual img {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: var(--shadow);
  aspect-ratio: 16/11;
  object-fit: cover;
}
.floating-chip {
  position: absolute;
  padding: 12px 14px;
  border-radius: 999px;
  color: #111827;
  background: var(--cream);
  box-shadow: 0 20px 45px rgba(0,0,0,.26);
  font-weight: 900;
  font-size: .88rem;
}
.chip-top { top: 30px; right: 24px; }
.chip-bottom { left: 28px; bottom: 24px; background: var(--yellow); }

.benefit-strip { padding: 12px 0 36px; }
.strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.mini-card {
  padding: 20px;
  border-radius: 24px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.mini-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 13px;
  border-radius: 12px;
  background: rgba(223,17,26,.18);
  color: var(--yellow);
  font-weight: 900;
}
.mini-card strong { display: block; margin-bottom: 8px; color: var(--white); }
.mini-card p { margin: 0; font-size: .92rem; }

.eyebrow {
  margin-bottom: 14px;
  color: var(--yellow);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .16em;
}
.section-head { max-width: 850px; margin-bottom: 30px; }
.section-head.center { text-align: center; margin-inline: auto; }
.section-head p, .section-copy > p { font-size: 1.05rem; }
.two-col { display: grid; grid-template-columns: .86fr 1.14fr; gap: 56px; align-items: center; }
.check-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.check-list li {
  position: relative;
  padding-left: 30px;
  color: #dde4f0;
  line-height: 1.45;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(24,199,124,.16);
  color: #69f0b3;
  font-size: .74rem;
  font-weight: 900;
}
.danger-list li::before { content: "!"; background: rgba(223,17,26,.2); color: #ff7c83; }
.before-after {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}
.before-after img {
  grid-column: 1 / -1;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow-soft);
}
.state-card {
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
}
.state-card span { display: inline-block; margin-bottom: 12px; font-size: .72rem; color: var(--yellow); font-weight: 900; letter-spacing: .16em; }
.state-card h3 { margin-bottom: 10px; font-size: 1.45rem; }
.state-card p { margin: 0; font-size: .95rem; }
.before-card { background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.035)); }
.after-card { background: linear-gradient(135deg, rgba(223,17,26,.23), rgba(255,122,43,.12)); border-color: rgba(255,122,43,.28); }

.offer-section { background: linear-gradient(180deg, transparent, rgba(255,255,255,.035), transparent); }
.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.service-card {
  padding: clamp(22px, 3vw, 32px);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,.085), rgba(255,255,255,.045)),
    var(--card);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow-soft);
}
.service-card.featured {
  background:
    radial-gradient(circle at 86% 12%, rgba(255,205,80,.18), transparent 20rem),
    linear-gradient(135deg, rgba(223,17,26,.18), rgba(255,255,255,.055)),
    var(--card);
  border-color: rgba(255,122,43,.3);
}
.service-top { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.service-number {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: var(--cream);
  color: #111827;
  font-weight: 900;
}
.service-card h3 { margin: 0; font-size: clamp(1.42rem, 2.4vw, 2.12rem); }
.service-card p { font-size: .97rem; line-height: 1.55; }
.service-card .check-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px 18px; margin-top: 16px; }
.service-card .check-list li { font-size: .92rem; padding-left: 27px; }

.audience-section { padding-top: 64px; }
.chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chips span {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 11px 17px;
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.11);
  color: #edf1f7;
  font-weight: 800;
}
.chips span:nth-child(3n) { background: rgba(223,17,26,.18); border-color: rgba(223,17,26,.28); }
.chips span:last-child { background: var(--yellow); color: #16120a; }

.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: steps; }
.step-card {
  position: relative;
  min-height: 224px;
  padding: 23px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.11);
  overflow: hidden;
}
.step-card::after {
  content: "";
  position: absolute;
  inset: auto -60px -90px auto;
  width: 190px;
  height: 190px;
  background: radial-gradient(circle, rgba(223,17,26,.28), transparent 68%);
}
.step-card span {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: var(--white);
  font-weight: 900;
  font-size: 1.2rem;
}
.step-card h3 { margin-bottom: 12px; font-size: 1.35rem; }
.step-card p { margin-bottom: 0; }

.pricing-section {
  background:
    radial-gradient(circle at 16% 30%, rgba(223,17,26,.18), transparent 24rem),
    linear-gradient(180deg, transparent, rgba(255,255,255,.035));
}
.pricing-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 56px; align-items: center; }
.limited-note {
  width: fit-content;
  margin-top: 24px;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(255,205,80,.16);
  color: var(--yellow);
  border: 1px solid rgba(255,205,80,.28);
  font-weight: 900;
}
.pricing-card {
  position: relative;
  padding: clamp(26px, 4vw, 42px);
  border-radius: 44px;
  background:
    radial-gradient(circle at 90% 0%, rgba(255,205,80,.25), transparent 18rem),
    linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.055));
  border: 1px solid rgba(255,255,255,.17);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.pricing-card::before {
  content: "GRATIS WEB STRANICA";
  position: absolute;
  top: 24px;
  right: -54px;
  width: 240px;
  padding: 10px 0;
  transform: rotate(28deg);
  background: var(--yellow);
  color: #111;
  text-align: center;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .08em;
}
.pricing-label { display: inline-flex; margin-bottom: 18px; padding: 9px 13px; border-radius: 999px; background: rgba(255,255,255,.09); color: var(--yellow); font-weight: 900; }
.price-line { display: flex; align-items: baseline; gap: 10px; margin-bottom: 4px; }
.price-line span { font-size: clamp(4rem, 9vw, 7rem); line-height: .9; letter-spacing: -.07em; font-weight: 900; }
.price-line small { color: var(--muted); font-weight: 800; }
.old-price { color: var(--muted); margin-bottom: 22px; font-weight: 700; }
.price-list { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-bottom: 28px; }
.pricing-small { margin: 16px 0 0; font-size: .88rem; text-align: center; }

.comparison-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  border-radius: var(--radius-lg);
  padding: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
}
.compare-col { padding: clamp(24px, 4vw, 38px); border-radius: 30px; }
.muted-col { background: rgba(255,255,255,.06); }
.loud-col { background: linear-gradient(135deg, rgba(223,17,26,.25), rgba(255,122,43,.14)); border: 1px solid rgba(255,122,43,.24); }
.compare-col h3 { margin-bottom: 20px; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.compare-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.compare-col li { padding: 14px 16px; border-radius: 18px; background: rgba(255,255,255,.07); color: #e9eef7; font-weight: 800; }
.muted-col li { color: var(--muted); }

.examples-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.example-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.11);
  box-shadow: var(--shadow-soft);
}
.example-card img { width: 100%; aspect-ratio: 1.45/1; object-fit: cover; }
.example-card div { padding: 22px; }
.example-card h3 { margin-bottom: 10px; font-size: 1.22rem; }
.example-card p { margin: 0; font-size: .94rem; }

.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 52px; align-items: start; }
.faq-list { display: grid; gap: 12px; }
.faq-item { border-radius: 22px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); overflow: hidden; }
.faq-item button {
  width: 100%;
  padding: 21px 54px 21px 22px;
  border: 0;
  background: transparent;
  color: var(--white);
  text-align: left;
  font-weight: 900;
  cursor: pointer;
  position: relative;
}
.faq-item button::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--yellow);
  font-size: 1.6rem;
  line-height: 1;
}
.faq-item button[aria-expanded="true"]::after { content: "−"; }
.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .25s ease;
}
.faq-panel > p {
  overflow: hidden;
  margin: 0 22px;
}
.faq-item button[aria-expanded="true"] + .faq-panel { grid-template-rows: 1fr; }
.faq-item button[aria-expanded="true"] + .faq-panel > p { padding-bottom: 20px; }

.contact-section { padding-bottom: 86px; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 42px; align-items: start; }
.direct-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 28px; }
.direct-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  min-height: 118px;
  border-radius: 22px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.11);
  transition: transform .18s ease, background .18s ease;
}
.direct-card:hover, .direct-card:focus-visible { transform: translateY(-2px); background: rgba(255,255,255,.1); }
.direct-card span { color: var(--yellow); font-size: 1.4rem; }
.direct-card strong { color: var(--white); }
.direct-card small { color: var(--muted); overflow-wrap: anywhere; }
.contact-form {
  padding: clamp(22px, 4vw, 34px);
  border-radius: var(--radius-lg);
  background: var(--cream);
  color: #101827;
  box-shadow: var(--shadow);
}
.form-row { margin-bottom: 16px; }
.two-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: block; margin-bottom: 8px; font-weight: 900; color: #111827; }
input, textarea {
  width: 100%;
  border: 1px solid #d8dce5;
  border-radius: 18px;
  background: #fff;
  color: #111827;
  padding: 14px 15px;
  outline: 0;
  transition: border .18s ease, box-shadow .18s ease;
}
textarea { resize: vertical; min-height: 132px; }
input:focus, textarea:focus { border-color: var(--red); box-shadow: 0 0 0 4px rgba(223,17,26,.12); }
input.is-invalid, textarea.is-invalid { border-color: var(--red); background: #fff7f7; }
.form-status { min-height: 22px; margin-bottom: 12px; color: #b40013; font-weight: 800; }
.form-small { color: #667085; margin: 14px 0 0; text-align: center; font-size: .86rem; }

.site-footer {
  padding: 58px 0 26px;
  background: #050812;
  border-top: 1px solid rgba(255,255,255,.1);
}
.footer-grid { display: grid; grid-template-columns: 1.2fr .65fr 1fr .8fr; gap: 34px; }
.footer-grid h3 { margin-bottom: 14px; font-size: 1rem; }
.footer-grid a { display: block; color: var(--muted); margin-bottom: 10px; }
.footer-grid a:hover { color: var(--white); }
.footer-brand { margin-bottom: 18px; }
.footer-grid p { margin: 0; font-size: .94rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 28px;
  margin-top: 34px;
  border-top: 1px solid rgba(255,255,255,.09);
  color: var(--muted-2);
}

.simple-page { min-height: calc(100svh - var(--header-height)); padding: 86px 0; display: grid; align-items: center; }
.simple-card {
  max-width: 820px;
  padding: clamp(28px, 6vw, 58px);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
}
.simple-card h1 { font-size: clamp(2.8rem, 7vw, 5.4rem); }
.simple-card p { font-size: 1.08rem; }
.policy-content h2 { font-size: 1.8rem; margin-top: 34px; }
.policy-content ul { color: var(--muted); line-height: 1.8; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  .hero-grid, .two-col, .pricing-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 34px; }
  .hero-visual { max-width: 760px; margin-inline: auto; }
  h1 { max-width: 860px; }
  .strip-grid, .timeline { grid-template-columns: repeat(2, 1fr); }
  .examples-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 940px) {
  .menu-toggle { display: block; }
  .primary-nav {
    position: fixed;
    inset: var(--header-height) 16px auto 16px;
    display: grid;
    gap: 6px;
    padding: 16px;
    border-radius: 24px;
    background: rgba(12,18,31,.96);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: var(--shadow);
    transform: translateY(-14px) scale(.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
  }
  .primary-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
  .primary-nav a { padding: 14px 16px; border-radius: 16px; }
  .nav-cta { margin-left: 0; text-align: center; }
}

@media (max-width: 740px) {
  :root { --header-height: 76px; }
  .container { width: min(100% - 24px, var(--container)); }
  .section { padding: 64px 0; }
  .hero { padding-top: 44px; }
  .brand-text small { display: none; }
  .brand-mark { width: 42px; height: 42px; }
  .hero-actions .btn { width: 100%; }
  .floating-chip { display: none; }
  .strip-grid, .service-grid, .timeline, .comparison-table, .examples-grid, .direct-actions, .footer-grid, .price-list, .service-card .check-list { grid-template-columns: 1fr; }
  .before-after { grid-template-columns: 1fr; }
  .two-inputs { grid-template-columns: 1fr; }
  h1 { font-size: clamp(2.55rem, 12vw, 4.1rem); line-height: .98; }
  h2 { font-size: clamp(2.05rem, 9.5vw, 3.2rem); }
  .offer-badge { font-size: .82rem; }
  .pricing-card::before { right: -70px; top: 26px; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 420px) {
  .hero-note { font-size: .94rem; }
  .service-card, .pricing-card, .contact-form { border-radius: 28px; }
  .direct-card { min-height: 112px; }
}

@media (max-width: 940px) {
  .primary-nav.is-static {
    position: static;
    display: flex;
    inset: auto;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .primary-nav.is-static a:not(.nav-cta) { display: none; }
}
