/* ============================================
   CSS DESIGN SYSTEM - Sananthis
   ============================================ */

:root {
    /* Colors - Light Theme */
    --color-bg-primary: #ffffff;
    --color-bg-secondary: #f8f9fc;
    --color-bg-tertiary: #f1f3f9;

    --color-text-primary: #0f172a;
    --color-text-secondary: #334155;
    --color-text-muted: #64748b;

    --color-accent-purple: #8b5cf6;
    --color-accent-purple-light: #a78bfa;
    --color-accent-blue: #3b82f6;
    --color-accent-cyan: #22d3ee;
    --color-accent-green: #10b981;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 50%, #22d3ee 100%);
    --gradient-purple-blue: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
    --gradient-glow: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.3) 0%, transparent 70%);

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    --font-size-5xl: 3.5rem;
    --font-size-6xl: 4.5rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(139, 92, 246, 0.3);

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Highlight Utility */
.highlight-white {
    background-color: #ffffff;
    color: #1a202c !important;
    /* Deep Navy from slate-900 area */
    padding: 6px 14px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: inline;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    font-weight: 700;
}

/* Exclusions for specific sections to retain original light gray colors */
.hero,
.h-block-dark,
.honeycomb-section {
    --color-text-secondary: #475569;
    --color-text-muted: #94a3b8;
}

/* ============================================
   RESET & BASE
   ============================================ */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--color-text-primary);
    background-color: var(--color-bg-primary);
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--font-size-xl);
    font-weight: 700;
}

.logo-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.logo-accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
}

.nav-links a {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
}

.nav-links a:hover {
    color: var(--color-text-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--font-size-sm);
    font-weight: 600;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-base);
    border: none;
    outline: none;
}

.btn svg {
    width: 16px;
    height: 16px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
}

.btn-ghost {
    background: transparent;
    color: var(--color-text-secondary);
}

.btn-ghost:hover {
    color: var(--color-text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.btn-outline {
    background: transparent;
    color: var(--color-text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: var(--color-accent-purple);
    background: rgba(139, 92, 246, 0.1);
}

.btn-lg {
    padding: var(--space-md) var(--space-xl);
    font-size: var(--font-size-base);
}

.btn-lg svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

/* Background Effects */
.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    transition: transform var(--transition-slow);
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    bottom: -100px;
    left: -50px;
    animation: float 10s ease-in-out infinite reverse;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 40%;
    animation: float 12s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(30px, -30px);
    }

    66% {
        transform: translate(-20px, 20px);
    }
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

/* Hero Container */
.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: grid;
    grid-template-columns: 0.8fr 1.5fr;
    gap: var(--space-2xl);
    align-items: center;
}

/* Hero Content */
.hero-content {
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) var(--space-md);
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-accent-purple-light);
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.6s ease-out;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-accent-green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.hero-title {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.6s ease-out 0.1s backwards;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
    animation: fadeInUp 0.6s ease-out 0.3s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Trust Section */
.trust-section {
    animation: fadeInUp 0.6s ease-out 0.4s backwards;
}

.trust-label {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

.trust-logos {
    display: flex;
    gap: var(--space-xl);
}

.trust-logo {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-text-muted);
    opacity: 0.6;
    transition: opacity var(--transition-fast);
}

.trust-logo:hover {
    opacity: 1;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.visual-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Stat Cards */
.stat-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    z-index: 10;
    transition: transform var(--transition-slow);
    animation: cardFloat 3s ease-in-out infinite;
}

.stat-card-1 {
    top: 5%;
    right: 5%;
    animation-delay: 0s;
}

.stat-card-2 {
    bottom: 15%;
    left: -5%;
    animation-delay: 1s;
}

.stat-card-3 {
    bottom: 5%;
    right: 15%;
    animation-delay: 2s;
}

@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.stat-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-lg);
    color: var(--color-accent-blue);
}

.stat-icon-green {
    background: rgba(16, 185, 129, 0.2);
    color: var(--color-accent-green);
}

.stat-icon-purple {
    background: rgba(139, 92, 246, 0.2);
    color: var(--color-accent-purple);
}

.stat-icon svg {
    width: 22px;
    height: 22px;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--color-text-primary);
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-2xl);
    overflow: hidden;
}

.image-glow {
    position: absolute;
    inset: -20%;
    background: var(--gradient-glow);
    z-index: -1;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* Background Details */
.bg-details {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.bg-shape {
    position: absolute;
    color: var(--color-accent-purple);
    font-weight: 500;
    pointer-events: none;
    z-index: -1;
}

.shape-plus {
    font-size: 24px;
    font-family: monospace;
    font-weight: 900;
}

.shape-circle {
    width: 14px;
    height: 14px;
    border: 2px solid var(--color-accent-purple);
    border-radius: 50%;
    opacity: 0.6;
}

.shape-square {
    width: 12px;
    height: 12px;
    border: 2px solid var(--color-accent-purple);
    transform: rotate(45deg);
    opacity: 0.6;
}

/* Individual Shapes */
.shape-1 {
    top: 15%;
    left: 8%;
    animation: float-slow 12s ease-in-out infinite;
    opacity: 0.8;
}

.shape-2 {
    top: 25%;
    right: 12%;
    animation: float-slow 15s ease-in-out infinite reverse;
    font-size: 32px;
    opacity: 0.7;
}

.shape-3 {
    top: 45%;
    left: 15%;
    animation: float-slow 18s ease-in-out infinite;
    width: 18px;
    height: 18px;
    opacity: 0.6;
}

.shape-4 {
    top: 60%;
    right: 8%;
    animation: float-slow 14s ease-in-out infinite reverse;
    opacity: 0.7;
}

.shape-5 {
    bottom: 20%;
    left: 10%;
    animation: float-slow 16s ease-in-out infinite;
    font-size: 24px;
    opacity: 0.8;
}

.shape-6 {
    bottom: 30%;
    right: 15%;
    animation: float-slow 20s ease-in-out infinite reverse;
    width: 22px;
    height: 22px;
    opacity: 0.5;
}

.shape-7 {
    top: 10%;
    left: 50%;
    animation: float-slow 22s ease-in-out infinite;
    opacity: 0.6;
}

.shape-8 {
    bottom: 15%;
    right: 30%;
    animation: float-slow 19s ease-in-out infinite reverse;
    font-size: 30px;
    opacity: 0.7;
}

/* Additional positions for density */
.shape-9 {
    top: 5%;
    left: 60%;
    animation: float-slow 17s ease-in-out infinite;
    opacity: 0.5;
}

.shape-10 {
    top: 80%;
    right: 5%;
    animation: float-slow 21s ease-in-out infinite reverse;
    width: 10px;
    height: 10px;
    opacity: 0.4;
}

.shape-11 {
    top: 35%;
    right: 35%;
    animation: float-slow 19s ease-in-out infinite;
    font-size: 20px;
    opacity: 0.6;
}

.shape-12 {
    bottom: 5%;
    left: 40%;
    animation: float-slow 23s ease-in-out infinite reverse;
    opacity: 0.5;
}

@keyframes float-slow {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.8;
    }

    50% {
        transform: translate(20px, -20px) rotate(10deg);
        opacity: 0.5;
    }
}

.hero-image {
    width: 100%;
    height: auto;
    max-width: 1200px;
    object-fit: contain;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
    animation: fadeInUp 0.6s ease-out 0.6s backwards;
}

.scroll-arrow {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-arrow svg {
    width: 20px;
    height: 20px;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        order: 1;
    }

    .hero-visual {
        order: 0;
    }

    .hero-cta {
        justify-content: center;
    }

    .trust-logos {
        justify-content: center;
    }

    .hero-title {
        font-size: var(--font-size-4xl);
    }

    .stat-card-2 {
        left: 5%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: var(--font-size-3xl);
    }

    .hero-subtitle {
        font-size: var(--font-size-base);
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn-lg {
        width: 100%;
        max-width: 280px;
    }

    .stat-card {
        padding: var(--space-sm) var(--space-md);
    }

    .stat-icon {
        width: 36px;
        height: 36px;
    }

    .stat-value {
        font-size: var(--font-size-lg);
    }

    .stat-label {
        font-size: var(--font-size-sm);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: var(--font-size-2xl);
    }

    .stat-card-1 {
        top: 0;
        right: 0;
    }

    .stat-card-2 {
        left: 0;
    }

    .stat-card-3 {
        right: 0;
    }

    .trust-logos {
        flex-wrap: wrap;
    }
}

/* ============================================
   HORIZONTAL BLOCKS SECTION
   ============================================ */

.blocks-section {
    position: relative;
    padding: var(--space-4xl) 0;
    background-color: var(--color-bg-secondary);
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.h-block {
    padding: var(--space-4xl) 0;
    position: relative;
    overflow: hidden;
}

.h-block:nth-child(odd) {
    background-color: var(--color-bg-primary);
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.h-block:nth-child(even) {
    background-color: var(--color-bg-secondary);
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.h-block.h-block-dark {
    background-color: #0f172a;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
}

.h-block.h-block-dark .h-block-title {
    color: white;
}

.h-block.h-block-dark .h-block-text,
.h-block.h-block-dark .h-block-features li {
    color: #cbd5e1;
}

.h-block-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.h-block-alt .h-block-container {
    direction: rtl;
}

.h-block-alt .h-block-content,
.h-block-alt .h-block-visual {
    direction: ltr;
}

/* Block Content */
.h-block-content {
    max-width: 540px;
}

.h-block-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) var(--space-md);
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-accent-purple);
    margin-bottom: var(--space-lg);
}

.h-block-badge svg {
    width: 16px;
    height: 16px;
}

.h-block-title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--color-text-primary);
    margin-bottom: var(--space-lg);
}

.h-block-text {
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.h-block-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.h-block-features li {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: var(--font-size-base);
    color: var(--color-text-secondary);
}

.h-block-features li svg {
    width: 20px;
    height: 20px;
    color: var(--color-accent-green);
    flex-shrink: 0;
}

/* Block Visual */
.h-block-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.h-block-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
}

.h-block-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    z-index: 0;
}

.h-block-glow-purple {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.5) 0%, transparent 70%);
}

.h-block-glow-blue {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.5) 0%, transparent 70%);
}

.h-block-glow-cyan {
    background: radial-gradient(circle, rgba(34, 211, 238, 0.5) 0%, transparent 70%);
}

.h-block-image {
    position: relative;
    width: 100%;
    height: auto;
    object-fit: contain;
    z-index: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .h-block-container {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }

    .h-block-alt .h-block-container {
        direction: ltr;
    }

    .h-block-content {
        max-width: 100%;
        order: 1;
    }

    .h-block-visual {
        order: 0;
    }

    .h-block-features {
        align-items: center;
    }

    .h-block-badge {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .h-block {
        padding: var(--space-3xl) 0;
    }

    .h-block-title {
        font-size: var(--font-size-2xl);
    }

    .h-block-text {
        font-size: var(--font-size-base);
    }

    .h-block-image-wrapper {
        max-width: 320px;
    }
}

/* ============================================
   BENTO GRID SECTION
   ============================================ */

.bento-section {
    position: relative;
    padding: var(--space-4xl) 0;
    background-color: var(--color-bg-secondary);
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.bento-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.bento-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.bento-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-accent-purple);
    margin-bottom: var(--space-lg);
}

.bento-title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--color-text-primary);
    margin-bottom: var(--space-md);
}

.bento-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-primary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Bento Grid Layout - 3x3 perfect square - EXPANDED */
/* Bento Grid Layout - 3x3 perfect square - EXPANDED */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: var(--space-xl);
    max-width: 1600px;
    margin: 0 auto;
}

/* Bento Box Base */
/* Bento Box Base */
.bento-box {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    background: var(--color-bg-primary);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    display: flex;
    min-height: 500px;
    /* Increased size significantly */
}

.bento-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(139, 92, 246, 0.1);
}

/* Explicit grid placement for the pattern */
.bento-grid .bento-box:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1;
}

.bento-grid .bento-box:nth-child(2) {
    grid-column: 3;
    grid-row: 1;
}

.bento-grid .bento-box:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
}

.bento-grid .bento-box:nth-child(4) {
    grid-column: 2 / 4;
    grid-row: 2;
}

.bento-grid .bento-box:nth-child(5) {
    grid-column: 1 / 3;
    grid-row: 3;
}

.bento-grid .bento-box:nth-child(6) {
    grid-column: 3;
    grid-row: 3;
}

/* Horizontal boxes - side by side layout */
.bento-horizontal {
    flex-direction: row;
}

.bento-horizontal .bento-image-area {
    width: 55%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    background: var(--color-bg-tertiary);
}

.bento-horizontal .bento-content {
    width: 45%;
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Backgrounds defined by nth-child rules above */
}

/* Square boxes - stacked layout */
.bento-square {
    flex-direction: column;
}

.bento-square .bento-image-area {
    height: 60%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
    background: var(--color-bg-tertiary);
}

/* Bento Grid Content Colors - More Visible */
/* Bento Grid Content Colors - Purple, Blue, Yellow cycle */
.bento-grid .bento-box:nth-child(1) .bento-content {
    background: #bfdbfe;
    /* Blue 200 */
    font-family: 'Space Grotesk', sans-serif;
}

.bento-grid .bento-box:nth-child(2) .bento-content {
    background: #fde047;
    /* Yellow 300 */
    font-family: 'Space Grotesk', sans-serif;
}

.bento-grid .bento-box:nth-child(3) .bento-content {
    background: #d8b4fe;
    /* Lighter Purple (Purple 300/250) */
    font-family: 'Space Grotesk', sans-serif;
    /* Custom Font */
}

.bento-grid .bento-box:nth-child(4) .bento-content {
    background: #bfdbfe;
    /* Blue 200 */
    font-family: 'Space Grotesk', sans-serif;
}

.bento-grid .bento-box:nth-child(5) .bento-content {
    background: #fde047;
    /* Yellow 300 */
    font-family: 'Space Grotesk', sans-serif;
}

.bento-grid .bento-box:nth-child(6) .bento-content {
    background: #d8b4fe;
    /* Lighter Purple */
    font-family: 'Space Grotesk', sans-serif;
}

.bento-square .bento-content {
    height: 40%;
    padding: var(--space-md) var(--space-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Image styling */
.bento-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform var(--transition-slow);
    transform-origin: center;
}

.bento-box:hover .bento-image {
    transform: scale(1.05);
}

/* Content styling */
.bento-box-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--space-md);
    line-height: 2.2;
    /* Space between highlight lines */
}

.bento-box-text {
    font-size: 1.25rem;
    /* Increased visibility */
    color: var(--color-text-primary);
    line-height: 1.6;
    margin-top: 10px;
}

/* Horizontal boxes have larger titles and text */
.bento-horizontal .bento-box-title {
    font-size: 2.25rem;
    line-height: 2.0;
}

.bento-horizontal .bento-box-text {
    font-size: 1.5rem;
}

/* Responsive */
@media (max-width: 1000px) {
    .bento-grid {
        max-width: 100%;
        gap: var(--space-lg);
    }

    .bento-horizontal .bento-image-area {
        width: 50%;
        padding: var(--space-md);
    }

    .bento-horizontal .bento-content {
        width: 50%;
        padding: var(--space-lg);
    }

    .bento-horizontal .bento-box-title {
        font-size: var(--font-size-lg);
    }

    .bento-box-title {
        font-size: var(--font-size-base);
    }

    .nav-links {
        display: none;
    }

    .bento-box-text {
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        aspect-ratio: auto;
        gap: var(--space-md);
    }

    /* Reset all explicit placements */
    .bento-grid .bento-box:nth-child(1),
    .bento-grid .bento-box:nth-child(2),
    .bento-grid .bento-box:nth-child(3),
    .bento-grid .bento-box:nth-child(4),
    .bento-grid .bento-box:nth-child(5),
    .bento-grid .bento-box:nth-child(6) {
        grid-column: auto;
        grid-row: auto;
    }

    /* All boxes become stacked on tablet */
    .bento-horizontal,
    .bento-square {
        flex-direction: column;
        aspect-ratio: 1;
    }

    .bento-horizontal .bento-image-area,
    .bento-square .bento-image-area {
        width: 100%;
        height: 60%;
    }

    .bento-horizontal .bento-content,
    .bento-square .bento-content {
        width: 100%;
        height: 40%;
        padding: var(--space-md);
    }

    .bento-horizontal .bento-box-title,
    .bento-box-title {
        font-size: var(--font-size-base);
    }
}

@media (max-width: 500px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-horizontal,
    .bento-square {
        aspect-ratio: 4/3;
    }

    .bento-title {
        font-size: var(--font-size-3xl);
    }

    .bento-subtitle {
        font-size: var(--font-size-base);
    }
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */

.products-section {
    position: relative;
    padding: var(--space-4xl) 0;
    background-color: #d4ebf8;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.products-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.products-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.products-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-accent-blue);
    margin-bottom: var(--space-lg);
}

.products-title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--color-text-primary);
    margin-bottom: var(--space-md);
}

.products-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-primary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

/* Product Card */
.product-card {
    display: flex;
    flex-direction: column;
    background: var(--color-bg-primary);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

/* Product Image Area */
.product-image-area {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-2xl);
    background: var(--color-bg-tertiary);
    min-height: 400px;
    /* Increased from 280px */
}

.product-image {
    max-width: 100%;
    max-height: 320px;
    /* Increased from 220px */
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-image {
    transform: scale(1.08);
}

/* Product Content */
/* Product Card Colors */
/* Product Card Colors - More Visible */
.products-grid .product-card:nth-child(1) .product-content {
    background: #bfdbfe;
    /* Blue 200 */
    font-family: 'Space Grotesk', sans-serif;
}

.products-grid .product-card:nth-child(2) .product-content {
    background: #fde047;
    /* Yellow 300 */
    font-family: 'Space Grotesk', sans-serif;
}

.products-grid .product-card:nth-child(3) .product-content {
    background: #d8b4fe;
    /* Lighter Purple */
    font-family: 'Space Grotesk', sans-serif;
}

.product-content {
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--space-md);
    line-height: 2.0;
    /* Space for highlights */
}

.product-description {
    font-size: 1.25rem;
    /* Increased for visibility */
    color: var(--color-text-primary);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

/* Product Features */
.product-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    flex-grow: 1;
}

.product-features li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: 1.1rem;
    /* Increased visibility */
    color: var(--color-text-primary);
    line-height: 1.8;
    /* Space for feature highlights */
    margin-bottom: 8px;
}

.product-features li svg {
    width: 18px;
    height: 18px;
    color: var(--color-accent-green);
    flex-shrink: 0;
}

/* Product CTA */
.product-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-text-primary);
    background: white;
    /* White background */
    padding: 10px 24px;
    /* Pill padding */
    border-radius: 9999px;
    /* Pill shape */
    border: 1px solid rgba(0, 0, 0, 0.08);
    /* Subtle border for visibility on light backgrounds */
    margin-top: auto;
    width: fit-content;
    /* Ensure it wraps text only */
    transition: all var(--transition-base);
    /* Transition all properties */
}

.product-cta:hover {
    color: var(--color-accent-purple);
    border-color: rgba(139, 92, 246, 0.4);
    /* Purple border */
    gap: var(--space-md);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    /* Subtle shadow on hover */
}

.product-cta svg {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-fast);
}

.product-cta:hover svg {
    transform: translate(2px, -2px);
}

/* Responsive */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .product-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

    .products-title {
        font-size: var(--font-size-3xl);
    }

    .products-subtitle {
        font-size: var(--font-size-base);
    }

    .product-image-area {
        padding: var(--space-xl);
        min-height: 220px;
    }

    .product-image {
        max-height: 180px;
    }
}

/* ============================================
   HONEYCOMB INTEGRATIONS SECTION
   ============================================ */

.honeycomb-section {
    position: relative;
    padding: var(--space-4xl) 0;
    background-color: #0f172a;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    overflow: hidden;
}

.honeycomb-section .honeycomb-title {
    color: white;
}

.honeycomb-section .honeycomb-subtitle {
    color: #cbd5e1;
}

.honeycomb-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.honeycomb-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.honeycomb-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-accent-purple);
    margin-bottom: var(--space-lg);
}

.honeycomb-title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--color-text-primary);
    margin-bottom: var(--space-md);
}

.honeycomb-subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Carousel Container */
.honeycomb-carousel {
    overflow: hidden;
    padding: var(--space-xl) 0;
}

.honeycomb-track {
    display: flex;
    flex-direction: column;
    gap: -20px;
}

/* Honeycomb Rows */
.honeycomb-row {
    display: flex;
    gap: 40px;
    /* Increased spacing */
    will-change: transform;
    padding-left: 0;
    margin-bottom: 10px;
    /* Spacing between rows */
}

/* Offset for middle row */
.honeycomb-row:nth-child(2) {
    margin-left: 90px;
    /* Half of (140px + 40px) */
}

/* slideLeft Animation - Calculated for 10 items of (140px + 40px) = 1800px */
.honeycomb-row {
    animation: slideLeft 30s linear infinite;
}

.honeycomb-row-offset {
    animation: slideLeft 30s linear infinite;
}

@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }

    /* 8 items * (140px width + 40px gap) = 1440px */
    100% {
        transform: translateX(-1440px);
    }

    /* 10 items * (140px width + 40px gap) */
}

/* Hexagon Styling - White, Rounded, Spaced */
/* Hexagon Styling - White, Rounded, Spaced */
.hexagon {
    position: relative;
    width: 140px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 1;
    background: transparent;
    transition: transform 0.3s ease;
}

/* The actual white rounded hexagon shape */
.hexagon::before {
    content: '';
    position: absolute;
    inset: 1px;
    /* Slight inset to prevent edge clipping artifacts */
    background: #ffffff;
    /* Smooth Rounded Hexagon Path - Clean Loop */
    clip-path: path("M 70 5 L 131.3 35 Q 140 40 140 50 V 110 Q 140 120 131.3 125 L 70 155 Q 70 160 69 155 L 8.7 125 Q 0 120 0 110 V 50 Q 0 40 8.7 35 L 70 5 Q 70 0 71 5 Z");
    /* Wait, let me use the calculated one precisely */
    /* M 78.7 5 L 131.3 35 Q 140 40 140 50 V 110 Q 140 120 131.3 125 L 78.7 155 Q 70 160 61.3 155 L 8.7 125 Q 0 120 0 110 V 50 Q 0 40 8.7 35 L 61.3 5 Q 70 0 78.7 5 Z */
    clip-path: path("M 78.7 5 L 131.3 35 Q 140 40 140 50 V 110 Q 140 120 131.3 125 L 78.7 155 Q 70 160 61.3 155 L 8.7 125 Q 0 120 0 110 V 50 Q 0 40 8.7 35 L 61.3 5 Q 70 0 78.7 5 Z");
    z-index: -1;
    transition: background-color 0.3s ease;
    box-shadow: none;
    /* Apply shadow here to avoid parent artifacts */
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    backface-visibility: hidden;
}

/* Make empty hexagons white too */
.hexagon.hex-empty::before {
    background: #ffffff;
}

/* Hover Effects */
.hexagon:hover {
    transform: scale(1.05);
    z-index: 10;
}

.hexagon:hover::before {
    background: #ffffff;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2));
}

.hexagon img {
    width: 50%;
    height: 50%;
    object-fit: contain;
    filter: none;
    z-index: 1;
    pointer-events: none;
}

/* Responsive */
@media (max-width: 768px) {
    .honeycomb-title {
        font-size: var(--font-size-3xl);
    }

    .honeycomb-subtitle {
        font-size: var(--font-size-base);
    }
}


/* ============================================
   SETUP SECTION
   ============================================ */

.setup-section {
    position: relative;
    padding: var(--space-4xl) 0;
    background-color: var(--color-bg-secondary);
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.setup-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.setup-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.setup-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-accent-purple);
    margin-bottom: var(--space-lg);
}

.setup-title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--color-text-primary);
    margin-bottom: var(--space-md);
}

.setup-subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Setup Blocks Container */
.setup-blocks {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

/* Individual Setup Block */
.setup-block {
    position: relative;
    background: var(--color-bg-primary);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.setup-block:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Giant Step Number */
.setup-step-number {
    position: absolute;
    top: var(--space-lg);
    left: var(--space-xl);
    font-size: 6rem;
    font-weight: 900;
    color: #fec12e;
    line-height: 1;
    z-index: 1;
    opacity: 0.9;
    text-shadow: 2px 2px 8px rgba(254, 193, 46, 0.3);
}

/* Inner Block Layout */
.setup-block-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    min-height: 320px;
    padding: var(--space-2xl);
    padding-left: calc(var(--space-xl) + 160px);
}

/* Content Side */
.setup-block-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    position: relative;
    z-index: 2;
}

.setup-icon {
    width: 160px;
    height: 160px;
    object-fit: contain;
}

.setup-block-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-text-primary);
}

.setup-block-text {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    max-width: 400px;
}

/* Visual Side */
.setup-block-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.setup-illustration {
    max-width: 100%;
    max-height: 450px;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 1024px) {
    .setup-step-number {
        font-size: 5rem;
    }

    .setup-block-inner {
        padding-left: calc(var(--space-xl) + 140px);
        min-height: 280px;
    }
}

@media (max-width: 768px) {
    .setup-title {
        font-size: var(--font-size-3xl);
    }

    .setup-subtitle {
        font-size: var(--font-size-base);
    }

    .setup-step-number {
        font-size: 3.5rem;
        top: var(--space-md);
        left: var(--space-md);
    }

    .setup-block-inner {
        grid-template-columns: 1fr;
        padding: var(--space-xl);
        padding-top: calc(var(--space-xl) + 60px);
        gap: var(--space-xl);
        min-height: auto;
    }

    .setup-block-content {
        text-align: center;
        align-items: center;
    }

    .setup-block-text {
        max-width: 100%;
    }

    .setup-illustration {
        max-height: 220px;
    }
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    position: relative;
    padding: var(--space-4xl) 0;
    background-color: var(--color-bg-primary);
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.faq-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.faq-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-accent-purple);
    margin-bottom: var(--space-lg);
}

.faq-title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--color-text-primary);
    margin-bottom: var(--space-md);
}

.faq-subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

/* FAQ Grid */
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

/* FAQ Item */
.faq-item {
    background: var(--color-bg-secondary);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: box-shadow var(--transition-base);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    padding: var(--space-lg) var(--space-xl);
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: background var(--transition-fast);
}

.faq-question:hover {
    background: rgba(139, 92, 246, 0.05);
}

.faq-question span {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--color-text-primary);
}

.faq-question svg {
    width: 24px;
    height: 24px;
    color: var(--color-text-muted);
    flex-shrink: 0;
    transition: transform var(--transition-base), color var(--transition-fast);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: var(--color-accent-purple);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base), padding var(--transition-base);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 var(--space-xl) var(--space-lg);
    font-size: var(--font-size-base);
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-title {
        font-size: var(--font-size-3xl);
    }

    .faq-subtitle {
        font-size: var(--font-size-base);
    }

    .faq-question {
        padding: var(--space-md) var(--space-lg);
    }

    .faq-question span {
        font-size: var(--font-size-base);
    }

    .faq-answer p {
        padding: 0 var(--space-lg) var(--space-md);
        font-size: var(--font-size-sm);
    }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: #0f172a;
    color: #e2e8f0;
    padding: var(--space-xl) 0 var(--space-lg);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: var(--space-4xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Brand */
.footer-brand {
    max-width: 320px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-lg);
}

.footer-logo .logo-icon {
    background: transparent;
}

.footer-tagline {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    color: var(--color-text-muted);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Footer Links */
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.footer-column h4 {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: white;
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-column a {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: white;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-xl);
}

.footer-bottom p {
    font-size: var(--font-size-sm);
    color: #64748b;
}

.footer-legal {
    display: flex;
    gap: var(--space-xl);
}

.footer-legal a {
    font-size: var(--font-size-sm);
    color: #64748b;
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: #94a3b8;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }

    .footer-brand {
        max-width: 100%;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-lg);
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--space-md);
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* ============================================
   BACKGROUND ORBS (Global/Section)
   ============================================ */

.section-bg-lights {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.4), rgba(139, 92, 246, 0.3));
    top: -10%;
    right: 5%;
    /* Moved to right */
    left: auto;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(168, 85, 247, 0.2));
    bottom: -5%;
    left: -5%;
    animation-delay: -5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3), rgba(6, 182, 212, 0.2));
    top: 30%;
    right: -5%;
    /* Moved to right */
    left: auto;
    animation-delay: -10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -30px) scale(1.05);
    }

    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }

    75% {
        transform: translate(20px, 30px) scale(1.02);
    }
}

.blocks-section {
    position: relative;
    overflow: hidden;
}

/* ============================================
   PRICING SECTION
   ============================================ */

.pricing-section {
    padding: var(--space-4xl) 0;
    background: var(--color-bg-primary);
    position: relative;
    overflow: hidden;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.pricing-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: rgba(139, 92, 246, 0.1);
    color: var(--color-accent-purple);
    font-size: var(--font-size-sm);
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

.pricing-title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    margin-bottom: var(--space-md);
}

.pricing-subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.pricing-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    overflow: visible;
    /* Changed to visible for labels */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.pricing-card.best-choice {
    border: 2px solid transparent;
    background-image: linear-gradient(#fff, #fff), var(--gradient-primary);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transform: scale(1.03);
    /* Slightly larger */
    z-index: 2;
    background-color: transparent;
    /* Avoid base white leaking through */
}

/* Fix for the white gap in corners */
.pricing-card.best-choice .plan-cta {
    border-radius: 0 0 22px 22px;
    /* 24px outer radius - 2px border = 22px inner radius */
}

.pricing-card.best-choice:hover {
    transform: translateY(-8px) scale(1.03);
}

.best-choice-label {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
    white-space: nowrap;
}

.pricing-card-body {
    padding: 40px;
    flex-grow: 1;
}

/* Plan Header */
.plan-header {
    margin-bottom: 30px;
}

.plan-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 10px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 15px;
}

.plan-price .currency {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-right: 4px;
}

.plan-price .amount {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--color-text-primary);
    line-height: 1;
}

.plan-price .period {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-left: 6px;
    font-weight: 500;
}

.old-price {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    text-decoration: line-through;
    margin-left: 8px;
    opacity: 0.7;
}

.plan-desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.popular-badge {
    background: #0f172a;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
    min-height: 32px;
}

/* Divider */
.plan-divider {
    height: 1px;
    background: linear-gradient(to right, #db2777 0%, rgba(219, 39, 119, 0.1) 100%);
    margin-bottom: 30px;
    opacity: 0.2;
}

.pricing-card.popular .plan-divider {
    background: linear-gradient(to right, #3b82f6 0%, rgba(59, 130, 246, 0.1) 100%);
}

/* Features */
.plan-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.plan-features li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 4px;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

/* Theme Colors for Icons */
.pricing-card .feature-icon {
    color: #db2777;
    /* Default pinkish */
}

.pricing-card.popular .feature-icon {
    color: #3b82f6;
    /* Blue */
}

.feature-content strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 4px;
}

.feature-content p {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

/* CTA Button */
.plan-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 24px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: opacity 0.3s ease;
    color: white;
    margin-top: auto;
    border-radius: 0 0 24px 24px;
    /* Matches the card's rounded corners */
}

.plan-cta:hover {
    opacity: 0.9;
}

.plan-cta svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.plan-cta:hover svg {
    transform: translateX(5px);
}

/* Essential Button (Pink/Purple) */
.plan-cta-personal {
    background: linear-gradient(135deg, #f472b6 0%, #a855f7 100%);
}

/* Automazione Pro Button (Purple/Blue) */
.plan-cta-pro {
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
}

/* Suite Azienda Button (Light Blue/Blue) */
.plan-cta-business {
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.best-choice {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.best-choice {
        transform: scale(1);
    }
}

/* Pricing Toggle */
.hidden-plan {
    display: none !important;
}

.pricing-toggle-wrapper {
    display: flex;
    justify-content: center;
    margin: 2rem 0 5rem 0;
    /* Increased bottom margin from 3rem to 5rem */
}

.pricing-toggle {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    padding: 0.375rem;
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.toggle-btn {
    background: transparent;
    color: var(--color-text-secondary);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1;
}

.toggle-btn:hover {
    color: var(--color-text-primary);
}

.toggle-btn.active {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

/* --- Scroll Reveal Animations --- */
.reveal {
    opacity: 0 !important;
    transform: translateY(30px) !important;
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
    visibility: hidden !important;
}

.reveal.active {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
}

.reveal-stagger>* {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-stagger.active>* {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.active>*:nth-child(1) {
    transition-delay: 0.1s;
}

.reveal-stagger.active>*:nth-child(2) {
    transition-delay: 0.2s;
}

.reveal-stagger.active>*:nth-child(3) {
    transition-delay: 0.3s;
}

.reveal-stagger.active>*:nth-child(4) {
    transition-delay: 0.4s;
}

.reveal-stagger.active>*:nth-child(5) {
    transition-delay: 0.5s;
}