/* === Limdev — Dark space / futuristic theme · Roboto === */

:root {
  color-scheme: dark;

  --bg: #05080F;
  --bg-2: #080D1B;
  --surface: #0C1426;
  --surface-2: #101B33;
  --ink: #EAF0FF;
  --ink-2: #C3CCE6;
  --muted: #8893B4;
  --muted-2: #5D688A;
  --line: rgba(127,158,255,0.12);
  --line-2: rgba(127,158,255,0.22);

  --accent: #5B8CFF;
  --accent-2: #36D7E8;
  --accent-soft: rgba(91,140,255,0.14);
  --glow: rgba(91,140,255,0.45);

  --font: "Roboto", sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
html { scroll-behavior: smooth; scroll-padding-top: 80px; overflow-x: clip; max-width: 100%; }
body { min-height: 100vh; overflow-x: clip; max-width: 100%; position: relative; }

/* ===== Cosmic background ===== */
.cosmos {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1200px 700px at 75% -10%, rgba(91,140,255,0.18), transparent 60%),
    radial-gradient(900px 600px at 10% 5%, rgba(54,215,232,0.10), transparent 55%),
    radial-gradient(1000px 900px at 50% 120%, rgba(91,140,255,0.10), transparent 60%),
    linear-gradient(180deg, #05080F 0%, #060A14 50%, #04060D 100%);
}
.stars {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(1.4px 1.4px at 20% 30%, rgba(255,255,255,0.9), transparent),
    radial-gradient(1.2px 1.2px at 70% 15%, rgba(255,255,255,0.7), transparent),
    radial-gradient(1px 1px at 40% 60%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1.5px 1.5px at 85% 50%, rgba(255,255,255,0.8), transparent),
    radial-gradient(1px 1px at 15% 80%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1.3px 1.3px at 55% 85%, rgba(255,255,255,0.7), transparent),
    radial-gradient(1px 1px at 90% 78%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1.2px 1.2px at 32% 12%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 1px at 60% 45%, rgba(255,255,255,0.45), transparent),
    radial-gradient(1.4px 1.4px at 8% 50%, rgba(255,255,255,0.7), transparent);
  background-repeat: no-repeat;
  opacity: 0.55;
  animation: twinkle 6s ease-in-out infinite alternate;
}
@keyframes twinkle { from { opacity: 0.35; } to { opacity: 0.7; } }
@media (prefers-reduced-motion: reduce) { .stars { animation: none; } }

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--accent); color: #fff; }

/* ===== Shell ===== */
.shell { min-height: 100vh; display: flex; flex-direction: column; position: relative; z-index: 1; }

/* ===== Top bar ===== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5,8,15,0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  color: var(--ink);
  line-height: 1;
  transition: opacity 0.15s ease;
}
.brand:hover { opacity: 0.8; }
.brand .mark {
  position: relative;
  display: inline-flex;
  width: 22px; height: 22px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.brand .mark::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  box-shadow: 0 0 12px var(--glow), inset 0 0 6px rgba(91,140,255,0.4);
}
.brand .mark::after {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 8px var(--accent-2);
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent), #6f7dff);
  color: #fff;
  padding: 11px 18px 11px 20px;
  border: 0;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  box-shadow: 0 0 0 1px rgba(127,158,255,0.3), 0 8px 24px rgba(91,140,255,0.25);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.btn-pill:hover { transform: translateY(-1px); box-shadow: 0 0 0 1px rgba(127,158,255,0.5), 0 10px 30px rgba(91,140,255,0.4); }
.btn-pill .arrow { font-size: 14px; }

/* language switch */
.top-right {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: rgba(127,158,255,0.05);
}
.lang-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 11px;
  border-radius: 999px;
  transition: color 0.15s ease, background 0.2s ease;
}
.lang-btn:hover { color: var(--ink); }
.lang-btn.on {
  color: #fff;
  background: rgba(91,140,255,0.22);
  box-shadow: inset 0 0 0 1px rgba(127,158,255,0.4);
}

.footer-contactline {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* 'optioneel' tag in pricing monthly row */
.pc-opt {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-2);
  border: 1px solid rgba(54,215,232,0.4);
  border-radius: 999px;
  padding: 2px 7px;
  margin-left: 6px;
  vertical-align: 1px;
}

/* ===== Layout ===== */
.page {
  flex: 1;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 0 36px;
}

h1, h2, h3, h4 { margin: 0; font-weight: 600; letter-spacing: -0.025em; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: linear-gradient(90deg, var(--accent-2), transparent);
}
.eyebrow .pip {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 10px var(--accent-2);
}

/* gradient text accent */
.grad {
  background: linear-gradient(120deg, #8fb0ff 0%, var(--accent) 45%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ===== HERO ===== */
.home-hero {
  padding: 110px 0 96px;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: 8px 16px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: rgba(91,140,255,0.06);
  margin-bottom: 34px;
  white-space: nowrap;
}
.home-hero-eyebrow .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 10px var(--accent-2);
}
.home-hero-title {
  font-size: clamp(44px, 6.6vw, 96px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.04em;
  max-width: 16ch;
  margin-bottom: 30px;
}
.home-hero-sub {
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 620px;
  margin-bottom: 40px;
  font-weight: 400;
}
.home-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), #6f7dff);
  color: #fff;
  padding: 16px 28px;
  border: 0;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 0 0 1px rgba(127,158,255,0.3), 0 10px 30px rgba(91,140,255,0.3);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(127,158,255,0.55), 0 14px 40px rgba(91,140,255,0.45); }
.btn-secondary {
  background: rgba(127,158,255,0.06);
  color: var(--ink);
  border: 1px solid var(--line-2);
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s ease;
}
.btn-secondary:hover { background: rgba(127,158,255,0.14); border-color: var(--accent); }

/* trust row */
.trust {
  margin-top: 56px;
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-item { text-align: center; }
.trust-item .n {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}
.trust-item .l {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 10px;
}

/* ===== Sections ===== */
.home-section {
  padding: 96px 0;
  border-top: 1px solid var(--line);
  position: relative;
}
.home-section-head {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home-section-num {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 20px;
}
.home-section-num::before {
  content: "";
  width: 24px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-2));
}
.home-section-num::after {
  content: "";
  width: 24px; height: 1px;
  background: linear-gradient(90deg, var(--accent-2), transparent);
}
.home-section-head h2 {
  font-size: clamp(34px, 4.6vw, 60px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin-bottom: 16px;
}
.home-section-head p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
  max-width: 600px;
}

/* services */
.home-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.home-service {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 34px 30px 30px;
  background: linear-gradient(180deg, rgba(16,27,51,0.6), rgba(12,20,38,0.4));
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 320px;
  overflow: hidden;
}
.home-service::after {
  content: "";
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.home-service:hover {
  transform: translateY(-5px);
  border-color: var(--line-2);
  box-shadow: 0 20px 50px rgba(3,8,22,0.6), 0 0 0 1px rgba(91,140,255,0.15);
}
.home-service:hover::after { opacity: 1; }
.home-service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(91,140,255,0.12);
  border: 1px solid var(--line-2);
  color: var(--accent);
  font-size: 16px;
  font-weight: 700;
  box-shadow: inset 0 0 14px rgba(91,140,255,0.18);
}
.home-service h3 {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.home-service p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
  flex: 1;
}
.home-service-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* process */
.home-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.home-step {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 30px 26px 26px;
  background: rgba(12,20,38,0.4);
}
.home-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(91,140,255,0.10);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 0 16px rgba(91,140,255,0.25);
}
.home-step h4 {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.home-step p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.pricing-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 34px 30px 32px;
  background: linear-gradient(180deg, rgba(16,27,51,0.55), rgba(10,17,32,0.5));
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}
.pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-2);
  box-shadow: 0 24px 60px rgba(3,8,22,0.6);
}
.pricing-card.featured {
  border-color: rgba(91,140,255,0.5);
  background:
    radial-gradient(420px 200px at 50% -10%, rgba(91,140,255,0.22), transparent 70%),
    linear-gradient(180deg, rgba(20,32,62,0.7), rgba(11,18,36,0.55));
  box-shadow: 0 0 0 1px rgba(91,140,255,0.3), 0 24px 70px rgba(8,16,40,0.7);
}
.pc-badge {
  position: absolute;
  top: 22px;
  right: 24px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  padding: 5px 10px;
  border-radius: 999px;
  box-shadow: 0 0 16px rgba(91,140,255,0.4);
}
.pc-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 12px;
}
.pc-name {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}
.pc-sub {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
  margin-bottom: 26px;
}
.pc-build {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.pc-build .euro {
  font-size: 22px;
  font-weight: 500;
  color: var(--ink-2);
}
.pc-build .amt {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}
.pc-build .once {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.pc-monthly {
  margin: 22px 0 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  display: grid;
  gap: 12px;
}
.pc-mrow {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.pc-mrow .k {
  font-size: 14px;
  color: var(--ink-2);
}
.pc-mrow .v {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
}
.pc-mrow .v small {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-left: 3px;
}
.pc-feat {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 11px;
  flex: 1;
}
.pc-feat li {
  position: relative;
  padding-left: 26px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink-2);
}
.pc-feat li::before {
  content: "";
  position: absolute;
  left: 0; top: 3px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(91,140,255,0.14);
  border: 1px solid var(--accent);
}
.pc-feat li::after {
  content: "";
  position: absolute;
  left: 5.5px; top: 7px;
  width: 5px; height: 8px;
  border-right: 2px solid var(--accent-2);
  border-bottom: 2px solid var(--accent-2);
  transform: rotate(40deg);
}
.pc-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  border-radius: 10px;
  background: rgba(127,158,255,0.08);
  color: var(--ink);
  border: 1px solid var(--line-2);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}
.pc-cta:hover { background: rgba(127,158,255,0.18); border-color: var(--accent); }
.pricing-card.featured .pc-cta {
  background: linear-gradient(135deg, var(--accent), #6f7dff);
  border-color: transparent;
  box-shadow: 0 8px 26px rgba(91,140,255,0.35);
}
.pricing-card.featured .pc-cta:hover { transform: translateY(-1px); }
.pc-cta .arrow { font-size: 16px; }

.pricing-note {
  margin-top: 24px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}
.pricing-note strong { color: var(--ink-2); font-weight: 600; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 56px;
}
.form { display: grid; gap: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; }
.field label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input,
.field textarea {
  font-family: var(--font);
  font-size: 15px;
  color: var(--ink);
  background: rgba(8,13,27,0.6);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--muted-2); }
.field input:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(91,140,255,0.18);
}
.field textarea { resize: vertical; min-height: 110px; }
.budget-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 500;
  padding: 9px 15px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: rgba(127,158,255,0.05);
  color: var(--ink-2);
  transition: all 0.15s ease;
}
.chip:hover { border-color: var(--accent); color: var(--ink); }
.chip.on {
  background: linear-gradient(135deg, var(--accent), #6f7dff);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 0 16px rgba(91,140,255,0.35);
}
.form-submit {
  margin-top: 8px;
  display: flex;
  justify-content: flex-end;
}
.btn-big {
  background: linear-gradient(135deg, var(--accent), #6f7dff);
  color: #fff;
  border: 0;
  padding: 16px 30px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(91,140,255,0.3);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.btn-big:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(91,140,255,0.45); }
.btn-big .arrow { font-size: 18px; }

.contact-aside { display: grid; gap: 16px; align-content: start; }

/* confirmation panel (replaces the form after sending) */
.contact-confirm {
  border: 1px solid var(--line-2);
  border-radius: 18px;
  padding: 56px 40px;
  background: linear-gradient(180deg, rgba(16,27,51,0.6), rgba(12,20,38,0.45));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  min-height: 280px;
  justify-content: center;
  animation: confirmIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes confirmIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.contact-confirm-check {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--bg);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 24px var(--glow);
  animation: checkPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s both;
}
@keyframes checkPop {
  from { transform: scale(0); }
  to { transform: scale(1); }
}
.contact-confirm h3 {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.contact-confirm p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
  max-width: 420px;
}
.contact-confirm .btn-secondary { margin-top: 8px; }

.contact-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(16,27,51,0.5), rgba(12,20,38,0.4));
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.contact-card:hover { border-color: var(--line-2); transform: translateY(-2px); }
.contact-card .lab {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 8px;
}
.contact-card .val {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--line);
  padding: 44px 36px 30px;
  background: rgba(5,8,15,0.6);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer .brand { font-size: 19px; }
.footer-bottom {
  max-width: 1280px;
  margin: 28px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.footer-bottom a:hover { color: var(--accent); }

/* ===== Entrance animation ===== */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    animation: reveal 0.7s cubic-bezier(0.22,1,0.36,1) forwards;
  }
  @keyframes reveal { to { opacity: 1; transform: none; } }
}

/* ===== Responsive ===== */

/* Tablet */
@media (max-width: 960px) {
  .page { padding: 0 24px; }
  .topbar-inner { padding: 14px 24px; gap: 12px; }
  .brand { font-size: 18px; }
  .btn-pill { padding: 9px 14px 9px 16px; font-size: 12px; }

  .home-hero { padding: 84px 0 72px; }
  .home-section { padding: 76px 0; }
  .home-section-head { margin-bottom: 48px; }

  /* services + pricing: two across on tablet */
  .home-services,
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .home-service { min-height: 0; }

  /* process: two across on tablet */
  .home-process { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  .trust { gap: 36px; }

  .home-hero-eyebrow { white-space: normal; text-align: center; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .footer-inner { justify-content: center; text-align: center; }
}

/* Large phone */
@media (max-width: 680px) {
  .home-services,
  .pricing-grid,
  .home-process { grid-template-columns: 1fr; }

  .home-service { min-height: 0; }
  .pricing-card.featured { order: -1; } /* highlight the popular plan first */
}

/* Phone */
@media (max-width: 520px) {
  .page { padding: 0 18px; }
  .topbar { position: sticky; }
  .topbar-inner { padding: 12px 18px; gap: 10px; flex-wrap: nowrap; }
  .brand { font-size: 16px; gap: 9px; }
  .brand .mark { width: 19px; height: 19px; }
  .top-right { gap: 8px; }
  .top-right .btn-pill { display: none; }
  .lang-switch { padding: 2px; }
  .lang-btn { padding: 6px 9px; font-size: 11px; }

  .home-hero { padding: 60px 0 56px; }
  .home-hero-eyebrow {
    font-size: 10px;
    letter-spacing: 0.12em;
    padding: 7px 13px;
    white-space: normal;
    text-align: center;
    margin-bottom: 26px;
  }
  .home-hero-title { font-size: clamp(32px, 10vw, 46px); margin-bottom: 22px; }
  .home-hero-sub { font-size: 16px; margin-bottom: 32px; }
  .home-hero-actions { flex-direction: column; align-items: stretch; width: 100%; max-width: 340px; }
  .btn-primary, .btn-secondary { justify-content: center; width: 100%; }

  /* trust row: 2x2 grid instead of cramped flex */
  .trust {
    margin-top: 44px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
    width: 100%;
    max-width: 360px;
  }
  .trust-item .n { font-size: 32px; }
  .trust-item .l { font-size: 11px; }

  .home-section { padding: 60px 0; }
  .home-section-head { margin-bottom: 40px; }
  .home-section-head h2 { font-size: clamp(28px, 8vw, 38px); }
  .home-section-head p { font-size: 15px; }

  .home-service { padding: 28px 24px 26px; }
  .home-service h3 { font-size: 23px; }
  .home-step { padding: 26px 22px 22px; }

  .pricing-card { padding: 30px 24px 28px; }
  .pc-build .amt { font-size: 46px; }
  .pc-name { font-size: 28px; }

  .contact-grid { gap: 32px; }
  .form-row { grid-template-columns: 1fr; gap: 18px; }
  .form-submit { justify-content: stretch; }
  .btn-big { width: 100%; justify-content: center; }
  .contact-confirm { padding: 40px 26px; }
  .contact-confirm h3 { font-size: 25px; }

  .footer { padding: 40px 20px 26px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 8px; }
}

/* Small phone */
@media (max-width: 360px) {
  .brand { font-size: 15px; }
  .lang-btn { padding: 5px 7px; font-size: 10px; }
  .home-hero-title { font-size: 30px; }
  .pc-build .amt { font-size: 40px; }
}
