:root {
  color-scheme: light;
  --bg: #f7f8fc;
  --surface: #ffffff;
  --ink: #0b1220;
  --ink-2: #334155;
  --ink-3: #64748b;
  --muted: #94a3b8;
  --line: rgba(15, 23, 42, 0.08);
  --line-2: rgba(15, 23, 42, 0.04);
  --brand-1: #0ea5e9;
  --brand-2: #6366f1;
  --brand-3: #8b5cf6;
  --accent: #22d3ee;
  --shadow-sm: 0 6px 18px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 18px 40px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 30px 80px rgba(15, 23, 42, 0.10);
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(1000px 600px at 85% -10%, rgba(99, 102, 241, 0.12), transparent 60%),
    radial-gradient(900px 500px at -10% 10%, rgba(14, 165, 233, 0.14), transparent 60%),
    var(--bg);
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: 'Sora', 'Inter', system-ui, sans-serif;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h1 { font-weight: 800; }
h2 { font-weight: 700; }

p { color: var(--ink-2); }

.container {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line-2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: 'Sora', 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(14,165,233,0.12), rgba(99,102,241,0.12));
  border: 1px solid var(--line);
}

.brand-text { display: inline-flex; align-items: baseline; gap: 0.15rem; }
.brand-accent {
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--ink-2);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a:not(.nav-cta):hover { color: var(--ink); }

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-1), var(--brand-2));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); }

.nav-cta {
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  color: white !important;
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(99, 102, 241, 0.35);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  padding: 10px 10px;
  flex-direction: column;
  justify-content: space-between;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* ---------- Buttons ---------- */
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border-radius: 999px;
  padding: 0.95rem 1.6rem;
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.primary-button {
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  color: white;
  box-shadow: 0 14px 30px rgba(99, 102, 241, 0.28);
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(99, 102, 241, 0.35);
}

.primary-button.full { width: 100%; }
.primary-button.on-dark { box-shadow: 0 14px 30px rgba(15, 23, 42, 0.25); margin-top: 1.5rem; }

.secondary-button {
  background: rgba(15, 23, 42, 0.04);
  color: var(--ink);
  border-color: var(--line);
}
.secondary-button:hover {
  transform: translateY(-2px);
  background: rgba(15, 23, 42, 0.07);
}

/* ---------- Hero ---------- */
.hero-section {
  position: relative;
  padding: 5rem 0 5rem;
}

.hero-bg {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 70%;
  background:
    radial-gradient(circle at 20% 30%, rgba(14, 165, 233, 0.18), transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.18), transparent 45%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
  align-items: center;
  grid-template-columns: 1.15fr 1fr;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand-1);
  font-weight: 700;
  font-size: 0.78rem;
  margin: 0 0 1rem;
}
.eyebrow.center { justify-content: center; width: 100%; }
.eyebrow.light { color: #e0f2fe; }
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  box-shadow: 0 0 0 4px rgba(14,165,233,0.15);
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  line-height: 1.04;
  margin: 0 0 1.5rem;
}

.text-gradient {
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2) 50%, var(--brand-3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  font-size: 1.08rem;
  margin: 0 0 2rem;
  max-width: 56ch;
  color: var(--ink-2);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.hero-meta {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}
.hero-meta div { display: flex; flex-direction: column; }
.hero-meta strong {
  font-family: 'Sora', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--ink);
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-meta span { font-size: 0.85rem; color: var(--ink-3); }

/* Hero visual card */
.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.visual-card {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
}

.glass {
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
}

.visual-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.25rem 0.5rem 1rem;
  border-bottom: 1px solid var(--line-2);
}
.dot-row { display: inline-flex; gap: 6px; }
.dot-row i {
  width: 10px; height: 10px; border-radius: 50%;
  background: #e2e8f0;
  display: block;
}
.dot-row i:first-child { background: #fca5a5; }
.dot-row i:nth-child(2) { background: #fcd34d; }
.dot-row i:nth-child(3) { background: #86efac; }
.visual-title { color: var(--ink-3); font-size: 0.85rem; font-weight: 500; }

.visual-body {
  padding: 1.25rem 0.5rem;
  display: grid;
  gap: 0.9rem;
}
.vrow { display: grid; grid-template-columns: 110px 1fr; align-items: center; gap: 0.85rem; }
.tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
}
.tag-blue { background: rgba(14, 165, 233, 0.12); color: #0369a1; }
.tag-purple { background: rgba(139, 92, 246, 0.12); color: #6d28d9; }
.tag-green { background: rgba(34, 197, 94, 0.12); color: #15803d; }
.tag-orange { background: rgba(249, 115, 22, 0.12); color: #c2410c; }
.bar {
  height: 8px;
  background: #f1f5f9;
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--brand-1), var(--brand-2));
  border-radius: 999px;
  animation: grow 1.4s ease-out both;
}
@keyframes grow { from { width: 0 !important; } }

.visual-foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1rem 0.5rem 0.25rem;
  border-top: 1px solid var(--line-2);
}
.visual-foot .muted { color: var(--ink-3); font-size: 0.78rem; margin: 0; }
.visual-foot .big { font-family: 'Sora', sans-serif; font-weight: 800; color: var(--ink); margin: 0.15rem 0 0; font-size: 1.2rem; }

.float-chip {
  position: absolute;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  animation: float 6s ease-in-out infinite;
}
.chip-1 { top: 6%; left: -10px; animation-delay: 0s; }
.chip-2 { top: 50%; right: -16px; animation-delay: 1.2s; }
.chip-3 { bottom: 6%; left: 8%; animation-delay: 2.2s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ---------- Trust strip ---------- */
.trust-strip {
  padding: 1.5rem 0;
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  background: rgba(255,255,255,0.6);
}
.trust-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.trust-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-3);
  font-weight: 700;
  margin: 0;
}
.trust-items {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  color: var(--ink-2);
  font-size: 1rem;
}
.trust-items span:nth-child(even) { color: var(--muted); font-weight: 400; }

/* ---------- Sections ---------- */
.section { padding: 6rem 0; }
.section-alt {
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.9));
}

.section-head { text-align: center; margin-bottom: 3rem; }
.section-head h2 {
  margin: 0.4rem auto 1rem;
  max-width: 22ch;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.1;
}
.section-sub {
  max-width: 60ch;
  margin: 0 auto;
  color: var(--ink-3);
}

/* ---------- Services ---------- */
.cards-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
  background: var(--surface);
  padding: 1.85rem 1.6rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--line);
}
.service-card h3 { margin: 1rem 0 0.5rem; font-size: 1.18rem; }
.service-card p { margin: 0 0 1.1rem; color: var(--ink-3); font-size: 0.96rem; }

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: white;
}
.icon-blue { background: linear-gradient(135deg, #0ea5e9, #2563eb); }
.icon-purple { background: linear-gradient(135deg, #8b5cf6, #6366f1); }
.icon-green { background: linear-gradient(135deg, #10b981, #059669); }
.icon-orange { background: linear-gradient(135deg, #f59e0b, #ef4444); }

.chip-list {
  list-style: none;
  padding: 0;
  margin: auto 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.chip-list li {
  font-size: 0.78rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.05);
  color: var(--ink-2);
  font-weight: 500;
}

/* ---------- Process ---------- */
.process-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.process-step {
  background: var(--surface);
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-2);
  position: relative;
  transition: transform 0.25s ease;
}
.process-step:hover { transform: translateY(-3px); }
.step-num {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.process-step h3 { margin: 0.5rem 0 0.4rem; font-size: 1.1rem; }
.process-step p { color: var(--ink-3); font-size: 0.95rem; margin: 0; }

/* ---------- About / gradient ---------- */
.gradient-section {
  background: linear-gradient(135deg, #0b1220 0%, #1e293b 60%, #312e81 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.gradient-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(14, 165, 233, 0.25), transparent 35%),
    radial-gradient(circle at 90% 80%, rgba(139, 92, 246, 0.25), transparent 40%);
  pointer-events: none;
}
.about-grid {
  position: relative;
  display: grid;
  align-items: start;
  gap: 3rem;
  grid-template-columns: 1.1fr 0.9fr;
}
.light { color: #f8fafc !important; }
.light-text { color: #cbd5e1; max-width: 54ch; font-size: 1.05rem; }
.about-grid h2 { font-size: clamp(1.9rem, 2.8vw, 2.5rem); margin: 0 0 1rem; }

.about-list { display: grid; gap: 1rem; }
.list-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 1.4rem 1.5rem;
  border-radius: var(--radius-md);
  transition: transform 0.2s ease, background 0.2s ease;
}
.list-item:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.09);
}
.list-emoji { font-size: 1.4rem; display: inline-block; margin-bottom: 0.4rem; }
.list-item strong {
  display: block;
  margin-bottom: 0.3rem;
  color: white;
  font-size: 1.08rem;
  font-family: 'Sora', sans-serif;
}
.list-item span { color: #cbd5e1; font-size: 0.95rem; }

/* ---------- Contact ---------- */
.contact-section { padding: 6rem 0; }
.contact-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr 1.05fr;
  align-items: start;
}
.contact-grid h2 {
  font-size: clamp(2rem, 2.8vw, 2.5rem);
  margin: 0 0 1rem;
}
.contact-lead { color: var(--ink-3); font-size: 1.05rem; max-width: 48ch; }

.contact-details {
  display: grid;
  gap: 1rem;
  margin: 2rem 0 0;
}
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--line-2);
}
.contact-icon {
  font-size: 1.3rem;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(14,165,233,0.1), rgba(99,102,241,0.1));
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-item strong {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  margin-bottom: 0.15rem;
}
.contact-item p { margin: 0; color: var(--ink); font-weight: 500; }
.contact-item a { color: var(--brand-2); }
.contact-item a:hover { text-decoration: underline; }

.contact-form {
  display: grid;
  gap: 1rem;
  background: var(--surface);
  padding: 2.2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 500;
  color: var(--ink-2);
  font-size: 0.92rem;
}
.label-text em { color: #ef4444; font-style: normal; margin-left: 0.15rem; }

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  padding: 0.85rem 1rem;
  color: var(--ink);
  background: #f8fafc;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--muted); }

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  background: white;
  border-color: var(--brand-1);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.14);
}

.form-note {
  font-size: 0.85rem;
  color: var(--ink-3);
  margin: 0;
  text-align: center;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #0b1220;
  color: #cbd5e1;
  padding: 4rem 0 1.5rem;
  margin-top: 2rem;
}
.site-footer .brand { color: white; }
.footer-brand { margin-bottom: 1rem; }
.footer-tag { color: #94a3b8; max-width: 28ch; margin: 0; }
.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-footer h4 {
  color: white;
  font-size: 0.95rem;
  margin: 0 0 1rem;
  font-family: 'Sora', sans-serif;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}
.site-footer ul a {
  color: #cbd5e1;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}
.site-footer ul a:hover { color: white; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  font-size: 0.9rem;
  color: #94a3b8;
}
.footer-bottom a { color: #cbd5e1; }
.footer-bottom a:hover { color: white; }

/* ---------- Privacy page ---------- */
.privacy-page { padding: 4rem 0 5rem; }
.privacy-content {
  max-width: 880px;
  margin: 0 auto;
  background: white;
  padding: clamp(2rem, 5vw, 3.5rem);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.privacy-content h1 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin: 0.4rem 0 1rem;
  line-height: 1.1;
}
.privacy-content h2 {
  font-size: 1.2rem;
  margin: 2rem 0 0.6rem;
  color: var(--ink);
}
.privacy-content p, .privacy-content ul { color: var(--ink-2); font-size: 1rem; }
.privacy-content .lead { font-size: 1.1rem; color: var(--ink-2); }
.privacy-content ul { padding-left: 1.2rem; }
.privacy-content ul li { margin-bottom: 0.4rem; }
.privacy-content a { color: var(--brand-2); font-weight: 500; }
.privacy-content a:hover { text-decoration: underline; }

.privacy-footer {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-note { color: var(--ink-3); margin: 0; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-chip { animation: none; }
  .bar i { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .hero-grid,
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .hero-section { padding: 3rem 0 4rem; }
  .section { padding: 4rem 0; }
  .hero-visual { order: -1; max-width: 380px; margin: 0 auto; }

  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 68px;
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 0.8rem;
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .nav-links.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-links a {
    padding: 0.7rem 0.8rem;
    border-radius: 10px;
  }
  .nav-links a:hover { background: rgba(15, 23, 42, 0.04); }
  .nav-links a:not(.nav-cta)::after { display: none; }
  .nav-cta { text-align: center; margin-top: 0.4rem; }

  .hero-meta { gap: 1.5rem; }
}

@media (max-width: 560px) {
  .cards-grid,
  .process-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-copy h1 { font-size: 2.4rem; }
  .contact-form { padding: 1.6rem; }
  .float-chip { font-size: 0.78rem; padding: 0.45rem 0.8rem; }
  .chip-2 { right: 0; }
}
