/* =========================================
   ARPÓN — SITIO PÚBLICO
   Mobile-First · 100% Responsivo
   Paleta: dark navy + verde signal #00a884
   Font: Plus Jakarta Sans
   ========================================= */

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

:root {
  --bg: #080d10;
  --bg-card: #0f181e;
  --bg-card2: #111b21;
  --border: #1e2d35;
  --green: #00a884;
  --green-light: #06cf9c;
  --green-dim: rgba(0, 168, 132, .15);
  --blue: #3b82f6;
  --purple: #8b5cf6;
  --orange: #f59e0b;
  --teal: #14b8a6;
  --red: #ef4444;
  --text: #e9edef;
  --text-muted: #8696a0;
  --text-dim: #4b6070;
  --radius: 14px;
  --radius-sm: 8px;
  --nav-h: 60px;
  --transition: 180ms ease;
  --px: 20px;
  /* horizontal page padding */
}

@media (min-width: 768px) {
  :root {
    --nav-h: 68px;
    --px: 32px;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 var(--px);
  container-type: inline-size;
}

/* ════════════════════════════
   BUTTONS
════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: #071210;
}

.btn-primary:hover {
  background: var(--green-light);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: var(--text-dim);
}

.btn-lg {
  padding: 13px 26px;
  font-size: 15px;
  border-radius: 12px;
}

.btn-xl {
  padding: 16px 32px;
  font-size: 17px;
  border-radius: 14px;
}

@media (min-width: 768px) {
  .btn-lg {
    padding: 14px 28px;
    font-size: 16px;
  }

  .btn-xl {
    padding: 18px 36px;
    font-size: 18px;
  }
}

.btn-urgent {
  background: var(--green-light);
  color: #071210;
  box-shadow: 0 0 20px rgba(6, 207, 156, 0.3);
  animation: pulse-urgency 2s infinite;
}

.btn-urgent:hover {
  background: #fff;
  color: var(--green);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

@keyframes pulse-urgency {
  0% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(6, 207, 156, 0.3);
  }

  50% {
    transform: scale(1.03);
    box-shadow: 0 0 35px rgba(6, 207, 156, 0.5);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(6, 207, 156, 0.3);
  }
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--green-light);
  border-radius: 50%;
  position: relative;
  display: inline-block;
  margin-right: 8px;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(3.5);
    opacity: 0;
  }
}

/* ════════════════════════════
   NAV
════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-h);
  background: rgba(8, 13, 16, .9);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  border-color: var(--border);
  box-shadow: 0 4px 40px rgba(0, 0, 0, .4);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 var(--px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--green-dim);
  border: 1px solid var(--green);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--green);
}

.logo-icon svg {
  width: 16px;
  height: 16px;
}

.logo-text {
  font-weight: 800;
  font-size: 18px;
}

/* Nav links hidden on mobile */
.nav-links {
  display: none;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    margin-left: auto;
  }

  .nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    transition: color var(--transition);
  }

  .nav-links a:hover {
    color: var(--text);
  }
}

.nav .btn-primary {
  margin-left: auto;
  font-size: 13px;
  padding: 8px 16px;
}

@media (min-width: 768px) {
  .nav .btn-primary {
    margin-left: 0;
    font-size: 14px;
    padding: 10px 20px;
  }
}

/* Mobile hamburger (visual de menú) */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
  margin-right: auto;
  /* push to left after logo */
  order: -1;
  /* before logo on mobile? no, keep after */
  background: none;
  border: none;
}

@media (min-width: 768px) {
  .nav-hamburger {
    display: none;
  }
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile drawer */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-card);
  z-index: 899;
  padding: 32px var(--px);
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--border);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  display: block;
  padding: 14px 16px;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}

.mobile-menu a:hover {
  background: var(--bg-card2);
  color: var(--text);
}

.mobile-menu .btn-primary {
  width: 100%;
  margin-top: 16px;
  padding: 14px;
  font-size: 16px;
}

/* ════════════════════════════
   HERO
════════════════════════════ */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 168, 132, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 168, 132, .04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
}

.hero-glow {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(90vw, 700px);
  height: 400px;
  background: radial-gradient(ellipse, rgba(0, 168, 132, .12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 48px;
  padding-top: 60px;
  padding-bottom: 60px;
  width: 100%;
}

@media (min-width: 900px) {
  .hero-inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    text-align: left;
    align-items: center;
    gap: 64px;
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-content {
    align-items: flex-start;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-dim);
  border: 1px solid rgba(0, 168, 132, .35);
  color: var(--green-light);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .4;
    transform: scale(1.4);
  }
}

.hero-title {
  font-size: clamp(30px, 8vw, 56px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.03em;
  margin-bottom: 18px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 60%, #a3f7cf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(15px, 3vw, 17px);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
  width: 100%;
  max-width: 360px;
}

@media (min-width: 480px) {
  .hero-ctas {
    flex-direction: row;
    max-width: none;
    width: auto;
  }
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 24px;
}

@media (min-width: 900px) {
  .hero-stats {
    justify-content: flex-start;
  }
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-num {
  font-size: 22px;
  font-weight: 800;
}

.stat-label {
  font-size: 11px;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
  display: none;
}

@media (min-width: 480px) {
  .stat-divider {
    display: block;
  }
}

/* ── Radar visual ── */
.hero-visual {
  position: relative;
  width: min(280px, 80vw);
  height: min(280px, 80vw);
  margin: auto;
  flex-shrink: 0;
}

@media (min-width: 900px) {
  .hero-visual {
    width: 340px;
    height: 340px;
  }
}

.radar-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(0, 168, 132, .18);
  animation: radarPulse 4s ease-out infinite;
}

.r1 {
  animation-delay: 0s;
}

.r2 {
  inset: 20%;
  animation-delay: 1.3s;
}

.r3 {
  inset: 40%;
  animation-delay: 2.6s;
}

@keyframes radarPulse {
  0% {
    transform: scale(.2);
    opacity: .6;
  }

  100% {
    transform: scale(1);
    opacity: 0;
  }
}

.radar-sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(transparent 0deg, transparent 300deg, rgba(0, 168, 132, .06) 320deg, rgba(0, 168, 132, .2) 355deg, rgba(0, 168, 132, .4) 360deg);
  animation: sweep 3s linear infinite;
}

@keyframes sweep {
  to {
    transform: rotate(360deg);
  }
}

.radar-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: var(--green-dim);
  border: 1.5px solid var(--green);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 0 20px rgba(0, 168, 132, .4);
}

.radar-center svg {
  width: 18px;
  height: 18px;
}

.blip {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px 3px rgba(0, 210, 160, .7);
  animation: blipFlash 3s ease-in-out infinite;
}

.b1 {
  top: 20%;
  left: 65%;
  animation-delay: .2s;
}

.b2 {
  top: 60%;
  left: 78%;
  animation-delay: 1.1s;
}

.b3 {
  top: 75%;
  left: 30%;
  animation-delay: .7s;
}

.b4 {
  top: 32%;
  left: 18%;
  animation-delay: 1.8s;
}

.b5 {
  top: 50%;
  left: 55%;
  animation-delay: 2.4s;
}

@keyframes blipFlash {

  0%,
  100% {
    opacity: .8;
    transform: scale(1);
  }

  50% {
    opacity: .15;
    transform: scale(.6);
  }
}

/* ════════════════════════════
   WEB LÍQUIDA: Simplificación Cognitiva (Fase 2026)
════════════════════════════ */
.liquid-fast-scroll .benefit-card p,
.liquid-fast-scroll .blog-card p,
.liquid-fast-scroll .step p,
.liquid-fast-scroll .section-sub,
.liquid-fast-scroll .testimonial-card p {
  opacity: 0.2;
  filter: blur(4px);
  transform: translateY(10px);
  transition: opacity 0.4s ease, filter 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.benefit-card p,
.blog-card p,
.step p,
.section-sub,
.testimonial-card p {
  transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
}

/* ════════════════════════════
   LOGOS BAR
════════════════════════════ */
.logos-bar {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.logos-label {
  text-align: center;
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.logos-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.logo-pill {
  padding: 7px 16px;
  border-radius: 100px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
}

/* ════════════════════════════
   SECTIONS
════════════════════════════ */
.section {
  padding: 64px 0;
}

.section-dark {
  padding: 64px 0;
  background: var(--bg-card);
}

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

  .section-dark {
    padding: 88px 0;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 108px 0;
  }

  .section-dark {
    padding: 108px 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid rgba(0, 168, 132, .3);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(24px, 5vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-sub {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ════════════════════════════
   STEPS
════════════════════════════ */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 20px;
  container-type: inline-size;
}

.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.step:hover {
  border-color: rgba(0, 168, 132, .4);
  box-shadow: 0 0 24px rgba(0, 168, 132, .08);
}

.step-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
  color: var(--text-dim);
}

.step-icon {
  width: 42px;
  height: 42px;
  background: var(--green-dim);
  border: 1px solid rgba(0, 168, 132, .3);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--green);
}

.step-icon svg {
  width: 20px;
  height: 20px;
}

.step h3 {
  font-size: 15px;
  font-weight: 700;
}

.step p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ════════════════════════════
   BENEFITS GRID (Web Líquida)
════════════════════════════ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 20px;
  container-type: inline-size;
}

.benefit-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color var(--transition), transform var(--transition);
  height: 100%;
}

@container (min-width: 400px) {
  .benefit-card {
    flex-direction: row;
    align-items: flex-start;
  }
}

.benefit-card:hover {
  border-color: #2a3e4a;
  transform: translateY(-2px);
}

.feature-card {
  border-color: rgba(0, 168, 132, .3);
  background: rgba(0, 168, 132, .04);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 21px;
  height: 21px;
}

.benefit-icon.green {
  background: rgba(0, 168, 132, .15);
  color: var(--green);
  border: 1px solid rgba(0, 168, 132, .3);
}

.benefit-icon.blue {
  background: rgba(59, 130, 246, .12);
  color: var(--blue);
  border: 1px solid rgba(59, 130, 246, .3);
}

.benefit-icon.purple {
  background: rgba(139, 92, 246, .12);
  color: var(--purple);
  border: 1px solid rgba(139, 92, 246, .3);
}

.benefit-icon.orange {
  background: rgba(245, 158, 11, .12);
  color: var(--orange);
  border: 1px solid rgba(245, 158, 11, .3);
}

.benefit-icon.teal {
  background: rgba(20, 184, 166, .12);
  color: var(--teal);
  border: 1px solid rgba(20, 184, 166, .3);
}

.benefit-icon.red {
  background: rgba(239, 68, 68, .12);
  color: var(--red);
  border: 1px solid rgba(239, 68, 68, .3);
}

.benefit-card h3 {
  font-size: 15px;
  font-weight: 700;
}

.benefit-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

.badge-coming {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(245, 158, 11, .1);
  border: 1px solid rgba(245, 158, 11, .3);
  padding: 3px 10px;
  border-radius: 100px;
  width: fit-content;
}

/* ════════════════════════════
   TESTIMONIALS
════════════════════════════ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 20px;
  container-type: inline-size;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.testimonial-card.featured {
  border-color: rgba(0, 168, 132, .4);
  background: linear-gradient(135deg, rgba(0, 168, 132, .06), var(--bg-card));
}

.stars {
  color: #f59e0b;
  letter-spacing: 2px;
  font-size: 14px;
}

.testimonial-card>p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green-dim);
  border: 1px solid var(--green);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 13px;
}

.testimonial-author span {
  font-size: 11px;
  color: var(--text-dim);
}

/* ════════════════════════════
   CTA SECTION
════════════════════════════ */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  text-align: center;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  .cta-section {
    padding: 120px 0;
  }
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(0, 168, 132, .15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 2;
}

.cta-inner h2 {
  font-size: clamp(24px, 5vw, 46px);
  font-weight: 800;
  margin-bottom: 14px;
}

.cta-inner>p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.cta-small {
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-dim);
}

/* ════════════════════════════
   FOOTER
════════════════════════════ */
.footer {
  padding: 52px 0 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-bottom: 40px;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    gap: 60px;
    align-items: flex-start;
  }
}

.footer-brand {
  flex: 1 1 200px;
}

.footer-brand .logo-text {
  font-size: 20px;
  font-weight: 800;
  display: block;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 240px;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 24px 40px;
}

@media (max-width: 480px) {
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 2px;
}

.footer-col a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--green);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px var(--px);
  text-align: center;
  font-size: 12px;
  color: var(--text-dim);
}

/* ════════════════════════════
   PAGE HERO (inner pages)
════════════════════════════ */
.page-hero {
  padding-top: calc(var(--nav-h) + 48px);
  padding-bottom: 48px;
}

@media (min-width: 768px) {
  .page-hero {
    padding-top: calc(var(--nav-h) + 72px);
    padding-bottom: 60px;
  }
}

/* ════════════════════════════
   BLOG PAGE
════════════════════════════ */
.blog-featured {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  cursor: pointer;
  transition: border-color var(--transition), transform var(--transition);
  margin-bottom: 24px;
}

.blog-featured:hover {
  border-color: rgba(0, 168, 132, .35);
  transform: translateY(-3px);
}

@media (min-width: 768px) {
  .blog-featured {
    flex-direction: row;
  }

  .blog-featured .blog-card-img {
    width: 300px;
    flex-shrink: 0;
    height: auto;
  }
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
  gap: 24px;
  margin-top: 24px;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}



.blog-card:hover {
  border-color: rgba(0, 168, 132, .35);
  transform: translateY(-3px);
}

.blog-card-img {
  height: 160px;
  display: grid;
  place-items: center;
  font-size: 48px;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-card2) 100%);
  border-bottom: 1px solid var(--border);
}

@media (min-width: 768px) {
  .blog-card-img {
    height: 180px;
  }
}

.blog-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

@media (min-width: 768px) {
  .blog-card-body {
    padding: 24px;
  }
}

.blog-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  width: fit-content;
}

.blog-tag.gtag {
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid rgba(0, 168, 132, .3);
}

.blog-tag.btag {
  color: var(--blue);
  background: rgba(59, 130, 246, .1);
  border: 1px solid rgba(59, 130, 246, .3);
}

.blog-tag.ptag {
  color: var(--purple);
  background: rgba(139, 92, 246, .1);
  border: 1px solid rgba(139, 92, 246, .3);
}

.blog-card h3 {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.blog-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: var(--text-dim);
}

@media (min-width: 768px) {
  .blog-card-footer {
    padding: 14px 24px;
    font-size: 12px;
  }
}

.read-link {
  color: var(--green);
  font-weight: 600;
  white-space: nowrap;
}

/* Newsletter */
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 440px;
  margin: 0 auto;
}

@media (min-width: 480px) {
  .newsletter-form {
    flex-direction: row;
  }
}

.newsletter-form input {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--transition);
  min-width: 0;
}

.newsletter-form input:focus {
  border-color: var(--green);
}

/* ════════════════════════════
   DEMO PAGE
════════════════════════════ */
.demo-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 900px) {
  .demo-layout {
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
  }
}

.demo-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}

@media (min-width: 480px) {
  .demo-form-wrap {
    padding: 36px 32px;
  }
}

@media (min-width: 768px) {
  .demo-form-wrap {
    padding: 40px;
  }
}

.demo-form-wrap h2 {
  font-size: clamp(20px, 4vw, 24px);
  font-weight: 800;
  margin-bottom: 6px;
}

.demo-form-wrap>p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  width: 100%;
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--green);
}

.form-field textarea {
  resize: vertical;
  min-height: 88px;
}

.form-field select {
  cursor: pointer;
}

.form-field select option {
  background: var(--bg-card);
}

.form-submit {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  margin-top: 8px;
  border-radius: 12px;
}

.success-msg {
  display: none;
  text-align: center;
  padding: 28px;
  background: var(--green-dim);
  border: 1px solid rgba(0, 168, 132, .4);
  border-radius: var(--radius);
  color: var(--green-light);
  font-weight: 600;
}

.demo-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 8px;
}

@media (min-width: 900px) {
  .demo-info {
    padding-top: 20px;
  }
}

.demo-info h2 {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  margin-bottom: 8px;
}

.demo-info>p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

.demo-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.demo-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
}

.demo-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green-dim);
  border: 1px solid rgba(0, 168, 132, .4);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--green);
}

.demo-check svg {
  width: 12px;
  height: 12px;
}

.demo-hours {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: center;
}

.demo-hours-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-dim);
  border: 1px solid rgba(0, 168, 132, .4);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.demo-hours-icon svg {
  width: 20px;
  height: 20px;
}

.demo-hours p:first-child {
  font-size: 14px;
  font-weight: 700;
}

.demo-hours p:last-child {
  font-size: 12px;
  color: var(--text-muted);
}

/* ════════════════════════════
   UTILS
════════════════════════════ */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ════════════════════════════
   2026 EXTENSIONS (Bento & Glass)
════════════════════════════ */

.bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.bento-grid .benefit-card {
  flex-direction: column !important;
  align-items: flex-start !important;
}

@media (min-width: 900px) {
  .bento-span-2 {
    grid-column: span 2;
  }

  .bento-grid .bento-span-2.flex-row {
    flex-direction: row !important;
    align-items: center !important;
  }
}

.glass {
  background: rgba(17, 27, 33, 0.6) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  letter-spacing: -2px;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  letter-spacing: -1px;
}

/* Fix for mobile drawer transition */
.mobile-menu {
  transition: opacity 300ms ease, visibility 300ms ease, transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
}

.mobile-menu.open {
  display: flex !important;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Enhanced Reduced Motion */
@media (prefers-reduced-motion: reduce) {

  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Searchable Select (Sleek) */
.searchable-select {
  position: relative;
  width: 100%;
  font-family: inherit;
}

.select-display {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: border 0.3s;
  font-size: 15px;
}

.select-display:hover {
  border-color: var(--green);
}

.select-display::after {
  content: "";
  border: solid var(--text-muted);
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  transition: transform 0.3s;
}

.searchable-select.open .select-display::after {
  transform: rotate(-135deg);
}

.select-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 12px;
  z-index: 2000;
  display: none;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5);
}

.searchable-select.open .select-dropdown {
  display: flex;
}

.select-search {
  padding: 14px 16px;
  border: none;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  outline: none;
  width: 100%;
  font-size: 14px;
}

.select-list {
  max-height: 250px;
  overflow-y: auto;
}

/* Custom Scrollbar for list */
.select-list::-webkit-scrollbar {
  width: 6px;
}

.select-list::-webkit-scrollbar-track {
  background: transparent;
}

.select-list::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 10px;
}

.select-item {
  padding: 12px 16px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-muted);
  transition: 150ms;
}

.select-item:hover {
  background: var(--green-dim);
  color: var(--green);
}

.select-item.hidden {
  display: none;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ════════════════════════════
   PRICING SECTION
════════════════════════════ */
.pricing-card {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

@media (prefers-reduced-motion: reduce) {
  .pricing-card {
    transition: none;
  }

  .pricing-card:hover {
    transform: none;
  }
}

/* FAQ Accordion */
.pricing-faq {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item:hover {
  border-color: rgba(0, 168, 132, 0.35);
}

.faq-item[open] {
  border-color: rgba(0, 168, 132, 0.35);
}

.faq-item summary {
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 20px;
  color: var(--green);
  font-weight: 300;
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform 200ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}