/* ============================================
   TRANZBED — Design System & Styles
   Mobile-first | 390 / 768 / 1024 / 1440px
   ============================================ */

/* ---- TOKENS ---- */
:root {
  /* Colors */
  --c-bg:          #F4F3F1;   /* jasny betonowy */
  --c-bg-gray:     #ECEAE7;   /* sekcje szare */
  --c-bg-white:    #FFFFFF;
  --c-bg-dark:     #1E2124;   /* ciemny grafit */
  --c-text:        #1A1C1E;   /* prawie czarny */
  --c-text-muted:  #6B7280;   /* szary pomocniczy */
  --c-text-light:  #D1D5DB;   /* na ciemnym tle */
  --c-accent:      #F59E0B;   /* żółty budowlany */
  --c-accent-dark: #D97706;
  --c-border:      #E2DDD8;
  --c-card:        #FFFFFF;
  --c-step-num:    #F59E0B;

  /* Typography */
  --font:          'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --fz-xs:   0.75rem;
  --fz-sm:   0.875rem;
  --fz-base: 1rem;
  --fz-md:   1.125rem;
  --fz-lg:   1.25rem;
  --fz-xl:   1.5rem;
  --fz-2xl:  1.875rem;
  --fz-3xl:  2.25rem;
  --fz-4xl:  3rem;
  --fz-5xl:  3.75rem;

  /* Spacing */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* Radii */
  --r-sm:  4px;
  --r-md:  8px;
  --r-lg:  12px;
  --r-xl:  16px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.12);

  /* Layout */
  --container-max: 1240px;
  --header-h: 64px;
  --sticky-h: 72px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  font-size: var(--fz-base);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font); }
input, select, textarea { font-family: var(--font); }
ul { list-style: none; }

/* ---- CONTAINER ---- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--sp-5);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.65rem 1.25rem;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: var(--fz-sm);
  border: 2px solid transparent;
  transition: background .18s, color .18s, border-color .18s, transform .12s;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  line-height: 1.3;
}
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--c-accent);
  color: var(--c-text);
  border-color: var(--c-accent);
}
.btn--primary:hover { background: var(--c-accent-dark); border-color: var(--c-accent-dark); }

.btn--secondary {
  background: var(--c-bg-dark);
  color: #fff;
  border-color: var(--c-bg-dark);
}
.btn--secondary:hover { background: #2c3137; border-color: #2c3137; }

.btn--outline {
  background: transparent;
  color: var(--c-text);
  border-color: var(--c-border);
}
.btn--outline:hover { border-color: var(--c-text); background: rgba(0,0,0,.04); }

.btn--lg {
  padding: 0.85rem 1.75rem;
  font-size: var(--fz-base);
}
.btn--full { width: 100%; }

/* ---- HEADER ---- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--c-border);
  height: var(--header-h);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--sp-4);
}
.header__brand {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.header__logo {
  font-size: var(--fz-lg);
  font-weight: 800;
  color: var(--c-text);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.header__tagline {
  font-size: var(--fz-xs);
  color: var(--c-text-muted);
  font-weight: 400;
  white-space: nowrap;
}
.header__nav {
  display: none;
  gap: var(--sp-5);
}
.header__nav a {
  font-size: var(--fz-sm);
  font-weight: 500;
  color: var(--c-text-muted);
  transition: color .15s;
}
.header__nav a:hover { color: var(--c-text); }
.header__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.header__cta {
  padding: 0.5rem 1rem;
  font-size: var(--fz-sm);
}
.header__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: var(--sp-2);
}
.header__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all .2s;
}

/* ---- SECTION BASES ---- */
.section { padding: var(--sp-16) 0; }
.section--white { background: var(--c-bg-white); }
.section--gray  { background: var(--c-bg-gray); }
.section--dark  { background: var(--c-bg-dark); }

.section__header {
  text-align: center;
  margin-bottom: var(--sp-12);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.section__header h2 {
  font-size: var(--fz-2xl);
  font-weight: 800;
  color: var(--c-text);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-3);
  line-height: 1.2;
}
.section__header p {
  font-size: var(--fz-md);
  color: var(--c-text-muted);
  line-height: 1.7;
}
.section__header--light h2 { color: #fff; }
.section__header--light p  { color: var(--c-text-light); }

.section__cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  margin-top: var(--sp-10);
}

/* ---- HERO ---- */
.hero {
  background: var(--c-bg);
  padding: var(--sp-12) 0 var(--sp-16);
  padding-bottom: calc(var(--sp-16) + var(--sticky-h));
}
.hero__inner {
  display: flex;
  flex-direction: column;
  gap: var(--sp-10);
}
.hero__content { flex: 1; }

.hero__trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-4);
  margin-bottom: var(--sp-6);
}
.hero__trust-bar span {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fz-xs);
  font-weight: 600;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero__trust-bar svg { color: var(--c-accent); flex-shrink: 0; }

.hero__h1 {
  font-size: var(--fz-3xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--c-text);
  margin-bottom: var(--sp-5);
}
.hero__sub {
  font-size: var(--fz-md);
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-bottom: var(--sp-8);
  max-width: 560px;
}
.hero__cta-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

/* Hero Card */
.hero__card {
  background: var(--c-card);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--c-border);
}
.hero__card-header {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--fz-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--c-text-muted);
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--c-border);
}
.hero__contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-bottom: var(--sp-5);
}
.hero__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
}
.hero__contact-list svg { flex-shrink: 0; color: var(--c-accent); margin-top: 2px; }
.hero__contact-list small {
  display: block;
  font-size: var(--fz-xs);
  color: var(--c-text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}
.hero__contact-list a, .hero__contact-list span {
  font-weight: 600;
  font-size: var(--fz-md);
  color: var(--c-text);
}
.hero__contact-list a:hover { color: var(--c-accent-dark); }

.hero__card-checklist {
  background: var(--c-bg-gray);
  border-radius: var(--r-md);
  padding: var(--sp-4);
  margin-bottom: var(--sp-5);
}
.hero__card-label {
  font-size: var(--fz-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--c-text-muted);
  margin-bottom: var(--sp-3);
}
.hero__card-checklist ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.hero__card-checklist li {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fz-sm);
  font-weight: 500;
  color: var(--c-text);
}
.hero__card-checklist svg { color: var(--c-accent); flex-shrink: 0; }

/* ---- CARDS GRID ---- */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}

/* ---- SERVICE CARD ---- */
.service-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: box-shadow .2s, transform .2s;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  background: var(--c-bg-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent-dark);
  flex-shrink: 0;
}
.service-card h3 {
  font-size: var(--fz-lg);
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.3;
}
.service-card p {
  font-size: var(--fz-sm);
  color: var(--c-text-muted);
  line-height: 1.65;
  flex: 1;
}
.card-cta {
  font-size: var(--fz-sm);
  font-weight: 600;
  color: var(--c-accent-dark);
  margin-top: auto;
  transition: color .15s;
}
.card-cta:hover { color: var(--c-text); }

/* ---- STEPS ---- */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: flex;
  gap: var(--sp-5);
  align-items: flex-start;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
}
.step__connector {
  width: 2px;
  height: var(--sp-5);
  background: var(--c-border);
  margin-left: calc(var(--sp-6) + 20px);
}
.step__number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--c-accent);
  color: var(--c-text);
  font-size: var(--fz-lg);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step__content { flex: 1; }
.step__icon { display: none; }
.step__content h3 {
  font-size: var(--fz-lg);
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: var(--sp-2);
}
.step__content p {
  font-size: var(--fz-sm);
  color: var(--c-text-muted);
  line-height: 1.65;
}

/* ---- CONCRETE GRID ---- */
.concrete-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}
.concrete-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-5) var(--sp-4);
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-1);
  transition: box-shadow .2s;
}
.concrete-card:hover { box-shadow: var(--shadow-md); }
.concrete-card--popular {
  border-color: var(--c-accent);
  border-width: 2px;
}
.concrete-card__badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-accent);
  color: var(--c-text);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 8px;
  border-radius: 20px;
  white-space: nowrap;
}
.concrete-card__class {
  font-size: var(--fz-xl);
  font-weight: 800;
  color: var(--c-text);
  letter-spacing: -0.02em;
}
.concrete-card__old {
  font-size: var(--fz-sm);
  color: var(--c-text-muted);
  font-weight: 500;
}
.concrete-note {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  background: var(--c-bg-gray);
  border-radius: var(--r-md);
  padding: var(--sp-4);
  font-size: var(--fz-sm);
  color: var(--c-text-muted);
  line-height: 1.6;
}
.concrete-note svg { flex-shrink: 0; color: var(--c-accent-dark); margin-top: 2px; }
.concrete-note a { color: var(--c-accent-dark); font-weight: 600; }
.concrete-note a:hover { text-decoration: underline; }

/* ---- TAGS ---- */
.tags-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  justify-content: center;
}
.tag {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: #E5E7EB;
  font-size: var(--fz-sm);
  font-weight: 500;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  transition: background .15s, border-color .15s;
}
.tag:hover { background: rgba(245,158,11,.15); border-color: var(--c-accent); color: var(--c-accent); }

/* ---- WHY CARDS ---- */
.why-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: box-shadow .2s;
}
.why-card:hover { box-shadow: var(--shadow-md); }
.why-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: #FEF3C7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent-dark);
}
.why-card h3 {
  font-size: var(--fz-md);
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.3;
}
.why-card p {
  font-size: var(--fz-sm);
  color: var(--c-text-muted);
  line-height: 1.65;
}

/* ---- FAQ ---- */
.faq {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.faq__item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  background: none;
  border: none;
  text-align: left;
  font-size: var(--fz-base);
  font-weight: 600;
  color: var(--c-text);
  transition: background .15s;
}
.faq__q:hover { background: var(--c-bg-gray); }
.faq__q[aria-expanded="true"] { background: var(--c-bg-gray); }
.faq__icon {
  flex-shrink: 0;
  transition: transform .25s;
  color: var(--c-text-muted);
}
.faq__q[aria-expanded="true"] .faq__icon { transform: rotate(180deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s;
}
.faq__a.open {
  max-height: 400px;
}
.faq__a p {
  padding: 0 var(--sp-6) var(--sp-5);
  font-size: var(--fz-sm);
  color: var(--c-text-muted);
  line-height: 1.7;
}

/* ---- CONTACT ---- */
.contact__inner {
  display: flex;
  flex-direction: column;
  gap: var(--sp-10);
  max-width: 960px;
  margin: 0 auto;
}
.contact__info h3 {
  font-size: var(--fz-xl);
  font-weight: 800;
  color: var(--c-text);
  margin-bottom: var(--sp-6);
}
.contact__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  margin-bottom: var(--sp-6);
}
.contact__list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
}
.contact__list svg { flex-shrink: 0; color: var(--c-accent); margin-top: 3px; }
.contact__list small {
  display: block;
  font-size: var(--fz-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--c-text-muted);
  margin-bottom: 3px;
}
.contact__list a, .contact__list span {
  font-size: var(--fz-lg);
  font-weight: 700;
  color: var(--c-text);
}
.contact__list a:hover { color: var(--c-accent-dark); }
.contact__note {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--c-bg-gray);
  border-left: 3px solid var(--c-accent);
  padding: var(--sp-3) var(--sp-4);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-size: var(--fz-sm);
  font-weight: 600;
  color: var(--c-text);
}
.contact__note svg { color: var(--c-accent); flex-shrink: 0; }

/* ---- FORM ---- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.form-row { display: flex; flex-direction: column; gap: var(--sp-4); }
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.form-group label {
  font-size: var(--fz-sm);
  font-weight: 600;
  color: var(--c-text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  font-size: var(--fz-base);
  color: var(--c-text);
  background: var(--c-bg-white);
  transition: border-color .15s, box-shadow .15s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(245,158,11,.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-radio-group {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.radio-label {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fz-sm);
  font-weight: 500;
  color: var(--c-text);
  cursor: pointer;
}
.radio-label input[type="radio"] {
  width: auto;
  accent-color: var(--c-accent);
  cursor: pointer;
}
.form-note {
  font-size: var(--fz-xs);
  color: var(--c-text-muted);
  line-height: 1.6;
  text-align: center;
  padding-top: var(--sp-2);
}
.form-success {
  text-align: center;
  padding: var(--sp-12) var(--sp-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
}
.form-success svg { color: var(--c-accent); }
.form-success h3 { font-size: var(--fz-xl); font-weight: 800; color: var(--c-text); }
.form-success p { font-size: var(--fz-base); color: var(--c-text-muted); }
.form-success a { color: var(--c-accent-dark); font-weight: 600; }

/* ---- FOOTER ---- */
.footer {
  background: var(--c-bg-dark);
  color: #E5E7EB;
  padding-top: var(--sp-12);
}
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
  padding-bottom: var(--sp-10);
}
.footer__brand .footer__logo {
  font-size: var(--fz-xl);
  font-weight: 800;
  color: #fff;
  display: block;
  margin-bottom: var(--sp-2);
}
.footer__brand a {
  font-size: var(--fz-sm);
  color: var(--c-accent);
  font-weight: 600;
  display: block;
  margin-bottom: var(--sp-2);
}
.footer__brand p { font-size: var(--fz-sm); color: #9CA3AF; }
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.footer__contact a, .footer__contact span {
  font-size: var(--fz-sm);
  color: #D1D5DB;
  transition: color .15s;
}
.footer__contact a:hover { color: var(--c-accent); }
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.footer__nav a {
  font-size: var(--fz-sm);
  color: #9CA3AF;
  transition: color .15s;
}
.footer__nav a:hover { color: #E5E7EB; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: var(--sp-5) 0;
}
.footer__bottom p {
  font-size: var(--fz-xs);
  color: #6B7280;
  text-align: center;
}

/* ---- STICKY CTA (mobile) ---- */
.sticky-cta {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: var(--sp-3) var(--sp-4);
  gap: var(--sp-3);
  background: #fff;
  border-top: 1px solid var(--c-border);
  box-shadow: 0 -4px 20px rgba(0,0,0,.12);
}
.sticky-cta .btn { flex: 1; padding: 0.75rem 1rem; font-size: var(--fz-sm); }

/* ============================================
   TABLET — 768px
   ============================================ */
@media (min-width: 768px) {
  :root { --header-h: 68px; }

  .container { padding: 0 var(--sp-8); }

  /* Header */
  .header__hamburger { display: none; }
  .header__nav {
    display: flex;
  }

  /* Hero */
  .hero { padding: var(--sp-20) 0; }
  .hero__inner { flex-direction: row; align-items: flex-start; }
  .hero__content { flex: 1; }
  .hero__card { width: 360px; flex-shrink: 0; }
  .hero__h1 { font-size: var(--fz-4xl); }
  .hero__cta-group { flex-direction: row; }

  /* Cards */
  .cards-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .service-card--wide { grid-column: span 2; }

  /* Steps */
  .steps { gap: 0; }

  /* Concrete */
  .concrete-grid { grid-template-columns: repeat(4, 1fr); }

  /* Contact */
  .contact__inner { flex-direction: row; gap: var(--sp-12); }
  .contact__info { flex: 0 0 300px; }
  .contact__form-wrap { flex: 1; }
  .form-row--2 { flex-direction: row; }

  /* Footer */
  .footer__inner { flex-direction: row; justify-content: space-between; }

  /* No sticky on tablet */
  .sticky-cta { display: none; }

  /* Section CTA row */
  .section__cta-row { flex-direction: row; justify-content: center; }
}

/* ============================================
   SMALL DESKTOP — 1024px
   ============================================ */
@media (min-width: 1024px) {
  .section { padding: var(--sp-20) 0; }
  .hero { padding: var(--sp-24) 0; }
  .hero__h1 { font-size: var(--fz-5xl); }
  .hero__card { width: 420px; }
  .cards-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .service-card--wide { grid-column: auto; }

  /* Steps horizontal */
  .steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
    align-items: start;
    gap: 0;
  }
  .step__connector {
    width: auto;
    height: 2px;
    align-self: center;
    margin: 0;
    margin-top: 20px;
    min-width: var(--sp-3);
  }
  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .step__icon {
    display: flex;
    width: 52px;
    height: 52px;
    border-radius: var(--r-md);
    background: var(--c-bg-gray);
    align-items: center;
    justify-content: center;
    color: var(--c-accent-dark);
    margin-bottom: var(--sp-3);
  }
}

/* ============================================
   DESKTOP — 1440px
   ============================================ */
@media (min-width: 1280px) {
  .hero__h1 { font-size: var(--fz-5xl); }
  .concrete-grid { grid-template-columns: repeat(7, 1fr); }
  .section__header h2 { font-size: var(--fz-3xl); }
}

/* ============================================
   MOBILE MENU OPEN STATE
   ============================================ */
.header.menu-open .header__nav {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--c-border);
  padding: var(--sp-6) var(--sp-5);
  gap: var(--sp-5);
  z-index: 99;
  box-shadow: var(--shadow-md);
}
.header.menu-open .header__nav a {
  font-size: var(--fz-md);
  color: var(--c-text);
  font-weight: 600;
  padding: var(--sp-2) 0;
  border-bottom: 1px solid var(--c-border);
}
.header.menu-open .header__nav a:last-child { border-bottom: none; }

/* Hamburger X */
.header.menu-open .header__hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header.menu-open .header__hamburger span:nth-child(2) { opacity: 0; }
.header.menu-open .header__hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
