/* ==========================================================================
   Smart IT Solutions
   ========================================================================== */

@font-face {
  font-family: "Inter";
  src: url("/fonts/inter-var.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --brand: #1ea5e6;
  --brand-600: #0c86c4;
  --brand-700: #0a6ea3;
  --brand-soft: #e6f5fd;
  --cyan: #5ee0f5;

  --ink: #0b1220;
  --ink-2: #2b3547;
  --muted: #5d6879;
  --line: #e4e9f0;
  --bg: #ffffff;
  --bg-soft: #f5f8fb;

  --night: #070c16;
  --night-2: #0d1524;
  --night-line: rgba(255, 255, 255, 0.09);
  --night-text: #c3cddc;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(11, 18, 32, 0.05), 0 1px 3px rgba(11, 18, 32, 0.06);
  --shadow: 0 10px 30px -12px rgba(11, 18, 32, 0.18), 0 2px 6px rgba(11, 18, 32, 0.04);

  --container: 1180px;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Basis ---------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--bg);
  font-feature-settings: "cv11", "ss01";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.5em;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.025em;
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.25rem); letter-spacing: -0.04em; line-height: 1.05; }
h2 { font-size: clamp(1.85rem, 3.4vw, 2.75rem); letter-spacing: -0.035em; }
h3 { font-size: 1.2rem; letter-spacing: -0.015em; }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1em; }

a {
  color: var(--brand-700);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover { color: var(--brand-600); }

img, svg { display: block; max-width: 100%; }

ul, ol { margin: 0; padding: 0; }

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 6px;
}

::selection { background: var(--brand); color: #fff; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.skip-link:focus { top: 12px; color: #fff; }

.icon {
  width: 1.25em;
  height: 1.25em;
  flex-shrink: 0;
}

.muted { color: var(--muted); }

.text-gradient {
  background: linear-gradient(95deg, var(--brand) 10%, var(--cyan) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.7em 1.2em;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, transform 0.2s var(--ease), box-shadow 0.2s;
}

.btn .icon { width: 1.1em; height: 1.1em; transition: transform 0.25s var(--ease); }
.btn:hover .icon { transform: translateX(3px); }

.btn-sm { padding: 0.55em 1em; font-size: 0.9rem; }
.btn-lg { padding: 0.9em 1.5em; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--brand);
  color: #04121c;
  box-shadow: 0 8px 24px -10px rgba(30, 165, 230, 0.7);
}

.btn-primary:hover {
  background: #45b8ef;
  color: #04121c;
  transform: translateY(-1px);
}

.btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
}

.btn-ghost:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.btn[disabled] { opacity: 0.6; cursor: progress; transform: none; }

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-h);
  transition: background-color 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(7, 12, 22, 0.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--night-line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
}

.brand:hover { color: #fff; }

.logo-mark {
  width: 36px;
  height: 36px;
  color: var(--brand);
  filter: drop-shadow(0 0 10px rgba(30, 165, 230, 0.45));
}

.brand-name {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand-name span { font-weight: 400; opacity: 0.7; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
}

.site-nav ul a {
  color: var(--night-text);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.site-nav ul a:hover,
.site-nav ul a[aria-current="page"] { color: #fff; }

.nav-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid var(--night-line);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle-bar {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.3s var(--ease), top 0.3s var(--ease);
}

.nav-toggle-bar:nth-child(2) { top: 17px; }
.nav-toggle-bar:nth-child(3) { top: 25px; }

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { top: 21px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { top: 21px; transform: rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding: 16px 24px 28px;
    background: rgba(7, 12, 22, 0.97);
    border-bottom: 1px solid var(--night-line);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.25s, transform 0.25s var(--ease), visibility 0.25s;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .site-nav ul { flex-direction: column; gap: 0; }

  .site-nav ul a {
    display: block;
    padding: 14px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--night-line);
  }

  .site-nav .btn { padding: 0.9em 1.2em; font-size: 1rem; }
}

/* ---------- Hero ---------- */

.hero,
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--night);
  color: var(--night-text);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 60% at 75% 30%, rgba(30, 165, 230, 0.28), transparent 70%),
    radial-gradient(40% 50% at 10% 90%, rgba(94, 224, 245, 0.12), transparent 70%),
    linear-gradient(var(--night), var(--night-2));
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 60% 40%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 60% 40%, #000 30%, transparent 80%);
}

.hero h1,
.page-hero h1 { color: #fff; }

.hero {
  padding: calc(var(--header-h) + 88px) 0 104px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 56px;
}

.lead {
  max-width: 38em;
  font-size: clamp(1.08rem, 1.6vw, 1.25rem);
  line-height: 1.6;
  color: var(--night-text);
}

.hero .lead { margin-bottom: 36px; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 48px;
  list-style: none;
  font-size: 0.93rem;
}

.hero-facts li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-facts .icon { color: var(--brand); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--brand-700);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.eyebrow-light { color: var(--brand); }

/* Hero-Grafik: gestapelte Karten für Web, Server, Netzwerk */

.hero-visual {
  display: flex;
  justify-content: center;
}

.stack {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 400 / 420;
}

.stack-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  color: rgba(94, 224, 245, 0.5);
}

.stack-card {
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 78%;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.6);
  animation: float 7s ease-in-out infinite;
}

.stack-card .icon {
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 12px;
  background: rgba(30, 165, 230, 0.16);
  color: var(--cyan);
}

.stack-card strong {
  display: block;
  color: #fff;
  font-size: 1.05rem;
}

.stack-card span { font-size: 0.88rem; }

.stack-card-web { top: 0; left: 0; }
.stack-card-server { top: 36%; right: 0; animation-delay: -2.3s; }
.stack-card-net { bottom: 0; left: 6%; animation-delay: -4.6s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Unterseiten */

.page-hero {
  padding: calc(var(--header-h) + 72px) 0 88px;
}

.page-hero h1 {
  max-width: 16em;
  font-size: clamp(2.1rem, 4.6vw, 3.5rem);
}

.page-hero .lead { margin-bottom: 32px; }

.page-hero-sm { padding: calc(var(--header-h) + 56px) 0 56px; }
.page-hero-sm h1 { margin: 0; }

.page-hero-full {
  display: flex;
  align-items: center;
  min-height: 78vh;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 0.88rem;
}

.breadcrumb a { color: var(--night-text); text-decoration: none; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { opacity: 0.5; }
.breadcrumb [aria-current] { color: var(--brand); opacity: 1; }

/* ---------- Sektionen ---------- */

.section { padding: clamp(72px, 10vw, 120px) 0; }

.section-soft {
  background: var(--bg-soft);
  border-block: 1px solid var(--line);
}

.section-head {
  max-width: 720px;
  margin-bottom: 56px;
}

.section-head p:last-child { margin-bottom: 0; color: var(--muted); font-size: 1.1rem; }

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px 72px;
  align-items: start;
}

.prose p { font-size: 1.1rem; }
.prose p:last-child { margin-bottom: 0; }

/* Leistungskarten */

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg);
  color: var(--ink-2);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}

.service-card:hover {
  color: var(--ink-2);
  transform: translateY(-4px);
  border-color: rgba(30, 165, 230, 0.4);
  box-shadow: var(--shadow);
}

.service-card > p { color: var(--muted); }

.service-icon,
.value-icon,
.contact-icon {
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: var(--brand-soft);
  color: var(--brand-700);
}

.service-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
}

.service-icon .icon { width: 26px; height: 26px; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 24px;
  color: var(--brand-700);
  font-weight: 600;
  font-size: 0.95rem;
}

.card-link .icon { transition: transform 0.25s var(--ease); }
.service-card:hover .card-link .icon { transform: translateX(4px); }

.check-list {
  display: grid;
  gap: 10px;
  list-style: none;
  font-size: 0.95rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.check-list .icon {
  width: 18px;
  height: 18px;
  margin-top: 0.2em;
  color: var(--brand-600);
}

.check-list-lg { gap: 20px; font-size: 1.05rem; }
.check-list-lg strong { color: var(--ink); }
.check-list-lg .icon {
  width: 24px;
  height: 24px;
  padding: 4px;
  margin-top: 0.05em;
  border-radius: 999px;
  background: var(--brand-soft);
}

/* Ablauf */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  list-style: none;
  counter-reset: none;
}

.step {
  position: relative;
  padding: 28px 24px 24px;
  border-top: 2px solid var(--line);
}

.step::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 48px;
  height: 2px;
  background: var(--brand);
}

.step-num {
  display: block;
  margin-bottom: 14px;
  color: var(--brand-600);
  font-size: 0.85rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
}

.step p { margin: 0; color: var(--muted); font-size: 0.98rem; }

/* Über mich */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px 72px;
  align-items: center;
}

.about-copy p { font-size: 1.08rem; }

.value-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }

.value,
.feature {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
}

.value-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
}

.value-icon .icon { width: 22px; height: 22px; }

.value h3,
.feature h3 { font-size: 1.08rem; }

.value p,
.feature p { margin: 0; color: var(--muted); font-size: 0.96rem; }

/* Technologien */

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px 40px;
}

.tech-group h3 {
  margin-bottom: 14px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.tags li {
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg);
  color: var(--ink-2);
  font-size: 0.9rem;
  font-weight: 500;
}

/* CTA */

.cta-band {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px 56px;
  padding: clamp(36px, 6vw, 64px);
  border-radius: 28px;
  background:
    radial-gradient(70% 120% at 100% 0%, rgba(30, 165, 230, 0.35), transparent 60%),
    var(--night);
  color: var(--night-text);
}

.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.3rem); }
.cta-band p { max-width: 36em; margin: 0; }
.cta-band .btn { flex-shrink: 0; }

/* ---------- Kontakt ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px 72px;
  align-items: start;
}

.contact-copy > p { font-size: 1.08rem; }

.contact-list {
  display: grid;
  gap: 20px;
  margin-top: 36px;
  list-style: none;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon { width: 48px; height: 48px; }
.contact-icon .icon { width: 22px; height: 22px; }

.contact-list div { display: flex; flex-direction: column; line-height: 1.4; color: var(--ink); font-weight: 500; }
.contact-list div > span { color: var(--muted); font-size: 0.85rem; font-weight: 400; }
.contact-list a { color: var(--ink); text-decoration: none; }
.contact-list a:hover { color: var(--brand-700); }

.form-card {
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg);
  box-shadow: var(--shadow);
}

.contact-form { display: grid; gap: 20px; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 600;
}

.optional { color: var(--muted); font-weight: 400; }

.field input,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d3dae4;
  border-radius: 12px;
  background: #fbfcfe;
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.field textarea { resize: vertical; min-height: 140px; }

.field input::placeholder,
.field textarea::placeholder { color: #98a2b1; }

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(30, 165, 230, 0.15);
}

.field [aria-invalid="true"] { border-color: #d64545; }

.field-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.form-status {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
}

.form-status:empty { display: none; }
.form-status.is-success { color: #137a4b; }
.form-status.is-error { color: #c23434; }

/* ---------- Rechtstexte ---------- */

.legal {
  max-width: 780px;
  font-size: 1rem;
}

.legal h2 { margin-top: 2em; font-size: 1.5rem; }
.legal h2:first-child { margin-top: 0; }
.legal h3 { margin-top: 1.8em; font-size: 1.2rem; }
.legal h4 { margin-top: 1.4em; font-size: 1rem; }
.legal ul { padding-left: 1.3em; margin-bottom: 1em; }
.legal li { margin-bottom: 0.4em; }
.legal a { word-break: break-word; }

/* ---------- Footer ---------- */

.site-footer {
  padding: 72px 0 32px;
  background: var(--night);
  color: var(--night-text);
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 40px;
}

.footer-brand p { max-width: 22em; margin-top: 18px; }

.footer-title {
  margin-bottom: 16px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
  list-style: none;
}

.footer-links a { color: var(--night-text); text-decoration: none; }
.footer-links a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 24px;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--night-line);
  font-size: 0.88rem;
  opacity: 0.8;
}

.footer-bottom p { margin: 0; }

/* ---------- Animation beim Scrollen ---------- */

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
  .service-grid,
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .hero { padding: calc(var(--header-h) + 56px) 0 80px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .split,
  .contact-grid { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .container { padding-inline: 16px; }
  .service-grid,
  .feature-grid,
  .value-grid,
  .steps,
  .field-row { grid-template-columns: 1fr; }
  .service-card { padding: 26px; }
  .section-head { margin-bottom: 40px; }
  .hero-actions .btn { width: 100%; }
  .hero-facts { flex-direction: column; margin-top: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .brand-name { font-size: 1rem; }
}
