/* ============================================================
   TryweXTech — main stylesheet
   Palette: deep navy base, cyan → violet accent gradient
   ============================================================ */

:root {
  --bg: #070b14;
  --bg-soft: #0c1220;
  --surface: #111a2e;
  --surface-2: #16213a;
  --border: rgba(148, 163, 184, 0.14);
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --accent: #22d3ee;
  --accent-2: #7c3aed;
  --gradient: linear-gradient(135deg, #22d3ee 0%, #7c3aed 100%);
  --radius: 16px;
  --nav-h: 72px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

.container {
  width: min(1160px, 100% - 48px);
  margin-inline: auto;
}

/* ---------- Typography helpers ---------- */

.section { padding: 96px 0; }

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.25);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-lead {
  color: var(--text-muted);
  font-size: 1.06rem;
  max-width: 640px;
}

.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; }
.section-head.center .section-lead { margin-inline: auto; }

.grad-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: var(--gradient);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(124, 58, 237, 0.45); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 12px 27px;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Navigation ---------- */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(7, 11, 20, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo img { height: 38px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.nav-cta { flex-shrink: 0; }

.lang-dd { position: relative; }

.lang-dd-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 9px 12px;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.lang-dd-btn:hover { border-color: var(--accent); }

.lang-dd-btn .globe { width: 15px; height: 15px; stroke: var(--text-muted); }
.lang-dd-btn .chev { width: 11px; height: 11px; stroke: var(--text-muted); transition: transform 0.2s ease; }
.lang-dd.open .chev { transform: rotate(180deg); }

.lang-dd-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 6px;
  list-style: none;
  display: none;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  z-index: 120;
}

.lang-dd.open .lang-dd-menu { display: block; }

.lang-dd-menu button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  background: none;
  border: none;
  border-radius: 8px;
  padding: 9px 12px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.lang-dd-menu button:hover { background: var(--surface-2); color: var(--text); }
.lang-dd-menu button.active { color: var(--accent); }
.lang-dd-menu button.active::after { content: "✓"; font-size: 0.8rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px auto;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 64px) 0 96px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  pointer-events: none;
}
.hero-glow-1 { width: 480px; height: 480px; background: #7c3aed; top: -120px; right: -80px; }
.hero-glow-2 { width: 420px; height: 420px; background: #0891b2; bottom: -140px; left: -100px; opacity: 0.28; }

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 64px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 24px;
}

.hero-sub {
  color: var(--text-muted);
  font-size: 1.13rem;
  max-width: 540px;
  margin-bottom: 36px;
}

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

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 56px;
  flex-wrap: wrap;
}

.hero-stat .num {
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-stat .label { color: var(--text-muted); font-size: 0.88rem; }

/* Hero entrance choreography (one-time, on load) */
@media (prefers-reduced-motion: no-preference) {
  .hero-copy > * {
    opacity: 0;
    transform: translateY(24px);
    animation: hero-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }
  .hero-copy .section-tag { animation-delay: 0.05s; }
  .hero-copy h1 { animation-delay: 0.16s; }
  .hero-copy .hero-sub { animation-delay: 0.28s; }
  .hero-copy .hero-actions { animation-delay: 0.4s; }
  .hero-copy .hero-stats { animation-delay: 0.52s; }
  .hero-visual {
    opacity: 0;
    animation: hero-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
  }
}

@keyframes hero-in {
  to { opacity: 1; transform: translateY(0); }
}

/* Hero visual: floating code card */

.hero-visual { position: relative; }

.code-card {
  background: rgba(17, 26, 46, 0.85);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  overflow: hidden;
  animation: float 6s ease-in-out infinite;
}

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

.code-card-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}
.code-card-head .dot { width: 11px; height: 11px; border-radius: 50%; }
.dot-r { background: #f87171; } .dot-y { background: #fbbf24; } .dot-g { background: #34d399; }
.code-card-head .file { margin-left: 10px; font-size: 0.8rem; color: var(--text-muted); font-family: "SF Mono", Menlo, Consolas, monospace; }

.code-card pre {
  padding: 22px;
  font-family: "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.83rem;
  line-height: 1.75;
  color: #cbd5e1;
  overflow-x: auto;
}
.tok-kw { color: #c084fc; } .tok-fn { color: #22d3ee; } .tok-str { color: #86efac; } .tok-cm { color: #64748b; }

.hero-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}
.hero-badge .ico {
  width: 34px; height: 34px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: var(--gradient);
  font-size: 1rem;
}
.badge-1 { top: -26px; right: -28px; animation: float-soft 7s ease-in-out infinite 0.8s; }
.badge-2 { bottom: -22px; right: 26px; animation: float-soft 6.5s ease-in-out infinite 1.6s; }

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

/* ---------- Services ---------- */

.services { background: var(--bg-soft); }

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

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 211, 238, 0.45);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.22);
  margin-bottom: 22px;
}
.service-icon svg { width: 26px; height: 26px; stroke: var(--accent); }

.service-card h3 { font-size: 1.18rem; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; }
.service-card p { color: var(--text-muted); font-size: 0.94rem; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
}
.service-link:hover { gap: 10px; }
.service-link { transition: gap 0.2s ease; }

/* ---------- About ---------- */

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

.about-values { display: grid; gap: 18px; margin-top: 32px; }

.value-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.value-row .check {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(34, 211, 238, 0.12);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 2px;
}
.value-row h4 { font-size: 1rem; font-weight: 600; }
.value-row p { color: var(--text-muted); font-size: 0.92rem; }

.about-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
}
.about-tile:nth-child(2) { transform: translateY(24px); }
.about-tile:nth-child(3) { transform: translateY(-8px); }
.about-tile:nth-child(4) { transform: translateY(16px); }

.about-tile .big {
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.about-tile .small { color: var(--text-muted); font-size: 0.88rem; margin-top: 6px; }

/* ---------- Process ---------- */

.process { background: var(--bg-soft); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}

.process-step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px 28px;
}

.process-step .step-num {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.85;
  margin-bottom: 16px;
}

.process-step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.process-step p { color: var(--text-muted); font-size: 0.9rem; }

/* ---------- Technologies ---------- */

.tech-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.tech-pill {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 22px;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.tech-pill:hover {
  color: var(--accent);
  border-color: rgba(34, 211, 238, 0.4);
  transform: translateY(-2px);
}

/* ---------- Partners ---------- */

.partners-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.partner-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 68px;
  padding: 16px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.partner-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(34, 211, 238, 0.4);
  color: var(--text);
}
.partner-tile img {
  max-height: 36px;
  max-width: 150px;
  object-fit: contain;
  opacity: 0.75;
  filter: grayscale(1) brightness(1.35);
  transition: opacity 0.2s ease, filter 0.2s ease;
}
.partner-tile:hover img { opacity: 1; filter: none; }

/* ---------- CTA band ---------- */

.cta-band { padding: 0 0 96px; }

.cta-box {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 72px 48px;
  text-align: center;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.12), rgba(124, 58, 237, 0.16));
  border: 1px solid rgba(124, 58, 237, 0.3);
}

.cta-box h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.cta-box p { color: var(--text-muted); max-width: 520px; margin: 0 auto 32px; }

/* ---------- Contact ---------- */

.contact-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
}

.contact-info { display: grid; gap: 22px; align-content: start; margin-top: 8px; }

.contact-row {
  display: flex;
  gap: 16px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 22px;
}
.contact-row .ico {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.22);
}
.contact-row .ico svg { width: 21px; height: 21px; stroke: var(--accent); }
.contact-row .label { font-size: 0.8rem; color: var(--text-muted); }
.contact-row .value { font-weight: 600; font-size: 0.96rem; }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  display: grid;
  gap: 18px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.contact-form label {
  display: grid;
  gap: 7px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}
.contact-form textarea { resize: vertical; min-height: 130px; }

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.15);
}

.form-status { font-size: 0.9rem; font-weight: 600; color: #34d399; min-height: 1.2em; }

/* Honeypot: visually removed but present for bots */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
}

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

.footer {
  border-top: 1px solid var(--border);
  background: var(--bg-soft);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand img { height: 36px; width: auto; margin-bottom: 18px; }
.footer-brand p { color: var(--text-muted); font-size: 0.92rem; max-width: 300px; }

.footer h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  margin-bottom: 18px;
}

.footer ul { list-style: none; display: grid; gap: 11px; }
.footer ul a { color: var(--text-muted); font-size: 0.92rem; transition: color 0.2s ease; }
.footer ul a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.footer-social a:hover { border-color: var(--accent); transform: translateY(-2px); }
.footer-social svg { width: 17px; height: 17px; fill: var(--text-muted); }
.footer-social a:hover svg { fill: var(--accent); }

/* ---------- Legal pages (privacy / terms) ---------- */

.legal-wrap { padding: calc(var(--nav-h) + 56px) 0 96px; min-height: 70vh; }

.legal { max-width: 760px; }

.legal h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.legal-updated { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 36px; }

.legal-body { color: var(--text-muted); font-size: 1rem; }
.legal-body h2 { color: var(--text); font-size: 1.25rem; font-weight: 700; margin: 32px 0 12px; }
.legal-body h3 { color: var(--text); font-size: 1.05rem; font-weight: 700; margin: 24px 0 10px; }
.legal-body p { margin-bottom: 14px; }
.legal-body ul, .legal-body ol { margin: 0 0 14px 22px; }
.legal-body li { margin-bottom: 6px; }
.legal-body a { color: var(--accent); }
.legal-body strong { color: var(--text); }

.legal-footer { padding: 28px 0; }

.lang-tabs-lite { display: flex; gap: 2px; background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 3px; }
.lang-tabs-lite button {
  font-family: var(--font);
  background: none; border: none; border-radius: 8px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.04em;
  color: var(--text-muted); padding: 7px 13px; cursor: pointer;
}
.lang-tabs-lite button.active { background: var(--gradient); color: #fff; }

/* ---------- Scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .code-card, .hero-badge { animation: none; }
}

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

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 72px; }
  .hero { min-height: auto; }
  .hero-visual { max-width: 520px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 56px; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 720px) {
  .section { padding: 72px 0; }

  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .nav-right { gap: 12px; margin-left: auto; margin-right: 4px; }

  .nav-links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    background: rgba(7, 11, 20, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 105;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.25rem; }

  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-badge { display: none; }
  .hero-stats { gap: 32px; }
  .cta-box { padding: 56px 28px; }
  .contact-form { padding: 26px 20px; }
}
