/* Envuelta en `@layer webflow` por la refactorización de componentes
   compartidos.
 *
 * Estas hojas redefinen nombres de utilidad que Tailwind también usa: .hidden,
 * .flex, .grid, .block, .gap-*, .text-*. Al cargarse después de Tailwind le
 * ganaban por orden de cascada, y el header y el footer compartidos entraban en
 * una página Webflow con su menú en `hidden` y el `min-[1000px]:flex` que debía
 * revertirlo perdiendo la discusión: el menú no aparecía nunca.
 *
 * Dentro de una capa se acaba el conflicto. Cualquier regla fuera de capa gana a
 * cualquier regla dentro de capa, sin importar especificidad ni orden de carga,
 * así que Tailwind gana siempre y estas hojas siguen estilando todo lo demás
 * exactamente igual que antes: entre ellas la cascada no cambia, porque todas
 * están en la misma capa.
 *
 * El puesto de la capa lo reserva `@layer webflow;` en globals.css, declarado
 * antes que las capas de Tailwind.
 */
@layer webflow {

    /* ==================== LANDIO DARK THEME - DESIGN SYSTEM ==================== */

    /* Base Font */
    * { font-family: 'Inter', sans-serif; }
    .text-block-100 { font-family: 'Russo One', sans-serif !important; }

    /* Country Selector */
    .country-selector {
      position: relative;
      display: inline-flex;
      align-items: center;
      margin-left: 12px;
    }
    .country-btn {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 2px solid rgba(255,255,255,0.2);
      background: transparent;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      transition: all 0.2s ease;
    }
    .country-btn:hover {
      border-color: rgba(255,255,255,0.5);
    }
    .country-dropdown {
      position: absolute;
      top: 100%;
      right: 0;
      padding-top: 8px;
      background: transparent;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all 0.2s ease;
      z-index: 1000;
    }
    .country-dropdown-inner {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.15);
      min-width: 180px;
      overflow: hidden;
    }
    .country-selector:hover .country-dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .country-option {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 16px;
      text-decoration: none;
      color: #333;
      font-size: 14px;
      font-weight: 500;
      transition: background 0.2s ease;
    }
    .country-option:hover {
      background: #f5f5f5;
    }
    .country-option.active {
      background: #f0f0f0;
    }
    .country-option span.flag {
      font-size: 20px;
    }

    body {
      font-family: var(--font-primary);
      font-size: var(--text-base);
      font-weight: var(--font-regular);
      line-height: var(--leading-normal);
      background-color: #141414;
      color: var(--text-inverse);
      overflow-x: hidden;
    }

    /* ==================== NAVIGATION ==================== */

    .landio-nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: var(--z-fixed);
      padding: var(--space-4) 0;
      background: rgba(20, 20, 20, 0.8);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .landio-nav-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 var(--space-6);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .landio-logo {
      display: flex;
      align-items: center;
      gap: var(--space-3);
      text-decoration: none;
    }

    .landio-logo-icon {
      width: 40px;
      height: 40px;
      background: var(--text-inverse);
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .landio-logo-icon svg {
      width: 24px;
      height: 24px;
      color: #141414;
    }

    .landio-logo-text {
      font-family: var(--font-logo);
      font-size: var(--text-2xl);
      font-weight: var(--font-regular);
      color: var(--text-inverse);
      letter-spacing: var(--tracking-tight);
    }

    .landio-nav-links {
      display: flex;
      align-items: center;
      gap: var(--space-10);
    }

    .landio-nav-link {
      font-size: var(--text-sm);
      font-weight: var(--font-medium);
      color: var(--color-neutral-300);
      text-decoration: none;
      transition: color var(--transition-fast);
    }

    .landio-nav-link:hover {
      color: var(--text-inverse);
    }

    /* Dark theme dropdown buttons */
    .landio-nav .gs-dropdown-btn {
      color: var(--color-neutral-300);
      background: transparent;
    }

    .landio-nav .gs-dropdown-btn:hover {
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
    }

    .landio-nav .gs-dropdown.active .gs-dropdown-btn {
      background: #2a2a2a;
      color: #fff;
    }

    .landio-nav-actions {
      display: flex;
      align-items: center;
      gap: var(--space-4);
    }

    /* ==================== BUTTONS - DESIGN SYSTEM ==================== */

    .landio-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: var(--space-2);
      font-family: var(--font-primary);
      font-size: var(--text-sm);
      font-weight: var(--font-medium);
      line-height: 1;
      text-decoration: none;
      border-radius: var(--radius-lg);
      padding: var(--space-3) var(--space-5);
      transition: all var(--transition-normal);
      cursor: pointer;
      white-space: nowrap;
    }

    .landio-btn-outline {
      background: transparent;
      color: var(--text-inverse);
      border: 1px solid rgba(255, 255, 255, 0.3);
    }

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

    .landio-btn-primary {
      background: #fff;
      color: #1a1a1a !important;
      border: none;
      padding: 14px 28px;
      font-size: 14px;
      font-weight: 500;
      border-radius: 8px;
    }

    .landio-btn-primary:hover {
      background: #f0f0f0;
      transform: translateY(-2px);
    }

    /* ==================== HERO SECTION ==================== */

    .landio-hero {
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      padding: var(--space-6);
      overflow: hidden;
      background: #0a0a0a;
    }

    .landio-hero-video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .landio-hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(20, 20, 20, 0.85);
      z-index: 1;
    }

    /* ==================== FLOATING PARTICLES ==================== */
    .particles-container {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      overflow: hidden;
      pointer-events: none;
    }

    .particle {
      position: absolute;
      width: 2px;
      height: 2px;
      background: rgba(255, 255, 255, 0.8);
      border-radius: 50%;
      animation: floatParticle linear infinite;
    }

    .particle:nth-child(1) { left: 10%; top: 20%; width: 2px; height: 2px; animation: float1 20s infinite; opacity: 0.5; }
    .particle:nth-child(2) { left: 20%; top: 80%; width: 3px; height: 3px; animation: float2 25s infinite; opacity: 0.7; }
    .particle:nth-child(3) { left: 30%; top: 40%; width: 1px; height: 1px; animation: float3 18s infinite; opacity: 0.4; }
    .particle:nth-child(4) { left: 40%; top: 60%; width: 2px; height: 2px; animation: float4 22s infinite; opacity: 0.6; }
    .particle:nth-child(5) { left: 50%; top: 30%; width: 3px; height: 3px; animation: float5 28s infinite; opacity: 0.5; }
    .particle:nth-child(6) { left: 60%; top: 70%; width: 1px; height: 1px; animation: float6 19s infinite; opacity: 0.6; }
    .particle:nth-child(7) { left: 70%; top: 50%; width: 2px; height: 2px; animation: float7 24s infinite; opacity: 0.4; }
    .particle:nth-child(8) { left: 80%; top: 25%; width: 2px; height: 2px; animation: float8 21s infinite; opacity: 0.7; }
    .particle:nth-child(9) { left: 85%; top: 85%; width: 1px; height: 1px; animation: float1 26s infinite reverse; opacity: 0.5; }
    .particle:nth-child(10) { left: 15%; top: 55%; width: 2px; height: 2px; animation: float2 23s infinite reverse; opacity: 0.6; }
    .particle:nth-child(11) { left: 25%; top: 15%; width: 3px; height: 3px; animation: float3 27s infinite; opacity: 0.4; }
    .particle:nth-child(12) { left: 45%; top: 90%; width: 1px; height: 1px; animation: float4 17s infinite reverse; opacity: 0.7; }
    .particle:nth-child(13) { left: 55%; top: 10%; width: 2px; height: 2px; animation: float5 22s infinite reverse; opacity: 0.5; }
    .particle:nth-child(14) { left: 75%; top: 35%; width: 2px; height: 2px; animation: float6 29s infinite; opacity: 0.4; }
    .particle:nth-child(15) { left: 90%; top: 65%; width: 1px; height: 1px; animation: float7 20s infinite reverse; opacity: 0.6; }
    .particle:nth-child(16) { left: 5%; top: 45%; width: 2px; height: 2px; animation: float8 25s infinite reverse; opacity: 0.5; }
    .particle:nth-child(17) { left: 35%; top: 75%; width: 3px; height: 3px; animation: float1 18s infinite; opacity: 0.7; }
    .particle:nth-child(18) { left: 65%; top: 5%; width: 1px; height: 1px; animation: float2 30s infinite; opacity: 0.4; }
    .particle:nth-child(19) { left: 95%; top: 40%; width: 2px; height: 2px; animation: float3 21s infinite reverse; opacity: 0.6; }
    .particle:nth-child(20) { left: 8%; top: 95%; width: 2px; height: 2px; animation: float4 24s infinite; opacity: 0.5; }

    @keyframes float1 {
      0%, 100% { transform: translate(0, 0); }
      25% { transform: translate(30px, -40px); }
      50% { transform: translate(-20px, -80px); }
      75% { transform: translate(40px, -40px); }
    }

    @keyframes float2 {
      0%, 100% { transform: translate(0, 0); }
      25% { transform: translate(-40px, 30px); }
      50% { transform: translate(50px, -20px); }
      75% { transform: translate(-30px, -50px); }
    }

    @keyframes float3 {
      0%, 100% { transform: translate(0, 0); }
      25% { transform: translate(50px, 20px); }
      50% { transform: translate(30px, 60px); }
      75% { transform: translate(-40px, 30px); }
    }

    @keyframes float4 {
      0%, 100% { transform: translate(0, 0); }
      25% { transform: translate(-30px, -60px); }
      50% { transform: translate(40px, -30px); }
      75% { transform: translate(-50px, 20px); }
    }

    @keyframes float5 {
      0%, 100% { transform: translate(0, 0); }
      25% { transform: translate(60px, 40px); }
      50% { transform: translate(-40px, 70px); }
      75% { transform: translate(30px, -30px); }
    }

    @keyframes float6 {
      0%, 100% { transform: translate(0, 0); }
      25% { transform: translate(-50px, -30px); }
      50% { transform: translate(20px, -60px); }
      75% { transform: translate(50px, 40px); }
    }

    @keyframes float7 {
      0%, 100% { transform: translate(0, 0); }
      25% { transform: translate(40px, -50px); }
      50% { transform: translate(-60px, 20px); }
      75% { transform: translate(20px, 50px); }
    }

    @keyframes float8 {
      0%, 100% { transform: translate(0, 0); }
      25% { transform: translate(-20px, 50px); }
      50% { transform: translate(50px, 30px); }
      75% { transform: translate(-40px, -40px); }
    }

    .landio-hero-content {
      max-width: 900px;
      text-align: center;
      position: relative;
      z-index: 2;
    }

    .landio-hero-content .hero-tag-dark {
      margin-bottom: 28px;
      animation: fadeInUp 0.8s ease;
    }

    .landio-hero-title {
      font-family: 'Geist', sans-serif;
      font-size: clamp(var(--text-4xl), 5vw, var(--text-7xl));
      font-weight: var(--font-semibold);
      line-height: var(--leading-tight);
      letter-spacing: var(--tracking-tight);
      color: var(--text-inverse);
      margin-bottom: var(--space-5);
    }

    /* Magic title word animation - applies to all titles */
    .magic-title .word,
    .landio-hero-title .word {
      display: inline-block;
      opacity: 0;
      transform: translateY(12px) scale(0.97);
      filter: blur(6px);
      transition: opacity 0.4s ease, transform 0.4s ease, filter 0.4s ease;
    }

    .magic-title .word.visible,
    .landio-hero-title .word.visible {
      opacity: 1;
      transform: translateY(0) scale(1);
      filter: blur(0);
    }

    .magic-title .space,
    .landio-hero-title .space {
      display: inline;
      width: 0.3em;
    }

    .landio-hero-subtitle {
      font-family: var(--font-primary);
      font-size: var(--text-lg);
      line-height: var(--leading-relaxed);
      color: var(--color-neutral-300);
      max-width: 600px;
      margin: 0 auto var(--space-8);
      animation: fadeInUp 0.8s ease 0.2s both;
    }

    .landio-hero-subtitle strong {
      color: var(--text-inverse);
      font-weight: var(--font-semibold);
    }

    .landio-hero-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: var(--space-4);
      flex-wrap: wrap;
      animation: fadeInUp 0.8s ease 0.3s both;
    }

    .landio-hero-stats {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: var(--space-12);
      margin-top: var(--space-20);
      padding-top: var(--space-10);
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      animation: fadeInUp 0.8s ease 0.4s both;
    }

    .landio-stat {
      text-align: center;
    }

    .landio-stat-value {
      font-family: 'Geist', sans-serif;
      font-size: var(--text-4xl);
      font-weight: var(--font-semibold);
      color: var(--text-inverse);
      letter-spacing: var(--tracking-tight);
    }

    .landio-stat-label {
      font-size: var(--text-sm);
      color: var(--color-neutral-300);
      margin-top: var(--space-1);
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ==================== QUOTE SECTION ==================== */
    .soma-quote-section {
      background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
      padding: 100px 24px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    /* Background glow effect */
    .soma-quote-section::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 800px;
      height: 500px;
      background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 30%, transparent 70%);
      pointer-events: none;
    }

    /* Secondary subtle glow */
    .soma-quote-section::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 600px;
      height: 350px;
      background: radial-gradient(ellipse at center, rgba(138, 100, 255, 0.03) 0%, transparent 60%);
      pointer-events: none;
    }

    .soma-quote-container {
      max-width: 750px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .soma-quote-section .hero-tag-dark {
      margin-bottom: 28px;
    }

    .soma-quote-text {
      font-family: 'Geist', sans-serif;
      font-size: clamp(24px, 3.5vw, 32px);
      font-weight: 500;
      line-height: 1.4;
      color: rgba(255, 255, 255, 0.95);
      margin: 0 0 32px 0;
      letter-spacing: -0.02em;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Word-by-word fade animation */
    .soma-quote-text .word {
      display: inline-block;
      opacity: 0;
      transform: translateY(16px) scale(0.95);
      filter: blur(8px);
      text-shadow: 0 0 0 transparent;
      transition: opacity 0.6s ease, transform 0.6s ease, filter 0.6s ease, text-shadow 0.8s ease;
    }

    .soma-quote-text .word.visible {
      opacity: 1;
      transform: translateY(0) scale(1);
      filter: blur(0);
      text-shadow: 0 0 30px rgba(255, 255, 255, 0.4), 0 0 60px rgba(138, 100, 255, 0.2);
    }

    .soma-quote-text .space {
      display: inline;
      width: 0.3em;
    }

    .soma-quote-author {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
    }

    .soma-quote-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.1);
    }

    .soma-quote-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .soma-quote-role {
      font-size: 14px;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.7);
    }

    /* ==================== BENEFITS SECTION ==================== */
    .soma-benefits-section {
      background: #0a0a0a;
      padding: 100px 24px;
    }

    /* Benefits Animation - Design System Slide Up */
    .soma-benefits-header,
    .soma-benefit-card {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }

    .soma-benefits-header.animate-in,
    .soma-benefit-card.animate-in {
      opacity: 1;
      transform: translateY(0);
    }

    .soma-benefit-card:nth-child(1) { transition-delay: 0.1s; }
    .soma-benefit-card:nth-child(2) { transition-delay: 0.2s; }
    .soma-benefit-card:nth-child(3) { transition-delay: 0.3s; }

    .soma-benefits-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .soma-benefits-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .soma-benefits-header .hero-tag-dark {
      margin-bottom: 24px;
    }

    .soma-benefits-title {
      font-family: 'Geist', sans-serif;
      font-size: 48px;
      font-weight: 500;
      line-height: 1.1;
      color: #fff;
      margin: 0 0 20px 0;
      letter-spacing: -0.02em;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .soma-benefits-subtitle {
      font-family: 'Inter', sans-serif;
      font-size: 18px;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.7);
      max-width: 500px;
      margin: 0 auto;
    }

    .soma-benefits-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    @media (max-width: 900px) {
      .soma-benefits-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
      }
    }

    .soma-benefit-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 20px;
      padding: 40px 32px;
      text-align: center;
      transition: all 0.3s ease;
    }

    .soma-benefit-card:hover {
      background: rgba(255, 255, 255, 0.04);
      border-color: rgba(255, 255, 255, 0.1);
    }

    .soma-benefit-visual {
      height: 120px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 28px;
    }

    .soma-benefit-visual svg {
      width: 140px;
      height: 100px;
    }

    .soma-benefit-title {
      font-family: 'Geist', sans-serif;
      font-size: 22px;
      font-weight: 600;
      color: #fff;
      margin: 0 0 12px 0;
      letter-spacing: -0.02em;
    }

    .soma-benefit-desc {
      font-size: 15px;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.45);
      margin: 0;
    }

    /* ==================== BENEFIT CARD ANIMATIONS ==================== */

    /* Gauge animation - needle moving */
    .soma-benefit-icon-gauge line {
      transform-origin: 60px 70px;
      animation: gaugeNeedle 3s ease-in-out infinite;
    }

    @keyframes gaugeNeedle {
      0%, 100% { transform: rotate(-20deg); }
      50% { transform: rotate(25deg); }
    }

    /* Gauge arc pulse */
    .soma-benefit-icon-gauge path:nth-child(2) {
      animation: gaugePulse 3s ease-in-out infinite;
    }

    @keyframes gaugePulse {
      0%, 100% { opacity: 0.4; }
      50% { opacity: 0.7; }
    }

    /* Bars animation - growing */
    .soma-benefit-icon-bars rect:nth-child(1) {
      animation: barGrow1 2s ease-in-out infinite;
      transform-origin: bottom;
    }

    .soma-benefit-icon-bars rect:nth-child(2) {
      animation: barGrow2 2s ease-in-out infinite 0.2s;
      transform-origin: bottom;
    }

    .soma-benefit-icon-bars rect:nth-child(3) {
      animation: barGrow3 2s ease-in-out infinite 0.4s;
      transform-origin: bottom;
    }

    @keyframes barGrow1 {
      0%, 100% { transform: scaleY(1); opacity: 0.15; }
      50% { transform: scaleY(1.1); opacity: 0.3; }
    }

    @keyframes barGrow2 {
      0%, 100% { transform: scaleY(1); opacity: 0.25; }
      50% { transform: scaleY(1.15); opacity: 0.4; }
    }

    @keyframes barGrow3 {
      0%, 100% { transform: scaleY(1); opacity: 0.4; }
      50% { transform: scaleY(1.08); opacity: 0.6; }
    }

    /* Nodes animation - pulsing */
    .soma-benefit-icon-nodes circle:nth-child(1) {
      animation: nodePulseCenter 2.5s ease-in-out infinite;
    }

    .soma-benefit-icon-nodes circle:nth-child(2),
    .soma-benefit-icon-nodes circle:nth-child(3),
    .soma-benefit-icon-nodes circle:nth-child(4),
    .soma-benefit-icon-nodes circle:nth-child(5),
    .soma-benefit-icon-nodes circle:nth-child(6) {
      animation: nodePulseOuter 2.5s ease-in-out infinite;
    }

    .soma-benefit-icon-nodes circle:nth-child(3) { animation-delay: 0.3s; }
    .soma-benefit-icon-nodes circle:nth-child(4) { animation-delay: 0.6s; }
    .soma-benefit-icon-nodes circle:nth-child(5) { animation-delay: 0.9s; }
    .soma-benefit-icon-nodes circle:nth-child(6) { animation-delay: 1.2s; }

    @keyframes nodePulseCenter {
      0%, 100% { transform: scale(1); opacity: 0.3; }
      50% { transform: scale(1.1); opacity: 0.5; }
    }

    @keyframes nodePulseOuter {
      0%, 100% { opacity: 0.2; }
      50% { opacity: 0.5; }
    }

    /* Lines animation */
    .soma-benefit-icon-nodes line {
      animation: lineGlow 2.5s ease-in-out infinite;
    }

    @keyframes lineGlow {
      0%, 100% { opacity: 0.15; }
      50% { opacity: 0.35; }
    }

    /* Check circle animation */
    .soma-benefit-icon-nodes circle:nth-child(7) {
      animation: checkPop 2.5s ease-in-out infinite;
    }

    @keyframes checkPop {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.15); }
    }

    /* ==================== BENTO BOX SECTION ==================== */
    .soma-bento-section {
      background: #0a0a0a;
      padding: 100px 24px;
    }

    .soma-bento-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .soma-bento-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .soma-bento-title {
      font-family: 'Geist', sans-serif;
      font-size: 48px;
      font-weight: 500;
      line-height: 1.1;
      color: #fff;
      margin: 20px 0 20px 0;
      letter-spacing: -0.02em;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .soma-bento-subtitle {
      font-family: 'Inter', sans-serif;
      font-size: 18px;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.7);
      max-width: 500px;
      margin: 0 auto;
    }

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

    .soma-bento-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 20px;
      padding: 28px;
      display: flex;
      flex-direction: column;
      transition: all 0.3s ease;
      overflow: hidden;
    }

    .soma-bento-card:hover {
      border-color: rgba(255, 255, 255, 0.15);
      background: rgba(255, 255, 255, 0.05);
    }

    /* Card sizes */
    .soma-bento-card.large {
      grid-column: span 2;
    }

    .soma-bento-card.tall {
      grid-row: span 2;
    }

    .soma-bento-visual {
      flex: 1;
      min-height: 160px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      overflow: hidden;
      position: relative;
    }

    .soma-bento-card-title {
      font-family: 'Geist', sans-serif;
      font-size: 20px;
      font-weight: 600;
      color: #fff;
      margin: 0 0 8px 0;
    }

    .soma-bento-card-desc {
      font-size: 15px;
      line-height: 1.5;
      color: rgba(255, 255, 255, 0.5);
      margin: 0;
    }

    .soma-bento-coming-soon {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 11px;
      font-weight: 600;
      color: rgba(206, 237, 178, 0.9);
      background: rgba(206, 237, 178, 0.1);
      padding: 4px 10px;
      border-radius: 20px;
      margin-bottom: 12px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    /* Bento visual elements */
    .bento-prompt-box {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      padding: 14px 18px;
      width: 100%;
      max-width: 320px;
    }

    .bento-prompt-text {
      font-family: 'Geist', sans-serif;
      font-size: 14px;
      color: rgba(255, 255, 255, 0.7);
    }

    .bento-prompt-cursor {
      display: inline-block;
      width: 2px;
      height: 16px;
      background: rgba(255, 255, 255, 0.6);
      margin-left: 2px;
      animation: blink 1s infinite;
    }

    @keyframes blink {
      0%, 50% { opacity: 1; }
      51%, 100% { opacity: 0; }
    }

    /* Chat Interface Animation */
    .bento-chat-interface {
      width: 100%;
      max-width: 500px;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .bento-chat-input {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      padding: 14px 18px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .bento-chat-input-icon {
      width: 20px;
      height: 20px;
      color: rgba(255, 255, 255, 0.4);
    }

    .bento-chat-input-text {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.6);
      overflow: hidden;
      white-space: nowrap;
    }

    .bento-chat-input-text span {
      display: inline-block;
      animation: typing 3s steps(40) infinite;
      overflow: hidden;
      white-space: nowrap;
      border-right: 2px solid rgba(138, 100, 255, 0.6);
    }

    .bento-chat-response {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      padding: 18px 20px;
      opacity: 0;
      transform: translateY(10px);
      animation: responseAppear 0.5s ease forwards;
      animation-delay: 1.5s;
    }

    .bento-chat-response-header {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
    }

    .bento-chat-soma-icon {
      width: 24px;
      height: 24px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .bento-chat-soma-icon svg {
      width: 14px;
      height: 14px;
      color: rgba(255, 255, 255, 0.6);
    }

    .bento-chat-soma-name {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.5);
      font-weight: 500;
    }

    .bento-chat-response-text {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.6);
      line-height: 1.6;
      margin: 0;
    }

    @keyframes typing {
      0%, 90%, 100% { width: 0; }
      30%, 60% { width: 100%; }
    }

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

    /* Payment Visual */
    .bento-payment-visual {
      display: flex;
      flex-direction: column;
      gap: 12px;
      width: 100%;
      max-width: 260px;
    }

    .bento-payment-card {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      padding: 16px;
      opacity: 0;
      transform: translateY(10px);
      animation: paymentAppear 0.5s ease forwards;
    }

    .bento-payment-header {
      display: flex;
      align-items: center;
      gap: 8px;
      color: rgba(255, 255, 255, 0.5);
      font-size: 12px;
      margin-bottom: 10px;
    }

    .bento-payment-amount {
      font-size: 24px;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 10px;
    }

    .bento-payment-status {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      color: rgba(206, 237, 178, 0.8);
    }

    .bento-payment-dot {
      width: 6px;
      height: 6px;
      background: rgba(206, 237, 178, 0.8);
      border-radius: 50%;
    }

    .bento-payment-link {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 8px;
      padding: 10px 14px;
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      color: rgba(255, 255, 255, 0.5);
      opacity: 0;
      animation: paymentAppear 0.5s ease forwards;
      animation-delay: 0.3s;
    }

    .bento-payment-link svg {
      color: rgba(255, 255, 255, 0.4);
    }

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

    .bento-invoice-preview {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      padding: 20px;
      width: 100%;
      max-width: 280px;
    }

    .bento-invoice-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 16px;
      padding-bottom: 12px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .bento-invoice-label {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.4);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .bento-invoice-amount {
      font-family: 'Geist', sans-serif;
      font-size: 24px;
      font-weight: 600;
      color: #fff;
    }

    .bento-invoice-row {
      display: flex;
      justify-content: space-between;
      padding: 8px 0;
      font-size: 13px;
    }

    .bento-invoice-row span:first-child {
      color: rgba(255, 255, 255, 0.5);
    }

    .bento-invoice-row span:last-child {
      color: rgba(255, 255, 255, 0.8);
    }

    .bento-icons-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      justify-content: center;
      align-items: center;
    }

    .bento-icon-box {
      width: 50px;
      height: 50px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .bento-icon-box svg {
      width: 24px;
      height: 24px;
      color: rgba(255, 255, 255, 0.6);
    }

    .bento-center-star {
      width: 70px;
      height: 70px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .bento-center-star svg {
      width: 32px;
      height: 32px;
      color: rgba(255, 255, 255, 0.8);
    }

    /* Bento animation - slide up on scroll */
    .soma-bento-header,
    .soma-bento-card {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }

    .soma-bento-header.animate-in,
    .soma-bento-card.animate-in {
      opacity: 1;
      transform: translateY(0);
    }

    .soma-bento-card:nth-child(1) { transition-delay: 0.1s; }
    .soma-bento-card:nth-child(2) { transition-delay: 0.15s; }
    .soma-bento-card:nth-child(3) { transition-delay: 0.2s; }
    .soma-bento-card:nth-child(4) { transition-delay: 0.25s; }
    .soma-bento-card:nth-child(5) { transition-delay: 0.3s; }
    .soma-bento-card:nth-child(6) { transition-delay: 0.35s; }

    /* Task Carousel Animation */
    .bento-task-carousel {
      position: relative;
      width: 100%;
      max-width: 320px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      padding: 10px 0;
    }

    .bento-task-item {
      display: flex;
      align-items: center;
      gap: 14px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 14px;
      padding: 14px 18px;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      transform: scale(0.92);
      opacity: 0.4;
      filter: blur(2px);
    }

    .bento-task-item.active {
      background: rgba(255, 255, 255, 0.06);
      border-color: rgba(255, 255, 255, 0.12);
      transform: scale(1);
      opacity: 1;
      filter: blur(0);
    }

    .bento-task-icon {
      width: 34px;
      height: 34px;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.05);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .bento-task-icon svg {
      width: 18px;
      height: 18px;
      color: rgba(255, 255, 255, 0.5);
    }

    .bento-task-item.active .bento-task-icon svg {
      color: rgba(255, 255, 255, 0.7);
    }

    .bento-task-text {
      flex: 1;
      font-size: 14px;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.6);
      transition: color 0.5s ease;
    }

    .bento-task-item.active .bento-task-text {
      color: rgba(255, 255, 255, 0.95);
    }

    .bento-task-status {
      width: 24px;
      height: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .bento-task-status svg {
      width: 20px;
      height: 20px;
    }

    .bento-task-status.done svg {
      color: rgba(206, 237, 178, 0.5);
      transition: color 0.5s ease;
    }

    .bento-task-item.active .bento-task-status.done svg {
      color: rgba(206, 237, 178, 1);
    }

    .bento-task-status.pending svg {
      color: rgba(255, 255, 255, 0.2);
    }

    .bento-task-item.active .bento-task-status.pending svg {
      color: rgba(255, 255, 255, 0.4);
    }

    /* Contract Viewer Animation */
    .bento-contract-viewer {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 12px;
      overflow: hidden;
      width: 100%;
      max-width: 320px;
    }

    .bento-contract-header {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 12px 16px;
      background: rgba(255, 255, 255, 0.02);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .bento-contract-dots {
      display: flex;
      gap: 6px;
    }

    .bento-contract-dots span {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.15);
    }

    .bento-contract-tab {
      margin-left: auto;
      display: flex;
      align-items: center;
      gap: 6px;
      background: rgba(255, 255, 255, 0.06);
      padding: 6px 12px;
      border-radius: 6px;
      font-size: 11px;
      color: rgba(255, 255, 255, 0.7);
    }

    .bento-contract-body {
      padding: 16px;
      overflow: hidden;
    }


    .bento-contract-content {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .bento-contract-line {
      font-size: 10px;
      line-height: 1.4;
    }

    .bento-contract-number {
      color: rgba(255, 255, 255, 0.25);
      min-width: 20px;
      text-align: right;
      font-family: 'Geist Mono', monospace;
    }

    .bento-contract-text {
      color: rgba(255, 255, 255, 0.5);
    }

    .bento-contract-text.highlight {
      color: rgba(255, 255, 255, 0.85);
    }

    .bento-contract-text .amount {
      color: rgba(206, 237, 178, 0.8);
    }

    .bento-contract-text .date {
      color: rgba(147, 197, 253, 0.8);
    }

    /* Email Preview Animation */
    .bento-email-visual {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 12px;
      padding: 18px;
      width: 100%;
      max-width: 320px;
    }

    .bento-email-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 14px;
      padding-bottom: 12px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .bento-email-avatar {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(138, 100, 255, 0.3), rgba(100, 200, 255, 0.3));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      color: rgba(255, 255, 255, 0.8);
    }

    .bento-email-meta {
      flex: 1;
    }

    .bento-email-to {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.5);
    }

    .bento-email-subject {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.8);
      font-weight: 500;
    }

    .bento-email-body {
      position: relative;
    }

    .bento-email-line {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.6;
      opacity: 0;
      transform: translateY(5px);
      animation: emailLineAppear 0.5s ease forwards;
    }

    .bento-email-line:nth-child(1) { animation-delay: 0.3s; }
    .bento-email-line:nth-child(2) { animation-delay: 0.8s; }
    .bento-email-line:nth-child(3) { animation-delay: 1.3s; }
    .bento-email-line:nth-child(4) { animation-delay: 1.8s; }

    .bento-email-line .highlight {
      color: rgba(138, 100, 255, 0.8);
    }

    .bento-email-cursor {
      display: inline-block;
      width: 2px;
      height: 12px;
      background: rgba(138, 100, 255, 0.8);
      margin-left: 2px;
      animation: cursorBlink 0.8s infinite;
      vertical-align: middle;
    }

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

    @keyframes cursorBlink {
      0%, 50% { opacity: 1; }
      51%, 100% { opacity: 0; }
    }

    @media (max-width: 900px) {
      .soma-bento-grid {
        grid-template-columns: 1fr 1fr;
      }
      .soma-bento-card.large {
        grid-column: span 2;
      }
    }

    @media (max-width: 600px) {
      .soma-bento-grid {
        grid-template-columns: 1fr;
      }
      .soma-bento-card.large {
        grid-column: span 1;
      }
      .soma-bento-title {
        font-size: 32px;
      }
    }

    /* ==================== BENTO GRAYSCALE OVERRIDE ==================== */
    /* Converting colorful animations to grayscale with subtle color hints */

    /* Coming soon badge - keep original green color to stand out */
    .soma-bento-coming-soon {
      color: rgba(206, 237, 178, 0.9);
      background: rgba(206, 237, 178, 0.1);
    }

    /* Payment status - gray instead of green */
    .bento-payment-status {
      color: rgba(200, 200, 200, 0.7);
    }

    .bento-payment-dot {
      background: rgba(200, 200, 200, 0.7);
    }

    /* Task status done - subtle gray with hint */
    .bento-task-status.done svg {
      color: rgba(180, 180, 180, 0.4);
    }

    .bento-task-item.active .bento-task-status.done svg {
      color: rgba(220, 220, 220, 0.85);
    }

    /* Chat interface - grayscale cursor */
    .bento-chat-input-text span {
      border-right: 2px solid rgba(180, 180, 180, 0.5);
    }

    /* Email cursor - grayscale */
    .bento-email-cursor {
      background: rgba(180, 180, 180, 0.7);
    }

    .bento-email-line .highlight {
      color: rgba(200, 200, 200, 0.8);
    }

    .bento-email-avatar {
      background: linear-gradient(135deg, rgba(150, 150, 150, 0.25), rgba(180, 180, 180, 0.25));
    }

    /* Contract colors - all grayscale */
    .bento-contract-content p[style*="206,237,178"],
    .bento-contract-text .amount {
      color: rgba(200, 200, 200, 0.75) !important;
    }

    .bento-contract-content p[style*="147,197,253"],
    .bento-contract-text .date {
      color: rgba(180, 180, 180, 0.75) !important;
    }

    /* Override inline styles in contract viewer */
    .bento-contract-content p {
      color: rgba(180, 180, 180, 0.7) !important;
    }

    .bento-contract-content p:first-child {
      color: rgba(220, 220, 220, 0.8) !important;
    }

    /* Benefit card visual icons - grayscale */
    .soma-benefit-icon-gauge path:nth-child(2) {
      stroke: rgba(200, 200, 200, 0.35);
    }

    .soma-benefit-icon-gauge line {
      stroke: rgba(180, 180, 180, 0.45);
    }

    .soma-benefit-icon-gauge circle {
      fill: rgba(200, 200, 200, 0.5);
    }

    .soma-benefit-icon-bars rect {
      fill: rgba(180, 180, 180, 0.15);
    }

    .soma-benefit-icon-bars rect:nth-child(2) {
      fill: rgba(180, 180, 180, 0.22);
    }

    .soma-benefit-icon-bars rect:nth-child(3) {
      fill: rgba(180, 180, 180, 0.35);
    }

    .soma-benefit-icon-nodes circle,
    .soma-benefit-icon-nodes line,
    .soma-benefit-icon-nodes path {
      fill: rgba(180, 180, 180, 0.2);
      stroke: rgba(180, 180, 180, 0.2);
    }

    .soma-benefit-icon-nodes circle:first-child {
      fill: rgba(200, 200, 200, 0.25);
      stroke: rgba(180, 180, 180, 0.15);
    }

    /* ==================== LOGOS SECTION ==================== */

    .landio-logos {
      padding: var(--space-16) var(--space-6);
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .landio-logos-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .landio-logos-title {
      font-size: var(--text-xs);
      font-weight: var(--font-medium);
      color: var(--color-neutral-400);
      text-transform: uppercase;
      letter-spacing: var(--tracking-wide);
      text-align: center;
      margin-bottom: var(--space-10);
    }

    .landio-logos-grid {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: var(--space-16);
      flex-wrap: wrap;
      opacity: 0.5;
    }

    .landio-logo-item {
      font-family: var(--font-primary);
      font-size: var(--text-2xl);
      font-weight: var(--font-bold);
      color: var(--color-neutral-300);
      letter-spacing: var(--tracking-tight);
    }

    /* ==================== FEATURES SECTION ==================== */

    .landio-features {
      padding: var(--space-24) var(--space-6);
      position: relative;
    }

    .landio-section-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .landio-section-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto var(--space-20);
    }

    .landio-section-badge {
      display: inline-flex;
      align-items: center;
      gap: var(--space-2);
      padding: var(--space-1) var(--space-3);
      background: rgba(206, 237, 178, 0.1);
      border: 1px solid var(--color-accent);
      border-radius: var(--radius-full);
      font-family: 'Geist Mono', monospace;
      font-size: var(--text-xs);
      font-weight: var(--font-medium);
      color: var(--color-accent);
      text-transform: uppercase;
      letter-spacing: var(--tracking-wide);
      margin-bottom: var(--space-6);
    }

    .landio-section-title {
      font-family: 'Geist', sans-serif;
      font-size: 48px;
      font-weight: 500;
      line-height: 1.1;
      letter-spacing: -0.02em;
      color: #fff;
      margin-bottom: 16px;
    }

    .landio-section-subtitle {
      font-size: var(--text-lg);
      color: var(--color-neutral-300);
      line-height: var(--leading-relaxed);
    }

    .landio-features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-6);
    }

    @media (max-width: 900px) {
      .landio-features-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .landio-features-grid {
        grid-template-columns: 1fr;
      }
    }

    .landio-feature-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--radius-2xl);
      padding: var(--space-8);
      transition: all var(--transition-slow);
    }

    .landio-feature-card:hover {
      background: rgba(255, 255, 255, 0.05);
      border-color: rgba(255, 255, 255, 0.15);
      transform: translateY(-4px);
    }

    .landio-feature-icon {
      width: 56px;
      height: 56px;
      background: rgba(206, 237, 178, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--radius-lg);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: var(--space-6);
    }

    .landio-feature-icon svg {
      width: 28px;
      height: 28px;
      color: var(--color-accent);
    }

    .landio-feature-title {
      font-family: 'Geist', sans-serif;
      font-size: var(--text-xl);
      font-weight: var(--font-semibold);
      color: var(--text-inverse);
      margin-bottom: var(--space-3);
      letter-spacing: var(--tracking-tight);
    }

    .landio-feature-desc {
      font-size: var(--text-base);
      color: var(--color-neutral-300);
      line-height: var(--leading-relaxed);
    }

    /* ==================== SERVICES SECTION ==================== */

    .landio-services {
      padding: var(--space-24) var(--space-6);
      background: #1a1a1a;
    }

    .landio-services-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-16);
      align-items: center;
    }

    @media (max-width: 900px) {
      .landio-services-grid {
        grid-template-columns: 1fr;
        gap: var(--space-12);
      }
    }

    .landio-services-content h3 {
      font-family: 'Geist', sans-serif;
      font-size: clamp(var(--text-3xl), 4vw, var(--text-4xl));
      font-weight: var(--font-semibold);
      line-height: var(--leading-snug);
      letter-spacing: var(--tracking-tight);
      color: var(--text-inverse);
      margin-bottom: var(--space-5);
    }

    .landio-services-content p {
      font-size: var(--text-lg);
      color: var(--color-neutral-300);
      line-height: var(--leading-relaxed);
      margin-bottom: var(--space-8);
    }

    .landio-services-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: var(--space-4);
      padding: 0;
      margin: 0;
    }

    .landio-services-list li {
      display: flex;
      align-items: center;
      gap: var(--space-3);
      font-size: var(--text-base);
      font-weight: var(--font-medium);
      color: var(--text-inverse);
    }

    .landio-check-icon {
      width: 24px;
      height: 24px;
      background: var(--color-success);
      border-radius: var(--radius-full);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .landio-check-icon svg {
      width: 14px;
      height: 14px;
      color: white;
    }

    .landio-services-image {
      position: relative;
    }

    .landio-services-image-wrapper {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--radius-3xl);
      padding: var(--space-10);
      position: relative;
      overflow: hidden;
    }

    .landio-services-image-wrapper::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(206, 237, 178, 0.1) 0%, transparent 70%);
      opacity: 0.5;
      pointer-events: none;
    }

    .landio-mockup {
      display: flex;
      flex-direction: column;
      gap: var(--space-4);
      position: relative;
      z-index: 1;
    }

    .landio-mockup-bar {
      height: 12px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: var(--radius-md);
    }

    .landio-mockup-bar.short {
      width: 60%;
    }

    .landio-mockup-bar.medium {
      width: 80%;
    }

    .landio-mockup-card {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--radius-lg);
      padding: var(--space-5);
      margin-top: var(--space-2);
    }

    /* ==================== TESTIMONIALS SECTION ==================== */

    .landio-testimonials {
      padding: var(--space-24) var(--space-6);
    }

    .landio-testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-6);
    }

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

    .landio-testimonial-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--radius-2xl);
      padding: var(--space-8);
    }

    .landio-testimonial-stars {
      display: flex;
      gap: var(--space-1);
      margin-bottom: var(--space-5);
    }

    .landio-testimonial-stars svg {
      width: 18px;
      height: 18px;
      color: var(--color-warning);
      fill: var(--color-warning);
    }

    .landio-testimonial-text {
      font-size: var(--text-base);
      line-height: var(--leading-relaxed);
      color: var(--text-inverse);
      margin-bottom: var(--space-6);
    }

    .landio-testimonial-author {
      display: flex;
      align-items: center;
      gap: var(--space-3);
    }

    .landio-testimonial-avatar {
      width: 48px;
      height: 48px;
      background: var(--color-accent);
      border-radius: var(--radius-full);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: var(--text-lg);
      font-weight: var(--font-semibold);
      color: #141414;
    }

    .landio-testimonial-name {
      font-size: var(--text-base);
      font-weight: var(--font-semibold);
      color: var(--text-inverse);
    }

    .landio-testimonial-role {
      font-size: var(--text-sm);
      color: var(--color-neutral-400);
    }

    /* ==================== CTA SECTION ==================== */

    .landio-cta {
      padding: var(--space-24) var(--space-6);
      position: relative;
      overflow: hidden;
    }

    .landio-cta-bg {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background:
        radial-gradient(ellipse 80% 60% at 50% 100%, rgba(206, 237, 178, 0.1), transparent),
        radial-gradient(ellipse 60% 40% at 20% 50%, rgba(206, 237, 178, 0.05), transparent);
      pointer-events: none;
    }

    .landio-cta-content {
      max-width: 700px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .landio-cta-title {
      font-family: 'Geist', sans-serif;
      font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
      font-weight: var(--font-semibold);
      line-height: var(--leading-tight);
      letter-spacing: var(--tracking-tight);
      color: var(--text-inverse);
      margin-bottom: var(--space-5);
    }

    .landio-cta-subtitle {
      font-size: var(--text-lg);
      color: var(--color-neutral-300);
      margin-bottom: var(--space-10);
    }

    .landio-cta-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: var(--space-4);
      flex-wrap: wrap;
    }

    /* ==================== FOOTER ==================== */

    .landio-footer {
      padding: var(--space-20) var(--space-6) var(--space-10);
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .landio-footer-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .landio-footer-grid {
      display: grid;
      grid-template-columns: 2fr repeat(3, 1fr);
      gap: var(--space-16);
      margin-bottom: var(--space-16);
    }

    @media (max-width: 900px) {
      .landio-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-10);
      }
    }

    @media (max-width: 600px) {
      .landio-footer-grid {
        grid-template-columns: 1fr;
      }
    }

    .landio-footer-brand p {
      font-size: var(--text-sm);
      color: var(--color-neutral-400);
      line-height: var(--leading-relaxed);
      margin-top: var(--space-5);
      max-width: 300px;
    }

    .landio-footer-heading {
      font-size: var(--text-sm);
      font-weight: var(--font-semibold);
      color: var(--text-inverse);
      margin-bottom: var(--space-5);
    }

    .landio-footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: var(--space-3);
      padding: 0;
      margin: 0;
    }

    .landio-footer-links a {
      font-size: var(--text-sm);
      color: var(--color-neutral-400);
      text-decoration: none;
      transition: color var(--transition-fast);
    }

    .landio-footer-links a:hover {
      color: var(--text-inverse);
    }

    .landio-footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: var(--space-10);
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      flex-wrap: wrap;
      gap: var(--space-5);
    }

    .landio-footer-copyright {
      font-size: var(--text-sm);
      color: var(--color-neutral-400);
    }

    .landio-footer-social {
      display: flex;
      gap: var(--space-4);
    }

    .landio-footer-social a {
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-neutral-400);
      transition: all var(--transition-fast);
    }

    .landio-footer-social a:hover {
      background: rgba(255, 255, 255, 0.08);
      color: var(--text-inverse);
    }

    .landio-footer-social svg {
      width: 18px;
      height: 18px;
    }

    /* ==================== MOBILE MENU ==================== */

    .landio-mobile-menu-btn {
      display: none;
      background: transparent;
      border: none;
      color: var(--text-inverse);
      cursor: pointer;
      padding: var(--space-2);
    }

    @media (max-width: 900px) {
      .landio-nav-links,
      .landio-nav-actions {
        display: none;
      }

      .landio-mobile-menu-btn {
        display: flex;
      }

      .landio-hero-stats {
        flex-direction: column;
        gap: var(--space-6);
      }
    }

  /* Modal Styles */
  body.modal-open .navigation-component {
    visibility: hidden;
  }
  .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
  }
  .modal-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  .modal-container {
    background: #fff;
    border-radius: 20px;
    padding: 36px;
    width: 90%;
    max-width: 480px;
    position: relative;
    transform: scale(0.9) translateY(20px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 40px 20px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  }
  .modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
  .modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
  }
  .modal-close:hover {
    background: #e5e5e5;
    transform: rotate(90deg);
  }
  .modal-close svg {
    width: 18px;
    height: 18px;
    color: #666;
  }
  .modal-content {
    text-align: center;
  }
  /* Phone input styles */
  .iti {
    width: 100%;
  }
  .iti__flag-container {
    border-right: 1px solid #e5e5e5;
  }
  .form-error {
    display: none;
    color: #ef4444;
    font-size: 13px;
    margin-top: 4px;
  }
  .form-group.error input {
    border-color: #ef4444;
  }
  .form-group.error .form-error {
    display: block;
  }
  .modal-title {
    font-family: 'Geist', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 24px;
    line-height: 1.2;
  }
  .modal-form {
    text-align: left;
  }
  .form-group {
    margin-bottom: 20px;
  }
  .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
  }
  .form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
  }
  .form-group input:focus {
    outline: none;
    border-color: #1a1a1a;
    box-shadow: 0 0 0 3px rgba(26,26,26,0.1);
  }
  .form-group input::placeholder {
    color: #aaa;
  }
}
