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

:root {
  /* Tech SaaS Palette — designdatar.com */
  --bg-dark: #07090F;
  --bg-darker: #040508;
  --bg-card: rgba(20, 24, 39, 0.6);
  --bg-glass: rgba(255, 255, 255, 0.02);
  --bg-glass-hover: rgba(255, 255, 255, 0.05);

  --border-light: rgba(255, 255, 255, 0.06);
  --border-glow: rgba(0, 229, 255, 0.3);

  --text-main: #FFFFFF;
  --text-muted: #94A3B8;

  /* Vibrant Accents */
  --accent-cyan: #00E5FF;
  --accent-blue: #2979FF;
  --accent-purple: #D500F9;
  --accent-green: #00E676;
  --accent-orange: #FF3D00;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-cyan) 100%);
  --gradient-secondary: linear-gradient(135deg, #7000FF 0%, var(--accent-purple) 100%);
  --gradient-tertiary: linear-gradient(135deg, #00BFA5 0%, var(--accent-green) 100%);

  --shadow-glow: 0 0 20px rgba(0, 229, 255, 0.15);
  --shadow-bento: 0 10px 40px rgba(0, 0, 0, 0.4);

  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  background-image:
    radial-gradient(circle at 15% 50%, rgba(41, 121, 255, 0.08), transparent 25%),
    radial-gradient(circle at 85% 30%, rgba(213, 0, 249, 0.08), transparent 25%);
  background-attachment: fixed;
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
.outfit-font {
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.5px;
}

/* ─── NAVIGATION ─── */
nav,
.topbar {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1200px;
  z-index: 1000;
  background: rgba(10, 14, 23, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  text-decoration: none;
}

.nav-logo span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-right,
.topbar .lang-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-home {
  font-family: 'Inter', sans-serif;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-home:hover {
  color: #fff;
}

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

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s, text-shadow 0.2s;
}

.nav-links a:hover {
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.nav-cta {
  background: var(--gradient-primary);
  color: var(--bg-dark) !important;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700 !important;
  font-size: 12px;
  letter-spacing: 0.5px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 229, 255, 0.4);
}

.lang-toggle,
.lang-wrap {
  display: flex;
  gap: 4px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 4px;
  pointer-events: auto;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 1px;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s;
}

.lang-btn.active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.lang-btn:hover:not(.active) {
  color: #fff;
}

@media (max-width: 640px) {
  nav {
    padding: 0 16px;
    width: calc(100% - 32px);
  }

  .nav-links {
    display: none;
  }
}

/* ─── GLOBALS & TYPOGRAPHY ─── */
.badge,
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 229, 255, 0.05);
  border: 1px solid rgba(0, 229, 255, 0.2);
  color: var(--accent-cyan);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 30px;
  backdrop-filter: blur(10px);
  margin-bottom: 24px;
  animation: fadeDown 0.8s ease both;
}

.badge::before,
.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-cyan);
  box-shadow: 0 0 10px var(--accent-cyan);
  animation: neonPulse 2s infinite alternate;
}

@keyframes neonPulse {
  0% {
    opacity: 0.6;
    transform: scale(1);
    box-shadow: 0 0 5px var(--accent-cyan);
  }

  100% {
    opacity: 1;
    transform: scale(1.3);
    box-shadow: 0 0 15px var(--accent-cyan);
  }
}

/* ─── HERO SECTION ─── */
.hero,
header {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 80px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 50% 0%, rgba(41, 121, 255, 0.1) 0%, transparent 50%),
    var(--bg-dark);
}

.hero::after {
  content: '';
  position: absolute;
  top: -20vh;
  left: 50%;
  transform: translateX(-50%);
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.03) 0%, transparent 60%);
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}

.hero h1,
header h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(48px, 8vw, 84px);
  color: #fff;
  line-height: 1.05;
  font-weight: 800;
  margin-bottom: 24px;
  max-width: 1000px;
  position: relative;
  z-index: 1;
  letter-spacing: -2px;
  animation: fadeUp 0.8s 0.1s ease both;
}

.hero h1 span,
header h1 span,
.accent-app,
.accent-web {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.accent-seo {
  background: var(--gradient-tertiary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: normal;
}

.hero h1 em,
header h1 em {
  font-style: normal;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub,
header>p {
  color: #CBD5E1;
  font-size: 18px;
  font-weight: 300;
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.8s 0.2s ease both;
}

/* Hero Buttons */
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.8s 0.3s ease both;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--bg-dark);
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(0, 229, 255, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 229, 255, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  color: #fff;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

/* Meta Data / Stats Row (Apps/Web/Seo) */
.hero-meta,
.meta-row {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.9s 0.3s ease both;
  box-shadow: var(--shadow-bento);
}

.meta-cell,
.meta-item {
  padding: 20px 32px;
  text-align: center;
  border-right: 1px solid var(--border-light);
}

.meta-cell:last-child,
.meta-item:last-child {
  border-right: none;
}

.meta-cell strong,
.meta-item strong {
  display: block;
  color: var(--accent-cyan);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.meta-cell span,
.meta-item span {
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}

@media (max-width: 768px) {

  .hero-meta,
  .meta-row {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }

  .meta-cell,
  .meta-item {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
  }

  .meta-cell:last-child,
  .meta-item:last-child {
    border-bottom: none;
  }
}

/* ─── INDEX STATS BAR ─── */
.stats-bar {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(12px);
  padding: 40px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1100px;
  margin: -60px auto 40px;
  position: relative;
  z-index: 10;
  box-shadow: var(--shadow-bento);
}

.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-num span {
  color: var(--accent-cyan);
}

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

/* ─── SECTION HEADERS ─── */
.section-head,
.intro-section,
.plans-head,
.why-head {
  text-align: center;
  padding: 80px 24px 40px;
  max-width: 720px;
  margin: 0 auto;
}

.eyebrow,
.section-eyebrow,
.stack-section h3 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-purple);
  margin-bottom: 16px;
  display: block;
}

.section-head h2,
.intro-section h2,
.plans-head h2,
.why-head h2,
.comparison-section h2,
.process-section h2,
.cta-section h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(32px, 5vw, 44px);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.section-head h2 span,
.why-head h2 span,
.intro-section h2 em,
.cta-section h2 span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: normal;
}

.section-head p,
.intro-section p,
.plans-head p,
.why-head p,
.comparison-section>p,
.process-section>p,
.cta-section p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
}

/* Dividers */
.divider,
.divider-gold,
.divider-warm {
  width: 60px;
  height: 4px;
  border-radius: 4px;
  margin: 20px auto;
  background: var(--gradient-primary);
}

/* ─── BENTO BOX CARDS (SERVICES & PLANS) ─── */
.services-grid,
.plans-wrapper,
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 24px;
}

.service-card,
.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  backdrop-filter: blur(20px);
}

.service-card:hover,
.plan-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Visual Toppers (for services index) */
.card-visual,
.card-header,
.card-top {
  background: rgba(255, 255, 255, 0.02);
  padding: 40px 32px 32px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}

.card-visual::before,
.card-header::after,
.card-top::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--accent-cyan), transparent 70%);
  opacity: 0.15;
  border-radius: 50%;
  filter: blur(30px);
}

.card-visual h3,
.plan-name {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.card-visual p,
.plan-tagline,
.plan-tag {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Shared Body Styles */
.card-body {
  padding: 32px;
  background: transparent;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Lists in Cards */
.features-preview,
.feature-list {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
}

.features-preview li,
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #CBD5E1;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  line-height: 1.5;
}

.features-preview li:last-child,
.feature-list li:last-child {
  border-bottom: none;
}

/* Plan Identifiers */
.card-icon-row {
  display: flex;
  gap: 12px;
}

.plan-icon,
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  margin-bottom: 16px;
}

.plan-label,
.plan-number {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--accent-cyan);
}

.price-row,
.price-block {
  margin-top: 20px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.price,
.price-amount,
.price-val {
  font-family: 'Outfit', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -1px;
}

.price-note,
.price-right,
.price-suffix,
.price-from {
  font-size: 12px;
  color: var(--text-muted);
  padding-bottom: 4px;
}

/* Delivery / Section Titles */
.delivery,
.section-title,
.features-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--accent-purple);
  margin-top: 10px;
  text-transform: uppercase;
}

.section-title,
.features-label {
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-muted);
}

/* Ribbons and Badges */
.popular-ribbon,
.ribbon {
  position: absolute;
  top: 18px;
  right: -30px;
  background: var(--gradient-primary);
  color: var(--bg-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 40px;
  transform: rotate(35deg);
  box-shadow: 0 4px 15px rgba(0, 229, 255, 0.3);
  z-index: 10;
}

.plan-card.featured {
  border-color: rgba(0, 229, 255, 0.4);
  box-shadow: 0 10px 40px rgba(0, 229, 255, 0.1);
  transform: scale(1.02);
}

.plan-card.featured:hover {
  transform: scale(1.02) translateY(-8px);
}

/* Buttons in Cards */
.card-cta,
.cta-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid var(--border-light);
  transition: all 0.3s;
  margin-top: auto;
}

.card-cta:hover,
.cta-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.plan-card.featured .cta-btn,
.card-cta.cta-app {
  background: var(--gradient-primary);
  color: var(--bg-dark);
  border: none;
}

.plan-card.featured .cta-btn:hover,
.card-cta.cta-app:hover {
  filter: brightness(1.15);
}

/* Dots and Checks */
.check,
.check-dot {
  color: var(--accent-cyan);
  font-weight: bold;
}

.cross {
  color: #475569;
}

/* Pills (Index preview) */
.plans-preview {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.plan-pill {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid var(--border-light);
}

/* ─── TECH STACK PILLS ─── */
.stack-section {
  max-width: 900px;
  margin: 0 auto 80px;
  text-align: center;
}

.stack-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.pill {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #CBD5E1;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}

.pill:hover {
  border-color: var(--accent-cyan);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 229, 255, 0.15);
}


/* ─── COMPARISON TABLES (Dark Mode Bento) ─── */
.comparison-section {
  max-width: 1100px;
  margin: 0 auto 80px;
  padding: 0 24px;
  overflow-x: auto;
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-bento);
  border: 1px solid var(--border-light);
  min-width: 700px;
}

.comp-table thead tr {
  background: rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid var(--border-light);
}

.comp-table thead th {
  padding: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

.comp-table thead th:first-child {
  text-align: left;
  color: var(--text-muted);
}

.comp-table thead th:nth-child(2) {
  color: var(--accent-cyan);
}

.comp-table thead th:nth-child(3) {
  color: #fff;
}

/* Featured */
.comp-table thead th:nth-child(4) {
  color: var(--accent-purple);
}

.comp-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  transition: background 0.2s;
}

.comp-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.comp-table td {
  padding: 16px 20px;
  font-size: 13px;
  text-align: center;
  color: #94a3b8;
}

.comp-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: #E2E8F0;
}

.comp-table td .yes {
  color: var(--accent-cyan);
  font-size: 16px;
  font-weight: bold;
}

.comp-table td .no {
  color: #334155;
  font-size: 14px;
}

.comp-table td .partial {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 8px;
  border-radius: 12px;
}

.comp-table .group-row td {
  background: rgba(0, 0, 0, 0.2);
  color: var(--text-muted);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border-light);
}

.why-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 640px) {
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1024px) {
  .why-grid,
  .contact-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.why-item,
.why-card,
.contact-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1px solid var(--border-light);
  transition: transform 0.3s, border-color 0.3s;
}

.why-item:hover,
.why-card:hover,
.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.1);
}


.why-icon,
.contact-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
}

.why-item h3,
.why-card h3,
.contact-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  color: #fff;
  margin-bottom: 8px;
}

.why-item p,
.why-card p,
.contact-card p,
.contact-card a {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  text-decoration: none;
}

.contact-card a:hover {
  color: #fff;
}

.why-num {
  font-family: 'Outfit', sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  margin-bottom: 16px;
}

/* ─── PROCESS STRIP ─── */
.process-section,
.process-strip {
  padding: 80px 24px;
  margin: 40px 0 80px;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  text-align: center;
}

.steps-row,
.process-steps {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 40px auto 0;
}

.step,
.p-step {
  flex: 1;
  min-width: 160px;
  text-align: center;
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 32px 20px;
  border-radius: var(--radius-lg);
}

.step-num,
.p-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.2);
  color: var(--accent-cyan);
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step h3,
.p-step h3 {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}

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

/* Right Arrows for desktop */
@media (min-width: 900px) {

  .step:not(:last-child)::after,
  .p-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.1);
    font-size: 24px;
  }
}

/* ─── CONTACT FORM ─── */
.contact-layout {
  display: flex;
  flex-direction: row;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

/* override grid wrapper to take full width of flex child */
.contact-layout .contact-grid {
  flex: 1;
  padding: 0;
  margin: 0;
  max-width: none;
}

.contact-form-wrapper {
  flex: 1;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1px solid var(--border-light);
  backdrop-filter: blur(10px);
}

.contact-form h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  color: #fff;
  margin-bottom: 8px;
}

.contact-form .form-sub {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.5;
}

.contact-form .form-row {
  display: flex;
  gap: 16px;
}

.contact-form .form-row>.form-group {
  flex: 1;
}

.contact-form .form-group {
  margin-bottom: 16px;
}

.contact-form label {
  display: block;
  color: #CBD5E1;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-cyan);
  background: rgba(0, 229, 255, 0.05);
}

.contact-form button {
  width: 100%;
  border: none;
  cursor: pointer;
  background: var(--gradient-primary);
  color: var(--bg-dark);
  padding: 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 229, 255, 0.2);
}

.contact-form .form-legal {
  color: #64748B;
  font-size: 12px;
  font-weight: 400;
  margin-top: 16px;
  line-height: 1.5;
}

@media (max-width: 850px) {
  .contact-layout {
    flex-direction: column;
  }

  .contact-form .form-row {
    flex-direction: column;
    gap: 0;
  }
}

/* ─── TERMS NOTE ─── */
.terms-note {
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 24px 32px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--accent-purple);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.terms-note strong {
  color: #fff;
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
}

/* ─── CTA FINAL ─── */
.cta-section {
  padding: 100px 24px;
  text-align: center;
  background: radial-gradient(circle at center, rgba(41, 121, 255, 0.08) 0%, transparent 60%);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.btn-dark {
  background: #fff;
  color: #000;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

/* ─── FOOTER ─── */
footer {
  background: #020306;
  border-top: 1px solid var(--border-light);
  padding: 60px 24px 40px;
  text-align: center;
}

.footer-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
}

.footer-logo span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
}

.footer-links a:hover {
  color: #fff;
}

.footer-copy,
footer p {
  color: #475569;
  font-size: 12px;
  margin-bottom: 8px;
}

footer strong {
  color: #CBD5E1;
  font-weight: 500;
  font-size: 15px;
  display: block;
  margin-bottom: 12px;
}

/* ─── HERO CONTACT HINT ─── */
.hero-contact-hint {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.8s 0.4s ease both;
}

.hero-phone-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.hero-phone-link:hover {
  color: #fff;
}

.hero-hint-dot {
  color: var(--border-light);
  font-size: 18px;
}

/* ─── TRUST STRIP ─── */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 36px;
  max-width: 1100px;
  margin: 0 auto 60px;
  padding: 20px 32px;
  background: rgba(0, 229, 255, 0.03);
  border: 1px solid rgba(0, 229, 255, 0.12);
  border-radius: var(--radius-md);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #CBD5E1;
}

.trust-check {
  color: var(--accent-cyan);
  font-weight: 700;
  font-size: 15px;
}

/* ─── TESTIMONIALS ─── */
.test-stars {
  color: var(--accent-cyan);
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.test-quote {
  color: #CBD5E1;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

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

.test-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--bg-dark);
  flex-shrink: 0;
}

.test-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: #fff;
  font-size: 15px;
}

.test-role {
  color: var(--text-muted);
  font-size: 12px;
  margin-top: 2px;
}

/* ─── FAQ ─── */
.faq-section {
  padding: 60px 24px 80px;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 600;
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}

.faq-question::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--accent-cyan);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  line-height: 1;
}

.faq-item.open .faq-question {
  color: var(--accent-cyan);
}

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

.faq-question:hover {
  color: var(--accent-cyan);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  padding-bottom: 24px;
}

/* ─── ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ─── FORM STATUS ─── */
.form-status {
  display: none;
  margin-top: 16px;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  text-align: center;
}
.form-status.success {
  display: block;
  background: rgba(37, 211, 102, 0.1);
  color: #25D366;
  border: 1px solid #25D366;
}
.form-status.error {
  display: block;
  background: rgba(255, 61, 113, 0.1);
  color: #FF3D71;
  border: 1px solid #FF3D71;
}

/* ─── EXCLUDED FEATURE ─── */
.feature-excluded {
  color: #bbb;
}

/* ─── WHATSAPP ─── */
.wa-btn,
a[aria-label="Chat on WhatsApp"] {
  position: fixed !important;
  bottom: 32px !important;
  right: 32px !important;
  z-index: 1000 !important;
  width: 60px !important;
  height: 60px !important;
  background: #25D366 !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4) !important;
  transition: all 0.3s !important;
  border: none !important;
}

.wa-btn:hover,
a[aria-label="Chat on WhatsApp"]:hover {
  transform: scale(1.1) translateY(-4px) !important;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6) !important;
}

/* Keyframes Setup */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

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

/* ─── MOBILE PERFORMANCE ─── */
@media (max-width: 768px) {
  body {
    background-attachment: scroll;
    background-image: none;
  }

  .hero::after {
    display: none;
  }

  /* Kill all hero animations — elements invisible during delay inflate Speed Index */
  .badge,
  .hero-badge,
  .hero h1,
  header h1,
  .hero-sub,
  header > p,
  .hero-btns,
  .hero-contact-hint,
  .hero-meta,
  .meta-row {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  nav,
  .topbar,
  .badge,
  .hero-badge,
  .btn-secondary,
  .hero-meta,
  .meta-row,
  .stats-bar,
  .service-card,
  .plan-card,
  .contact-form-wrapper,
  .lang-toggle,
  .lang-wrap,
  .trust-strip,
  .pill,
  .client-card,
  .why-item,
  .why-card,
  .contact-card,
  .terms-note,
  .process-strip,
  .faq-section {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
}

/* ─── CLIENTS SECTION ─── */
.clients-section {
  padding: 40px 24px 80px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.client-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.client-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.07;
  transition: opacity 0.4s;
  pointer-events: none;
}

.client-card-1 .client-glow { background: var(--accent-cyan); }
.client-card-2 .client-glow { background: var(--accent-purple); }
.client-card-3 .client-glow { background: var(--accent-green); }

.client-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 229, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.client-card:hover .client-glow {
  opacity: 0.18;
}

.client-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.client-logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1.5px;
  line-height: 1;
}

.client-card-1 .client-logo-text span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.client-card-2 .client-logo-text span {
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.client-card-3 .client-logo-text span {
  background: var(--gradient-tertiary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.client-ext-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 16px;
  flex-shrink: 0;
  transition: all 0.3s;
}

.client-card:hover .client-ext-icon {
  background: rgba(0, 229, 255, 0.1);
  border-color: rgba(0, 229, 255, 0.3);
  color: var(--accent-cyan);
}

.client-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  display: inline-block;
  width: fit-content;
}

.client-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.client-service-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid transparent;
}

.client-service-pill.pill-web {
  background: rgba(0, 229, 255, 0.08);
  border-color: rgba(0, 229, 255, 0.25);
  color: var(--accent-cyan);
}

.client-service-pill.pill-seo {
  background: rgba(0, 230, 118, 0.08);
  border-color: rgba(0, 230, 118, 0.25);
  color: var(--accent-green);
}

.client-service-pill.pill-api {
  background: rgba(213, 0, 249, 0.08);
  border-color: rgba(213, 0, 249, 0.25);
  color: var(--accent-purple);
}

.client-domain {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

/* ─── HERO SPLIT (Spline 3D) ─── */
.hero-split {
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  padding: 140px 24px 140px !important;
  min-height: 100vh;
  height: auto !important;
  gap: 0;
}

/* WebGL Shader Background */
.shader-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.85; /* Blend lightly with the existing hero background */
}

/* Spotlight SVG – fijo en background */
.hero-spotlight {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  top: -40%;
  left: -20%;
  width: 138%;
  height: 169%;
  animation: spotlightFadeIn 1.2s 0.3s ease both;
}

@keyframes spotlightFadeIn {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Mouse-follow orb */
.spotlight-orb {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle at center,
    rgba(0, 229, 255, 0.20) 0%,
    rgba(41, 121, 255, 0.08) 40%,
    transparent 70%
  );
  filter: blur(20px);
  opacity: 0;
  transition: opacity 0.3s ease;
  transform: translate(-50%, -50%);
  left: 0;
  top: 0;
}

.hero-split:hover .spotlight-orb {
  opacity: 1;
}

/* Left column */
.hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 56px 80px 64px;
  position: relative;
  z-index: 3;
}

.hero-left .hero-badge {
  align-self: center;
  margin: 0 auto 24px;
}

.hero-left h1 {
  text-align: center;
  margin: 0 auto 24px;
  animation: fadeUp 0.8s 0.1s ease both;
  line-height: 1.2;
}

/* ── ANIMATED WORDS (21st.dev React Component Port) ── */
.animated-words-wrapper {
  display: inline-block;
  position: relative;
  vertical-align: bottom;
  min-width: 320px; /* Adjust based on longest word */
  height: 1.35em; /* Slightly higher to prevent descenders clipping */
  overflow: hidden;
  text-align: center;
}

.animated-word {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  white-space: nowrap;
  opacity: 0;
  font-weight: 600;
  transform: translateY(-100%);
  transition: opacity 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
              transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.animated-word.active {
  opacity: 1;
  transform: translateY(0);
}

.animated-word.exit {
  opacity: 0;
  transform: translateY(150%);
}

.hero-left .hero-sub {
  text-align: center;
  margin: 0 auto 48px;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-left .hero-btns {
  justify-content: center;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero-left .hero-contact-hint {
  justify-content: center;
  animation: fadeUp 0.8s 0.4s ease both;
}

/* Right column: Spline scene */
.hero-right {
  flex: 1;
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-left: 1px solid rgba(0, 229, 255, 0.1);
  background: radial-gradient(circle at 60% 40%,
    rgba(0, 229, 255, 0.04) 0%,
    transparent 60%
  );
}

.hero-right::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle at top right,
    rgba(0, 229, 255, 0.12) 0%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 1;
}

.hero-right::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 150px; height: 150px;
  background: radial-gradient(circle at bottom left,
    rgba(41, 121, 255, 0.07) 0%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 1;
}

/* Spline loader */
.spline-loader {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 5;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  transition: opacity 0.5s ease;
}

.spline-loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.spline-loader-ring {
  width: 44px;
  height: 44px;
  border: 2px solid rgba(0, 229, 255, 0.15);
  border-top-color: var(--accent-cyan);
  border-radius: 50%;
  animation: spinRing 0.9s linear infinite;
}

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

spline-viewer {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.hero-split .hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

@media (max-width: 900px) {
  .hero-split {
    flex-direction: column !important;
    height: auto !important;
  }

  .hero-left {
    padding: 140px 24px 40px !important;
    justify-content: flex-start !important;
  }

  .hero-left h1 {
    font-size: 38px !important;
  }

  .hero-left .hero-btns {
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
  }

  .hero-left .hero-btns a {
    width: auto !important;
    min-width: 220px;
    max-width: 320px;
    justify-content: center !important;
  }

  .hero-right {
    min-height: 400px;
    border-left: none;
    border-top: 1px solid rgba(0, 229, 255, 0.1);
    padding-bottom: 80px; /* Prevent stats-bar overlap */
  }
}

@media (max-width: 640px) {
  .animated-words-wrapper {
    min-width: unset; /* Remove explicit min-width on small screens */
  }
  
  .hero-left h1 {
    font-size: 36px; 
  }

  .hero-right {
    min-height: 350px;
  }
}

/* ==========================================================================
   LIQUID GLASS BUTTON (Ported from React/Tailwind)
   ========================================================================== */
.liquid-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  border-radius: 9999px; /* full rounded */
  padding: 12px 32px; /* size xl */
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  z-index: 1;
}

.liquid-btn:hover {
  transform: scale(1.05);
}

.liquid-btn-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  z-index: -2;
  box-shadow: 
    0 0 8px rgba(0,0,0,0.03),
    0 2px 6px rgba(0,0,0,0.08),
    inset 3px 3px 0.5px -3.5px rgba(255,255,255,0.09),
    inset -3px -3px 0.5px -3.5px rgba(255,255,255,0.85),
    inset 1px 1px 1px -0.5px rgba(255,255,255,0.6),
    inset -1px -1px 1px -0.5px rgba(255,255,255,0.6),
    inset 0 0 6px 6px rgba(255,255,255,0.12),
    inset 0 0 2px 2px rgba(255,255,255,0.06),
    0 0 12px rgba(0,0,0,0.15);
  transition: all 0.3s;
}

.liquid-btn-glass {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 9999px;
  filter: url("#container-glass");
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.05);
}

.liquid-btn-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}