/* ==========================================================================
   Lans Reinigung (Lansbest) — www.lansbest.at
   Stylesheet
   --------------------------------------------------------------------------
   Farbwelt (aus dem Unternehmensprofil):
   --teal      #0F2B2B  dunkles Petrol/Grün (Hintergrund dunkel)
   --green     #00A96E  Markengrün
   --lime      #C6F51B  Limetten-Akzent (Buttons, Badges)
   --offwhite  #F7F5F0  helle Sektionen
   ========================================================================== */

/* ---------- Design-Tokens ---------- */
:root {
  --teal: #0F2B2B;
  --teal-2: #123636;          /* etwas helleres Petrol für Karten auf Dunkel */
  --green: #00A96E;
  --green-dark: #00784f;      /* Grün für Text auf Hell (WCAG-AA-konform) */
  --lime: #C6F51B;
  --lime-hover: #d6ff3d;
  --offwhite: #F7F5F0;
  --white: #ffffff;
  --ink: #10201f;             /* Fließtext auf Hell */
  --muted: #4d5f5d;           /* sekundärer Text auf Hell */
  --muted-dark: #b9cbc8;      /* sekundärer Text auf Dunkel */
  --line: rgba(15, 43, 43, .12);
  --line-dark: rgba(255, 255, 255, .14);
  --radius: 20px;
  --radius-sm: 12px;
  --container: 1160px;
  --font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --shadow: 0 18px 50px -18px rgba(15, 43, 43, .25);
  --ease: cubic-bezier(.22, .75, .25, 1);
}

/* ---------- Reset & Basis ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;            /* weiches Scrollen zu Ankern */
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--offwhite);
  -webkit-font-smoothing: antialiased;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.02em;
  text-wrap: balance;
}

/* Fokus sichtbar (Tastatur-Navigation, WCAG 2.4.7) */
:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Skip-Link für Screenreader/Tastatur */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 200;
  background: var(--lime);
  color: var(--teal);
  font-weight: 700;
  padding: .7rem 1.2rem;
  border-radius: 999px;
  transition: top .25s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ---------- Layout-Helfer ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.section { padding-block: clamp(4.5rem, 9vw, 7.5rem); }

/* Anker-Offset, damit der sticky Header nichts überdeckt */
section[id], footer[id] { scroll-margin-top: 5.5rem; }

/* Limetten-Pill-Label für Sektionen ("01 UNTERNEHMEN" …) */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--lime);
  color: var(--teal);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .45rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.4rem;
}

.h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.25rem); color: var(--muted); max-width: 46ch; }
.on-dark .lead { color: var(--muted-dark); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  padding: .95rem 1.7rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background-color .25s var(--ease),
              border-color .25s var(--ease), color .25s var(--ease);
}
.btn:active { transform: translateY(1px) scale(.99); }

.btn--lime { background: var(--lime); color: var(--teal); }
.btn--lime:hover { background: var(--lime-hover); transform: translateY(-2px); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .35);
}
.btn--ghost:hover { border-color: var(--lime); color: var(--lime); transform: translateY(-2px); }

.btn--dark { background: var(--teal); color: var(--white); }
.btn--dark:hover { background: var(--green-dark); transform: translateY(-2px); }

/* ==========================================================================
   HEADER (sticky, Glas-Effekt)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 43, 43, .82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-dark);
  transition: box-shadow .3s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 10px 30px -12px rgba(0, 0, 0, .45); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  color: var(--white);
}
.brand__logo { width: 42px; height: 42px; flex: none; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -.01em;
  line-height: 1.1;
}
.brand__name small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--lime);
}

/* Haupt-Navigation */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
}
.main-nav a {
  display: inline-block;
  text-decoration: none;
  color: var(--muted-dark);
  font-weight: 500;
  font-size: .95rem;
  padding: .55rem .85rem;
  border-radius: 999px;
  transition: color .2s var(--ease), background-color .2s var(--ease);
}
.main-nav a:hover { color: var(--white); background: rgba(255, 255, 255, .08); }
.main-nav a.is-active { color: var(--lime); }

.header-cta { flex: none; }
.header-cta .btn { padding: .65rem 1.3rem; font-size: .92rem; }

/* CTA in der Nav nur im mobilen Menü anzeigen (Desktop hat den Header-Button) */
.main-nav .nav-cta { display: none; }

/* Burger-Button (nur Mobil) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  background:
    radial-gradient(60rem 34rem at 110% -10%, rgba(0, 169, 110, .35), transparent 60%),
    radial-gradient(40rem 26rem at -15% 110%, rgba(198, 245, 27, .12), transparent 55%),
    var(--teal);
  color: var(--white);
  overflow: hidden;
}
.hero::after { /* dezentes Raster als Textur */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(70% 70% at 30% 20%, #000 0%, transparent 75%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding-block: clamp(4rem, 8vw, 7rem);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--lime);
  border: 1px solid rgba(198, 245, 27, .4);
  border-radius: 999px;
  padding: .5rem 1.1rem;
  margin-bottom: 1.6rem;
}
.hero__eyebrow::before {
  content: "";
  width: .5rem; height: .5rem;
  border-radius: 50%;
  background: var(--lime);
}

.hero h1 {
  font-size: clamp(2.6rem, 6.2vw, 4.6rem);
  margin-bottom: 1.1rem;
}
.hero h1 .accent { color: var(--lime); }

.hero__sub {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--muted-dark);
  letter-spacing: .04em;
  margin-bottom: 1.2rem;
}

.hero__text { max-width: 44ch; color: #d9e6e3; margin-bottom: 2.2rem; }

.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; }

/* Hero-Bild mit Lime-Badge */
.hero__media { position: relative; }
.hero__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, .55);
}
.hero__badge {
  position: absolute;
  left: -1.2rem;
  bottom: 2rem;
  background: var(--lime);
  color: var(--teal);
  border-radius: var(--radius-sm);
  padding: .9rem 1.2rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.2;
  box-shadow: 0 16px 40px -12px rgba(0, 0, 0, .4);
  rotate: -3deg;
}
.hero__badge small {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .02em;
}

/* ==========================================================================
   UNTERNEHMEN
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}
.about-grid > div { min-width: 0; }

.about-copy p + p { margin-top: 1.1rem; }
.about-copy .lead { margin-block: 1.2rem 1.4rem; }

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  list-style: none;
  margin-top: 1.6rem;
}
.tag-list li {
  font-weight: 600;
  font-size: .92rem;
  color: var(--green-dark);
  background: rgba(0, 169, 110, .1);
  border: 1px solid rgba(0, 169, 110, .35);
  padding: .45rem 1rem;
  border-radius: 999px;
}

/* Karte „Unser Anspruch“ */
.claim-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--shadow);
}
.claim-card h3 {
  font-size: 1.05rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 1rem;
}
.claim-card p { color: var(--ink); }

.about-media { position: relative; }
.about-media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-quote {
  margin-top: 1.4rem;
  padding: 1.3rem 1.5rem;
  border-left: 4px solid var(--lime);
  background: var(--white);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-weight: 500;
  color: var(--ink);
}

/* ==========================================================================
   LEISTUNGEN — asymmetrisch: sticky links, Karten rechts
   ========================================================================== */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.services-sticky { position: sticky; top: 7rem; }

.services-banner {
  margin-top: 2rem;
  background: var(--teal);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem;
  font-size: 1.02rem;
}
.services-banner strong {
  display: block;
  font-family: var(--font-display);
  letter-spacing: .1em;
  color: var(--lime);
  margin-bottom: .5rem;
  font-size: .95rem;
}

.service-list {
  display: grid;
  gap: 1rem;
  list-style: none;
}
.service-card {
  background: var(--offwhite);
  border: 1px solid var(--line);
  border-left: 6px solid var(--lime);   /* Lime-Kante links */
  border-radius: var(--radius-sm);
  padding: 1.4rem 1.6rem;
  display: flex;
  gap: 1.1rem;
  align-items: baseline;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.service-card:hover { transform: translateX(6px); box-shadow: var(--shadow); }
.service-card h3 { font-size: 1.25rem; }
.service-card p { color: var(--muted); font-size: .98rem; }
.service-card .num {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--green);
  font-size: .9rem;
  letter-spacing: .08em;
  flex: none;
}

/* ==========================================================================
   KOMPETENZEN (dunkle Sektion)
   ========================================================================== */
.skills {
  background:
    radial-gradient(50rem 30rem at 100% 0%, rgba(0, 169, 110, .25), transparent 55%),
    var(--teal);
  color: var(--white);
}
.skills .h2 { margin-bottom: 1rem; }
.skills .lead { margin-bottom: 3rem; }

.skill-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  list-style: none;
}
.skill-card {
  background: var(--teal-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.skill-card:hover { transform: translateY(-6px); border-color: rgba(198, 245, 27, .5); }
.skill-card .stat {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 3.6vw, 3rem);
  line-height: 1;
  color: var(--green);
  margin-bottom: .9rem;
  letter-spacing: -.02em;
}
.skill-card .stat .lime { color: var(--lime); }
.skill-card h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.skill-card p { color: var(--muted-dark); font-size: .97rem; }

/* ==========================================================================
   ZUSAMMENARBEIT (Prozess)
   ========================================================================== */
.process .lead { margin-bottom: 3rem; }

.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  list-style: none;
  counter-reset: step;
}
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  position: relative;
  overflow: hidden;
}
.step::before { /* große Hintergrund-Nummer */
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  right: -.4rem;
  top: -1.6rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 7rem;
  line-height: 1;
  color: rgba(0, 169, 110, .1);
  pointer-events: none;
}
.step .step__no {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: .14em;
  color: var(--teal);
  background: var(--lime);
  border-radius: 999px;
  padding: .3rem .85rem;
  margin-bottom: 1.1rem;
}
.step h3 { font-size: 1.35rem; margin-bottom: .6rem; }
.step p { color: var(--muted); }

.goal-box {
  margin-top: 2.2rem;
  background: linear-gradient(120deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  line-height: 1.35;
}
.goal-box strong { color: var(--lime); }

/* ==========================================================================
   KONTAKT
   ========================================================================== */
.contact { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
  margin-top: 2.5rem;
}

.contact-list { list-style: none; display: grid; gap: 1.1rem; margin-top: 1.8rem; }
.contact-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--offwhite);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.3rem;
}
.contact-list svg { flex: none; width: 24px; height: 24px; color: var(--green-dark); margin-top: .15rem; }
.contact-list strong { display: block; font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: .15rem; }
.contact-list a { color: var(--ink); font-weight: 600; text-decoration-color: rgba(0, 120, 79, .4); text-underline-offset: 3px; }
.contact-list a:hover { color: var(--green-dark); }

/* Karten-Platzhalter (kein externes Karten-Tracking ohne Zustimmung) */
.map-placeholder {
  margin-top: 1.4rem;
  border: 1px dashed rgba(0, 120, 79, .5);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(0,169,110,.06), rgba(0,169,110,.06)),
    repeating-linear-gradient(0deg, transparent 0 34px, rgba(15,43,43,.06) 34px 35px),
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(15,43,43,.06) 35px 36px);
  min-height: 220px;
  display: grid;
  place-content: center;
  text-align: center;
  gap: .4rem;
  padding: 1.5rem;
  color: var(--muted);
}
.map-placeholder strong { color: var(--teal); font-family: var(--font-display); }
.map-placeholder .btn { margin-top: .8rem; }

/* Formular */
.contact-form {
  background: var(--offwhite);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.4rem);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: grid; gap: .4rem; margin-bottom: 1.1rem; }
.form-field label { font-weight: 600; font-size: .92rem; }
.form-field .req { color: var(--green-dark); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid rgba(15, 43, 43, .22);
  border-radius: 10px;
  padding: .8rem 1rem;
  color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0, 169, 110, .18);
}

.consent {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  font-size: .9rem;
  color: var(--muted);
  margin-block: .4rem 1.4rem;
}
.consent input { width: 1.15rem; height: 1.15rem; margin-top: .2rem; accent-color: var(--green); flex: none; }
.consent a { color: var(--green-dark); }

.form-status {
  margin-top: 1rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: .9rem 1.1rem;
  display: none;
}
.form-status.is-ok { display: block; background: rgba(0, 169, 110, .12); color: var(--green-dark); }
.form-status.is-error { display: block; background: #fdecea; color: #b3261e; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--teal);
  color: var(--muted-dark);
  padding-block: 3.5rem 2rem;
  border-top: 1px solid var(--line-dark);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand .brand { margin-bottom: 1rem; }
.footer-brand p { max-width: 34ch; font-size: .95rem; }

.site-footer h2 {
  font-size: .85rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-links { list-style: none; display: grid; gap: .55rem; }
.footer-links a { text-decoration: none; transition: color .2s var(--ease); }
.footer-links a:hover { color: var(--lime); }
.footer-contact { list-style: none; display: grid; gap: .55rem; font-size: .95rem; }
.footer-contact a { text-decoration: none; }
.footer-contact a:hover { color: var(--lime); }

.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: .88rem;
}
.footer-bottom nav { display: flex; gap: 1.4rem; }
.footer-bottom a { text-decoration: none; }
.footer-bottom a:hover { color: var(--lime); }

/* ==========================================================================
   RECHTSSEITEN (Impressum / Datenschutz)
   ========================================================================== */
.legal { background: var(--offwhite); }
.legal-hero {
  background: var(--teal);
  color: var(--white);
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}
.legal-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.legal-body {
  max-width: 760px;
  padding-block: clamp(3rem, 6vw, 5rem);
}
.legal-body h2 {
  font-size: 1.5rem;
  margin-block: 2.2rem .8rem;
}
.legal-body h3 { font-size: 1.15rem; margin-block: 1.6rem .6rem; }
.legal-body p, .legal-body li { color: var(--muted); }
.legal-body p + p { margin-top: .8rem; }
.legal-body ul { padding-left: 1.3rem; margin-top: .6rem; display: grid; gap: .35rem; }
.legal-body address { font-style: normal; margin-top: .8rem; color: var(--muted); }
.legal-body a { color: var(--green-dark); }
.legal-body .placeholder {
  background: rgba(198, 245, 27, .25);
  border-radius: 6px;
  padding-inline: .3em;
  font-weight: 600;
  color: var(--teal);
}

/* ==========================================================================
   SCROLL-REVEAL (sanftes Einblenden; deaktiviert bei reduced-motion)
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

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

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .skill-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  /* Mobile Navigation */
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .main-nav {
    position: absolute;
    inset: 100% 0 auto 0;
    background: rgba(15, 43, 43, .97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line-dark);
    padding: 1rem 1.25rem 1.4rem;
    display: none;
  }
  .main-nav.is-open { display: block; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: .2rem; }
  .main-nav a { display: block; padding: .85rem 1rem; font-size: 1.05rem; }
  .main-nav .nav-cta { display: block; }
  .main-nav .btn { margin-top: .8rem; width: 100%; }

  .hero-inner { grid-template-columns: 1fr; padding-block: 3.5rem 4.5rem; }
  .hero__media { max-width: 480px; }
  .hero__badge { left: 1rem; }

  .about-grid,
  .services-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .services-sticky { position: static; }

  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .skill-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; }
}
