/* ==========================================================================
    Complete Unified Design System (Dark/Light Floors, Bento, Hero, Pricing)
   ========================================================================== */

:root {
  /* Dark floor base */
  --dark-bg: #090a0f;
  --dark-card: #12141c;
  --dark-card-hover: #191b26;
  --dark-border: rgba(255, 255, 255, 0.08);
  --dark-text: #ffffff;
  --dark-subtext: #94a3b8;
  --dark-muted: #64748b;

  /* Light floor base */
  --light-bg: #f9f9fb;
  --light-card: #ffffff;
  --light-card-hover: #f1f3f7;
  --light-border: rgba(0, 0, 0, 0.08);
  --light-text: #090a0f;
  --light-subtext: #475569;
  --light-muted: #64748b;

  /* Brand Accents */
  --tt-cyan: #00e5ff;
  --tt-pink: #fe2c55;
  --tt-dark-pink: #e0264a;
  
  --pastel-gradient: linear-gradient(135deg, #00e5ff 0%, #fe2c55 100%);
  --pastel-glow: rgba(254, 44, 85, 0.18);

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--dark-bg);
  color: var(--dark-text);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

/* ==========================================================================
   FLOORS & LAYOUT
   ========================================================================== */

.floor-dark {
  background-color: var(--dark-bg);
  color: var(--dark-text);
  border-bottom: 1px solid var(--dark-border);
  position: relative;
}

.floor-light {
  background-color: var(--light-bg);
  color: var(--light-text);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
}

.section-wrap {
  padding: 85px 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 54px;
}

.section-title {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.7px;
  margin-top: 14px;
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-desc {
  font-size: 15px;
  color: var(--dark-subtext);
}
.floor-light .section-desc {
  color: var(--light-subtext);
}

/* TOP ANNOUNCEMENT BAR */
.top-bar {
  background: #0f1118;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 8px 16px;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: #e2e8f0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
}
.top-bar-pill {
  background: var(--tt-pink);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.top-bar-link {
  color: var(--tt-cyan);
  text-decoration: none;
  font-weight: 700;
  margin-left: 6px;
  white-space: nowrap;
}
.top-bar-link:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .top-bar {
    padding: 6px 12px;
    font-size: 11.5px;
    gap: 4px;
  }
  .top-bar-pill {
    display: none;
  }
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9, 10, 15, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--dark-border);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.5px;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  background: rgba(37, 244, 238, 0.15);
  border: 1px solid rgba(37, 244, 238, 0.4);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  color: var(--tt-cyan);
}

.brand-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--tt-cyan);
  box-shadow: 0 0 8px var(--tt-cyan);
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

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

.nav-links a {
  color: var(--dark-subtext);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s ease;
  position: relative;
  padding: 6px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--tt-cyan);
  border-radius: 2px;
}

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

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.15s ease;
  border: 1px solid transparent;
}

.btn-ghost {
  color: var(--dark-subtext);
  background: transparent;
}
.btn-ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.btn-primary {
  background: var(--tt-pink);
  color: #fff;
  box-shadow: 0 4px 14px var(--pastel-glow);
}
.btn-primary:hover {
  background: var(--tt-dark-pink);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(254, 44, 85, 0.35);
}

.btn-outline {
  border-color: var(--dark-border);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-glow-cyan {
  background: linear-gradient(135deg, #00e5ff 0%, #38bdf8 100%);
  color: #000;
  font-weight: 700;
}
.btn-glow-cyan:hover {
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.35);
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-sm);
  color: #fff;
  padding: 8px;
  cursor: pointer;
}

/* BADGES & CHIPS */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge-cyan {
  background: rgba(0, 229, 255, 0.12);
  color: var(--tt-cyan);
  border: 1px solid rgba(0, 229, 255, 0.3);
}
.badge-pink {
  background: rgba(254, 44, 85, 0.12);
  color: var(--tt-pink);
  border: 1px solid rgba(254, 44, 85, 0.3);
}

/* SHARED CARD */
.card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all 0.2s ease;
}
.card:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: var(--dark-card-hover);
}

/* ==========================================================================
   HERO FLOOR 1
   ========================================================================== */
.hero-floor {
  padding: 85px 0 75px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-tag {
  margin-bottom: 20px;
}

.hero-title {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
  color: #ffffff;
}

.hero-title .pastel-text {
  background: linear-gradient(135deg, #38bdf8 0%, #a855f7 50%, #fe2c55 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-platform-switch {
  display: inline-block;
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-platform-switch.platform-changing {
  opacity: 0;
  transform: translateY(6px);
}

.hero-desc {
  font-size: 16px;
  color: #94a3b8;
  line-height: 1.65;
  margin-bottom: 34px;
  max-width: 530px;
}

.hero-dynamic-code {
  display: inline-block;
  font-family: var(--font-mono);
  font-weight: 800;
  color: #00e5ff;
  background: rgba(0, 229, 255, 0.12);
  border: 1px solid rgba(0, 229, 255, 0.4);
  padding: 1px 8px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.2);
}

.hero-dynamic-code.code-bump {
  transform: scale(1.18);
  color: #fe2c55;
  border-color: rgba(254, 44, 85, 0.6);
  background: rgba(254, 44, 85, 0.18);
  box-shadow: 0 0 16px rgba(254, 44, 85, 0.4);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-number {
  font-size: 28px;
  font-weight: 800;
  font-family: var(--font-mono);
  color: #ffffff;
}

.stat-label {
  font-size: 12px;
  color: #64748b;
  margin-top: 3px;
}

/* MOCKUP PHONE */
.phone-mockup {
  background: #0d0f17;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 38px;
  padding: 16px;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 229, 255, 0.08);
  position: relative;
  overflow: hidden;
  max-width: 370px;
  margin: 0 auto;
}

.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.mockup-user {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mockup-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00e5ff 0%, #fe2c55 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

.mockup-screen {
  background: #151822;
  border-radius: 26px;
  height: 420px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.live-badge-top {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--tt-pink);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
  letter-spacing: 0.5px;
}

.live-viewers {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 11px;
  color: #cbd5e1;
  border: 1px solid rgba(255,255,255,0.08);
}

.mockup-chat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.chat-bubble {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  padding: 6px 10px;
  border-radius: 12px;
  font-size: 11px;
  border: 1px solid rgba(255,255,255,0.06);
}

.chat-user {
  font-weight: 700;
  color: var(--tt-cyan);
}

.chat-text {
  color: #e2e8f0;
}

.adjudication-popup {
  background: #1a1e2b;
  border: 1px solid rgba(0, 229, 255, 0.4);
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.15);
  padding: 12px 14px;
  border-radius: 16px;
}

.adj-header {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
  color: var(--tt-cyan);
  margin-bottom: 4px;
}

.adj-product {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.adj-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  padding-top: 6px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.adj-price {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: #10b981;
}

.adj-btn {
  background: var(--tt-cyan);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 6px;
  text-transform: uppercase;
}

/* ==========================================================================
   BENTO MATRIX (FLOOR 2)
   ========================================================================== */
.bento-matrix {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
  margin-top: 10px;
}

.bento-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 24px;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.bento-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.bento-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.bento-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-family: var(--font-mono);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.bento-badge-live {
  background: #fee2e2;
  color: #dc2626;
  border: 1px solid #fecaca;
  padding: 2px 7px;
  border-radius: 4px;
}

.bento-badge-secure {
  background: #ecfdf5;
  color: #059669;
  border: 1px solid #a7f3d0;
  padding: 2px 7px;
  border-radius: 4px;
}

.bento-badge-tech {
  background: #eff6ff;
  color: #2563eb;
  border: 1px solid #bfdbfe;
  padding: 2px 7px;
  border-radius: 4px;
}

.bento-title {
  font-size: 19px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.4px;
  margin-bottom: 8px;
}

.bento-desc {
  font-size: 13.5px;
  color: #475569;
  line-height: 1.55;
  margin-bottom: 20px;
}

.telemetry-box {
  background: #0b0f19;
  border: 1px solid #1e293b;
  border-radius: 10px;
  padding: 12px 14px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: #94a3b8;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.telemetry-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.telemetry-time {
  color: #64748b;
  font-size: 10.5px;
}

.telemetry-tag-ok {
  color: #34d399;
  font-weight: 700;
}

.telemetry-tag-pay {
  color: #38bdf8;
  font-weight: 700;
}

.gateway-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px;
  text-align: center;
}

.gateway-item-title {
  font-size: 11px;
  color: #64748b;
  text-transform: uppercase;
  font-weight: 600;
}

.gateway-item-val {
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
  font-family: var(--font-mono);
  margin-top: 3px;
}

.bento-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.dense-metric-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: #047857;
  background: #ecfdf5;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  margin-top: 10px;
}

/* ==========================================================================
   PIPELINE STEPS (FLOOR 3)
   ========================================================================== */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 10px;
}

.step-card {
  background: #11131c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 18px;
  border-radius: var(--radius-md);
  position: relative;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.step-card:hover {
  border-color: rgba(0, 229, 255, 0.35);
  background: #141724;
  transform: translateY(-2px);
}

.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.step-number {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  color: var(--tt-cyan);
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.25);
  padding: 2px 7px;
  border-radius: 4px;
}

.step-duration {
  font-size: 11px;
  color: #64748b;
  font-family: var(--font-mono);
}

.step-badge-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-family: var(--font-mono);
  color: #94a3b8;
  background: rgba(255, 255, 255, 0.04);
  padding: 3px 8px;
  border-radius: 4px;
  margin-top: 14px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   TESTIMONIALS & TRUST (FLOOR 4)
   ========================================================================== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-quote {
  font-size: 14px;
  color: #334155;
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}

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

.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  border: 1px solid #cbd5e1;
}

.cta-banner-refined {
  background: #11131b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.cta-banner-refined h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 14px;
  color: #ffffff;
}

.cta-banner-refined p {
  color: #94a3b8;
  max-width: 560px;
  margin: 0 auto 26px;
  font-size: 15px;
}

/* ==========================================================================
   PRICING & PLAN CARDS (PAGE /planes)
   ========================================================================== */
.pricing-hero {
  padding: 70px 0 40px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.pricing-hero h1 {
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -1px;
  margin: 16px 0 12px;
  line-height: 1.15;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 30px 0 60px;
  align-items: stretch;
}

.plan-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all 0.2s ease;
}

.plan-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.plan-card.featured {
  border-color: var(--tt-pink);
  background: linear-gradient(180deg, rgba(254, 44, 85, 0.08) 0%, var(--dark-card) 60%);
  box-shadow: 0 0 30px rgba(254, 44, 85, 0.15);
}

.plan-card.best-value {
  border-color: var(--tt-cyan);
  background: linear-gradient(180deg, rgba(0, 229, 255, 0.08) 0%, var(--dark-card) 60%);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.15);
}

.card-top-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--tt-pink);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.card-top-tag.cyan {
  background: var(--tt-cyan);
  color: #000;
}

.plan-name {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 4px;
  color: #fff;
}

.plan-desc {
  font-size: 12px;
  color: var(--dark-subtext);
  min-height: 36px;
  line-height: 1.4;
  margin-bottom: 16px;
}

.plan-price-box {
  padding: 14px 0;
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
  margin-bottom: 18px;
}

.plan-price {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 800;
  color: #fff;
}

.plan-period {
  font-size: 12px;
  color: var(--dark-muted);
}

.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 12px;
  color: var(--dark-subtext);
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.features-list svg {
  width: 15px;
  height: 15px;
  color: var(--tt-cyan);
  flex-shrink: 0;
}

.user-status-banner {
  background: #151822;
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--dark-border);
  background: #050608;
  padding: 60px 0 30px;
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: var(--dark-subtext);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.15s ease;
}
.footer-col a:hover {
  color: #fff;
}

.footer-payments-badge {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.payment-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--dark-border);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  color: #cbd5e1;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--dark-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--dark-muted);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .stats-strip {
    justify-content: center;
  }
  .bento-matrix, .bento-grid-3, .steps-row, .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .nav-links {
    display: none;
  }
  .nav-actions .btn-ghost {
    display: none;
  }
}

/* ==========================================================================
   MOBILE FLOATING SIDEBAR DRAWER (Right to Left)
   ========================================================================== */
.mobile-sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 5, 8, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease;
}

.mobile-sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(85vw, 320px);
  background: #0d0f17;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.mobile-sidebar.active {
  transform: translateX(0);
}

.mobile-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-sidebar-close {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: #94a3b8;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s ease;
}

.mobile-sidebar-close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.mobile-sidebar-body {
  flex: 1;
  padding: 24px 16px;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-links a {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  color: #94a3b8;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s ease;
  border: 1px solid transparent;
}

.mobile-nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.mobile-nav-links a.active {
  color: #fff;
  background: rgba(37, 244, 238, 0.08);
  border-color: rgba(37, 244, 238, 0.25);
  box-shadow: inset 3px 0 0 var(--tt-cyan);
}

.mobile-sidebar-footer {
  padding: 20px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 38px;
  }
  .section-title {
    font-size: 28px;
  }
  .bento-matrix, .bento-grid-3, .steps-row, .trust-grid, .pricing-grid {
    grid-template-columns: 1fr;
  }
  .stats-strip {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ==========================================================================
   PÁGINA: QUIÉNES SOMOS
   ========================================================================== */
.about-hero {
  text-align: center;
  max-width: 800px;
  margin: 40px auto 60px;
}

.about-hero h1 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  margin: 16px 0 18px;
  color: var(--dark-text);
  letter-spacing: -0.02em;
}

.about-story {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 70px;
}

.story-text h2 {
  color: var(--dark-text);
  letter-spacing: -0.01em;
}

.story-text p {
  font-size: 14.5px;
  color: var(--dark-subtext);
  line-height: 1.65;
  margin-bottom: 16px;
}

.story-text p strong {
  color: #ffffff;
}

/* Story Console Mockup (Live Order Engine) */
.story-console-mockup {
  background: #0b0f19;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 36px -8px rgba(0, 0, 0, 0.5), 0 0 20px rgba(37, 244, 238, 0.04);
}

.console-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: #111625;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.console-dots {
  display: flex;
  gap: 5px;
}
.console-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}
.console-dots span:nth-child(1) { background: #ef4444; }
.console-dots span:nth-child(2) { background: #f59e0b; }
.console-dots span:nth-child(3) { background: #10b981; }

.console-title {
  font-size: 11px;
  font-weight: 700;
  color: #94a3b8;
  font-family: var(--font-mono, monospace);
  letter-spacing: 0.06em;
}

.console-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  font-weight: 700;
  color: #10b981;
  font-family: var(--font-mono, monospace);
}

.status-pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
}

.console-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.console-item-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 8px 12px;
}

.item-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.item-code {
  background: rgba(37, 244, 238, 0.12);
  color: #25f4ee;
  font-family: var(--font-mono, monospace);
  font-weight: 700;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid rgba(37, 244, 238, 0.25);
}

.item-title {
  font-size: 12px;
  font-weight: 600;
  color: #f1f5f9;
}

.item-stock {
  font-size: 11px;
  color: #94a3b8;
  font-family: var(--font-mono, monospace);
}

.console-log-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.console-log-row {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
}

.console-log-row.match {
  border-left: 3px solid #10b981;
  background: rgba(16, 185, 129, 0.04);
}

.console-log-row.queue {
  border-left: 3px solid #f59e0b;
  background: rgba(245, 158, 11, 0.04);
}

.log-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.log-user {
  font-weight: 700;
  color: #ffffff;
  font-size: 11.5px;
}

.log-time {
  color: #64748b;
  font-size: 10px;
  font-family: var(--font-mono, monospace);
}

.log-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.log-comment {
  color: #cbd5e1;
  font-family: var(--font-mono, monospace);
  font-size: 11.5px;
}

.log-tag-adj {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: var(--font-mono, monospace);
}

.log-tag-wait {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: var(--font-mono, monospace);
}

.console-checkout-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(37, 244, 238, 0.04);
  border: 1px solid rgba(37, 244, 238, 0.15);
  border-radius: 8px;
  padding: 8px 12px;
}

.checkout-summary {
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkout-status-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.checkout-lead {
  font-size: 11.5px;
  font-weight: 700;
  color: #ffffff;
}

.checkout-sub {
  font-size: 10.5px;
  color: #94a3b8;
}

.checkout-badge-auto {
  background: rgba(254, 44, 85, 0.15);
  color: #fe2c55;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: var(--font-mono, monospace);
}

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

.value-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.25s ease;
}

.value-card:hover {
  border-color: rgba(0, 229, 255, 0.3);
  transform: translateY(-2px);
}

.value-card .badge-icon {
  font-size: 32px;
  display: inline-block;
  margin-bottom: 4px;
}

.value-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
}

.value-card p {
  font-size: 13.5px;
  color: var(--dark-subtext);
  line-height: 1.6;
}

/* ==========================================================================
   PÁGINA: CONTACTO
   ========================================================================== */
.contact-hero {
  text-align: center;
  max-width: 760px;
  margin: 40px auto 36px;
}

.contact-hero h1 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  margin: 16px 0 14px;
  color: var(--dark-text);
  letter-spacing: -0.02em;
}

.contact-status-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 3vw, 28px);
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-full);
  padding: 8px 20px;
  max-width: 720px;
  margin: 0 auto 40px auto;
  font-size: 11.5px;
  color: #94a3b8;
  font-family: var(--font-mono);
}

.status-indicator-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.status-indicator-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 6px #10b981;
}

.contact-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 70px;
}

.contact-channel-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.contact-channel-card:hover {
  border-color: rgba(37, 244, 238, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
}

.channel-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.channel-card-category {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--tt-cyan);
  font-family: var(--font-mono);
}

.channel-card-badge {
  font-size: 10.5px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  font-family: var(--font-mono);
}

.channel-card-badge.online {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.channel-card-badge.email {
  background: rgba(37, 244, 238, 0.12);
  color: #25f4ee;
  border: 1px solid rgba(37, 244, 238, 0.25);
}

.channel-card-badge.hours {
  background: rgba(254, 44, 85, 0.12);
  color: #fe2c55;
  border: 1px solid rgba(254, 44, 85, 0.25);
}

.channel-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.channel-card-title {
  font-size: 19px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
  margin: 0 0 10px 0;
}

.channel-card-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--dark-subtext);
  margin: 0 0 20px 0;
}

.channel-schedule-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 12px;
  color: #f1f5f9;
  font-family: var(--font-mono);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.channel-card-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 14px;
  font-size: 11.5px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 6px;
}

.channel-card-footer .footer-icon {
  color: #10b981;
  font-weight: 800;
}

@media (max-width: 900px) {
  .about-story,
  .contact-grid-3 {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .contact-status-strip {
    flex-direction: column;
    gap: 8px;
    border-radius: 12px;
    text-align: left;
    align-items: flex-start;
  }
}

