/* ============================================================
   app.css – Björn Frommholz Website
   Design: Mockup 2 (gradient accents, clean layout)
   Mobile-first, kein externes CDN
   ============================================================ */

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

:root {
  --primary:    #01334b;
  --primary-mid: #024d70;
  --accent:     #00a8cc;
  --accent2:    #00c9a7;
  --bg:         #f5f7fa;
  --surface:    #ffffff;
  --text:       #111827;
  --muted:      #5a6474;
  --border:     #e2e8f0;
  --radius:     16px;
  --radius-sm:  10px;
  --shadow-sm:  0 2px 8px rgba(1,51,75,.08);
  --shadow-md:  0 8px 30px rgba(1,51,75,.12);
  --shadow-lg:  0 16px 50px rgba(1,51,75,.15);
  --max-w:      1160px;
  --nav-h:      72px;
}

[data-theme="dark"] {
  --bg:      #0d1b25;
  --surface: #132030;
  --text:    #e8eef5;
  --muted:   #8fa3b3;
  --border:  #1e3448;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Trebuchet MS', 'Segoe UI', Verdana, sans-serif;
  background:  var(--bg);
  color:       var(--text);
  line-height: 1.7;
  overflow-x:  hidden;
}

/* ——— Skip Link ——————————————————————————————————————————— */
.skip-link {
  position: absolute; top: -999px; left: 1rem;
  background: var(--primary); color: white;
  padding: .5rem 1rem; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-size: .875rem; font-weight: 700; text-decoration: none; z-index: 9999;
}
.skip-link:focus { top: 0; }

/* ——— Container ————————————————————————————————————————— */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 3rem);
}

/* ——— Navigation ————————————————————————————————————————— */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(245,247,250,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(226,232,240,0.8);
  transition: box-shadow .3s;
}
[data-theme="dark"] .nav {
  background: rgba(13,27,37,0.92);
  border-bottom-color: rgba(30,52,72,0.8);
}
.nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 100%;
  padding: 0 clamp(1rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
  font-size: 1.1rem; font-weight: 800;
  color: var(--primary); letter-spacing: -0.02em;
  flex-shrink: 0;
}
.logo-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: .85rem; font-weight: 900;
  flex-shrink: 0;
}
.logo-img { height: 36px; width: auto; border-radius: 6px; }

.nav-links {
  display: flex; list-style: none;
  align-items: center; gap: 2rem;
  margin: 0;
}
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: .875rem; font-weight: 600; letter-spacing: .01em;
  transition: color .2s;
  padding: .25rem 0;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--primary); }
.nav-links a.active { border-bottom-color: var(--accent); }
[data-theme="dark"] .nav-links a { color: var(--muted); }
[data-theme="dark"] .nav-links a:hover { color: var(--text); }

.nav-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%) !important;
  color: white !important;
  padding: 10px 22px !important;
  border-radius: var(--radius) !important;
  box-shadow: 0 4px 14px rgba(1,51,75,.25) !important;
  border-bottom: none !important;
  transition: transform .2s, box-shadow .2s !important;
}
.nav-cta:hover { transform: translateY(-2px) !important; box-shadow: 0 8px 22px rgba(1,51,75,.35) !important; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: .3rem;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--primary); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.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); }

/* Dark mode toggle */
.dark-mode-toggle-wrap { display: none; align-items: center; }
.dark-mode-toggle {
  background: none; border: 2px solid var(--border);
  border-radius: 20px; padding: 5px 8px;
  cursor: pointer; color: var(--muted);
  transition: border-color .2s, color .2s;
  display: flex; align-items: center; gap: 4px;
}
.dark-mode-toggle:hover { border-color: var(--accent); color: var(--accent); }
[data-theme="dark"] .icon-moon { display: none; }
[data-theme="light"] .icon-sun { display: none; }
.icon-sun, .icon-moon { display: block; }

/* ——— Sections ——————————————————————————————————————————— */
.section {
  padding: 5rem 0;
}
.section-header {
  margin-bottom: 3rem;
}
.section-eyebrow {
  font-size: .72rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  margin-bottom: .75rem;
}
.section-h {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 900; letter-spacing: -0.03em;
  color: var(--primary); margin-bottom: .75rem;
  line-height: 1.15;
}
[data-theme="dark"] .section-h { color: var(--text); }
.section-p {
  font-size: 1rem; color: var(--muted); max-width: 520px;
}
.section-cta {
  margin-top: 2.5rem; text-align: center;
}

/* ——— Hero ——————————————————————————————————————————————— */
.hero {
  min-height: 100vh;
  padding: calc(var(--nav-h) + 4rem) 0 4rem;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
/* Hintergrund-Shapes */
.hero-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape {
  position: absolute; border-radius: 50%;
}
.shape-1 {
  width: 700px; height: 700px;
  top: -20%; right: -10%;
  background: conic-gradient(from 0deg at 50% 50%,
    rgba(0,168,204,.1) 0deg, rgba(1,51,75,.07) 120deg, transparent 240deg);
  animation: slowSpin 22s linear infinite;
}
.shape-2 {
  width: 400px; height: 400px;
  bottom: 0; left: -8%;
  background: radial-gradient(circle, rgba(0,201,167,.09) 0%, transparent 70%);
}
.hero-blob {
  position: absolute; pointer-events: none;
  width: 350px; height: 350px;
  top: 50%; right: 8%; transform: translateY(-50%);
  background: radial-gradient(circle, rgba(0,168,204,.08) 0%, transparent 70%);
  border-radius: 50%;
}
@keyframes slowSpin { to { transform: rotate(360deg); } }

.hero-inner {
  position: relative; z-index: 1; max-width: 700px;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 1.5rem;
}
.tag-line {
  display: inline-block; width: 28px; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 2px;
}
h1.hero-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900; letter-spacing: -0.04em;
  line-height: 1.08; margin-bottom: 1.4rem;
  color: var(--primary);
}
[data-theme="dark"] h1.hero-title { color: var(--text); }
.gradient-word {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.05rem; color: var(--muted);
  max-width: 500px; margin-bottom: 2.8rem;
  line-height: 1.75;
}
.btn-group {
  display: flex; gap: 1rem; flex-wrap: wrap; align-items: center;
}

/* ——— Buttons ——————————————————————————————————————————— */
.btn-grad {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  color: white !important; padding: 14px 32px; border-radius: var(--radius);
  text-decoration: none; font-weight: 700; font-size: .95rem;
  box-shadow: 0 6px 22px rgba(1,51,75,.3);
  transition: transform .2s, box-shadow .2s;
  display: inline-flex; align-items: center; gap: 8px;
  border: none; cursor: pointer;
}
.btn-grad:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(1,51,75,.4); }
.btn-grad svg { transition: transform .2s; flex-shrink: 0; }
.btn-grad:hover svg { transform: translateX(3px); }

.btn-ghost {
  color: var(--primary); padding: 14px 32px; border-radius: var(--radius);
  border: 2px solid var(--border); background: var(--surface);
  text-decoration: none; font-weight: 700; font-size: .95rem;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  display: inline-flex; align-items: center; gap: 8px;
  cursor: pointer;
}
.btn-ghost:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

.btn-ghost-primary {
  color: var(--primary); padding: 13px 28px; border-radius: var(--radius);
  border: 2px solid var(--primary);
  text-decoration: none; font-weight: 700; font-size: .9rem;
  transition: background .2s, color .2s, transform .2s;
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
}
.btn-ghost-primary:hover { background: var(--primary); color: white; transform: translateY(-2px); }
.btn-ghost-primary svg { transition: transform .2s; }
.btn-ghost-primary:hover svg { transform: translateX(3px); }

.btn-white {
  background: white; color: var(--primary);
  padding: 13px 28px; border-radius: var(--radius-sm);
  text-decoration: none; font-weight: 700; font-size: .9rem;
  transition: transform .2s, box-shadow .2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.15); }

.btn-outline-white {
  border: 2px solid rgba(255,255,255,.35); color: white;
  padding: 13px 28px; border-radius: var(--radius-sm);
  text-decoration: none; font-weight: 700; font-size: .9rem;
  transition: border-color .2s, background .2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,.1); }

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 15px 32px;
  font-size: 1rem;
}

/* ——— Metrics Strip —————————————————————————————————————— */
.metrics-strip {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  padding: 2.5rem 0;
}
.metrics-inner {
  display: flex; justify-content: center;
  flex-wrap: wrap; gap: 2.5rem 4rem;
}
.metric {
  display: flex; align-items: center; gap: .8rem;
  color: white;
}
.metric-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(255,255,255,.12); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.metric-value { font-size: 1.05rem; font-weight: 800; line-height: 1.2; }
.metric-label { font-size: .75rem; opacity: .65; letter-spacing: .03em; }

/* ——— Services Grid —————————————————————————————————————— */
.section-services { background: var(--surface); }
[data-theme="dark"] .section-services { background: var(--surface); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.services-grid--large {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.svc-card {
  border-radius: var(--radius);
  padding: 1.75rem;
  background: var(--bg);
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
[data-theme="dark"] .svc-card { background: var(--surface); }
.svc-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(0,168,204,.12), rgba(0,201,167,.08));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
  color: var(--accent);
}
.svc-card h2, .svc-card h3 {
  font-size: .95rem; font-weight: 800; color: var(--primary);
  margin-bottom: .45rem;
}
[data-theme="dark"] .svc-card h2,
[data-theme="dark"] .svc-card h3 { color: var(--text); }
.svc-card p { font-size: .85rem; color: var(--muted); line-height: 1.6; }

/* ——— Packages —————————————————————————————————————————— */
.section-packages { background: var(--bg); }
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: start;
}
.pkg {
  background: var(--surface); border-radius: var(--radius);
  padding: 2.2rem;
  border: 2px solid var(--border); position: relative;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.pkg:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,168,204,.15); }
.pkg--featured {
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-mid) 100%);
  border-color: transparent; color: white;
}
.pkg--featured:hover { box-shadow: 0 20px 50px rgba(1,51,75,.3); transform: translateY(-6px); }
.pkg-badge {
  position: absolute; top: -1px; right: 24px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: white; font-size: .68rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 0 0 10px 10px;
}
.pkg-name {
  font-size: 1.5rem; font-weight: 900; letter-spacing: -0.03em;
  margin-bottom: .4rem;
}
.pkg:not(.pkg--featured) .pkg-name { color: var(--primary); }
.pkg--featured .pkg-name { color: white; }
[data-theme="dark"] .pkg:not(.pkg--featured) .pkg-name { color: var(--text); }
.pkg-tagline { font-size: .8rem; opacity: .55; margin-bottom: 1.4rem; }
.pkg-bullets {
  list-style: none; display: flex; flex-direction: column;
  gap: 9px; margin-bottom: 2rem;
}
.pkg-bullets li {
  font-size: .85rem; display: flex; gap: 9px; align-items: flex-start;
}
.pkg:not(.pkg--featured) .pkg-bullets li { color: var(--muted); }
.pkg--featured .pkg-bullets li { color: rgba(255,255,255,.85); }
.pkg-bullets li::before {
  content: '→'; font-weight: 700; flex-shrink: 0;
}
.pkg:not(.pkg--featured) .pkg-bullets li::before { color: var(--accent); }
.pkg--featured .pkg-bullets li::before { color: rgba(255,255,255,.5); }
.pkg-cta {
  display: block; text-align: center; padding: 12px;
  border-radius: var(--radius-sm); text-decoration: none;
  font-weight: 700; font-size: .875rem;
  transition: all .2s;
}
.pkg:not(.pkg--featured) .pkg-cta {
  background: var(--bg); color: var(--primary); border: 2px solid var(--border);
}
.pkg:not(.pkg--featured) .pkg-cta:hover { border-color: var(--primary); }
.pkg--featured .pkg-cta { background: white; color: var(--primary); }
.pkg--featured .pkg-cta:hover { background: rgba(255,255,255,.9); }
.pkg-disclaimer {
  margin-top: 2rem; font-size: .82rem; color: var(--muted);
  text-align: center; max-width: 500px; margin-left: auto; margin-right: auto;
}

/* ——— About ——————————————————————————————————————————————— */
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem; align-items: center;
}
.about-visual { display: flex; justify-content: center; position: relative; }
.about-card {
  width: 100%; max-width: 340px;
  border-radius: 24px; overflow: hidden;
  aspect-ratio: 3/4;
}
.about-card--photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.about-card--placeholder {
  background: linear-gradient(145deg, #dce9f0 0%, #b8d4e0 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .75rem;
  color: var(--muted); font-size: .85rem;
}
[data-theme="dark"] .about-card--placeholder {
  background: linear-gradient(145deg, #1a2f3f 0%, #0d1e2d 100%);
}
.about-p { color: var(--muted); margin-bottom: 1rem; line-height: 1.8; }
.about-p--lead { font-size: 1.05rem; color: var(--text); font-weight: 500; }

/* Skills */
.skills-wrap { margin-top: 1.5rem; }
.skills-heading {
  font-size: .8rem; font-weight: 700; color: var(--muted);
  letter-spacing: .06em; text-transform: uppercase; margin-bottom: .75rem;
}
.skills-tags { display: flex; flex-wrap: wrap; gap: .45rem; }
.skill-tag {
  background: linear-gradient(135deg, rgba(0,168,204,.1), rgba(0,201,167,.07));
  color: var(--primary); border: 1px solid rgba(0,168,204,.2);
  padding: 4px 12px; border-radius: 20px;
  font-size: .78rem; font-weight: 700;
}
[data-theme="dark"] .skill-tag { color: var(--accent); }

/* Workflow steps */
.workflow-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.workflow-step {
  padding: 1.5rem;
  background: var(--surface); border-radius: var(--radius);
  border: 1px solid var(--border);
  position: relative;
}
.step-num {
  font-size: 2.5rem; font-weight: 900; line-height: 1;
  color: rgba(0,168,204,.15); margin-bottom: .8rem;
  font-variant-numeric: tabular-nums;
}
.workflow-step h3 { font-size: 1rem; font-weight: 800; color: var(--primary); margin-bottom: .5rem; }
[data-theme="dark"] .workflow-step h3 { color: var(--text); }
.workflow-step p { font-size: .875rem; color: var(--muted); line-height: 1.65; }

/* ——— Contact CTA Card ——————————————————————————————————— */
.section-contact-cta { background: var(--bg); }
.contact-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 60%, #035573 100%);
  border-radius: 24px; padding: 4.5rem clamp(2rem, 5vw, 5rem);
  text-align: center; color: white;
  position: relative; overflow: hidden;
  max-width: 920px; margin: 0 auto;
}
.contact-card-bg {
  position: absolute; top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,168,204,.18) 0%, transparent 70%);
  pointer-events: none;
}
.contact-card-content { position: relative; z-index: 1; }
.contact-card h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900; margin-bottom: .8rem;
  letter-spacing: -0.03em;
}
.contact-card p { opacity: .75; margin-bottom: 2.2rem; font-size: 1rem; }
.contact-btns {
  display: flex; justify-content: center;
  gap: 1rem; flex-wrap: wrap;
}

/* ——— Page Hero ——————————————————————————————————————————— */
.page-hero {
  padding: calc(var(--nav-h) + 3.5rem) 0 3.5rem;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.page-hero--compact {
  padding: calc(var(--nav-h) + 2rem) 0 2rem;
}
.page-hero-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900; letter-spacing: -0.03em;
  color: var(--primary); margin-bottom: .75rem;
}
[data-theme="dark"] .page-hero-title { color: var(--text); }
.page-hero-sub { font-size: 1.05rem; color: var(--muted); max-width: 560px; line-height: 1.75; }

/* ——— Contact Page ——————————————————————————————————————— */
.section-contact-page {}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem; align-items: start;
}
.contact-info-title { font-size: 1.1rem; font-weight: 800; color: var(--primary); margin-bottom: 1.5rem; }
[data-theme="dark"] .contact-info-title { color: var(--text); }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.25rem;
}
.contact-info-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(0,168,204,.1), rgba(0,201,167,.07));
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin-top: 2px;
}
.contact-info-label { font-size: .75rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.contact-info-value {
  font-size: .95rem; color: var(--primary); font-weight: 600; text-decoration: none;
  transition: color .2s;
}
.contact-info-value:hover { color: var(--accent); }
[data-theme="dark"] .contact-info-value { color: var(--text); }

.contact-faq { margin-top: 2rem; }
.faq-heading { font-size: .8rem; font-weight: 800; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1rem; }
.faq-item { margin-bottom: 1.1rem; }
.faq-item strong { display: block; font-size: .9rem; color: var(--primary); margin-bottom: .3rem; }
[data-theme="dark"] .faq-item strong { color: var(--text); }
.faq-item p { font-size: .85rem; color: var(--muted); line-height: 1.65; }

.contact-form-title { font-size: 1.1rem; font-weight: 800; color: var(--primary); margin-bottom: 1.5rem; }
[data-theme="dark"] .contact-form-title { color: var(--text); }
.contact-form { display: flex; flex-direction: column; gap: 0; }
.form-field { margin-bottom: 1.2rem; }
.form-field label {
  display: block; font-size: .83rem; font-weight: 700;
  color: var(--primary); margin-bottom: .4rem;
}
[data-theme="dark"] .form-field label { color: var(--text); }
.form-field input,
.form-field textarea {
  width: 100%; padding: 11px 14px;
  border: 2px solid var(--border); border-radius: var(--radius-sm);
  font-size: .95rem; font-family: inherit;
  background: var(--surface); color: var(--text);
  transition: border-color .2s, box-shadow .2s; outline: none;
  line-height: 1.6;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,168,204,.15);
}
.form-field textarea { resize: vertical; min-height: 140px; }
.form-field--check {}
.form-check-label {
  display: flex; align-items: flex-start; gap: .6rem;
  cursor: pointer; font-size: .85rem; color: var(--muted); line-height: 1.5;
}
.form-check-label input[type="checkbox"] {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px;
  accent-color: var(--accent); cursor: pointer;
  border: 2px solid var(--border); border-radius: 4px;
  padding: 0;
}
.form-check-label a { color: var(--accent); }
.form-alert {
  padding: 1rem 1.2rem; border-radius: var(--radius-sm);
  margin-bottom: 1.5rem; display: flex; align-items: flex-start; gap: .6rem;
  font-size: .9rem;
}
.form-alert--success { background: #f0fdf4; border: 1px solid #86efac; color: #166534; }
.form-alert--error   { background: #fef2f2; border: 1px solid #fca5a5; color: #dc2626; }
.form-disabled-notice {
  text-align: center; padding: 3rem 2rem;
  background: var(--surface); border-radius: var(--radius);
  border: 2px dashed var(--border); color: var(--muted);
}
.form-disabled-notice svg { color: var(--muted); opacity: .5; margin-bottom: 1rem; }
.form-disabled-notice h3 { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: .5rem; }
[data-theme="dark"] .form-disabled-notice h3 { color: var(--text); }
.form-disabled-notice p { font-size: .875rem; }

/* ——— Legal / Prose ——————————————————————————————————————— */
.section-legal { background: var(--bg); }
.legal-content.prose {
  max-width: 740px;
  background: var(--surface); border-radius: var(--radius);
  padding: 2.5rem; border: 1px solid var(--border);
}
.prose p  { margin-bottom: 1.1rem; color: var(--text); line-height: 1.8; }
.prose h2 { font-size: 1.25rem; font-weight: 800; color: var(--primary); margin: 1.8rem 0 .75rem; }
.prose h3 { font-size: 1rem; font-weight: 700; color: var(--primary); margin: 1.5rem 0 .5rem; }
.prose ul { margin: .75rem 0 1rem 1.4rem; }
.prose li { margin-bottom: .4rem; color: var(--text); }
.prose a  { color: var(--accent); }
.prose a:hover { text-decoration: none; }
.prose strong { color: var(--primary); }
[data-theme="dark"] .prose strong { color: var(--text); }

/* ——— Maintenance ——————————————————————————————————————— */
.maintenance-page {
  min-height: 100vh; display: flex; align-items: center;
  justify-content: center; text-align: center; padding: 2rem;
  background: var(--primary);
}
.maintenance-inner { max-width: 420px; }
.maintenance-logo {
  display: flex; justify-content: center; margin-bottom: 2rem;
}
.maintenance-logo .logo-mark {
  width: 56px; height: 56px; font-size: 1rem; border-radius: 14px;
  background: rgba(255,255,255,.15);
}
.maintenance-page h1 { font-size: 2.2rem; font-weight: 900; color: white; margin-bottom: 1rem; }
.maintenance-page p  { color: rgba(255,255,255,.65); margin-bottom: 1.5rem; }
.maintenance-link { color: var(--accent); font-weight: 600; text-decoration: none; }
.maintenance-link:hover { color: white; }

/* ——— Footer ——————————————————————————————————————————— */
.footer {
  background: var(--primary); color: rgba(255,255,255,.6);
  padding: 1.8rem 0;
}
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 3rem);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  font-size: .82rem;
}
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: rgba(255,255,255,.6); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: white; }
.footer-copy { color: rgba(255,255,255,.6); }

/* ——— Scroll Reveal ——————————————————————————————————————— */
.fade-up {
  opacity: 0; transform: translateY(26px);
  transition: opacity .6s ease, transform .6s ease;
  transition-delay: var(--delay, 0ms);
}
.fade-up.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
  .shape-1 { animation: none; }
}

/* ——— Responsive ——————————————————————————————————————— */
@media (max-width: 900px) {
  .about-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-visual { order: -1; }
  .about-card { max-width: 280px; aspect-ratio: 1; }
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .pkg-grid { grid-template-columns: 1fr; max-width: 440px; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: var(--bg); border-bottom: 1px solid var(--border);
    padding: 1rem;
    box-shadow: var(--shadow-md);
    gap: .5rem;
  }
  [data-theme="dark"] .nav-links { background: var(--bg); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .6rem .8rem; border-radius: 8px; font-size: .9rem; width: 100%; }
  .nav-links a:hover { background: var(--surface); }
  .nav-cta { border-radius: 10px !important; }
  .nav-toggle { display: flex; }

  .hero { padding-top: calc(var(--nav-h) + 2.5rem); }
  h1.hero-title { font-size: 2.2rem; }
  .section { padding: 3.5rem 0; }
  .contact-card { padding: 3rem 1.5rem; }
  .workflow-steps { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .workflow-steps { grid-template-columns: 1fr; }
  .metrics-inner { gap: 1.5rem; justify-content: flex-start; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-grad, .btn-ghost { justify-content: center; }
}
