/* Premium design style - Dark SaaS & Glassmorphism system */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Color Palette - Premium Slate & Electric Blue & Indigo */
    --bg-dark-950: #030712; /* Deep background slate */
    --bg-dark-900: #080f21; /* Card & Nav background */
    --bg-dark-800: #0f172a; /* Secondary background */
    --accent-blue: #2563eb;
    --accent-indigo: #6366f1;
    --accent-violet: #8b5cf6;
    --accent-emerald: #10b981;
    
    /* Text colors */
    --text-white: #ffffff;
    --text-gray-100: #f3f4f6;
    --text-gray-300: #d1d5db;
    --text-gray-400: #9ca3af;
    --text-gray-500: #6b7280;
    
    /* System variables */
    --border-glass: rgba(255, 255, 255, 0.08);
    --bg-glass: rgba(8, 15, 33, 0.7);
    --bg-glass-card: rgba(15, 23, 42, 0.4);
    --shadow-premium: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
    --shadow-glow-blue: 0 0 30px rgba(37, 99, 235, 0.2);
    --shadow-glow-violet: 0 0 30px rgba(139, 92, 246, 0.25);
    
    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Settings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark-950);
}

body {
    font-family: var(--font-body);
    color: var(--text-gray-300);
    background-color: var(--bg-dark-950);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark-950);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-dark-800);
    border-radius: 5px;
    border: 2px solid var(--bg-dark-950);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-indigo);
}

/* Typography & Heading Styles */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-white);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.gradient {
    background: linear-gradient(135deg, #60a5fa 0%, #818cf8 50%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Custom Keyframe Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes floatReverse {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(12px);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.05);
    }
}

.fade-in-up {
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

/* Navbar - Sleek Glassmorphism Floating Pill */
.navbar {
    position: fixed;
    top: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1200px;
    background: rgba(8, 15, 33, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.65rem 2rem;
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    transition: var(--transition-smooth);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.navbar.scrolled {
    top: 0.75rem;
    background: rgba(8, 15, 33, 0.85);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(99, 102, 241, 0.15);
    padding: 0.55rem 2rem;
    width: 95%;
}

.navbar-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 25px !important;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(37, 99, 235, 0.2));
    transition: var(--transition-smooth);
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.navbar .btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    border-radius: 50px; /* Fully rounded buttons to match pill navbar */
}

/* Premium Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    letter-spacing: -0.01em;
}

.btn svg {
    transition: var(--transition-smooth);
}

.btn:hover svg {
    transform: translateX(3px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-indigo) 50%, var(--accent-violet) 100%);
    color: var(--text-white);
    box-shadow: var(--shadow-glow-blue);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: skewX(-15deg);
    transition: 0.75s;
    opacity: 0;
}

.btn-primary:hover::after {
    left: 120%;
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
    border-color: rgba(255, 255, 255, 0.25);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-white);
    border: 1px solid var(--border-glass);
}

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

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-white);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--text-white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.1rem 2.2rem;
    font-size: 1.05rem;
    border-radius: 1rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10rem 2rem 6rem;
    position: relative;
    overflow: hidden;
    background: var(--bg-dark-950);
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(3, 7, 18, 0.75) 0%, rgba(3, 7, 18, 0.95) 100%);
    z-index: 1;
}

.hero-glow {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

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

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: #a5b4fc;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.05);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background-color: #6366f1;
    border-radius: 50%;
    animation: pulseGlow 2s infinite;
}

.hero-text h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.75rem;
    letter-spacing: -0.03em;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-gray-400);
    margin-bottom: 3rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Feature & Profile Sections */
.profile-section {
    padding: 9rem 2rem;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-dark-950);
}

/* Add custom neon radial glow to section corners */
.profile-section::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.profile-section:nth-child(odd)::after {
    top: -10%;
    right: -10%;
}

.profile-section:nth-child(even)::after {
    bottom: -10%;
    left: -10%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.035) 0%, transparent 70%);
}

.profile-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 7rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.profile-content.reverse {
    grid-template-columns: 0.9fr 1.1fr;
}

.profile-text h2 {
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.profile-text .subtitle {
    font-size: 1.15rem;
    color: var(--text-gray-400);
    margin-bottom: 2.5rem;
    font-weight: 500;
}

/* Feature List (Modern Timeline look) */
.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.75rem;
    background: var(--bg-glass-card);
    border-radius: 1.25rem;
    border: 1px solid var(--border-glass);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
}

.feature-list li:hover {
    transform: translateY(-4px) scale(1.01);
    border-color: rgba(99, 102, 241, 0.25);
    background: rgba(15, 23, 42, 0.7);
    box-shadow: var(--shadow-premium), 0 0 20px rgba(99, 102, 241, 0.05);
}

.feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-indigo) 100%);
    border-radius: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

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

.feature-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.feature-content p {
    color: var(--text-gray-400);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Visual Mockups */
.profile-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-card {
    width: 100%;
    background: var(--bg-dark-900);
    border-radius: 1.75rem;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--shadow-premium), 0 25px 70px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-glass);
}

.visual-card:hover {
    transform: translateY(-8px) rotate(0.5deg);
    border-color: rgba(99, 102, 241, 0.2);
    box-shadow: var(--shadow-premium), 0 30px 80px rgba(0, 0, 0, 0.5), var(--shadow-glow-blue);
}

.screenshot {
    width: 100%;
    height: auto;
    border-radius: 1.35rem;
    background: #0b0f19;
    display: block;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Floating interactive badges on mockups */
.visual-tag {
    position: absolute;
    background: rgba(8, 15, 33, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.75rem 1.25rem;
    border-radius: 1rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 0.65rem;
    z-index: 10;
    border: 1px solid var(--border-glass);
    pointer-events: none;
}

.tag-1 { 
    top: -5%; 
    left: -5%; 
    animation: float 5s ease-in-out infinite; 
    border-left: 2px solid var(--accent-blue);
}

.tag-2 { 
    bottom: -6%; 
    right: -4%; 
    animation: floatReverse 6s ease-in-out infinite;
    border-left: 2px solid var(--accent-emerald);
}

.tag-3 { 
    top: 25%; 
    right: -8%; 
    animation: float 4.5s ease-in-out infinite;
    border-left: 2px solid var(--accent-violet);
}

.visual-tag svg {
    width: 16px;
    height: 16px;
    color: var(--accent-indigo);
}

/* Statistics Section */
.stats-section {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, var(--bg-dark-950) 0%, var(--bg-dark-900) 50%, var(--bg-dark-950) 100%);
    border-y: 1px solid var(--border-glass);
    position: relative;
    z-index: 10;
}

.stats-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    text-align: center;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, #ffffff 30%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-gray-400);
    font-weight: 500;
}

/* Benefits Section */
.benefits-section {
    padding: 9rem 2rem;
    background: var(--bg-dark-950);
}

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

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-gray-400);
}

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

.benefit-card {
    background: var(--bg-glass-card);
    border: 1px solid var(--border-glass);
    padding: 3rem 2.25rem;
    border-radius: 1.5rem;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-8px);
    background: rgba(15, 23, 42, 0.7);
    border-color: rgba(99, 102, 241, 0.25);
    box-shadow: var(--shadow-premium), 0 0 30px rgba(99, 102, 241, 0.05);
}

.benefit-card .feature-icon {
    margin-bottom: 2rem;
    background: rgba(99, 102, 241, 0.06);
    border: 1px solid rgba(99, 102, 241, 0.15);
    color: #818cf8;
    box-shadow: none;
}

.benefit-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-indigo) 100%);
    color: var(--text-white);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

.benefit-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-gray-400);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials-section {
    padding: 9rem 2rem;
    background: linear-gradient(180deg, var(--bg-dark-950) 0%, var(--bg-dark-900) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid var(--border-glass);
    padding: 2.5rem;
    border-radius: 1.5rem;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    background: rgba(15, 23, 42, 0.75);
    border-color: rgba(99, 102, 241, 0.25);
    box-shadow: var(--shadow-premium);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.25rem;
    color: #f59e0b; /* Amber */
}

.testimonial-stars svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray-300);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-dark-800);
    border: 2px solid var(--border-glass);
    overflow: hidden;
}

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

.testimonial-info h4 {
    font-size: 0.975rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.15rem;
}

.testimonial-info p {
    font-size: 0.825rem;
    color: var(--text-gray-400);
}

/* Pricing Section */
.pricing-section {
    padding: 9rem 2rem;
    background: var(--bg-dark-950);
}

.pricing-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.pricing-toggle-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-gray-400);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.pricing-toggle-label.active {
    color: var(--text-white);
}

.pricing-switch {
    position: relative;
    width: 56px;
    height: 28px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 9999px;
    cursor: pointer;
    border: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
}

.pricing-switch-dot {
    position: absolute;
    top: 3px;
    left: 4px;
    width: 20px;
    height: 20px;
    background: var(--text-white);
    border-radius: 50%;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Active switch state */
.pricing-switch.active {
    background: var(--accent-indigo);
}

.pricing-switch.active .pricing-switch-dot {
    left: 30px;
}

.pricing-discount {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: var(--accent-emerald);
    padding: 0.25rem 0.65rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.pricing-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.pricing-card {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid var(--border-glass);
    border-radius: 2rem;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-premium);
}

.pricing-card.featured {
    background: rgba(15, 23, 42, 0.65);
    border: 2px solid var(--accent-indigo);
    box-shadow: var(--shadow-glow-violet);
}

.pricing-card.featured::before {
    content: 'MAIS POPULAR';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-indigo) 0%, var(--accent-violet) 100%);
    color: var(--text-white);
    padding: 0.35rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: 0.05em;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-header .desc {
    color: var(--text-gray-400);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    min-height: 48px;
}

.pricing-price-container {
    margin-bottom: 2rem;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.pricing-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
}

.pricing-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-white);
    font-family: var(--font-heading);
    line-height: 1;
    letter-spacing: -0.03em;
    transition: var(--transition-smooth);
}

.pricing-period {
    color: var(--text-gray-400);
    font-size: 0.95rem;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
    border-top: 1px solid var(--border-glass);
    padding-top: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-gray-300);
}

.pricing-features li svg {
    width: 18px;
    height: 18px;
    color: var(--accent-indigo);
    min-width: 18px;
}

.pricing-features li.disabled {
    color: var(--text-gray-500);
}

.pricing-features li.disabled svg {
    color: var(--text-gray-500);
}

.pricing-card .btn {
    width: 100%;
}

/* FAQ Section */
.faq-section {
    padding: 9rem 2rem;
    background: linear-gradient(180deg, var(--bg-dark-950) 0%, var(--bg-dark-900) 100%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid var(--border-glass);
    border-radius: 1.25rem;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(15, 23, 42, 0.65);
}

.faq-item details {
    width: 100%;
}

.faq-item summary {
    padding: 1.75rem 2rem;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-white);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    outline: none;
}

/* Hide native details arrow */
.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-icon-wrapper {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    color: var(--text-gray-400);
}

.faq-icon-wrapper svg {
    width: 16px;
    height: 16px;
    transition: var(--transition-smooth);
}

/* Rotate icon on details open */
.faq-item details[open] summary .faq-icon-wrapper {
    background: var(--accent-indigo);
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.1);
}

.faq-item details[open] summary .faq-icon-wrapper svg {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem 2rem 2rem;
    color: var(--text-gray-400);
    font-size: 1rem;
    line-height: 1.7;
    border-top: 1px solid rgba(255, 255, 255, 0.01);
    animation: fadeInUp 0.4s ease-out;
}

/* CTA Section */
.cta {
    padding: 10rem 2rem;
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.15) 0%, rgba(3, 7, 18, 1) 80%), var(--bg-dark-950);
    border-top: 1px solid var(--border-glass);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    display: none; /* remove default background circle */
}

.cta-glow {
    position: absolute;
    bottom: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-size: 3.75rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.cta p {
    font-size: 1.25rem;
    color: var(--text-gray-400);
    margin-bottom: 3.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
}

.cta .btn-primary {
    padding: 1.1rem 2.5rem;
    font-size: 1.05rem;
}

/* Mega Footer */
footer {
    background: var(--bg-dark-950);
    color: var(--text-gray-400);
    padding: 6rem 2rem 3rem;
    border-top: 1px solid var(--border-glass);
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 4rem;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-info img {
    height: 32px;
    width: auto;
    align-self: flex-start;
}

.footer-info p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray-300);
    transition: var(--transition-smooth);
    text-decoration: none;
}

.social-link:hover {
    background: var(--accent-indigo);
    color: var(--text-white);
    transform: translateY(-3px);
}

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

.footer-links-col h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links-col a {
    color: var(--text-gray-400);
    text-decoration: none;
    font-size: 0.925rem;
    transition: var(--transition-smooth);
}

.footer-links-col a:hover {
    color: var(--text-white);
    padding-left: 3px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-bottom p {
    font-size: 0.85rem;
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}

.footer-legal-links a {
    color: var(--text-gray-500);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.footer-legal-links a:hover {
    color: var(--text-gray-300);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .profile-content,
    .profile-content.reverse {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .profile-content.reverse .profile-visual {
        grid-row: 1; /* Keep visual on top in responsive layouts */
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 750px;
    }
    
    .pricing-card.featured {
        grid-column: span 2;
        order: -1; /* Highlighted first on medium screens */
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
        margin: 0 auto;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 8rem;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .profile-text h2 {
        font-size: 2.25rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .pricing-card.featured {
        grid-column: span 1;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .section-header h2 {
        font-size: 2.25rem;
    }
    
    .cta h2 {
        font-size: 2.25rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-buttons {
        gap: 0.5rem;
    }
    
    .btn {
        padding: 0.6rem 1.1rem;
        font-size: 0.85rem;
    }
    
    .btn-large {
        padding: 0.9rem 1.8rem;
    }
}

/* Pricing Comparison Table Section */
.pricing-comparison {
    padding: 2rem 2rem 9rem;
    background: var(--bg-dark-950);
}

.comparison-table-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    overflow-x: auto;
    border-radius: 1.5rem;
    border: 1px solid var(--border-glass);
    background: rgba(15, 23, 42, 0.25);
    box-shadow: var(--shadow-premium);
}

/* Custom Scrollbar for the table wrapper on mobile */
.comparison-table-wrapper::-webkit-scrollbar {
    height: 8px;
}
.comparison-table-wrapper::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.1);
}
.comparison-table-wrapper::-webkit-scrollbar-thumb {
    background: var(--bg-dark-800);
    border-radius: 4px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.95rem;
    color: var(--text-gray-300);
    min-width: 800px; /* Ensures readable columns on small viewports */
}

.comparison-table th, .comparison-table td {
    padding: 1.25rem 2rem;
    border-bottom: 1px solid var(--border-glass);
    vertical-align: middle;
}

.comparison-table tr:last-child th, 
.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table th {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-white);
    background: rgba(8, 15, 33, 0.45);
}

.comparison-table .feature-name {
    font-weight: 600;
    color: var(--text-white);
    width: 35%;
}

.comparison-table .feature-category {
    background: rgba(99, 102, 241, 0.05);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    color: #a5b4fc;
    padding: 0.75rem 2rem;
    border-top: 1px solid var(--border-glass);
}

.comparison-table .plan-col {
    text-align: center;
    width: 21.6%;
}

.comparison-table .plan-col.featured {
    background: rgba(99, 102, 241, 0.03);
    border-left: 1px solid rgba(99, 102, 241, 0.10);
    border-right: 1px solid rgba(99, 102, 241, 0.10);
}

.comparison-table tr:hover td {
    background: rgba(255, 255, 255, 0.01);
}

.comparison-table tr:hover td.plan-col.featured {
    background: rgba(99, 102, 241, 0.06);
}

/* Feature Check / X / text styles */
.comparison-table .check-icon {
    color: var(--accent-emerald);
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
}

.comparison-table .x-icon {
    color: var(--text-gray-500);
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: middle;
}

.comparison-table .limit-text {
    font-weight: 600;
    color: var(--text-white);
}

.comparison-table .plan-header-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.comparison-table .plan-header-price {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--accent-indigo);
}

.comparison-table .plan-header-featured {
    position: relative;
}

.comparison-table .plan-header-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-indigo) 0%, var(--accent-violet) 100%);
    color: var(--text-white);
    font-size: 0.65rem;
    font-family: var(--font-heading);
    font-weight: 800;
    padding: 0.15rem 0.75rem;
    border-radius: 9999px;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
