:root {
    --primary: #7262FA;
    --primary-hover: #5a4de6;
    --primary-light: #F2EFFF;
    --primary-glow: rgba(114, 98, 250, 0.15);
    --secondary: #25D366;
    --text-main: #111111;
    --text-muted: #666666;
    --text-light: #999999;
    --border: #EAEAEA;
    --bg-main: #FFFFFF;
    --bg-alt: #FAFAFC;
    --bg-card: #FFFFFF;
    --page-max-width: 1440px;
    --page-gutter: clamp(24px, 5vw, 72px);
    --section-y: clamp(56px, 5vw, 80px);
    --section-y-compact: clamp(40px, 4vw, 64px);
    
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.06);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.08);
    --shadow-xl: 0 24px 64px rgba(114, 98, 250, 0.12);
    
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    background: #F7F3F0;
}

/* Global Background */
.main-wrapper {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    isolation: isolate;
    background: #F7F3F0;
}

.global-background {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    height: 100vh;
    width: 100vw;
    background-color: #F7F3F0;
    overflow: hidden;
    pointer-events: none;
}

.gb-shape {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: multiply;
}

.gb-shape-1 {
    top: -10%;
    left: -10%;
    height: 70vw;
    width: 70vw;
    max-height: 800px;
    max-width: 800px;
    background-color: #C6BBF7;
    opacity: 0.4;
    filter: blur(120px);
}

.gb-shape-2 {
    top: 10%;
    right: -10%;
    height: 60vw;
    width: 60vw;
    max-height: 700px;
    max-width: 700px;
    background-color: #B8D5F5;
    opacity: 0.5;
    filter: blur(120px);
}

.gb-shape-3 {
    top: 60%;
    left: -15%;
    height: 80vw;
    width: 80vw;
    max-height: 900px;
    max-width: 900px;
    background-color: #D1C9F3;
    opacity: 0.4;
    filter: blur(150px);
}

.gb-shape-4 {
    bottom: -20%;
    right: 5%;
    height: 60vw;
    width: 60vw;
    max-height: 700px;
    max-width: 700px;
    background-color: #B8D5F5;
    opacity: 0.4;
    filter: blur(120px);
}

.relative-z10 {
    position: relative;
    z-index: 10;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

.container {
    width: 100%;
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--page-gutter);
}

.container-sm {
    max-width: 800px;
}

.text-center { text-align: center; }
.text-purple { color: var(--primary); }
.text-green { color: var(--secondary); }
.text-gray { color: var(--text-muted); }

/* Typography */
h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

p {
    color: var(--text-muted);
}

.icon-xs { width: 14px; height: 14px; }
.icon-sm { width: 18px; height: 18px; }
.icon-md { width: 24px; height: 24px; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
}

.btn-primary {
    position: relative;
    background: transparent;
    color: white;
    border: none;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 10px 30px -10px rgba(129, 140, 248, 0.5);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent 0%,
        transparent 35%,
        rgba(255, 255, 255, 0.9) 50%,
        transparent 65%,
        transparent 100%
    );
    animation: shimmer-spin 3s linear infinite;
    z-index: -2;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 100px;
    background: linear-gradient(135deg, rgba(129, 140, 248, 0.75) 0%, rgba(99, 102, 241, 0.75) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: -1;
}

@keyframes shimmer-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 15px 35px -10px rgba(129, 140, 248, 0.7);
}

.btn-outline {
    background: white;
    color: var(--text-main);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    border-color: #ccc;
    background: var(--bg-alt);
}

.play-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--text-muted);
    border: 1px solid var(--border);
}

.hero .badge {
    background: var(--primary-light);
    color: var(--primary);
    border: none;
}
.badge-light {
    background: #F3F6FF;
    color: #4A6CF7;
    border: none;
}
.badge-blue {
    background: rgba(114, 98, 250, 0.1);
    color: var(--primary);
    border: none;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 24px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.nav-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    max-width: 1100px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-radius: 100px;
    padding: 12px 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.logo:hover {
    color: var(--primary);
}

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

.nav-links a {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.nav-menu-toggle,
.mobile-nav-menu {
    display: none;
}

.login {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}

.login:hover {
    color: var(--text-main);
}

/* Hero Section */
.hero {
    padding: 120px 0 100px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 3rem;
}

/* Trust Section */
.trust-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.group-avatars {
    display: flex;
    align-items: center;
}

.avatar-wrapper {
    position: relative;
    width: 36px;
    height: 36px;
    margin-left: -12px;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), margin 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    z-index: 1;
}

.avatar-wrapper:first-child {
    margin-left: 0;
}

.avatar-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid white;
    object-fit: cover;
    background: var(--bg-main);
    position: relative;
    z-index: 2;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: transparent;
    font-size: 0;
}

/* Hover Effects */
.group-avatars:hover .avatar-wrapper {
    margin-left: -6px; /* Spread slightly */
}

.group-avatars .avatar-wrapper:first-child {
    margin-left: 0;
}

.avatar-wrapper:hover {
    z-index: 10;
}

.avatar-wrapper:hover img {
    transform: translateY(-4px) scale(1.15);
}

/* Tooltip */
.avatar-tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: #111;
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    white-space: nowrap;
    z-index: 11;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.avatar-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: #111 transparent transparent transparent;
}

.avatar-wrapper:hover .avatar-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.trust-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stars {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #FFB800;
}

.star-filled {
    fill: #FFB800;
    width: 14px;
    height: 14px;
}

.score {
    font-weight: 600;
    color: var(--text-main);
    margin-left: 4px;
}

.trust-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Hero Visual & Mockups */
.hero-visual {
    position: relative;
    height: 650px;
}

@media (min-width: 1025px) and (max-height: 980px) {
    .hero-visual {
        transform: scale(0.9);
        transform-origin: top right;
    }
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
}

.mockup {
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    z-index: 1;
}

.shadow-lg {
    box-shadow: var(--shadow-xl);
}

/* Calendar Mockup */
.mockup-calendar {
    top: 0;
    right: 0;
    width: 580px;
    height: 480px;
    display: flex;
}

.mockup-sidebar {
    width: 140px;
    border-right: 1px solid var(--border);
    padding: 20px 12px;
    display: flex;
    flex-direction: column;
    background: rgba(250, 250, 252, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.logo-small {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 24px;
    padding: 0 8px;
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    font-size: 0.75rem;
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    cursor: pointer;
}

.menu-item i { width: 14px; height: 14px; }

.menu-item.active {
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 500;
}

.sidebar-bottom {
    margin-top: auto;
}

.premium-box {
    background: var(--bg-main);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.premium-box .star-filled {
    color: #FFB800;
}

.premium-title {
    font-size: 0.75rem;
    font-weight: 600;
    display: block;
}

.premium-desc {
    font-size: 0.65rem;
    color: var(--text-muted);
    line-height: 1.2;
}

.premium-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 20px;
    height: 20px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-main {
    flex: 1;
    padding: 24px;
    background: transparent;
    display: flex;
    flex-direction: column;
}

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

.mockup-header h2 {
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.mockup-header p {
    font-size: 0.8rem;
}

.mockup-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
}

.avatar-sm {
    width: 28px;
    height: 28px;
    border-radius: 50%;
}

.calendar-ui {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cal-header {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cal-header h3 {
    font-size: 0.9rem;
    margin: 0;
}

.btn-mockup-light {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 4px 8px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    border: 1px solid var(--border);
}

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    flex: 1;
    background: var(--border);
    gap: 1px;
}

.cal-day {
    padding: 8px;
    font-size: 0.65rem;
    font-weight: 500;
    text-align: center;
    background: var(--bg-alt);
    color: var(--text-muted);
}

.cal-date {
    background: rgba(255, 255, 255, 0.4);
    padding: 6px;
    font-size: 0.7rem;
    min-height: 50px;
    color: var(--text-main);
}

.cal-date.empty {
    color: var(--text-light);
}

.event {
    font-size: 0.55rem;
    padding: 4px;
    border-radius: 4px;
    margin-top: 4px;
    line-height: 1.2;
}

.event.tiktok {
    background: #E8F0FE;
    color: #1A73E8;
    border-left: 2px solid #1A73E8;
}

.event.story {
    background: #FCE8E6;
    color: #D93025;
    border-left: 2px solid #D93025;
}

.event.event-blank {
    background: var(--bg-alt);
    height: 16px;
    border-radius: 4px;
}

/* Analytics Mockup */
.mockup-analytics {
    bottom: 80px;
    right: -30px;
    width: 360px;
    padding: 20px;
    z-index: 2;
}

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

.analytics-header h3 {
    font-size: 0.9rem;
    margin: 0;
}

.dropdown {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--bg-alt);
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.analytics-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
}

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

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

.stat .value {
    font-size: 1.25rem;
    font-weight: 700;
}

.stat .change {
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    gap: 2px;
}

.stat .change.positive {
    color: var(--secondary);
    background: rgba(37, 211, 102, 0.1);
    padding: 2px 6px;
    border-radius: 100px;
    width: fit-content;
}

.analytics-chart {
    height: 120px;
    position: relative;
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
    margin-left: 20px;
    margin-bottom: 10px;
}

.analytics-chart::before {
    content: "200k";
    position: absolute;
    left: -24px;
    top: -5px;
    font-size: 0.6rem;
    color: var(--text-light);
}
.analytics-chart::after {
    content: "0";
    position: absolute;
    left: -12px;
    bottom: -5px;
    font-size: 0.6rem;
    color: var(--text-light);
}

.chart-line {
    width: 100%;
    height: 100%;
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.6rem;
    color: var(--text-light);
    margin-left: 20px;
    margin-top: 8px;
}

/* Ideas Mockup */
.mockup-ideas {
    bottom: 20px;
    left: 20px;
    width: 280px;
    padding: 20px;
    z-index: 3;
}

.ideas-header h3 {
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.search-bar-mini {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.text-placeholder {
    font-size: 0.75rem;
    color: var(--text-light);
}

.idea-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.tag {
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 100px;
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 500;
}

.tag-outline {
    background: var(--bg-main);
    border: 1px solid var(--border);
    color: var(--text-muted);
}

.view-all {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Section Sindrome */
.section-sindrome {
    padding: 100px 0;
    background: transparent;
}

.section-sindrome p {
    font-size: 1.1rem;
    margin-bottom: 60px;
}

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

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-box {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-box i {
    width: 28px;
    height: 28px;
}

.feature-item p {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-main);
    margin: 0;
}

/* Section Tour */
.section-tour {
    padding: 100px 0;
}

.tour-header {
    text-align: center;
    margin-bottom: 40px;
}

.tour-header p {
    font-size: 1.1rem;
}

.tour-tabs {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 40px;
}

.text-left {
    text-align: left !important;
}

.tab {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.2s;
}

.tab:hover {
    background: var(--bg-alt);
}

.tab.active {
    background: var(--bg-main);
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.tour-layout {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 40px;
    align-items: start;
}

.tour-left {
    display: flex;
    flex-direction: column;
}

.tour-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tour-step {
    display: flex;
    gap: 16px;
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
}

.tour-step.active {
    background: var(--bg-main);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
    position: relative;
}

.tour-step.active::before {
    content: '';
    position: absolute;
    left: -1px;
    top: 20px;
    bottom: 20px;
    width: 3px;
    background: var(--primary);
    border-radius: 0 4px 4px 0;
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-alt);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tour-step.active .step-icon {
    background: var(--primary-light);
    color: var(--primary);
}

.step-text h3 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--text-main);
}

.step-text p {
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

.btn-explore {
    margin-top: 16px;
    align-self: flex-start;
}

/* Tour Visual (Content Ideas Mockup) */
.tour-mockup {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.05);
    padding: 24px;
    height: 600px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

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

.mockup-actions {
    display: flex;
    gap: 12px;
}

.tour-search {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    margin-bottom: 20px;
}

.tour-search input {
    border: none;
    background: none;
    width: 100%;
    font-size: 0.9rem;
    outline: none;
    color: var(--text-main);
}

.tour-filters {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 100px;
    border: 1px solid var(--border);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    background: var(--bg-main);
    cursor: pointer;
}

.filter-chip.active {
    background: var(--primary-light);
    color: var(--primary);
    border-color: var(--primary-light);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    flex: 1;
}

.content-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.card-partial {
    opacity: 0.5;
}

.card-video {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.platform-icon {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.platform-icon.tiktok { background: #000000; }
.platform-icon.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.platform-icon.facebook { background: #1877F2; }

.card-info {
    padding: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.creator {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.creator img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.creator-details {
    display: flex;
    flex-direction: column;
}

.creator-name {
    font-size: 0.75rem;
    font-weight: 600;
}

.creator-handle {
    font-size: 0.65rem;
    color: var(--text-light);
}

.card-title {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-main);
    line-height: 1.3;
    margin-bottom: auto;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-stats {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.card-stats span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.outlier-badge {
    margin-left: auto;
    background: var(--primary-light);
    color: var(--primary);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    line-height: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.outlier-badge small {
    font-size: 0.5rem;
    font-weight: 400;
}

/* Value Cards */
.section-cards {
    padding: 0 0 100px;
}

.value-card {
    background: rgba(250, 250, 252, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    gap: 20px;
    transition: transform 0.2s;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-main);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.card-text h3 {
    margin-bottom: 8px;
}

.card-text p {
    font-size: 0.9rem;
    margin: 0;
}

/* Mission */
.section-mission {
    padding: 0 0 100px;
}

.mission-banner {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-xl);
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}

.mission-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.mission-banner p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.sparkle {
    position: absolute;
    color: var(--primary);
    opacity: 0.4;
}

.sp-1 { top: 40px; left: 10%; transform: scale(1.5); }
.sp-2 { bottom: 60px; left: 20%; transform: scale(0.8); }
.sp-3 { top: 60px; right: 20%; transform: scale(1.2); }
.sp-4 { bottom: 40px; right: 10%; transform: scale(1); }

/* Footer */
.footer {
    padding: 60px 0 40px;
}

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

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

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

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.social-links a:hover {
    color: var(--primary);
}

.footer-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 24px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-light);
}

.legal-links {
    display: flex;
    gap: 24px;
}

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

/* CTA Orbit Section */
.section-cta-orbit {
    position: relative;
    width: 100%;
    min-height: 600px;
    overflow: hidden;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0;
}

.orbit-gradient-top, .orbit-gradient-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 20;
    pointer-events: none;
}

.orbit-gradient-top {
    display: none;
}

.orbit-gradient-bottom {
    display: none;
}

.orbit-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.orbit-ring {
    position: absolute;
    width: calc(var(--radius) * 2);
    height: calc(var(--radius) * 2);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(0,0,0,0.01) 0%, transparent 100%);
    pointer-events: none;
}

.orbit-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: var(--icon-size);
    height: var(--icon-size);
    margin-top: calc(var(--icon-size) / -2);
    margin-left: calc(var(--icon-size) / -2);
    animation: orbit var(--duration) linear infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
}

.orbit-item.reverse {
    animation-direction: reverse;
}

.icon-bubble {
    width: 100%;
    height: 100%;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    color: var(--text-main);
}

@keyframes orbit {
    0% {
        transform: rotate(var(--angle)) translateY(calc(var(--radius) * -1)) rotate(calc(var(--angle) * -1));
    }
    100% {
        transform: rotate(calc(var(--angle) + 360deg)) translateY(calc(var(--radius) * -1)) rotate(calc((var(--angle) + 360deg) * -1));
    }
}

.cta-overlay {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 60px;
    background: transparent;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.cta-overlay h2 {
    font-size: 2.75rem;
    max-width: 900px;
    line-height: 1.2;
    margin: 0;
}

.cta-overlay .btn {
    background: var(--text-main);
    color: var(--bg-main);
    border: none;
    padding: 16px 32px;
    font-weight: 500;
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}

.cta-overlay .btn:hover {
    background: rgba(0,0,0,0.9);
}

/* Testimonials Section */
.section-testimonials {
    padding: 100px 0;
    background: transparent;
    overflow: hidden;
}

.section-testimonials h2 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.subtitle-text {
    font-size: 1.125rem;
    color: var(--text-muted);
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

.marquee-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    position: relative;
    height: 600px;
    overflow: hidden;
    mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}

@media (min-width: 768px) {
    .marquee-container { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .marquee-container { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1280px) {
    .marquee-container { grid-template-columns: repeat(4, 1fr); }
}

.marquee-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.marquee-inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: marquee-vertical var(--duration, 40s) linear infinite;
}

.marquee-col:hover .marquee-inner {
    animation-play-state: paused;
}

@keyframes marquee-vertical {
    from { transform: translateY(0); }
    to { transform: translateY(calc(-100% - 1.5rem)); }
}

.testimonial-card {
    background: rgba(250, 250, 252, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 -20px 80px -20px rgba(255,255,255,0.05) inset;
    break-inside: avoid;
    transition: all 0.2s;
    cursor: default;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.t-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.t-highlight {
    background: rgba(6, 182, 212, 0.15); /* cyan-200 / cyan-950 equivalent */
    color: #22d3ee; /* cyan-300 */
    font-weight: 600;
    padding: 0.1rem 0.25rem;
    border-radius: 4px;
}

.t-stars {
    display: flex;
    gap: 2px;
    color: #eab308;
}

.t-stars .lucide {
    width: 16px;
    height: 16px;
    fill: #eab308;
    color: #eab308;
}

.t-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 0.5rem;
}

.t-user img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.t-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
}

.t-role {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .tour-content { grid-template-columns: 1fr; }
    .grid-3 { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.8rem; }
    .nav-links, .nav-actions { display: none; }
    .mission-banner { padding: 40px 20px; }
    .footer-top { flex-direction: column; gap: 24px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* Pricing Section - Light Mode Glassmorphism */
.section-pricing {
    padding: 100px 0;
    position: relative;
    background: transparent;
}

.pricing-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

.pricing-header p {
    color: var(--text-muted);
    font-weight: 500;
}

/* Toggle */
.pricing-tabs {
    position: relative;
    display: inline-flex;
    width: 190px;
    min-height: 46px;
    padding: 4px;
    border-radius: 9999px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.48));
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.88),
        inset 0 -6px 16px rgba(129, 140, 248, 0.06),
        0 10px 24px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.tab-indicator {
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 4px;
    width: calc(50% - 4px);
    border-radius: 9999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.78));
    box-shadow:
        0 7px 16px rgba(15, 23, 42, 0.10),
        0 1px 3px rgba(15, 23, 42, 0.06);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.tab-btn {
    position: relative;
    z-index: 2;
    min-height: 38px;
    padding: 6px 10px;
    border: none;
    border-radius: 9999px;
    background: transparent;
    color: #64748b;
    cursor: pointer;
    display: inline-flex;
    flex: 1 1 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px;
    font-family: 'Helvetica World', 'Inter', sans-serif;
    font-size: 0.76rem;
    font-weight: 600;
    line-height: 1;
    text-transform: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.tab-btn:hover {
    color: #111827;
}

.tab-btn.active {
    color: #111827;
    font-weight: 600;
}

.tab-discount {
    color: #818CF8;
    font-family: 'Helvetica World', 'Inter', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1;
}

.pricing-tabs[data-active="business"] .tab-indicator {
    transform: translateX(100%);
}

.badge-discount {
    margin-left: 8px;
    color: #818CF8;
    padding: 0;
    border-radius: 0;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1;
    background: transparent;
}

/* Cards Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 24px;
    align-items: stretch;
}

@media (min-width: 650px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
    .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

.grid-business {
    max-width: 900px;
    margin: 0 auto;
}
@media (min-width: 900px) {
    .grid-business { grid-template-columns: repeat(2, 1fr); }
}

@keyframes floatUpPricing {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Card Styling */
.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    padding: 32px;
    animation: floatUpPricing 0.5s ease-out forwards;
    opacity: 0;
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15), 0 0 0 2px rgba(129, 140, 248, 0.3);
}

.pricing-card[hidden] {
    display: none !important;
}

/* Animation Delays */
#pricing-individual .pricing-card:nth-child(1), #pricing-business .pricing-card:nth-child(1) { animation-delay: 0.1s; }
#pricing-individual .pricing-card:nth-child(2), #pricing-business .pricing-card:nth-child(2) { animation-delay: 0.2s; }
#pricing-individual .pricing-card:nth-child(3) { animation-delay: 0.3s; }

.pricing-card.popular {
    box-shadow: 0 0 0 2px rgba(129, 140, 248, 0.2), 0 8px 30px rgba(0, 0, 0, 0.04);
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.popular-badge-new {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: #818CF8;
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
    box-shadow: none;
}

/* Top Section */
.card-top {
    margin-bottom: 24px;
    padding: 0;
    display: block;
    order: 1;
}

.tier-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.plan-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 8px;
}

.plan-title-row .tier-name {
    margin-bottom: 0;
}

.card-billing-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    color: #64748b;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

/* Plan Colors */
#pricing-individual .pricing-card:nth-child(1) .tier-name,
#pricing-individual .pricing-card:nth-child(1) .feature-icon-wrapper { color: #10B981; }

#pricing-individual .pricing-card:nth-child(2) .tier-name,
#pricing-individual .pricing-card:nth-child(2) .feature-icon-wrapper { color: #818CF8; }

#pricing-individual .pricing-card:nth-child(3) .tier-name,
#pricing-individual .pricing-card:nth-child(3) .feature-icon-wrapper { color: #F59E0B; }

#pricing-business .pricing-card:nth-child(1) .tier-name,
#pricing-business .pricing-card:nth-child(1) .feature-icon-wrapper { color: #818CF8; }

#pricing-business .pricing-card:nth-child(2) .tier-name,
#pricing-business .pricing-card:nth-child(2) .feature-icon-wrapper { color: #F59E0B; }

.price-container {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-top: 0;
}

.price {
    font-size: 2.25rem;
    font-weight: 700;
    color: #0f172a;
    font-family: 'Inter', sans-serif;
}

.period {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 400;
    margin-left: 0;
}

.pricing-card .desc {
    margin-top: 8px;
    font-size: 0.875rem;
    color: #64748b;
}

/* Button Section */
.card-btn-container {
    padding: 0;
    margin-top: 0;
    margin-bottom: 20px; /* mb-5 equivalent */
    order: 2;
}

.btn-pricing-new {
    width: 100%;
    padding: 16px 0;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Inter', sans-serif;
}
.btn-pricing-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-pricing-new:active {
    transform: scale(0.95);
}

.btn-free-new {
    background: rgba(236, 253, 245, 0.5);
    color: #059669;
    border: 1px solid #a7f3d0;
    box-shadow: none;
}

.btn-pro-new {
    background: linear-gradient(to right, #818CF8, #C6BBF7);
    color: white;
    box-shadow: 0 10px 15px -3px rgba(199, 210, 254, 0.5);
}

.btn-max-new {
    background: linear-gradient(to right, #fb923c, #f97316);
    color: white;
    box-shadow: 0 10px 15px -3px rgba(254, 215, 170, 0.5);
}

/* Divider (removed in new design) */
.card-divider {
    display: none;
}

/* Features Section */
.card-features-container {
    padding: 0;
    flex-grow: 1;
    margin-bottom: 0;
    order: 3;
    display: flex;
    flex-direction: column;
}

.features-title {
    margin-bottom: 8px; /* reduced for tighter flow */
    font-size: 0.875rem;
    color: #64748b;
}

.features-title:empty {
    display: none;
}

.features-list {
    list-style: none;
    margin: 8px 0 0 0; /* mt-2 equivalent */
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.875rem;
    color: #475569;
    font-family: 'Helvetica World', sans-serif;
}

.feature-icon-wrapper {
    display: flex;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 0;
    background: transparent;
    margin-top: 0;
}

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

.pricing-footer-text {
    margin-top: 48px;
    text-align: center;
    color: #94a3b8; /* text-slate-400 */
    font-size: 0.75rem; /* text-xs */
    font-weight: 500;
}


/* Workflow Section */
.section-workflow {
    padding: 100px 0;
    background: transparent; /* Changed from var(--bg-alt) to transparent */
}

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

.workflow-header h2 {
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.workflow-header h3 {
    font-size: 2.5rem;
    color: var(--text-main);
    font-weight: 700;
    max-width: 1000px;
    margin: 0 auto;
}

.workflow-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 1024px) {
    .workflow-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.workflow-accordion {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.workflow-item {
    display: flex;
    position: relative;
    cursor: pointer;
}

/* Progress Line */
.workflow-progress-track {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    overflow: hidden;
}

.workflow-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to bottom, var(--primary), #22D3EE);
    border-radius: 4px;
    transition: none; /* Snap to 0 when inactive */
}

.workflow-item.active .workflow-progress-bar {
    height: 100%;
    transition: height 5s linear; /* Animate to 100% when active */
}

.workflow-content {
    display: flex;
    padding-left: 20px;
    align-items: flex-start;
    gap: 16px;
}

.workflow-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(114, 98, 250, 0.2);
}

.workflow-icon .lucide {
    color: var(--primary);
    width: 24px;
    height: 24px;
}

.workflow-text h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
    transition: color 0.3s;
}

.workflow-item:hover .workflow-text h4 {
    color: var(--primary);
}

.workflow-text p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
}

.workflow-item.active .workflow-text p {
    height: auto;
    opacity: 1;
    margin-top: 8px;
}

/* Right Side Image */
.workflow-visual {
    position: relative;
    display: none;
    justify-content: center;
    align-items: center;
    background: transparent !important; /* Elimina el cuadro blanco */
    box-shadow: none !important; /* Elimina sombras */
    padding: 0 !important; /* Elimina el espacio blanco sobrante */
    border: none !important;
    overflow: visible !important; /* CRUCIAL: Permite que el celular no se corte si es más alto */
    width: 100%;
    min-height: 600px; /* Mantiene controlado el tamaño del área */
}

@media (min-width: 1024px) {
    .workflow-visual {
        display: flex;
    }
    
    .workflow-mobile-carousel {
        display: none !important;
    }
}

.workflow-visual img {
    position: absolute;
    top: 0;
    max-width: 100%;
    height: 100%;
    object-fit: contain !important; /* Muestra la imagen completa sin zoom ni recortes */
    opacity: 0;
    transform: scale(0.98);
    filter: blur(4px);
    transition: all 0.4s ease-out; /* Mantiene la animación suave original */
    pointer-events: none;
}

.workflow-visual img.active {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
    pointer-events: auto;
}

/* Mobile Carousel */
.workflow-mobile-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 32px;
    padding-bottom: 24px;
    scrollbar-width: none; /* Firefox */
}

.workflow-mobile-carousel::-webkit-scrollbar {
    display: none;
}

.mobile-card {
    min-width: 80vw;
    max-width: 300px;
    scroll-snap-align: center;
    position: relative;
    padding-top: 16px;
}

.mobile-card .workflow-progress-track {
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    bottom: auto;
}

.mobile-card .workflow-progress-bar {
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, var(--primary), #22D3EE);
    transition: none;
}

.mobile-card.active .workflow-progress-bar {
    width: 100%;
    transition: width 5s linear;
}

.mobile-card .workflow-icon {
    margin-top: 16px;
    margin-bottom: 16px;
}

.mobile-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-main);
}

.mobile-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}



/* Scroll Progress Bar */
.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    z-index: 99999;
    pointer-events: none;
}

.scroll-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(to right, rgba(129, 140, 248, 0.8), rgba(34, 211, 238, 0.8));
    box-shadow: 0 0 10px rgba(129, 140, 248, 0.5);
    transition: width 0.05s ease-out;
    border-radius: 0 4px 4px 0;
}

/* Animated Gradient Badge (Magic UI) */
.animated-gradient-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.6) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: none !important;
    box-shadow: inset 0 -8px 10px rgba(129, 140, 248, 0.1);
    transition: box-shadow 0.5s ease-out;
    cursor: default;
    z-index: 1;
}

.animated-gradient-badge:hover {
    box-shadow: inset 0 -5px 10px rgba(129, 140, 248, 0.2);
}

.animated-gradient-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    display: block;
    height: 100%;
    width: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(129, 140, 248, 0.5), rgba(34, 211, 238, 0.5), rgba(129, 140, 248, 0.5));
    background-size: 300% 100%;
    animation: gradient-shift 3s linear infinite;
    padding: 1px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: subtract;
    pointer-events: none;
    z-index: -1;
}

.animated-gradient-badge .badge-text {
    background: linear-gradient(90deg, #818CF8, #22D3EE, #818CF8);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradient-shift 3s linear infinite;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

/* Blur Reveal Effect */
.blur-reveal {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(20px);
    transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1), 
                filter 0.75s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, filter, transform;
}

.blur-reveal.is-visible {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0);
}

/* FAQ Section */
#hero,
#caracteristicas,
#workflow,
#nosotros,
#pricing,
#faq {
    scroll-margin-top: 120px;
}

.section-faq {
    position: relative;
    background: transparent;
}

.faq-shell {
    max-width: 980px;
    margin: 0 auto;
    padding: clamp(32px, 5vw, 56px);
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 36px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 24px 70px rgba(114, 98, 250, 0.12);
}

.faq-header {
    max-width: 760px;
    margin: 0 auto 32px;
    text-align: center;
}

.faq-header .badge {
    margin-bottom: 20px;
}

.faq-header h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    color: var(--text-main);
}

.faq-header p {
    max-width: 640px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.62);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.faq-item:hover,
.faq-item.is-open {
    border-color: rgba(129, 140, 248, 0.42);
    box-shadow: 0 18px 38px rgba(114, 98, 250, 0.12);
}

.faq-item.is-open {
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 24px;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
}

.faq-question .lucide {
    flex: 0 0 auto;
    color: var(--primary);
    transition: transform 0.25s ease;
}

.faq-item.is-open .faq-question .lucide {
    transform: rotate(180deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.32s ease;
}

.faq-item.is-open .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer p {
    min-height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0 24px;
    color: var(--text-muted);
    font-size: 0.96rem;
    line-height: 1.7;
    transition: padding-bottom 0.32s ease;
}

.faq-item.is-open .faq-answer p {
    padding-bottom: 24px;
}

/* Value Cards - Border Glow Effect */
.value-card {
    isolation: isolate;
    position: relative;
}

.value-card::before,
.value-card::after {
    content: '';
    position: absolute;
    border-radius: inherit;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.value-card::before {
    inset: -2px;
    background: conic-gradient(from var(--mouse-angle, 0deg) at center, #818CF8 0%, transparent 20%, transparent 80%, #818CF8 100%);
    padding: 2px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: subtract;
    z-index: -1;
}

.value-card::after {
    inset: -16px;
    background: conic-gradient(from var(--mouse-angle, 0deg) at center, rgba(129, 140, 248, 0.5) 0%, transparent 20%, transparent 80%, rgba(129, 140, 248, 0.5) 100%);
    filter: blur(16px);
    z-index: -2;
}

.value-card:hover::before,
.value-card:hover::after {
    opacity: 1;
}

/* Split Text Animation (Hero Headline) */
.split-char {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
    will-change: transform, opacity;
    animation: splitFadeUp 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

@keyframes splitFadeUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ESTILOS DEL OVERLAY (Pantalla Completa) */
#registro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background:
        radial-gradient(circle at -10% -10%, rgba(198, 187, 247, 0.4) 0%, rgba(198, 187, 247, 0.26) 22%, transparent 46%),
        radial-gradient(circle at 110% 10%, rgba(184, 213, 245, 0.5) 0%, rgba(184, 213, 245, 0.28) 24%, transparent 48%),
        radial-gradient(circle at -15% 60%, rgba(209, 201, 243, 0.4) 0%, rgba(209, 201, 243, 0.24) 28%, transparent 54%),
        radial-gradient(circle at 80% 115%, rgba(184, 213, 245, 0.4) 0%, rgba(184, 213, 245, 0.22) 24%, transparent 50%),
        #F7F3F0;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    padding: 60px 20px;
    box-sizing: border-box;
}

#registro-overlay.registro-visible {
    opacity: 1;
    visibility: visible;
}

/* La Tarjeta Blanca */
.registro-container {
    background: #ffffff;
    width: 100%;
    max-width: 550px;
    padding: 60px 50px;
    border-radius: 24px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.05), 0 4px 12px rgba(0, 0, 0, 0.03);
    position: relative;
    margin: auto;
    box-sizing: border-box;
}

/* Botón Volver */
.btn-volver {
    position: absolute;
    top: 30px;
    left: 30px;
    background: #f3f0ff;
    border: none;
    color: #111;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 10px 18px;
    border-radius: 100px;
    transition: all 0.2s ease;
}

.btn-volver:hover {
    background: #e4dcff;
    color: #7c4dff;
}

/* Encabezado */
.registro-header {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 40px;
}

.registro-header .badge {
    position: relative;
    background: rgba(255, 255, 255, 0.6) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: none !important;
    color: transparent;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: inset 0 -8px 10px rgba(129, 140, 248, 0.1);
    transition: box-shadow 0.5s ease-out;
    z-index: 1;
}

.registro-header .badge:hover {
    box-shadow: inset 0 -5px 10px rgba(129, 140, 248, 0.2);
}

.registro-header .badge::before {
    content: '';
    position: absolute;
    inset: 0;
    display: block;
    height: 100%;
    width: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(129, 140, 248, 0.5), rgba(34, 211, 238, 0.5), rgba(129, 140, 248, 0.5));
    background-size: 300% 100%;
    animation: gradient-shift 3s linear infinite;
    padding: 1px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: subtract;
    pointer-events: none;
    z-index: -1;
}

.registro-header .badge span {
    background: linear-gradient(90deg, #818CF8, #22D3EE, #818CF8);
    background-size: 300% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: gradient-shift 3s linear infinite;
}

.registro-header h2 {
    font-size: 34px;
    color: #111;
    margin-bottom: 12px;
    font-weight: 800;
    line-height: 1.2;
}

.registro-header p {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

#registro-overlay.registro-completado .registro-header h2,
#registro-overlay.registro-completado .registro-header p {
    display: none;
}

/* Campos del Formulario */
.input-group {
    margin-bottom: 24px;
    text-align: left;
}

.input-group label {
    display: block;
    font-size: 14px;
    color: #111;
    margin-bottom: 10px;
    font-weight: 700;
}

.input-group input, .input-group select {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    font-size: 16px;
    color: #111;
    background: #fafafa;
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-family: inherit;
    appearance: none;
}

.input-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 18px;
    padding-right: 40px;
}

.input-group input:focus, .input-group select:focus {
    outline: none;
    border-color: #7c4dff;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(124, 77, 255, 0.1);
}

/* Botón de Enviar */
.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #9b72ff 0%, #7c4dff 100%);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 100px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(124, 77, 255, 0.25);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Mensaje de Éxito */
.mensaje-exito {
    text-align: center;
    padding: 40px 0;
}

.mensaje-exito h3 {
    font-size: 28px;
    color: #111;
    margin: 20px 0 15px;
    font-weight: 800;
}

.mensaje-exito p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.hidden { display: none; }

/* Adaptación para Celulares */
@media (max-width: 600px) {
    #registro-overlay { padding: 0; }
    .registro-container {
        border-radius: 0;
        padding: 40px 24px;
        min-height: 100vh;
        box-shadow: none;
    }
    .btn-volver {
        position: relative;
        top: 0; left: 0;
        margin-bottom: 24px;
        display: inline-flex;
    }
    .registro-header { margin-top: 10px; }
    .registro-header h2 { font-size: 28px; }
}

/* Page spacing and alignment refinements */
.hero,
.section-sindrome,
.section-workflow,
.trusted-section,
.section-mission,
.section-testimonials,
.section-pricing,
.section-faq,
.footer {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.section-sindrome,
.section-workflow,
.trusted-section,
.section-mission,
.section-testimonials,
.section-pricing,
.section-faq {
    padding-top: var(--section-y) !important;
    padding-bottom: var(--section-y) !important;
}

.section-cards {
    padding-top: var(--section-y-compact) !important;
    padding-bottom: var(--section-y-compact) !important;
}

.hero {
    padding-top: clamp(96px, 8vw, 116px) !important;
    padding-bottom: var(--section-y) !important;
}

.footer {
    margin-top: 0 !important;
    padding-top: var(--section-y-compact) !important;
    padding-bottom: var(--section-y-compact) !important;
}

.trusted-container,
.section-sindrome > div:first-child,
.section-sindrome > .w-full > div {
    width: 100%;
    max-width: var(--page-max-width) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: var(--page-gutter) !important;
    padding-right: var(--page-gutter) !important;
    box-sizing: border-box;
}

.section-sindrome > .w-full {
    overflow: visible !important;
}

.section-sindrome > .w-full > div {
    gap: clamp(20px, 2.5vw, 36px) !important;
}

@media (min-width: 768px) {
    .section-sindrome > .w-full > div > .relative {
        width: auto !important;
        flex: 1 1 0 !important;
        max-width: 400px;
        min-width: 0;
    }
}

.pricing-grid {
    width: 100%;
    max-width: 1240px;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.grid-business {
    max-width: 980px;
}

@media (min-width: 1024px) {
    .section-workflow .container {
        max-width: 1280px;
    }

    .workflow-grid {
        max-width: 1180px;
        margin: 0 auto;
        grid-template-columns: minmax(360px, 520px) minmax(420px, 560px) !important;
        justify-content: center;
        column-gap: clamp(48px, 5vw, 88px);
    }

    .workflow-accordion {
        width: 100%;
        max-width: 520px;
        justify-self: end;
    }

    .workflow-visual {
        width: 100%;
        max-width: 560px;
        height: 600px;
        min-height: 600px;
        justify-self: start;
    }

    .workflow-visual img {
        left: 50%;
        transform: translateX(-50%) scale(0.98);
    }

    .workflow-visual img.active {
        transform: translateX(-50%) scale(1);
    }
}

@media (max-width: 768px) {
    :root {
        --page-gutter: clamp(20px, 6vw, 32px);
        --section-y: 56px;
        --section-y-compact: 44px;
    }

    .hero {
        padding-top: 96px !important;
        padding-bottom: 56px !important;
    }

    .section-sindrome > .w-full > div {
        gap: 24px !important;
    }

    .section-sindrome > .w-full > div > .relative {
        height: min(540px, 132vw) !important;
    }

    #hero,
    #caracteristicas,
    #workflow,
    #nosotros,
    #pricing,
    #faq {
        scroll-margin-top: 96px;
    }

    .faq-shell {
        padding: 28px 18px;
        border-radius: 28px;
    }

    .faq-header {
        margin-bottom: 24px;
    }

    .faq-question {
        padding: 18px;
        font-size: 0.95rem;
    }

    .faq-answer p {
        padding-left: 18px;
        padding-right: 18px;
    }

    .faq-item.is-open .faq-answer p {
        padding-bottom: 18px;
    }
}

/* Mobile polish */
@media (max-width: 768px) {
    html,
    body {
        width: 100%;
        overflow-x: hidden;
        background: #F7F3F0;
    }

    .global-background {
        z-index: 0;
        opacity: 1;
    }

    .relative-z10 {
        position: relative;
        z-index: 1;
    }

    .gb-shape {
        filter: blur(82px);
    }

    .gb-shape-1 {
        top: -12%;
        left: -48%;
        width: 132vw;
        height: 132vw;
    }

    .gb-shape-2 {
        top: 18%;
        right: -62%;
        width: 128vw;
        height: 128vw;
    }

    .gb-shape-3 {
        top: 56%;
        left: -58%;
        width: 140vw;
        height: 140vw;
    }

    .gb-shape-4 {
        right: -38%;
        bottom: -18%;
        width: 122vw;
        height: 122vw;
    }

    .navbar {
        right: 0;
        width: auto;
        padding: 12px 14px 0;
        align-items: flex-start;
    }

    .nav-container {
        position: relative;
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: 12px;
        width: min(430px, calc(100vw - 28px));
        min-width: 0;
        max-width: none;
        padding: 14px 16px;
        border-radius: 999px;
        background: linear-gradient(135deg, rgba(232, 226, 246, 0.68), rgba(210, 225, 244, 0.62));
        border-color: rgba(255, 255, 255, 0.72);
        overflow: visible;
    }

    .container {
        max-width: 100%;
    }

    .logo {
        justify-self: start;
        font-size: 1.1rem;
        line-height: 1;
    }

    .logo img {
        width: 30px;
        height: 30px;
        object-fit: cover;
    }

    .navbar .nav-links {
        display: none !important;
    }

    .navbar .nav-actions {
        display: none !important;
    }

    .nav-menu-toggle {
        position: relative;
        display: inline-flex;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        justify-self: end;
        border: 1px solid rgba(255, 255, 255, 0.82);
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.58);
        box-shadow: inset 0 -8px 14px rgba(129, 140, 248, 0.08), 0 10px 28px rgba(15, 23, 42, 0.06);
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        transition: background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
    }

    .nav-menu-toggle span {
        position: absolute;
        left: 50%;
        top: 50%;
        width: 18px;
        height: 2px;
        border-radius: 999px;
        background: #111111;
        transform: translate(-50%, -50%);
        transform-origin: center;
        transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.18s ease, width 0.24s ease;
    }

    .nav-menu-toggle span:nth-child(1) {
        transform: translate(-50%, calc(-50% - 6px));
    }

    .nav-menu-toggle span:nth-child(3) {
        transform: translate(-50%, calc(-50% + 6px));
    }

    .nav-container.is-open .nav-menu-toggle {
        background: rgba(255, 255, 255, 0.84);
        border-color: rgba(255, 255, 255, 0.96);
        box-shadow: inset 0 -8px 14px rgba(129, 140, 248, 0.08), 0 12px 30px rgba(15, 23, 42, 0.1);
    }

    .nav-container.is-open .nav-menu-toggle span:nth-child(1) {
        width: 20px;
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .nav-container.is-open .nav-menu-toggle span:nth-child(2) {
        opacity: 0;
        transform: translate(-50%, -50%) scaleX(0.25);
    }

    .nav-container.is-open .nav-menu-toggle span:nth-child(3) {
        width: 20px;
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    .mobile-nav-menu {
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        padding: 14px;
        border-radius: 30px;
        background: linear-gradient(135deg, rgba(232, 226, 246, 0.97), rgba(210, 225, 244, 0.94));
        border: 1px solid rgba(255, 255, 255, 0.76);
        box-shadow: 0 24px 70px rgba(114, 98, 250, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.76);
        backdrop-filter: blur(26px) saturate(1.25);
        -webkit-backdrop-filter: blur(26px) saturate(1.25);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px) scale(0.96);
        transform-origin: top center;
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    }

    .nav-container.is-open .mobile-nav-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }

    .mobile-nav-menu a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.54);
        border: 1px solid rgba(255, 255, 255, 0.72);
        color: var(--text-main);
        font-size: 0.85rem;
        font-weight: 700;
        text-align: center;
        box-shadow: inset 0 -8px 14px rgba(129, 140, 248, 0.05);
    }

    .mobile-nav-menu a:hover,
    .mobile-nav-menu a:focus-visible {
        color: var(--primary);
        background: rgba(242, 239, 255, 0.86);
    }

    .mobile-nav-menu .mobile-login,
    .mobile-nav-menu .mobile-primary {
        grid-column: 1 / -1;
    }

    .mobile-nav-menu .mobile-primary {
        color: #ffffff;
        background: linear-gradient(135deg, rgba(129, 140, 248, 0.96), rgba(114, 98, 250, 0.96));
        border-color: rgba(255, 255, 255, 0.62);
        box-shadow: 0 16px 34px rgba(129, 140, 248, 0.3);
    }

    .hero {
        padding-top: 112px !important;
        padding-bottom: 52px !important;
    }

    .hero-grid {
        gap: 0;
        min-width: 0;
    }

    .hero-content {
        width: 100%;
        min-width: 0;
        max-width: min(100%, 340px);
    }

    h1 {
        font-size: clamp(2.55rem, 12vw, 3.25rem);
        line-height: 1.06;
        letter-spacing: -0.035em;
    }

    h2 {
        font-size: clamp(1.8rem, 8vw, 2.35rem);
        line-height: 1.12;
    }

    .hero-subtitle {
        max-width: 340px;
        margin-bottom: 2rem;
        font-size: clamp(1rem, 4.6vw, 1.18rem);
        line-height: 1.55;
    }

    .hero-buttons {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        margin-bottom: 2rem;
    }

    .hero-buttons .btn {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        min-height: 76px;
        justify-content: center;
        padding: 16px 14px;
        border-radius: 999px;
        line-height: 1.35;
        text-align: center;
        white-space: normal;
        overflow: hidden;
    }

    .hero-buttons .play-icon {
        flex: 0 0 24px;
    }

    .trust-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        max-width: 340px;
    }

    .trust-text,
    .trust-desc {
        max-width: 100%;
        min-width: 0;
    }

    .trust-desc {
        overflow-wrap: anywhere;
    }

    .section-workflow {
        overflow: hidden;
    }

    .workflow-header {
        margin-bottom: 28px;
    }

    .workflow-header h3 {
        font-size: clamp(2rem, 9vw, 2.45rem);
        line-height: 1.1;
    }

    .workflow-grid {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    #workflow-accordion {
        display: none;
    }

    .workflow-visual {
        display: flex;
        order: 1;
        width: 100%;
        height: min(440px, 112vw);
        min-height: 360px;
        margin: -8px auto 0;
        overflow: visible !important;
    }

    .workflow-visual img {
        top: 50%;
        left: 50%;
        width: min(108vw, 470px);
        max-width: none;
        height: auto;
        max-height: 100%;
        transform: translate(-50%, -50%) scale(0.96);
        object-fit: contain !important;
    }

    .workflow-visual img.active {
        transform: translate(-50%, -50%) scale(1);
    }

    .workflow-mobile-carousel {
        order: 2;
        width: 100%;
        margin-right: 0;
        gap: 14px;
        padding: 0 0 4px;
        scroll-padding-inline: 0;
    }

    .mobile-card {
        min-width: min(82vw, 320px);
        max-width: 320px;
        padding: 18px 18px 20px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.58);
        border: 1px solid rgba(255, 255, 255, 0.82);
        box-shadow: 0 18px 46px rgba(114, 98, 250, 0.1);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .mobile-card .workflow-progress-track {
        left: 18px;
        right: 18px;
        top: 16px;
        width: auto;
    }

    .mobile-card .workflow-icon {
        width: 44px;
        height: 44px;
        margin-top: 22px;
        margin-bottom: 14px;
        border-radius: 14px;
    }

    .mobile-card h4 {
        font-size: 1.05rem;
        line-height: 1.25;
    }

    .mobile-card p {
        font-size: 0.92rem;
        line-height: 1.55;
    }

    .section-cards .grid-3 {
        gap: 16px;
    }

    .value-card {
        padding: 22px;
        border-radius: 22px;
        gap: 16px;
    }

    .section-testimonials h2,
    .pricing-header h2 {
        font-size: clamp(2rem, 9vw, 2.45rem) !important;
        line-height: 1.12;
    }

    .pricing-grid {
        gap: 18px;
        padding: 0 !important;
    }

    .pricing-card {
        border-radius: 28px;
        padding: 24px;
    }

    #hero,
    #caracteristicas,
    #workflow,
    #nosotros,
    #pricing,
    #faq {
        scroll-margin-top: 112px;
    }
}

@media (max-width: 420px) {
    :root {
        --page-gutter: 20px;
    }

    .navbar {
        padding-inline: 10px;
    }

    .nav-container {
        max-width: 340px;
        padding: 13px 12px 11px;
        border-radius: 30px;
    }

    .navbar .nav-links a {
        font-size: 0.74rem;
        padding: 8px 9px;
    }

    .hero-buttons {
        gap: 10px;
    }

    .hero-content,
    .hero-subtitle,
    .trust-section {
        max-width: 340px;
    }

    .hero-buttons .btn {
        min-height: 72px;
        padding-inline: 12px;
        font-size: 0.92rem;
    }

    .workflow-visual {
        height: min(405px, 108vw);
        min-height: 332px;
    }
}

/* =========================================================
   Askcript - Ajuste footer + navegacion anclada con header fijo
   Insertar al FINAL de style.css para que sobrescriba reglas previas.
   ========================================================= */

:root {
    /* Offset compacto: el padding interno de cada seccion ya aporta aire bajo el header */
    --askcript-anchor-offset: 48px;
}

/* Ayuda tambien cuando el navegador restaura hashes o enfoca anclas */
html {
    scroll-padding-top: var(--askcript-anchor-offset);
}

/* Secciones principales usadas por el menu sticky */
#hero,
#caracteristicas,
#workflow,
#nosotros,
#pricing,
#faq {
    scroll-margin-top: var(--askcript-anchor-offset) !important;
}

/* Footer: reduce el aire inferior excesivo manteniendo el look glass */
.footer {
    padding-top: var(--section-y-compact) !important;
    padding-bottom: clamp(32px, 3.5vw, 44px) !important;
}

/* Tarjeta interna del footer: corrige la asimetria inferior */
.footer > .container > .bg-white\/40 {
    padding-top: clamp(40px, 4vw, 56px) !important;
    padding-bottom: clamp(34px, 3.2vw, 44px) !important;
}

/* Mantiene separacion limpia entre bloque superior y copyright/enlaces */
.footer > .container > .bg-white\/40 > .flex:first-child {
    margin-bottom: clamp(34px, 3.5vw, 44px) !important;
}

.footer .footer-bottom {
    padding-top: clamp(24px, 2.4vw, 32px) !important;
}

/* Ajuste responsive: el header movil es mas compacto */
@media (max-width: 768px) {
    :root {
        --askcript-anchor-offset: 48px;
    }

    .footer {
        padding-bottom: 30px !important;
    }

    .footer > .container > .bg-white\/40 {
        padding-top: 32px !important;
        padding-bottom: 30px !important;
    }
}

/* Pricing billing switch - iOS style */

.billing-toggle-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
}

.billing-label {
    color: #3f3f46;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
}

.billing-save-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(124, 77, 255, 0.1);
    color: #7c4dff;
    font-size: 0.75rem;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.ios-billing-switch {
    position: relative;
    display: inline-flex;
    width: 62px;
    height: 34px;
    flex: 0 0 auto;
}

.ios-billing-switch input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.ios-switch-track {
    position: relative;
    display: block;
    width: 62px;
    height: 34px;
    border-radius: 34px;
    background: #e5e5ea;
    cursor: pointer;
    transition: background 0.28s ease, box-shadow 0.28s ease;
}

.ios-switch-thumb {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 3px 8px rgba(15, 23, 42, 0.18), 0 1px 2px rgba(15, 23, 42, 0.12);
    transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.28s ease;
}

.ios-billing-switch input:checked + .ios-switch-track {
    background: #7c4dff;
    box-shadow: 0 10px 26px rgba(124, 77, 255, 0.24);
}

.ios-billing-switch input:checked + .ios-switch-track .ios-switch-thumb {
    transform: translateX(28px);
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.2), 0 1px 2px rgba(15, 23, 42, 0.1);
}

.ios-billing-switch input:focus-visible + .ios-switch-track {
    outline: 3px solid rgba(124, 77, 255, 0.28);
    outline-offset: 4px;
}

.ios-billing-switch-sm {
    width: 46px;
    height: 26px;
}

.ios-billing-switch-sm .ios-switch-track {
    width: 46px;
    height: 26px;
    border-radius: 26px;
}

.ios-billing-switch-sm .ios-switch-thumb {
    width: 22px;
    height: 22px;
}

.ios-billing-switch-sm input:checked + .ios-switch-track .ios-switch-thumb {
    transform: translateX(20px);
}

.plan-free .tier-name,
.plan-free .feature-icon-wrapper {
    color: #10b981;
}

.plan-pro .tier-name,
.plan-pro .feature-icon-wrapper,
.plan-business .tier-name,
.plan-business .feature-icon-wrapper {
    color: #818cf8;
}

.plan-max .tier-name,
.plan-max .feature-icon-wrapper,
.plan-enterprise .tier-name,
.plan-enterprise .feature-icon-wrapper {
    color: #f59e0b;
}

#pricing-plans .price-container {
    min-height: 50px;
    align-items: center;
}

#pricing-plans .price {
    display: inline-block;
    will-change: opacity, transform;
}

.price-static {
    max-width: 260px;
    font-size: clamp(1.35rem, 2.6vw, 1.75rem) !important;
    line-height: 1.12;
    margin-top: 6px;
}

@media (max-width: 768px) {
    .billing-toggle-wrap {
        gap: 9px;
        width: min(100%, 360px);
        margin-inline: auto;
    }

    .billing-label {
        font-size: 0.86rem;
    }

    .billing-save-badge {
        min-height: 26px;
        padding-inline: 10px;
        font-size: 0.74rem;
    }

    .ios-billing-switch {
        width: 58px;
        height: 32px;
    }

    .ios-switch-track {
        width: 58px;
        height: 32px;
    }

    .ios-switch-thumb {
        width: 28px;
        height: 28px;
    }

    .ios-billing-switch input:checked + .ios-switch-track .ios-switch-thumb {
        transform: translateX(26px);
    }

    .ios-billing-switch-sm {
        width: 46px;
        height: 26px;
    }

    .ios-billing-switch-sm .ios-switch-track {
        width: 46px;
        height: 26px;
    }

    .ios-billing-switch-sm .ios-switch-thumb {
        width: 22px;
        height: 22px;
    }

    .ios-billing-switch-sm input:checked + .ios-switch-track .ios-switch-thumb {
        transform: translateX(20px);
    }
}

/* Contacto y paginas legales internas */
.standalone-page {
    overflow: visible;
}

.legal-back-button {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border: 1px solid rgba(100, 116, 139, 0.24);
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.72);
    color: #475569;
    font-size: 0.92rem;
    font-weight: 800;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.legal-back-button:hover {
    border-color: #7c4dff;
    background: rgba(124, 77, 255, 0.08);
    color: #7c4dff;
    transform: translateY(-1px);
}

.standalone-section {
    min-height: auto;
    padding: clamp(56px, 7vw, 92px) var(--page-gutter);
}

.contacto-minimalista {
    display: flex;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contacto-minimalista__inner {
    width: min(100%, 680px);
    margin: 0 auto;
    padding: clamp(36px, 5vw, 56px);
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.1);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.contacto-minimalista h2 {
    margin-bottom: 14px;
    color: var(--text-main);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.08;
}

.contacto-minimalista p {
    max-width: 560px;
    margin: 0 auto 24px;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.contacto-mail-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    border: 1px solid rgba(100, 116, 139, 0.24);
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--text-main);
    font-weight: 700;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.contacto-mail-button:hover {
    border-color: #7c4dff;
    background: rgba(124, 77, 255, 0.08);
    color: #7c4dff;
    transform: translateY(-1px);
}

.legal-section {
    padding: clamp(56px, 7vw, 92px) var(--page-gutter);
}

.legal-section__inner {
    width: min(100%, 920px);
    margin: 0 auto;
    padding: clamp(36px, 5vw, 56px);
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.1);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.legal-section__header {
    margin-bottom: clamp(28px, 4vw, 44px);
    text-align: center;
}

.legal-section__header h2 {
    margin-bottom: 12px;
    color: var(--text-main);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    line-height: 1.08;
}

.legal-section__header p {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 700;
}

.legal-section__content {
    color: #334155;
    font-size: 1rem;
    line-height: 1.8;
}

.legal-section__content h3 {
    margin: 34px 0 12px;
    color: var(--text-main);
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.3;
}

.legal-section__content p {
    margin: 0 0 16px;
    color: #475569;
}

.legal-section__content ul {
    margin: 0 0 18px 20px;
    padding: 0;
    color: #475569;
}

.legal-section__content li {
    margin-bottom: 10px;
}

.legal-section__content a {
    color: #7c4dff;
    font-weight: 700;
}

.legal-section__content strong {
    color: var(--text-main);
}

.legal-back-button--inline {
    margin: 0 0 clamp(28px, 4vw, 40px);
    border-color: transparent;
    background: rgba(124, 77, 255, 0.09);
    color: var(--text-main);
    box-shadow: none;
}

@media (max-width: 768px) {
    .legal-back-button {
        min-height: 38px;
        padding: 9px 14px;
        font-size: 0.84rem;
    }

    .contacto-minimalista,
    .legal-section {
        padding: 24px 16px;
    }

    .contacto-minimalista__inner,
    .legal-section__inner {
        padding: 28px 18px;
        border-radius: 26px;
    }

    .contacto-mail-button {
        width: min(100%, 320px);
    }
}
