/* DVLP Studio — Design System v3 */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --pink: #CC00C4;
  --pink-b: #DD22D5;
  --pink-light: rgba(204,0,196,.06);
  --pink-mid: rgba(204,0,196,.14);
  --pink-glow: rgba(204,0,196,.22);
  --ink: #0F1419;
  --ink2: #1A2233;
  --ink3: #2D3748;
  --grey: #5B6573;
  --grey2: #8895A7;
  --grey3: #B8C2CC;
  --border: #E5E9EE;
  --border2: #D1D7E0;
  --surface: #F7F9FC;
  --surface2: #EFF3F8;
  --white: #FFFFFF;
  --green: #10B981;
  --amber: #F59E0B;
  --red: #EF4444;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-2xl: 36px;
  --sh-xs: 0 1px 2px rgba(0,0,0,.04);
  --sh-sm: 0 2px 6px rgba(0,0,0,.05), 0 1px 3px rgba(0,0,0,.04);
  --sh-md: 0 8px 24px rgba(0,0,0,.06), 0 3px 8px rgba(0,0,0,.04);
  --sh-lg: 0 24px 64px rgba(0,0,0,.09), 0 6px 16px rgba(0,0,0,.05);
  --sh-pink: 0 8px 32px rgba(204,0,196,.28);
  --sh-pink-lg: 0 16px 48px rgba(204,0,196,.32);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-feature-settings: 'ss01' on, 'cv11' on;
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ===== TYPOGRAPHY ===== */
.display { font-family: 'Bricolage Grotesque', sans-serif; letter-spacing: -0.025em; }
.mono { font-family: 'JetBrains Mono', monospace; }

h1, h2, h3, h4 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; line-height: 1.1; letter-spacing: -0.025em; color: var(--ink); }

.h-display { font-size: clamp(40px, 6vw, 80px); font-weight: 700; line-height: 1.02; letter-spacing: -0.04em; }
.h-1 { font-size: clamp(36px, 4.5vw, 60px); font-weight: 700; line-height: 1.05; letter-spacing: -0.03em; }
.h-2 { font-size: clamp(28px, 3.5vw, 48px); font-weight: 700; line-height: 1.08; letter-spacing: -0.025em; }
.h-3 { font-size: clamp(22px, 2.5vw, 32px); font-weight: 700; line-height: 1.15; }
.h-4 { font-size: clamp(18px, 1.6vw, 22px); font-weight: 700; line-height: 1.25; }

.lead { font-size: clamp(17px, 1.5vw, 20px); line-height: 1.7; color: var(--grey); font-weight: 400; }
.body-lg { font-size: 17px; line-height: 1.7; color: var(--grey); }
.body { font-size: 15px; line-height: 1.7; color: var(--grey); }
.small { font-size: 13.5px; line-height: 1.6; color: var(--grey); }
.caption { font-size: 12px; line-height: 1.5; color: var(--grey2); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--pink);
  border-radius: 1px;
  flex-shrink: 0;
}
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pink-light);
  border: 1px solid var(--pink-mid);
  color: var(--pink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.eyebrow-pill .dot {
  width: 6px;
  height: 6px;
  background: var(--pink);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }

em.accent { color: var(--pink); font-style: normal; }

/* ===== LAYOUT ===== */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 40px; } }
@media (min-width: 1024px) { .container { padding: 0 56px; } }

.section { padding: 80px 0; }
@media (min-width: 768px) { .section { padding: 112px 0; } }
@media (min-width: 1024px) { .section { padding: 144px 0; } }

.section-tight { padding: 56px 0; }
@media (min-width: 768px) { .section-tight { padding: 80px 0; } }

.section-header { max-width: 720px; margin-bottom: 56px; }
@media (min-width: 1024px) { .section-header { margin-bottom: 80px; } }

.section-dark { background: var(--ink); color: white; }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: white; }
.section-dark .body, .section-dark .body-lg, .section-dark .lead { color: rgba(255,255,255,0.7); }
.section-dark .small { color: rgba(255,255,255,0.55); }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 72px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.nav.scrolled {
  border-bottom-color: var(--border);
  background: rgba(255,255,255,0.95);
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo-mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--pink) 0%, #8800AA 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 4px 14px rgba(204,0,196,0.32);
}
.nav-logo-text {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.nav-logo-text .dot { color: var(--pink); }

.nav-links {
  display: none;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 1024px) { .nav-links { display: flex; } }

.nav-links a {
  color: var(--grey);
  font-size: 14px;
  font-weight: 500;
  padding: 9px 14px;
  border-radius: 8px;
  transition: color 0.18s, background 0.18s;
}
.nav-links a:hover { color: var(--ink); background: var(--surface); }
.nav-links a.active { color: var(--pink); }

.nav-cta {
  background: var(--ink) !important;
  color: white !important;
  padding: 10px 20px !important;
  border-radius: 9px !important;
  font-weight: 600 !important;
  font-size: 14px;
  margin-left: 8px;
  transition: all 0.2s !important;
}
.nav-cta:hover { background: var(--pink) !important; transform: translateY(-1px); }

.hbg {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
}
@media (min-width: 1024px) { .hbg { display: none; } }
.hbg span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all 0.3s; }
.hbg.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hbg.open span:nth-child(2) { opacity: 0; }
.hbg.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mob-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  z-index: 999;
  flex-direction: column;
  padding: 32px 24px;
  border-top: 1px solid var(--border);
  overflow-y: auto;
}
.mob-nav.open { display: flex; }
.mob-nav a {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.mob-nav a:last-child { border-bottom: none; margin-top: 16px; color: var(--pink); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 10px;
  transition: all 0.22s ease;
  text-decoration: none;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: var(--ink);
  color: white;
  box-shadow: var(--sh-sm);
}
.btn-primary:hover {
  background: var(--pink);
  transform: translateY(-2px);
  box-shadow: var(--sh-pink);
}
.btn-pink {
  background: var(--pink);
  color: white;
  box-shadow: var(--sh-pink);
}
.btn-pink:hover {
  background: var(--pink-b);
  transform: translateY(-2px);
  box-shadow: var(--sh-pink-lg);
}
.btn-outline {
  background: white;
  color: var(--ink);
  border: 1.5px solid var(--border2);
}
.btn-outline:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--sh-sm);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  padding: 8px 0;
}
.btn-ghost:hover { color: var(--pink); gap: 12px; }
.btn-lg { font-size: 16px; padding: 17px 34px; }
.btn-sm { font-size: 14px; padding: 10px 20px; }

/* ===== CARDS ===== */
.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px;
  transition: all 0.3s;
}
.card-hover:hover {
  border-color: var(--pink-mid);
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
}
.card-surface {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
}
.card-dark {
  background: var(--ink2);
  color: white;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-xl);
  padding: 32px;
}
.card-pink {
  background: linear-gradient(135deg, var(--pink) 0%, #8800AA 100%);
  color: white;
  border-radius: var(--r-xl);
  padding: 32px;
}
.card-pink h3, .card-pink h4 { color: white; }

/* ===== FORM ===== */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 8px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  background: white;
  border: 1.5px solid var(--border);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  padding: 13px 16px;
  border-radius: 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  outline: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238895A7' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px var(--pink-light);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 600px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-submit {
  width: 100%;
  background: var(--ink);
  color: white;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 16px;
  border-radius: 10px;
  transition: all 0.22s;
  margin-top: 4px;
}
.form-submit:hover { background: var(--pink); transform: translateY(-2px); box-shadow: var(--sh-pink); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ===== FOOTER ===== */
.footer {
  background: var(--ink);
  color: white;
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; } }
.footer-brand-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-brand-mark .nav-logo-text { color: white; font-size: 20px; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: color 0.18s;
}
.footer-col a:hover { color: var(--pink); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 13px; }

/* ===== CHATBOT ===== */
.chat-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  z-index: 800;
  transition: all 0.25s;
}
.chat-fab:hover { background: var(--pink); transform: scale(1.08); box-shadow: var(--sh-pink-lg); }
.chat-fab svg { width: 26px; height: 26px; stroke: white; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.chat-badge {
  position: absolute;
  top: 0;
  right: 0;
  width: 14px;
  height: 14px;
  background: var(--green);
  border: 2.5px solid white;
  border-radius: 50%;
  display: none;
}
.chat-badge.show { display: block; }

.chat-window {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 360px;
  height: 480px;
  max-width: calc(100vw - 32px);
  max-height: calc(100vh - 130px);
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.18);
  z-index: 800;
  display: none;
  flex-direction: column;
  overflow: hidden;
}
.chat-window.open { display: flex; animation: chatIn 0.25s ease; }
@keyframes chatIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.chat-header {
  background: var(--ink);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chat-header-left { display: flex; align-items: center; gap: 11px; }
.chat-ava {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--pink), #8800AA);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 14px;
}
.chat-name { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 14px; color: white; }
.chat-status { font-size: 11px; color: rgba(255,255,255,0.45); display: flex; align-items: center; gap: 5px; }
.chat-online { width: 6px; height: 6px; background: var(--green); border-radius: 50%; }
.chat-x { color: rgba(255,255,255,0.55); padding: 4px 8px; border-radius: 6px; font-size: 16px; }
.chat-x:hover { color: white; background: rgba(255,255,255,0.1); }
.chat-body { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 12px; background: var(--surface); }
.chat-msg { max-width: 82%; }
.chat-msg.bot { align-self: flex-start; }
.chat-msg.user { align-self: flex-end; }
.chat-bubble {
  padding: 11px 15px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.5;
}
.chat-msg.bot .chat-bubble { background: white; border: 1px solid var(--border); color: var(--ink); border-radius: 4px 16px 16px 16px; }
.chat-msg.user .chat-bubble { background: var(--pink); color: white; border-radius: 16px 16px 4px 16px; }
.chat-time { font-size: 10.5px; color: var(--grey2); margin-top: 4px; padding: 0 4px; }
.chat-msg.user .chat-time { text-align: right; }
.typing-indicator { display: none; align-self: flex-start; }
.typing-indicator.show { display: flex; }
.typing-indicator .chat-bubble { display: flex; gap: 5px; align-items: center; }
.typing-dot { width: 6px; height: 6px; background: var(--grey2); border-radius: 50%; animation: typeDot 0.9s ease-in-out infinite; }
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typeDot { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
.chat-quick { display: flex; flex-wrap: wrap; gap: 6px; padding: 10px 14px; background: white; border-top: 1px solid var(--border); }
.qr {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--grey);
  font-size: 12.5px;
  padding: 6px 12px;
  border-radius: 100px;
  transition: all 0.18s;
}
.qr:hover { border-color: var(--pink); color: var(--pink); }
.chat-input-row { display: flex; gap: 8px; padding: 12px 14px; background: white; border-top: 1px solid var(--border); }
.chat-input {
  flex: 1;
  background: var(--surface);
  border: 1.5px solid var(--border);
  color: var(--ink);
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 10px;
  outline: none;
  font-family: inherit;
}
.chat-input:focus { border-color: var(--pink); }
.chat-send {
  background: var(--ink);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
}
.chat-send:hover { background: var(--pink); }
.chat-send svg { width: 16px; height: 16px; stroke: white; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ===== UTILITIES ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }

.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr 1fr; }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr 1fr 1fr; }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: 1fr 1fr 1fr; }
}

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-2xl { max-width: 640px; }
.max-w-3xl { max-width: 760px; }
.max-w-4xl { max-width: 880px; }
.max-w-5xl { max-width: 1040px; }

.mb-2 { margin-bottom: 8px; } .mb-3 { margin-bottom: 12px; } .mb-4 { margin-bottom: 16px; } .mb-6 { margin-bottom: 24px; } .mb-8 { margin-bottom: 32px; } .mb-10 { margin-bottom: 40px; } .mb-12 { margin-bottom: 48px; }
.mt-2 { margin-top: 8px; } .mt-4 { margin-top: 16px; } .mt-6 { margin-top: 24px; } .mt-8 { margin-top: 32px; }

/* ===== HERO BACKDROP ===== */
.bg-mesh {
  position: relative;
  background: white;
  overflow: hidden;
}
.bg-mesh::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(204,0,196,0.12), transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
}
.bg-mesh::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(80,100,255,0.08), transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
}

.bg-grid {
  background-image: linear-gradient(rgba(204,0,196,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(204,0,196,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: -1px -1px;
}

/* ===== STAT BAR ===== */
.stat-bar { background: var(--ink); padding: 32px 0; }
.stat-bar-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; overflow: hidden; }
@media (min-width: 768px) { .stat-bar-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-bar-item { padding: 28px 32px; border-right: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
.stat-bar-item:nth-child(2n) { border-right: none; }
.stat-bar-item:nth-last-child(-n+2) { border-bottom: none; }
@media (min-width: 768px) {
  .stat-bar-item { border-bottom: none; border-right: 1px solid rgba(255,255,255,0.08); }
  .stat-bar-item:nth-child(2n) { border-right: 1px solid rgba(255,255,255,0.08); }
  .stat-bar-item:last-child { border-right: none; }
}
.stat-bar-num { font-family: 'Bricolage Grotesque', sans-serif; font-size: 40px; font-weight: 800; line-height: 1; letter-spacing: -0.04em; color: var(--pink); margin-bottom: 6px; }
.stat-bar-lbl { font-size: 13px; color: rgba(255,255,255,0.5); }

/* ===== BENTO ===== */
.bento { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 768px) { .bento { grid-template-columns: 1fr 1fr; gap: 16px; } }
@media (min-width: 1024px) { .bento { grid-template-columns: repeat(3, 1fr); } }
.bento-cell {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: border-color 0.25s;
}
.bento-cell:hover { border-color: var(--pink-mid); }
.bento-cell.span-2 { grid-column: span 1; }
@media (min-width: 1024px) { .bento-cell.span-2 { grid-column: span 2; } }
.bento-cell.dark { background: var(--ink); border-color: transparent; }
.bento-cell.dark h3 { color: white; }
.bento-cell.dark .body, .bento-cell.dark .small { color: rgba(255,255,255,0.6); }
.bento-cell.pink { background: linear-gradient(135deg, var(--pink) 0%, #8800AA 100%); border-color: transparent; color: white; }
.bento-cell.pink h3 { color: white; }
.bento-cell.pink .body, .bento-cell.pink .small { color: rgba(255,255,255,0.85); }
.bento-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--pink);
  margin-bottom: 8px;
}
.bento-cell.dark .bento-num, .bento-cell.pink .bento-num { color: white; }
.bento-lbl { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey2); margin-bottom: 12px; }
.bento-cell.dark .bento-lbl, .bento-cell.pink .bento-lbl { color: rgba(255,255,255,0.5); }

/* ===== STEPS ===== */
.steps { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 768px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: all 0.25s;
  position: relative;
}
.step:hover {
  background: white;
  border-color: var(--pink-mid);
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--pink);
  margin-bottom: 16px;
  box-shadow: var(--sh-xs);
}

/* ===== FAQ ===== */
.faq { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.18s;
  text-align: left;
  width: 100%;
}
.faq-q:hover { color: var(--pink); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  color: var(--grey);
  transition: all 0.25s;
}
.faq-item.open .faq-icon {
  background: var(--pink);
  border-color: var(--pink);
  color: white;
  transform: rotate(45deg);
}
.faq-a {
  display: none;
  padding: 0 0 22px;
  font-size: 15px;
  color: var(--grey);
  line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }

/* ===== HERO VISUAL ===== */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1023px) { .hero-visual { display: none; } }

/* ===== FEATURE GRID ===== */
.feature-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 768px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .feature-grid { grid-template-columns: 1fr 1fr 1fr; } }
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: all 0.25s;
}
.feature-card:hover {
  background: white;
  border-color: var(--pink-mid);
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--pink-light), white);
  border: 1px solid var(--pink-mid);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feature-icon svg { width: 22px; height: 22px; stroke: var(--pink); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* ===== PRODUCT CARD ===== */
.product-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  overflow: hidden;
  transition: all 0.3s;
}
.product-card:hover { border-color: var(--pink-mid); box-shadow: var(--sh-lg); transform: translateY(-4px); }
.product-card-top {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink2) 100%);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.product-card-top::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(204,0,196,0.25), transparent 60%);
  border-radius: 50%;
}
.product-num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 80px;
  font-weight: 800;
  color: rgba(255,255,255,0.04);
  line-height: 1;
}
.product-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(204,0,196,0.18);
  border: 1px solid rgba(204,0,196,0.3);
  color: rgba(255,255,255,0.92);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
  position: relative;
}
.product-card-top h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: white;
  line-height: 1.18;
  margin-bottom: 12px;
  position: relative;
}
.product-card-top p { font-size: 15px; color: rgba(255,255,255,0.62); line-height: 1.65; position: relative; }
.product-card-body { padding: 32px; }
.product-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.product-features li { display: flex; align-items: flex-start; gap: 11px; font-size: 14px; color: var(--grey); line-height: 1.55; }
.product-features li::before {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--pink-light);
  border: 1px solid var(--pink-mid);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2 6l3 3 5-6' stroke='%23CC00C4' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
}

/* ===== TESTIMONIAL ===== */
.testimonial {
  background: var(--pink-light);
  border: 1px solid var(--pink-mid);
  border-left: 4px solid var(--pink);
  border-radius: 16px;
  padding: 28px 32px;
}
.testimonial p { font-size: 17px; color: var(--ink); font-style: italic; line-height: 1.65; margin-bottom: 14px; }
.testimonial cite { font-size: 13px; color: var(--grey); font-weight: 600; font-style: normal; }

/* ===== CASE CARD ===== */
.case-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: inherit;
}
.case-card:hover { border-color: var(--pink-mid); box-shadow: var(--sh-lg); transform: translateY(-4px); }
.case-img {
  height: 240px;
  background: linear-gradient(135deg, var(--ink), var(--ink2));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 28px;
}
.case-img-content { position: relative; z-index: 2; }
.case-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
}
.case-card .case-img h3 {
  font-size: 22px;
  color: white;
  line-height: 1.2;
}
.case-body { padding: 28px 32px; }
.case-meta { display: flex; gap: 28px; padding-top: 18px; border-top: 1px solid var(--border); }
.case-meta-v {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--pink);
  line-height: 1;
}
.case-meta-l { font-size: 11.5px; color: var(--grey2); margin-top: 4px; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--ink);
  border-radius: var(--r-2xl);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(204,0,196,0.25), transparent 60%);
  border-radius: 50%;
}
.cta-banner h2 { color: white; margin-bottom: 16px; position: relative; }
.cta-banner p { color: rgba(255,255,255,0.55); font-size: 17px; line-height: 1.7; max-width: 540px; margin: 0 auto 32px; position: relative; }


/* ===== SUBTLE MOTION ===== */
@keyframes breathe { 0%,100% { transform: scale(1); opacity: 0.6; } 50% { transform: scale(1.04); opacity: 0.85; } }
@keyframes pulse-soft { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes float-slow { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes count-up-fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.breathe { animation: breathe 5s ease-in-out infinite; }
.float-slow { animation: float-slow 6s ease-in-out infinite; }
.pulse-soft { animation: pulse-soft 2.5s ease-in-out infinite; }

/* gradient mesh animation on hero blob */
.bg-mesh::before { animation: breathe 9s ease-in-out infinite; }
.bg-mesh::after { animation: breathe 11s ease-in-out infinite reverse; }

/* Numbers count up on first appearance */
.stat-bar-num { animation: count-up-fade 0.8s ease-out backwards; }
.stat-bar-item:nth-child(1) .stat-bar-num { animation-delay: 0s; }
.stat-bar-item:nth-child(2) .stat-bar-num { animation-delay: 0.1s; }
.stat-bar-item:nth-child(3) .stat-bar-num { animation-delay: 0.2s; }
.stat-bar-item:nth-child(4) .stat-bar-num { animation-delay: 0.3s; }

/* Sparkle on the AI insight badge */
.ai-sparkle { animation: pulse-soft 2.5s ease-in-out infinite; }

/* Hero mockup subtle float */
.hero-visual > div > div { animation: float-slow 8s ease-in-out infinite; }
.hero-visual > div > div:nth-child(1) { animation-delay: 0.5s; }
.hero-visual > div > div:nth-child(2) { animation: none; }
.hero-visual > div > div:nth-child(3) { animation-delay: 1s; }

/* Button hover lift */
.btn-pink:hover, .btn-primary:hover { transform: translateY(-2px); }

/* Card subtle hover lift */
.card-hover, .feature-card { transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1); }


/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--pink-b));
  z-index: 9999;
  transition: width 0.1s ease-out;
  box-shadow: 0 0 10px rgba(204, 0, 196, 0.5);
  width: 0;
}

/* ===== CURSOR GLOW (subtle, follows mouse on desktop) ===== */
.cursor-glow {
  position: fixed;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204, 0, 196, 0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
  mix-blend-mode: multiply;
  filter: blur(20px);
}
@media (hover: hover) and (min-width: 1024px) {
  .cursor-glow.active { opacity: 1; }
}

/* ===== GRADIENT MESH BACKGROUND (Vercel-style) ===== */
.bg-mesh-pro {
  position: relative;
  background: white;
  overflow: hidden;
  isolation: isolate;
}
.bg-mesh-pro::before,
.bg-mesh-pro::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}
.bg-mesh-pro::before {
  top: -20%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(204, 0, 196, 0.18) 0%, transparent 65%);
  animation: meshFloat1 18s ease-in-out infinite;
}
.bg-mesh-pro::after {
  bottom: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(120, 80, 255, 0.12) 0%, transparent 65%);
  animation: meshFloat2 22s ease-in-out infinite;
}
.bg-mesh-pro > * { position: relative; z-index: 2; }

@keyframes meshFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-40px, 40px) scale(1.05); }
  66% { transform: translate(40px, -40px) scale(0.95); }
}
@keyframes meshFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -40px) scale(0.95); }
  66% { transform: translate(-40px, 40px) scale(1.05); }
}

/* ===== GRID OVERLAY (subtle) ===== */
.bg-grid-overlay {
  position: relative;
}
.bg-grid-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(204, 0, 196, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(204, 0, 196, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black, transparent 70%);
}

/* ===== ADVANCED REVEAL ANIMATIONS ===== */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

.reveal-blur {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(20px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-blur.visible { opacity: 1; filter: blur(0); transform: translateY(0); }

/* Stagger delays */
.delay-0 { transition-delay: 0s; }
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.4s; }
.delay-6 { transition-delay: 0.48s; }

/* ===== MAGNETIC CTA (subtle tilt on hover) ===== */
.magnetic { transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1); }

/* ===== TILT-ON-HOVER CARDS ===== */
.tilt-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s;
  transform-style: preserve-3d;
  will-change: transform;
}
.tilt-card:hover {
  transform: perspective(1000px) rotateX(2deg) rotateY(-2deg) translateY(-4px);
  box-shadow: 0 24px 64px rgba(204, 0, 196, 0.12), 0 8px 16px rgba(0, 0, 0, 0.04);
  border-color: var(--pink-mid);
}

/* ===== ANIMATED NUMBER COUNTER ===== */
.counter {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

/* ===== MARQUEE (continuous scroll for logo strip) ===== */
.marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 48px;
  flex-shrink: 0;
  min-width: 100%;
  animation: marquee 30s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--grey);
  white-space: nowrap;
  letter-spacing: -0.01em;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.marquee-item:hover { opacity: 1; color: var(--pink); }

/* ===== NAV SCROLL TRANSFORM ===== */
.nav-compact { height: 60px !important; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04); }

/* ===== ABSTRACT PRODUCT MOCKUP STYLES ===== */
.mockup-window {
  background: white;
  border-radius: 16px;
  box-shadow: 
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 24px 48px -12px rgba(15, 20, 25, 0.18),
    0 8px 16px -8px rgba(15, 20, 25, 0.08),
    0 0 0 1px rgba(15, 20, 25, 0.04);
  overflow: hidden;
  position: relative;
}
.mockup-bar {
  background: linear-gradient(180deg, #FAFBFC, #F4F5F7);
  border-bottom: 1px solid rgba(15, 20, 25, 0.06);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mockup-dot-red { background: #FF5F57; box-shadow: inset 0 0 1px rgba(0,0,0,0.2); }
.mockup-dot-yellow { background: #FFBD2E; box-shadow: inset 0 0 1px rgba(0,0,0,0.2); }
.mockup-dot-green { background: #28C940; box-shadow: inset 0 0 1px rgba(0,0,0,0.2); }
.mockup-url {
  flex: 1;
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--grey2);
  background: white;
  padding: 4px 12px;
  border-radius: 5px;
  border: 1px solid rgba(15, 20, 25, 0.06);
  margin: 0 60px;
}

/* ===== SCROLL TRIGGER FADE EDGES ===== */
.fade-edges {
  -webkit-mask-image: linear-gradient(180deg, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(180deg, transparent, black 8%, black 92%, transparent);
}

/* ===== PILL/BADGE WITH SHINE ===== */
.pill-shine {
  position: relative;
  overflow: hidden;
}
.pill-shine::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.4) 50%, transparent 70%);
  animation: shine 4s ease-in-out infinite;
}
@keyframes shine {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

/* ===== GRADIENT TEXT ===== */
.gradient-text {
  background: linear-gradient(135deg, var(--pink) 0%, #8800AA 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ===== REDUCE MOTION FOR ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-track { animation: none; }
}


/* === Dark nav theme (added by deployment script) === */
.nav { background: #0F1419 !important; border-bottom: 1px solid rgba(255,255,255,0.08); }
.nav-links a { color: rgba(255,255,255,0.75) !important; transition: color 0.2s; }
.nav-links a:hover { color: #fff !important; }
.nav-links a.active { color: #fff !important; }
.nav-cta { background: var(--pink) !important; color: #fff !important; padding: 10px 20px; border-radius: 100px; font-weight: 600; }
.nav-cta:hover { background: var(--pink-b) !important; transform: translateY(-1px); }
.nav-container { padding: 18px 0; }

/* === Case study image overlay (added by deployment) === */
.case-grid > div > * { position: relative; z-index: 2; }
.case-grid > div > img { position: absolute !important; z-index: 0 !important; }
.case-grid > div > div[style*="background:linear-gradient(180deg"] { z-index: 1 !important; }


/* === Mobile responsiveness fixes (added by deployment) === */
@media (max-width: 768px) {
  /* Featured case study stacks on mobile */
  .case-grid { grid-template-columns: 1fr !important; }
  
  /* Nav links wrap properly */
  .nav-links { gap: 12px !important; }
  .nav-container { flex-wrap: wrap; }
  
  /* Cards stack */
  .grid-2 { grid-template-columns: 1fr !important; }
  
  /* Steps stack to 2-column on tablet, 1 on phone */
  .steps { grid-template-columns: 1fr 1fr !important; }
}

@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr !important; }
  .nav-links { font-size: 13px; }
  /* Smaller heading on small screens */
  .h-1 { font-size: clamp(32px, 9vw, 48px) !important; }
}

/* === Featured LI case study responsive === */
@media (max-width: 900px) {
  .reveal-up[style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
}


/* === Hero visual display rules === */
@media (min-width: 900px) {
  .hero-visual { display: block !important; }
}


/* === Hero 2-column responsive === */
@media (max-width: 900px) {
  #hero .container { grid-template-columns: 1fr !important; }
  .hero-right { display: none !important; }
}


/* === hero grid mobile hide === */
@media (max-width: 900px) {
  div[style*="grid-template-columns:1fr 1fr"][style*="gap:48px"] {
    grid-template-columns: 1fr !important;
  }
  div[style*="grid-template-columns:1fr 1fr"][style*="gap:48px"] > div:last-child {
    display: none !important;
  }
}
