/* ============================================================
   Bengui Software — design tokens
   Paleta extraída diretamente do CSS de produção do ibe.ia.br
   (--bg-body, --c-purple, --c-blue-light, --heading-gradient),
   com o CTA em roxo→azul (--c-purple/--c-blue-light do próprio
   site deles), e tipografia Sora + Plus Jakarta Sans — as mesmas
   famílias que eles usam.
   ============================================================ */
:root,
:root[data-theme="dark"] {
  --bg: #08080e;
  --dot-color: rgba(255,255,255,0.13);
  --bg-hero: linear-gradient(135deg, #1a0d2e 0%, #0f172a 55%, #08080e 100%);
  --bg-elevated: #171717;
  --panel: #1c1c1c;
  --panel-glass: rgba(255,255,255,0.045);
  --panel-glass-strong: rgba(255,255,255,0.08);
  --border: rgba(255,255,255,0.09);
  --border-strong: rgba(255,255,255,0.18);
  --text: #fbf9f4;
  --text-muted: #b2b2b2;
  --text-faint: #8a8a8a;
  --accent: #c89bff;
  --violet: #af6dff;
  --azure: #5b9bff;
  --ink-on-cta: #fbf9f4;
  --glow-blue: rgba(91,155,255,0.22);
  --glow-violet: rgba(175,109,255,0.20);
  --grad-cta: linear-gradient(135deg, #af6dff 0%, #5b9bff 100%);
  --grad-text: linear-gradient(90deg, #ffffff 0%, #e0e8ff 18%, #a5b9ff 38%, #c8a8ff 58%, #8fe8dc 82%, #ffffff 100%);
  --shadow-lg: 0 30px 80px -20px rgba(0,0,0,0.6);
  --shadow-glow: 0 0 0 1px rgba(175,109,255,0.20), 0 20px 60px -15px rgba(175,109,255,0.32);
  color-scheme: dark;
}

:root[data-theme="light"] {
  --bg: #ffffff;
  --dot-color: rgba(20,20,35,0.09);
  --bg-hero: linear-gradient(135deg, #f2f6ff 0%, #f4f0ff 55%, #ffffff 100%);
  --bg-elevated: #ffffff;
  --panel: #ffffff;
  --panel-glass: rgba(28,28,28,0.035);
  --panel-glass-strong: rgba(28,28,28,0.06);
  --border: #ddd9d1;
  --border-strong: #c7c0b3;
  --text: #1c1c1c;
  --text-muted: #4b4845;
  --text-faint: #7a7470;
  --accent: #6d28d9;
  --violet: #6d28d9;
  --azure: #0058d4;
  --ink-on-cta: #ffffff;
  --glow-blue: rgba(0,88,212,0.12);
  --glow-violet: rgba(109,40,217,0.10);
  --grad-cta: linear-gradient(135deg, #6d28d9 0%, #0058d4 100%);
  --grad-text: linear-gradient(90deg, #1d4ed8 0%, #4338ca 28%, #6d28d9 55%, #0e7490 100%);
  --shadow-lg: 0 30px 80px -25px rgba(20,15,10,0.14);
  --shadow-glow: 0 0 0 1px rgba(109,40,217,0.14), 0 20px 60px -20px rgba(109,40,217,0.24);
  color-scheme: light;
}

/* ============================================================
   Reset & base
   ============================================================ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  background-color: var(--bg);
  background-image: radial-gradient(circle, var(--dot-color) 0.5px, transparent 0.6px);
  background-size: 13px 13px;
  background-attachment: fixed;
  color: var(--text);
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background 0.35s ease, color 0.35s ease;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
svg { width: 20px; height: 20px; flex-shrink: 0; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 {
  font-family: "Sora", system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(38px, 5.4vw, 66px); font-weight: 600; }
h2 { font-size: clamp(30px, 3.6vw, 44px); }
h3 { font-size: clamp(22px, 2.6vw, 28px); }
h4 { font-size: 19px; }

p { color: var(--text-muted); }

code, .mono {
  font-family: "JetBrains Mono", ui-monospace, monospace;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}

.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { max-width: 640px; margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin-bottom: 14px; }
.section-head p { font-size: 17px; }

section { padding: 96px 0; position: relative; }
@media (max-width: 720px) {
  section { padding: 64px 0; }
  .hero { padding-top: 128px; padding-bottom: 72px; }
}

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--grad-cta);
  color: var(--ink-on-cta);
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { box-shadow: 0 0 0 1px rgba(175,109,255,0.32), 0 26px 70px -14px rgba(175,109,255,0.5); }

.btn-outline {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.btn-dark {
  background: var(--text);
  color: var(--bg);
}
:root[data-theme="light"] .btn-dark { background: #14152b; color: #f7f5fb; }

.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-block { width: 100%; justify-content: center; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 0;
  transition: padding 0.3s ease, background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  padding: 13px 0;
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--border);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.brand { display: flex; align-items: center; gap: 10px; }
.brand-word { font-family: "Sora", sans-serif; font-weight: 700; font-size: 19px; letter-spacing: -0.01em; }
.brand-word span { color: var(--accent); }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 14.5px; font-weight: 500; color: var(--text-muted); transition: color 0.2s ease; }
.nav-links a:hover { color: var(--text); }

.header-actions { display: flex; align-items: center; gap: 12px; }

.theme-toggle {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--panel-glass);
  color: var(--text);
  display: grid; place-items: center;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.theme-toggle:hover { border-color: var(--accent); color: var(--accent); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .icon-sun { display: none; }
:root[data-theme="light"] .theme-toggle .icon-moon { display: none; }
:root[data-theme="light"] .theme-toggle .icon-sun { display: block; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px; border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--panel-glass);
  color: var(--text);
  align-items: center; justify-content: center;
  cursor: pointer;
}

@media (max-width: 480px) {
  .site-header .container { gap: 8px; }
  .brand-word { font-size: 16px; white-space: nowrap; }
  .header-actions { gap: 8px; }
  .site-header .btn-label { display: none; }
  .site-header .btn-primary { padding: 11px 13px; }
  .site-header .btn-primary svg { width: 17px; height: 17px; }
  .theme-toggle, .nav-toggle { width: 36px; height: 36px; }
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed; top: 0; right: -100%; height: 100vh; width: min(320px, 82vw);
    background: var(--bg-elevated); border-left: 1px solid var(--border);
    flex-direction: column; justify-content: center; align-items: flex-start;
    padding: 40px; gap: 26px; transition: right 0.35s ease; z-index: 90;
  }
  .nav-links.open { right: 0; }
  .nav-toggle { display: flex; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  padding: 168px 0 110px; overflow: hidden;
  background-image: radial-gradient(circle, var(--dot-color) 0.5px, transparent 0.6px), var(--bg-hero);
  background-size: 13px 13px, auto;
}

.hero-glow {
  position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; z-index: 0;
}
.hero .g1 { width: 560px; height: 560px; top: -200px; right: -140px; background: radial-gradient(circle, var(--glow-blue), transparent 70%); }
.hero .g2 { width: 500px; height: 500px; bottom: -240px; left: -180px; background: radial-gradient(circle, var(--glow-violet), transparent 70%); }

.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; position: relative; z-index: 1; }

.hero h1 { margin-bottom: 22px; }
.hero h1 em { font-style: italic; }

.hero-sub { font-size: 18px; max-width: 490px; margin-bottom: 34px; }

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 18px 26px; }
.hero-trust span { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--text-faint); font-family: "JetBrains Mono", monospace; }
.hero-trust svg { width: 15px; height: 15px; color: var(--violet); }

/* --- hero visual: browser mock + chips --- */
.hero-visual { position: relative; perspective: 1200px; }

.chip {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: 6px;
  padding: 9px 15px; border-radius: 999px;
  background: var(--panel-glass-strong);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(14px);
  font-size: 12.5px; font-weight: 600;
  box-shadow: 0 14px 30px -10px rgba(0,0,0,0.35);
  animation: floaty 6s ease-in-out infinite;
}
.chip-a { top: -8px; left: -6px; animation-delay: 0s; }
.chip-b { top: 34%; right: -22px; animation-delay: 1.4s; }
.chip-c { bottom: -10px; left: -6px; animation-delay: 2.8s; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.browser-mock {
  border-radius: 16px;
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: transform 0.4s ease;
  transform: rotateY(-6deg) rotateX(3deg);
}
.browser-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 12px 14px;
  background: var(--panel-glass-strong);
  border-bottom: 1px solid var(--border);
}
.browser-bar .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--border-strong); }
.browser-url {
  margin-left: 10px; padding: 4px 12px; border-radius: 6px;
  background: var(--panel-glass); color: var(--text-faint);
  font-family: "JetBrains Mono", monospace; font-size: 11.5px;
}
.browser-body { position: relative; }

/* --- Abstract site wireframe (generic, used in the top hero) --- */
.wf-mock { padding: 22px 20px 26px; }
.wf-nav { display: flex; align-items: center; gap: 12px; margin-bottom: 26px; }
.wf-logo { width: 20px; height: 20px; border-radius: 6px; background: var(--grad-cta); }
.wf-link { width: 34px; height: 7px; border-radius: 4px; background: var(--border-strong); }
.wf-btn { margin-left: auto; width: 56px; height: 18px; border-radius: 999px; background: var(--grad-cta); }
.wf-eyebrow { display: block; width: 90px; height: 6px; border-radius: 4px; background: var(--accent); opacity: 0.6; margin-bottom: 12px; }
.wf-h1 { display: block; width: 88%; height: 13px; border-radius: 5px; background: var(--text); opacity: 0.85; margin-bottom: 9px; }
.wf-h1.short { width: 55%; margin-bottom: 14px; }
.wf-p { display: block; width: 92%; height: 7px; border-radius: 4px; background: var(--border-strong); margin-bottom: 7px; }
.wf-p.w70 { width: 70%; margin-bottom: 18px; }
.wf-cta { display: flex; gap: 8px; margin-bottom: 26px; }
.wf-pill { width: 78px; height: 22px; border-radius: 999px; background: var(--grad-cta); }
.wf-pill.outline { background: transparent; border: 1px solid var(--border-strong); }
.wf-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.wf-card { height: 46px; border-radius: 8px; background: var(--panel-glass-strong); border: 1px solid var(--border); }

/* --- Real Z Corporation hero recreation (actual photo + copy) --- */
.zc-mock {
  position: relative;
  min-height: 300px;
  text-decoration: none; color: inherit; cursor: pointer;
  background-image: url('../assets/zcorporation-warehouse.jpg');
  background-size: cover;
  background-position: center 35%;
  display: flex;
  align-items: center;
}
.zc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(175deg, rgba(26,26,36,0.55) 0%, rgba(26,26,36,0.90) 100%);
}
.zc-content { position: relative; z-index: 1; width: 100%; padding: 22px 22px 26px; }
.zc-nav { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; }
.zc-logo-dot { width: 16px; height: 16px; border-radius: 4px; background: #8bc53f; flex-shrink: 0; }
.zc-wordmark { font-family: "JetBrains Mono", monospace; font-size: 10px; font-weight: 700; letter-spacing: 0.05em; color: #fff; }
.zc-nav-btn { margin-left: auto; background: #8bc53f; color: #1a1a24; font-size: 9.5px; font-weight: 700; padding: 5px 11px; border-radius: 999px; white-space: nowrap; }
.zc-eyebrow { font-family: "JetBrains Mono", monospace; font-size: 9.5px; font-weight: 700; letter-spacing: 0.06em; color: #8bc53f; text-transform: uppercase; margin-bottom: 10px; }
.zc-heading { font-family: "Sora", sans-serif; font-size: 19px; line-height: 1.2; color: #fff; font-weight: 600; margin-bottom: 10px; max-width: 250px; }
.zc-heading span { color: #8bc53f; }
.zc-sub { font-size: 11px; color: rgba(255,255,255,0.65); max-width: 230px; margin-bottom: 20px; line-height: 1.55; }
.zc-cta { display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }
.zc-btn-primary { background: #8bc53f; color: #1a1a24; font-size: 10.5px; font-weight: 700; padding: 8px 14px; border-radius: 999px; }
.zc-btn-outline { border: 1px solid rgba(255,255,255,0.35); color: #fff; font-size: 10.5px; font-weight: 700; padding: 8px 14px; border-radius: 999px; }
.zc-stats { display: flex; gap: 18px; flex-wrap: wrap; }
.zc-stats strong { display: block; font-family: "Sora", sans-serif; font-size: 15px; font-weight: 600; color: #8bc53f; }
.zc-stats span { display: block; font-size: 8px; letter-spacing: 0.04em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 2px; }

@media (max-width: 720px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; margin-bottom: 10px; }
  .browser-mock { transform: none; }
  .chip { display: none; }
}

/* ============================================================
   Gradient heading utility
   Plain-CSS port of a shadcn/CVA "gradient heading" pattern —
   this project is static HTML/CSS/JS (no React/Tailwind build),
   so the same variant idea (color via modifier class, size/weight
   left to the surrounding heading) is implemented as utility
   classes instead of a component.
   ============================================================ */
.gradient-heading {
  display: inline-block;
  padding: 0 0.12em;
  margin: 0 -0.12em;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.gh-brand { background-image: var(--grad-text); }
.gh-cta { background-image: var(--grad-cta); }
.gh-mono { background-image: linear-gradient(180deg, var(--text) 0%, var(--text-faint) 100%); }

/* standalone sizes, for when the utility isn't nested inside an existing h1–h4 */
.gh-standalone { display: block; font-family: "Sora", sans-serif; font-weight: 700; letter-spacing: -0.02em; }
.gh-sm { font-size: clamp(20px, 2.4vw, 26px); }
.gh-md { font-size: clamp(26px, 3.2vw, 36px); }
.gh-lg { font-size: clamp(34px, 4.4vw, 52px); }
.gh-xl { font-size: clamp(44px, 6vw, 72px); }

/* ============================================================
   Tools grid — static logo-cloud (style referenced from
   ibe.ia.br's tools section), replaces the old marquee
   ============================================================ */
.tools-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px;
  max-width: 980px; margin: 0 auto;
}
.tool-card {
  position: relative; overflow: hidden;
  display: flex; align-items: center; gap: 12px;
  flex: 0 1 calc((100% - 14px * 4) / 5);
  aspect-ratio: 5 / 2;
  padding: 16px 18px;
  background: var(--panel-glass-strong);
  border: 1px solid var(--border);
  border-radius: 18px;
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1), border-color 0.35s ease, box-shadow 0.35s ease;
}
.tool-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: 0 18px 44px -18px var(--glow-violet), 0 8px 20px -10px var(--glow-blue);
}
.tool-icon {
  display: grid; place-items: center; flex-shrink: 0;
  width: 34px; height: 34px; border-radius: 9px;
  font-family: "JetBrains Mono", monospace; font-size: 13px; font-weight: 700;
  color: #fff; overflow: hidden;
}
.tool-icon svg { width: 18px; height: 18px; }
.tool-icon.tech-figma svg { width: 20px; height: 24px; }
.tool-icon.tech-html svg, .tool-icon.tech-css svg { width: 20px; height: 20px; }
.tool-icon img { width: 100%; height: 100%; object-fit: contain; border-radius: inherit; }
.tool-name { font-family: "Sora", sans-serif; font-weight: 600; font-size: 0.92rem; letter-spacing: -0.01em; color: var(--text); opacity: 0.88; transition: opacity 0.3s ease; }
.tool-card:hover .tool-name { opacity: 1; }

/* real, single-color brand marks: coloured badge + white glyph */
.tech-js { background: #f7df1e; color: #1a1a05; }
.tech-whatsapp { background: #25d366; }
.tech-node { background: #5fa04e; }
.tech-supabase { background: #1c1c1c; color: #3fcf8e; }
.tech-n8n { background: #ea4b71; }
.tech-netlify { background: #00c7b7; }
.tech-claude { background: #d97757; }
.tech-vercel { background: #000000; }
.tech-github { background: #181717; }
.tech-brevo { background: #0b996e; }
.tech-resend { background: #000000; }

/* multi-colour / gradient real logos sit on a neutral chip */
.tech-html, .tech-css, .tech-figma, .tech-gemini { background: #14152b; }
:root[data-theme="light"] .tech-html,
:root[data-theme="light"] .tech-css,
:root[data-theme="light"] .tech-figma,
:root[data-theme="light"] .tech-gemini { background: #eef0f6; }

.tech-antigravity { background: transparent; }

@media (max-width: 900px) { .tool-card { flex-basis: calc((100% - 14px * 3) / 4); } }
@media (max-width: 720px) {
  .tool-card { flex-basis: calc((100% - 14px * 2) / 3); aspect-ratio: 1 / 1; flex-direction: column; justify-content: center; text-align: center; padding: 14px 10px; }
  .tool-name { font-size: 0.78rem; }
}
@media (max-width: 480px) { .tool-card { flex-basis: calc((100% - 14px * 1) / 2); } }

/* ============================================================
   Services (bento)
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 34px 28px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: var(--border-strong); box-shadow: var(--shadow-lg); }
.service-icon {
  width: 50px; height: 50px; border-radius: 13px;
  background: var(--grad-cta); color: var(--ink-on-cta);
  display: grid; place-items: center; margin-bottom: 22px;
}
.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: 15px; margin-bottom: 20px; }
.service-tag {
  display: inline-block; padding: 5px 11px; border-radius: 7px;
  background: var(--panel-glass-strong); border: 1px solid var(--border);
  color: var(--violet); font-size: 12.5px;
}
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px; font-size: 14px; font-weight: 600; color: var(--accent);
  transition: gap 0.25s ease;
}
.service-link svg { width: 15px; height: 15px; }
.service-link:hover { gap: 10px; }

@media (max-width: 860px) { .services-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Featured project
   ============================================================ */
.project {
  background-color: var(--bg-elevated);
  background-image: radial-gradient(circle, var(--dot-color) 0.5px, transparent 0.6px);
  background-size: 13px 13px;
  overflow: hidden;
}
.project .g3 {
  width: 620px; height: 620px; top: 20%; right: -260px;
  background: radial-gradient(circle, var(--glow-violet), transparent 70%);
  z-index: 0; position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none;
}
.project-showcase {
  position: relative; z-index: 1;
  max-width: 980px; margin: 0 auto 22px;
  display: flex; flex-direction: column; align-items: center;
}
.browser-mock-xl { width: 100%; }
.browser-mock-xl .zc-mock { min-height: 480px; background-position: center 30%; }
.browser-mock-xl .zc-content { padding: 42px 46px 48px; }
.browser-mock-xl .zc-nav { margin-bottom: 42px; }
.browser-mock-xl .zc-logo-dot { width: 22px; height: 22px; border-radius: 6px; }
.browser-mock-xl .zc-wordmark { font-size: 13px; }
.browser-mock-xl .zc-nav-btn { font-size: 12px; padding: 8px 16px; }
.browser-mock-xl .zc-eyebrow { font-size: 12.5px; margin-bottom: 16px; }
.browser-mock-xl .zc-heading { font-size: 38px; max-width: 500px; margin-bottom: 18px; }
.browser-mock-xl .zc-sub { font-size: 15px; max-width: 430px; margin-bottom: 32px; }
.browser-mock-xl .zc-cta { gap: 12px; margin-bottom: 38px; }
.browser-mock-xl .zc-btn-primary, .browser-mock-xl .zc-btn-outline { font-size: 13.5px; padding: 12px 24px; }
.browser-mock-xl .zc-stats { gap: 34px; }
.browser-mock-xl .zc-stats strong { font-size: 26px; }
.browser-mock-xl .zc-stats span { font-size: 10px; }

.showcase-badge {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: -20px; padding: 10px 20px; border-radius: 999px;
  background: var(--grad-cta); color: var(--ink-on-cta);
  font-size: 13px; font-weight: 700;
  box-shadow: var(--shadow-lg);
  position: relative; z-index: 2;
}

.project-footer { max-width: 780px; margin: 0 auto; text-align: center; }
.project-footer .tag-row { justify-content: center; margin-bottom: 28px; }
.project-footer .hero-ctas { justify-content: center; margin-bottom: 0; }

.tag-row { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 30px; }
.tag-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 999px;
  background: var(--panel-glass-strong); border: 1px solid var(--border);
  font-size: 13px; font-weight: 500; color: var(--text-muted);
}
.tag-pill svg { width: 14px; height: 14px; color: var(--violet); }

@media (max-width: 720px) {
  .browser-mock-xl .zc-mock { min-height: 360px; background-position: center 35%; }
  .browser-mock-xl .zc-content { padding: 26px 24px 30px; }
  .browser-mock-xl .zc-nav { margin-bottom: 26px; }
  .browser-mock-xl .zc-heading { font-size: 23px; max-width: 280px; margin-bottom: 12px; }
  .browser-mock-xl .zc-sub { font-size: 12px; max-width: 240px; margin-bottom: 22px; }
  .browser-mock-xl .zc-cta { margin-bottom: 26px; }
  .browser-mock-xl .zc-btn-primary, .browser-mock-xl .zc-btn-outline { font-size: 11px; padding: 9px 16px; }
  .browser-mock-xl .zc-stats { gap: 20px; }
  .browser-mock-xl .zc-stats strong { font-size: 18px; }
  .showcase-badge { font-size: 11.5px; padding: 8px 16px; margin-top: -16px; }
}

/* ============================================================
   Availability banner
   ============================================================ */
.availability { padding: 0; }
.availability-inner {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px 44px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
}
.availability-inner strong { font-family: "Sora", sans-serif; font-size: 20px; display: inline-flex; align-items: center; gap: 10px; }
.availability-inner p { margin-top: 6px; font-size: 15px; }
.pulse-dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--accent);
  display: inline-block; margin-right: 4px; box-shadow: 0 0 0 0 rgba(175,109,255,0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(175,109,255,0.5); }
  70% { box-shadow: 0 0 0 10px rgba(175,109,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(175,109,255,0); }
}

/* ============================================================
   Process
   ============================================================ */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.process-card {
  padding: 30px 24px; border-radius: 18px;
  background: var(--panel); border: 1px solid var(--border);
}
.process-num {
  font-family: "Sora", sans-serif; font-size: 30px; font-weight: 600;
  background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block; margin-bottom: 14px;
}
.process-card h4 { margin-bottom: 8px; }
.process-card p { font-size: 14.5px; }

@media (max-width: 900px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .process-grid { grid-template-columns: 1fr; } }

/* ============================================================
   About
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.about-grid p { margin-bottom: 16px; font-size: 16px; }
.about-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 30px; }
.about-badges svg { color: var(--violet); }

.about-panel {
  background: var(--panel); border: 1px solid var(--border); border-radius: 20px;
  padding: 30px; box-shadow: var(--shadow-lg);
}
.mono-label { font-family: "JetBrains Mono", monospace; font-size: 13px; color: var(--violet); }
.about-panel-row { border-bottom: 1px solid var(--border); padding-bottom: 16px; margin-bottom: 16px; }
.about-dl div { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-bottom: 1px solid var(--border); font-size: 14.5px; }
.about-dl div:last-child { border-bottom: none; }
.about-dl dt { color: var(--text-faint); font-family: "JetBrains Mono", monospace; font-size: 12.5px; }
.about-dl dd { text-align: right; font-weight: 500; }

@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Contact
   ============================================================ */
.contact {
  background-color: var(--bg-elevated);
  background-image: radial-gradient(circle, var(--dot-color) 0.5px, transparent 0.6px);
  background-size: 13px 13px;
}
.contact > .container > div[style] { display: grid !important; grid-template-columns: 0.9fr 1.1fr; gap: 40px; }

.contact-info, .contact-form {
  background: var(--panel); border: 1px solid var(--border); border-radius: 22px; padding: 36px;
}
.contact-info h3, .contact-form h3 { margin-bottom: 18px; }
.contact-form > p { font-size: 14.5px; margin-bottom: 22px; }

.contact-row { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.contact-row:last-of-type { border-bottom: none; margin-bottom: 22px; }
.contact-row svg { color: var(--accent); margin-top: 2px; }
.contact-row strong { display: block; font-size: 14px; margin-bottom: 3px; }
.contact-row a, .contact-row span { color: var(--text-muted); font-size: 14.5px; }
.contact-row a:hover { color: var(--accent); }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 7px; color: var(--text-muted); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border-radius: 10px;
  border: 1px solid var(--border); background: var(--panel-glass);
  color: var(--text); font-family: inherit; font-size: 14.5px;
  transition: border-color 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); outline: none; }
.field textarea { resize: vertical; }
.form-note { font-size: 12.5px; color: var(--text-faint); margin-top: 12px; text-align: center; }

@media (max-width: 860px) {
  .contact > .container > div[style] { grid-template-columns: 1fr !important; }
  .field-row { grid-template-columns: 1fr; }
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background-color: #0a0b16;
  background-image: radial-gradient(circle, rgba(255,255,255,0.13) 0.5px, transparent 0.6px);
  background-size: 13px 13px;
  color: #d6dae2; padding: 72px 0 28px; border-top: 1px solid rgba(255,255,255,0.08);
}
:root[data-theme="light"] .site-footer { background-color: #14152b; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand p { color: #97a0b2; font-size: 14px; margin: 16px 0 20px; max-width: 280px; }
.footer-col ul li, .footer-brand p { overflow-wrap: anywhere; }

@media (max-width: 760px) {
  .footer-top { grid-template-columns: 1fr 1fr; row-gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 460px) {
  .footer-top { grid-template-columns: 1fr; }
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.12);
  display: grid; place-items: center; color: #d6dae2; transition: border-color 0.2s ease, color 0.2s ease;
}
.footer-social a:hover { border-color: var(--accent); color: var(--accent); }
.footer-social svg { width: 17px; height: 17px; }

.footer-col h4 { font-family: "Plus Jakarta Sans", sans-serif; font-size: 13.5px; font-weight: 700; color: #fff; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.03em; }
.footer-col ul li { margin-bottom: 11px; font-size: 14px; color: #97a0b2; }
.footer-col ul a:hover { color: var(--accent); }

.footer-bottom { padding-top: 26px; font-size: 13px; color: #6b7386; text-align: center; }

/* ============================================================
   WhatsApp floating button
   ============================================================ */
.whatsapp-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 14px 34px -8px rgba(37,211,102,0.6);
  transition: transform 0.25s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 28px; height: 28px; }
