html {
    scroll-behavior: smooth;
}

:root {
    --bg-dark: #030712;
    --bg-card: rgba(15, 23, 42, 0.4);
    --primary: #3b82f6;
    --primary-glow: rgba(59, 130, 246, 0.4);
    --accent: #8b5cf6;
    --accent-glow: rgba(139, 92, 246, 0.3);
    --success: #10b981;
    --success-glow: rgba(16, 185, 129, 0.3);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border-light: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(15, 23, 42, 0.6);
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    margin: 0;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

/* Background Effects */
.background-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, #0f172a 0%, #030712 100%);
}

.grid-pattern {
    position: absolute;
    inset: 0;
    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;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
}

.gradient-mesh {
    position: absolute;
    inset: -50%;
    background:
        radial-gradient(circle at 20% 30%, var(--primary-glow) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, var(--accent-glow) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    filter: blur(100px);
    animation: meshFlow 20s infinite alternate ease-in-out;
}

@keyframes meshFlow {
    0% {
        transform: scale(1) rotate(0deg);
    }

    50% {
        transform: scale(1.1) rotate(5deg) translate(2%, 2%);
    }

    100% {
        transform: scale(1) rotate(0deg);
    }
}

/* Floating Navbar */
.navbar-floating {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1000;
    pointer-events: none;
    /* Container doesn't block clicks */
}

.nav-glass {
    pointer-events: auto;
    /* Buttons inside DO catch clicks */
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0.75rem 1.5rem;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-light);
    border-radius: 999px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.logo img {
    height: 24px;
    filter: brightness(1.2);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
    cursor: pointer;
}

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

.divider-vertical {
    width: 1px;
    height: 20px;
    background: var(--border-light);
}

.nav-btn-highlight {
    color: var(--primary) !important;
    font-weight: 600 !important;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-links a:not(.nav-btn-highlight) {
        display: none;
    }

    .nav-glass {
        gap: 0.5rem;
        padding: 0.5rem 0.75rem;
        width: auto;
        min-width: min-content;
        max-width: 92vw;
        justify-content: space-between;
    }

    .softguin-brand {
        font-size: 1.25rem !important;
        white-space: nowrap;
    }

    .nav-btn-highlight {
        font-size: 0.8rem !important;
        padding: 0.4rem 0.6rem !important;
    }

    #nav-auth-container {
        gap: 0.5rem !important;
    }

    .divider-vertical {
        display: none;
    }
}

/* Modern Hero */


@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.hero-chip-animated {
    display: inline-block;
    margin: 0 auto 2rem auto;
    padding: 1px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    position: relative;
    animation: fadeUp 0.8s ease-out;
}

.chip-content {
    background: #0f172a;
    border-radius: 999px;
    padding: 0.5rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-main);
    font-weight: 500;
}

.badge-new {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 99px;
}

.section-hero-split {
    padding: 180px 0 120px;
    position: relative;
    z-index: 1;
}

.section-hero-split .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

@media (max-width: 768px) {
    .section-hero-split {
        padding: 170px 0 60px;
    }
}



.hero-title-modern {
    font-size: clamp(2.2rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin: 0 auto 1.5rem auto;
    text-align: center;
    width: 100%;
    max-width: 100vw;
    display: block;
    animation: fadeUp 1s ease-out;
}

.glitch-text {
    background: linear-gradient(to right, #3b82f6, #a78bfa, #f472b6, #3b82f6);
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGradient 8s linear infinite;
}

@keyframes textGradient {
    to {
        background-position: 300% center;
    }
}

.hero-subtitle-modern {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 4rem auto;
    line-height: 1.7;
    animation: fadeUp 1.2s ease-out;
}

/* Buttons */
.btn-modern {
    position: relative;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    overflow: hidden;
    display: inline-block;
}

.btn-modern.primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.btn-modern.outline {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-modern:hover {
    transform: translateY(-2px);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

/* --- SOFTGUIN SPLIT LAYOUT --- */
.softguin-brand {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.75rem;
    letter-spacing: -0.04em;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.softguin-brand span {
    color: var(--primary);
}

.split-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 4rem auto 0;
    animation: fadeUp 1.4s ease-out;
}

.product-split-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 3.5rem;
    text-align: left;
    position: relative;
    overflow: visible;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    pointer-events: auto;
    /* Catch hover */
}

@media (max-width: 768px) {
    .product-split-card {
        padding: 2rem;
        border-radius: 24px;
    }
}

.product-split-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    /* Let clicks pass through to buttons */
}

.product-split-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5);
}

.product-split-card:hover::before {
    opacity: 1;
}

.product-split-card.scoot {
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.05);
}

.product-split-card.factu {
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.05);
}

.product-split-card.scoot:hover {
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 20px 50px -10px rgba(59, 130, 246, 0.25);
}

.product-split-card.factu:hover {
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 20px 50px -10px rgba(16, 185, 129, 0.25);
}

.p-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.scoot .p-icon {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.factu .p-icon {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.p-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: white;
}

.p-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.scoot .p-subtitle {
    color: #60a5fa;
}

.factu .p-subtitle {
    color: #34d399;
}

.p-desc {
    color: #94a3b8;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex: 1;
}

.btn-split {
    padding: 1rem 0;
    text-align: center;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    color: white;
    transition: all 0.2s;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    position: relative;
    z-index: 2;
    /* Ensure it's above card overlays */
    display: block;
    /* Make sure it takes space */
}

.btn-split:hover {
    background: rgba(255, 255, 255, 0.1);
}

.scoot .btn-split.primary {
    background: #3b82f6;
    border-color: #3b82f6;
}

.factu .btn-split.primary {
    background: #10b981;
    border-color: #10b981;
}

.scoot .btn-split.primary:hover {
    background: #2563eb;
}

.factu .btn-split.primary:hover {
    background: #059669;
}

.feature-pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.f-pill {
    padding: 6px 14px;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    transition: all 0.3s;
}

.product-split-card:hover .f-pill {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Bento Grid Shared */
.section-padding {
    padding: 100px 0;
}

.center {
    text-align: center;
}

.section-title-modern {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.section-desc-modern {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.bento-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.bento-item {
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--border-light);
    border-radius: 32px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    .bento-item {
        padding: 1.5rem;
        border-radius: 20px;
        min-height: auto;
    }
}

.bento-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.03), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s;
}

.bento-item:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(15, 23, 42, 0.8);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.4);
}

.bento-item:hover::after {
    opacity: 1;
}

.span-2 {
    grid-column: span 2;
}

.icon-box-modern {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #cbd5e1;
}

.bento-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #f8fafc;
}

.bento-content p {
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.6;
}

.bento-footer-tag {
    margin-top: auto;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bento-footer-tag::after {
    content: '';
    height: 1px;
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
}

/* FactuGuin Specifics */
.factu-section .icon-box-modern {
    color: #34d399;
    background: rgba(16, 185, 129, 0.1);
}

.factu-section .bento-item:hover {
    border-color: #10b981;
}

.factu-section .highlight-blue {
    color: #34d399;
    text-shadow: 0 0 20px rgba(52, 211, 153, 0.4);
}

@media (max-width: 968px) {
    .bento-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .span-2 {
        grid-column: auto;
    }
}

/* AUTH MODALS */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(3, 7, 18, 0.85);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 1.5rem;
}

.modal-overlay.active {
    display: flex;
}

.modal-card {
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    width: 100%;
    max-width: 500px;
    padding: 2.5rem;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: modalPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalPop {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.status-modal-content {
    text-align: center;
    padding: 1rem 0;
}

.status-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.status-icon.info {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.status-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.75rem;
}

.status-message {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 1.5rem;
    cursor: pointer;
}

.auth-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.auth-tab {
    background: none;
    border: none;
    color: #94a3b8;
    font-weight: 700;
    cursor: pointer;
    padding-bottom: 0.5rem;
}

.auth-tab.active {
    color: white;
    border-bottom: 2px solid #3b82f6;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.85rem;
    color: white;
    outline: none;
    transition: all 0.2s;
}

.form-input:focus {
    border-color: #3b82f6;
    background: rgba(255, 255, 255, 0.05);
}

.password-input-wrapper {
    position: relative;
    width: 100%;
}

.password-input-wrapper .form-input {
    padding-right: 3rem;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.2rem;
    z-index: 10;
}

.password-toggle:hover {
    color: white;
}

.password-toggle svg {
    width: 20px;
    height: 20px;
}

/* Strength Meter */
.strength-meter {
    height: 4px;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    margin-top: 8px;
    overflow: hidden;
    display: none;
}

.strength-bar {
    height: 100%;
    width: 0;
    transition: all 0.3s ease;
}

.strength-text {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 4px;
    display: block;
}

.match-error {
    color: #ef4444;
    font-size: 0.75rem;
    margin-top: 4px;
    display: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.btn-auth-full {
    width: 100%;
    padding: 1rem;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
}

.hidden {
    display: none !important;
}

/* CLIENT DASHBOARD */
.client-area-container {
    padding: 150px 0 100px;
}

.sub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.sub-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2.5rem;
}

.sub-status {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 99px;
    font-size: 0.7rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.status-active {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.sub-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.sub-expiry {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1rem;
}

.nav-btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 99px;
    font-size: 0.85rem;
    color: white;
    text-decoration: none;
}

/* PROFILE LAYOUT */
.profile-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.profile-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.profile-menu-item {
    background: transparent;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    color: #94a3b8;
    text-align: left;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sidebar-icon {
    width: 20px;
    height: 20px;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.profile-menu-item:hover .sidebar-icon,
.profile-menu-item.active .sidebar-icon {
    opacity: 1;
}

.profile-menu-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.profile-menu-item.active {
    background: var(--primary);
    color: white;
}

.profile-main-content {
    min-height: 500px;
}

.user-profile-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
}

.user-avatar-large {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: white;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.user-name-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0;
}

.user-email-subtitle {
    color: #94a3b8;
    margin-top: 0.25rem;
}

.info-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2.5rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.info-item label {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #4b5563;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.info-item span {
    font-size: 1rem;
    color: white;
    font-weight: 500;
}

@media (max-width: 968px) {
    .profile-layout {
        grid-template-columns: 1fr;
    }
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    align-items: center;
}

.pricing-grid.single-plan {
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: 1fr;
}

@media (max-width: 600px) {
    .pricing-grid.single-plan {
        max-width: 100%;
        padding: 0 1rem;
    }
}

/* PRICING & PLANS */
.billing-selector {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.billing-btn {
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    background: transparent;
    color: var(--text-muted);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.billing-btn:hover {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-main);
}

.billing-btn.active {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.pricing-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
    border-radius: 32px;
    padding: 3.5rem;
    position: relative;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

@media (max-width: 768px) {
    .pricing-card {
        padding: 2rem 1.5rem;
    }
}

.pricing-card.popular {
    border: 1px solid rgba(59, 130, 246, 0.5);
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.1);
}

.pricing-card.popular::before {
    content: 'RECOMENDADO';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: white;
    padding: 4px 16px;
    border-radius: 99px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.price-display-wrapper {
    text-align: center;
    margin: 2.5rem 0;
}

.price-main {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    color: white;
    font-family: 'Outfit', sans-serif;
}

.price-symbol {
    font-size: 1.5rem;
    vertical-align: super;
}

.price-period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.saving-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 6px 12px;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 1rem;
}

/* EXPERT SECTION */
.expert-section {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .expert-section {
        padding: 2rem;
        border-radius: 24px;
        text-align: center;
    }

    .expert-content h3 {
        font-size: 1.8rem;
    }
}

.expert-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.expert-content h3 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.expert-content p {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 800px;
}

/* CONTACT SECTION ADAPTATION */
#contact .product-split-card {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-premium {
    text-align: center;
    padding: 4rem 2rem;
    border-top: 1px solid var(--border-light);
    color: var(--text-muted);
}

.footer-premium p {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Loader Small */
@keyframes masterSpin {
    to {
        transform: rotate(360deg);
    }
}

.loader-small {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    animation: masterSpin 1s linear infinite;
    display: inline-block;
    vertical-align: middle;
}

/* Premium Nav Tooltips */
[data-tooltip] {
    position: relative;
    cursor: pointer;
}

[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(15, 23, 42, 0.95);
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    pointer-events: none;
}

[data-tooltip]:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Trial Styles */
.btn-trial {
    background: linear-gradient(135deg, #f59e0b, #d97706) !important;
    border: none !important;
    transition: all 0.3s ease !important;
}

.btn-trial:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4) !important;
    filter: brightness(1.1);
}

/* Hero CTA Group */
.hero-cta-group {
    margin-top: 2.5rem;
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 1.3s ease-out;
}

.hero-cta-group .btn-split {
    min-width: 280px;
    font-size: 1.1rem;
    padding: 1.25rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 600px) {
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        padding: 0 1rem;
        gap: 1rem;
    }

    .hero-cta-group .btn-split {
        min-width: 100%;
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

.save-tag {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.7rem;
    margin-left: 5px;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

/* Premium Nav Tooltips */
[data-tooltip] {
    position: relative;
    cursor: pointer;
}

[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(15, 23, 42, 0.95);
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    pointer-events: none;
}

[data-tooltip]:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Trust & Transparency Section */
.transparency-footer {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2.5rem;
    margin-top: 4rem;
    text-align: left;
    backdrop-filter: blur(10px);
}

.transparency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.transparency-item h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.transparency-item p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

.trust-badge-row {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.trust-mini-badge {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px 12px;
    border-radius: 99px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 6px;
}

.trust-mini-badge svg {
    color: #10b981;
}