:root {
    --bg-base: #030305; /* Deep, almost pure black with a tiny blue/purple undertone */
    --bg-surface: #0A0A0E; 
    --primary: #FF9900; /* Vibrant Orange-Yellow */
    --primary-light: #FFB833; 
    --primary-dark: #cc7a00;
    --accent: #FF5A00; /* Strong Orange for the gradient flow */
    
    --text-main: #FFFFFF;
    --text-muted: #A1A1AA;
    
    --border: rgba(255, 255, 255, 0.08);
    --radius-full: 9999px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

html, body {
    background-color: var(--bg-base);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Background Gradients & Effects */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: radial-gradient(circle at 50% -20%, rgba(255, 153, 0, 0.12) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 10;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(3, 3, 5, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

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

.nav-links {
    display: flex;
    gap: 2rem;
}

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

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

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

.lang-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.lang-selector:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255,255,255,0.05);
}

.login-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    transition: opacity 0.2s;
}

.login-link:hover {
    opacity: 0.8;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border-radius: var(--radius-full);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 1px solid transparent;
    gap: 0.5rem;
}

.btn-small {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

.btn-large {
    padding: 1.125rem 2.25rem;
    font-size: 1.05rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    color: #110B00;
    box-shadow: 0 4px 15px rgba(255, 153, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 153, 0, 0.8);
    letter-spacing: 0.02em;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #FFC44D 0%, var(--primary-light) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 153, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Hero Section */
.hero {
    position: relative;
    padding-top: 180px;
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 70vh;
}

/* Premium Background Grid */
.bg-grid {
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background-size: 50px 50px;
    background-image: 
        linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
    mask-image: linear-gradient(to bottom, black 20%, transparent 90%);
    -webkit-mask-image: linear-gradient(to bottom, black 20%, transparent 90%);
    z-index: 0;
    pointer-events: none;
}

.hero-text-content {
    max-width: 850px;
    margin: 0 auto 4rem auto;
    position: relative;
    z-index: 10;
}

.pill-container {
    margin-bottom: 2rem;
}

.highlight-pill {
    background: rgba(255, 153, 0, 0.08);
    color: var(--primary);
    border: 1px solid rgba(255, 153, 0, 0.2);
    padding: 0.4rem 1.2rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 20px rgba(255, 153, 0, 0.1);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    animation: pulse 2s linear infinite;
}

@keyframes pulse {
    0% { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.main-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 2rem;
}

.animated-gradient {
    background: linear-gradient(-45deg, #FFD166, #FF9900, #FF5A00, #FFD166);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
    animation: gradientText 3s ease infinite;
}

.ai-animated-gradient {
    background: linear-gradient(-45deg, #FF00E5, #8A2BE2, #FF00E5);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
    animation: gradientText 3s ease infinite;
}

@keyframes gradientText {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@media (max-width: 768px) {
    .main-title { font-size: 2.5rem; }
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Video/Mockup Area */
.hero-video-mockup {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 1), 0 0 0 1px rgba(255,255,255,0.05);
    background: var(--bg-surface);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    transition: opacity 0.5s;
}

.hero-video-mockup:hover .video-thumbnail {
    opacity: 0.5;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
    background: linear-gradient(to top, rgba(3, 3, 5, 0.95), transparent 80%);
}

.video-overlay h2 {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    color: white;
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 0 0 rgba(255, 153, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 153, 0, 0.8);
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 0 20px rgba(255, 153, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* Floating Animations for Glows */
.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.35;
    animation: float 10s infinite ease-in-out alternate;
}

.glow-1 {
    width: 600px; height: 600px;
    background: var(--primary);
    top: -5%; left: -20%;
}

.glow-2 {
    width: 500px; height: 500px;
    background: var(--accent);
    bottom: -15%; right: -15%;
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-40px) scale(1.1); }
}

/* Integrations Marquee */
.integrations-marquee {
    width: 100%;
    overflow: hidden;
    padding: 2.5rem 0;
    background: rgba(3, 3, 5, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
}

.integrations-marquee::before,
.integrations-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 15%;
    z-index: 2;
    pointer-events: none;
}

.integrations-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-base), transparent);
}

.integrations-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-base), transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 60s linear infinite;
}



.marquee-content {
    display: flex;
    align-items: center;
    gap: 4.5rem;
    padding: 0 2.25rem;
}

.integration-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    opacity: 0.5;
    transition: opacity 0.3s ease, transform 0.3s ease;
    cursor: default;
}

.integration-item:hover {
    opacity: 1;
    transform: scale(1.15);
}

.integration-item img {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

.integration-item img.img-invert {
    filter: grayscale(100%) invert(100%) opacity(0.7);
}

.integration-item:hover img {
    filter: grayscale(0%) opacity(1);
}

.integration-item:hover img.img-invert {
    filter: grayscale(0%) opacity(1);
}

.integration-item svg {
    color: #ffffff;
    fill: currentColor;
    opacity: 0.9;
}

.integration-item span {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.01em;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Dashboard Mockup (Programa Básico) */
.dashboard-preview {
    padding: 120px 0;
    position: relative;
    z-index: 10;
}

.section-header {
    margin-bottom: 5rem;
}

.section-header.center {
    text-align: center;
}

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

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

.app-mockup {
    display: flex;
    background: rgba(10, 10, 14, 0.8);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    min-height: 500px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8), inset 0 1px 0 rgba(255,255,255,0.05);
}

.sidebar {
    width: 260px;
    background: rgba(3, 3, 5, 0.5);
    border-right: 1px solid var(--border);
    padding: 2.5rem 0;
}

.logo-small {
    padding: 0 2rem;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.logo-small::before {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    background: var(--primary);
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(255, 153, 0, 0.4);
}

.sidebar-menu {
    list-style: none;
}

.sidebar-menu li {
    padding: 0.9rem 2rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}

.sidebar-menu li:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.02);
}

.sidebar-menu li.active {
    color: var(--text-main);
    background: linear-gradient(90deg, rgba(255, 153, 0, 0.1) 0%, transparent 100%);
    border-left: 3px solid var(--primary);
}

.app-content {
    flex: 1;
    padding: 3rem;
}

.top-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    transition: transform 0.2s, box-shadow 0.2s;
}
.stat-card:hover { 
    transform: translateY(-4px); 
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.stat-card h4 {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

.positive {
    color: #4ADE80;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.recent-events h4 {
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 1.2rem;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th, .data-table td {
    padding: 1.2rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}

.data-table th {
    color: var(--text-muted);
    font-weight: 600;
}

.badge {
    padding: 0.35rem 0.75rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.badge-warning { background: rgba(255, 153, 0, 0.15); color: var(--primary-light); box-shadow: 0 0 10px rgba(255, 153, 0, 0.1); }
.badge-danger { background: rgba(248, 113, 113, 0.15); color: #FCA5A5; }
.badge-success { background: rgba(74, 222, 128, 0.15); color: #86EFAC; }

/* Responsive adjustments */
@media (max-width: 900px) {
    .nav-links, .nav-actions { display: none; }
    .mobile-toggle { display: block; }
    .top-stats { grid-template-columns: 1fr; }
    .app-mockup { flex-direction: column; }
    .sidebar { width: 100%; border-right: none; border-bottom: 1px solid var(--border); }
    .sidebar-menu { display: flex; overflow-x: auto; }
    .sidebar-menu li { white-space: nowrap; }
}
/* Niches Section */
/* Niches Section (Detailed Dark Mode) */
.niches-section {
    padding: 140px 0;
    position: relative;
    z-index: 10;
    background-color: var(--bg-surface);
    background-image: 
        radial-gradient(ellipse at center top, rgba(255, 153, 0, 0.05) 0%, transparent 60%),
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 100% 100%, 40px 40px, 40px 40px;
    border-top: 1px solid rgba(255, 153, 0, 0.15);
    border-bottom: 1px solid rgba(255,255,255,0.02);
    color: var(--text-main);
}
.niches-section .section-header h2 { color: var(--text-main); }
.niches-section .section-header p { color: var(--text-muted); }

.niches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}
.niche-card {
    background: rgba(10, 10, 14, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.niche-card:hover {
    transform: translateY(-8px);
    background: rgba(20, 20, 28, 0.8);
    border-color: rgba(255, 153, 0, 0.3);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4), inset 0 0 20px rgba(255, 153, 0, 0.05);
}
.niche-icon {
    font-size: 2.8rem;
    display: inline-block;
    margin-bottom: 1rem;
}
.niche-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: var(--text-main);
}
.niche-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* AI Evolution Section */
.ai-evolution-section {
    padding: 80px 0 60px; /* More bottom padding for the mockup */
    background-color: var(--bg-base);
    background-image: 
        radial-gradient(circle at 100% 50%, rgba(255, 90, 0, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 0% 100%, rgba(138, 43, 226, 0.04) 0%, transparent 50%);
    position: relative;
    z-index: 10;
}
.ai-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.5rem;
    align-items: center;
}
.ai-text h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}
.ai-text p {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}
.ai-features-list {
    list-style: none;
}
.ai-features-list li {
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 2.5rem;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}
.ai-features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: -2px;
    width: 28px;
    height: 28px;
    background: rgba(138, 43, 226, 0.15);
    color: #A855F7;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    border: 1px solid rgba(138, 43, 226, 0.3);
}
.ai-features-list li strong {
    color: var(--text-main);
}
.ai-visual {
    perspective: 1000px;
}
.ai-mockup-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transform: rotateY(-8deg) rotateX(5deg);
    box-shadow: -20px 20px 50px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255,255,255,0.05);
    transition: transform 0.4s;
}
.ai-mockup-card:hover {
    transform: rotateY(0deg) rotateX(0deg);
}
.mockup-header {
    background: rgba(255,255,255,0.03);
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border);
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}
.mockup-body {
    padding: 2rem;
    font-family: monospace;
    font-size: 0.9rem;
    color: #4ADE80;
    line-height: 1.8;
}
@media (max-width: 900px) {
    .ai-grid { grid-template-columns: 1fr; gap: 3rem; }
    .ai-mockup-card { transform: none; }
}

/* Autopilot Section */
.autopilot-section { 
    padding: 60px 0 140px; /* Reduced top padding */
    position: relative; 
    z-index: 10;
    background-color: #0A0A0F;
    background-image:
        radial-gradient(ellipse at top left, rgba(255, 153, 0, 0.05) 0%, transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,0.015) 0%, transparent 100%);
    border: none; /* Removed border divider */
}
.autopilot-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 4rem; }
.autopilot-card { 
    background: rgba(20, 20, 26, 0.5); 
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.04); 
    padding: 3.5rem 2.5rem; 
    border-radius: var(--radius-lg); 
    text-align: center; 
    transition: all 0.4s ease; 
    display:flex; flex-direction: column; align-items:center; 
}
.autopilot-card:hover { 
    transform: translateY(-10px); 
    border-color: rgba(255, 153, 0, 0.3); 
    background: rgba(30, 30, 36, 0.7); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), inset 0 0 20px rgba(255, 153, 0, 0.05); 
}
.autopilot-card h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 1rem; color: var(--text-main); }
.autopilot-card p { color: var(--text-muted); line-height: 1.6; font-size: 1.05rem; }

/* Workflow Section (Obsidian Inspired Canvas - Purple Edition) */
.workflow-section {
    padding: 100px 0 140px;
    background-color: #0B0A11; /* Deep purple-black Obsidian theme */
    background-image: 
        radial-gradient(circle at 2px 2px, rgba(168, 85, 247, 0.2) 1.5px, transparent 0); 
    background-size: 36px 36px;
    position: relative;
    z-index: 10;
    border: none;
    /* Removed inset shadow that was interfering with the section above */
    box-shadow: 0 -1px 0 rgba(168, 85, 247, 0.1); 
}

.workflow-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.4), transparent); /* Soft neon highlight at the transition */
    z-index: 100;
}

.workflow-section::after {
    content: '';
    position: absolute;
    top: -150px; left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 300px;
    background: radial-gradient(circle at center, rgba(168, 85, 247, 0.08) 0%, transparent 70%); /* Soft purple glow merging the sections */
    pointer-events: none;
    z-index: 1;
}

.section-header center h2 {
    font-size: 3rem;
    font-weight: 850;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
}

.workflow-section .container {
    max-width: 1500px; /* Force wider container for horizontal flow */
}

.workflow-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-top: 5rem;
    flex-wrap: nowrap; /* Prevent wrapping on desktop */
}

.workflow-box {
    background: #141418; 
    border: 1.5px solid rgba(255, 153, 0, 0.2); 
    padding: 2.5rem 1.5rem; 
    border-radius: 24px;
    text-align: center;
    width: 260px; /* Slightly adjusted to fit */
    position: relative;
    box-shadow: 0 20px 50px -15px rgba(0,0,0,0.9), inset 0 0 25px rgba(255, 153, 0, 0.03); 
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5;
    flex-shrink: 0; /* Don't squash boxes */
}

.workflow-step-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.workflow-box {
    background: #141418; 
    border: 1.5px solid rgba(255, 153, 0, 0.2); 
    padding: 2.5rem 1.5rem; 
    border-radius: 24px;
    text-align: center;
    width: 250px; 
    position: relative;
    box-shadow: 0 20px 50px -15px rgba(0,0,0,0.9), inset 0 0 25px rgba(255, 153, 0, 0.03); 
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5;
}

.workflow-box:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: var(--primary);
    box-shadow: 0 30px 70px -10px rgba(0,0,0,0.8), 0 0 40px rgba(255, 153, 0, 0.1);
}

.step-icon {
    width: 100%;
    height: 100px; /* Area for the icon */
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

/* Targeting both i (pre-load) and svg (post-load) */
.step-icon i,
.step-icon svg { 
    width: 84px !important; 
    height: 84px !important; 
    stroke-width: 2.5px;
    color: rgba(255, 255, 255, 0.8);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
}

.step-icon.highlight i,
.step-icon.highlight svg { 
    color: var(--primary) !important; 
    filter: drop-shadow(0 0 20px rgba(255, 153, 0, 0.4));
}

.workflow-box.success {
    border-color: rgba(74, 222, 128, 0.3);
}

.workflow-box.success i,
.workflow-box.success svg { 
    color: #4ADE80 !important; 
    filter: drop-shadow(0 0 25px rgba(74, 222, 128, 0.5));
}

.workflow-box h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

.workflow-box p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Connectors */
.workflow-connector {
    display: flex;
    align-items: center;
    width: 90px;
    position: relative;
    flex-shrink: 0;
}

.dashed-line {
    flex-grow: 1;
    height: 1px;
    border-top: 3px dashed var(--primary); /* Full yellow highlight */
    opacity: 0.3;
}

.connector-arrow {
    position: absolute;
    right: -15px;
    width: 28px; height: 28px;
    color: var(--primary);
    filter: drop-shadow(0 0 5px rgba(255, 153, 0, 0.3));
}

/* Responsive */
@media (max-width: 1400px) {
    .workflow-container { 
        flex-wrap: wrap; 
        gap: 3rem; 
        padding: 0 20px;
    }
    .workflow-connector { display: none; }
    .workflow-box { width: 100%; max-width: 320px; }
}

@media (max-width: 768px) {
    .workflow-section { padding: 80px 0; }
}

/* Pricing Section */
.container-pricing { width: 100%; max-width: 1400px !important; margin: 0 auto; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.pricing-section { 
    padding: 160px 0 140px; 
    position: relative; 
    z-index: 10; 
    background-color: var(--bg-base); 
    width: 100%; 
    overflow-x: hidden; 
}
.pricing-section::before {
    content: ''; position: absolute; top:0; left: 50%; transform: translateX(-50%); width: 80%; height: 500px;
    background: radial-gradient(ellipse at top, rgba(255, 153, 0, 0.06) 0%, transparent 70%);
    pointer-events: none;
}
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 4rem; width: 100%; align-items: stretch; justify-content: center; }
.pricing-card { background: rgba(255,255,255,0.015); border: 1px solid var(--border); padding: 3.5rem 2rem; border-radius: 24px; width: 100%; height: 100%; position: relative; display: flex; flex-direction: column; transition: all 0.3s ease; }
.pricing-card.premium { border-color: var(--primary); background: linear-gradient(180deg, rgba(255,153,0,0.08) 0%, rgba(255,255,255,0.02) 100%); box-shadow: 0 0 50px rgba(255,153,0,0.15); z-index: 2; transform: translateY(-10px); }
@media (max-width:1300px) { .pricing-grid { gap: 1rem; } .pricing-card { padding: 3rem 1.5rem; } .p-price .amount { font-size: 3.8rem; } }
@media (max-width:1100px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; } .pricing-card.premium { transform: none; } .pricing-card { padding: 3.5rem 2.5rem; } .p-price .amount { font-size: 4.5rem; } }
@media (max-width:768px) { .pricing-grid { grid-template-columns: 1fr; } }
.popular-badge { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--primary-light), var(--primary)); color: #000; padding: 6px 24px; border-radius: 20px; font-weight: 800; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; box-shadow: 0 4px 15px rgba(255, 153, 0, 0.4); white-space: nowrap; z-index: 10; }
.p-header h3 { font-size: 2rem; font-weight: 900; margin-bottom: 0.5rem; color: var(--text-main); letter-spacing: -0.03em;}
.p-header p { color: var(--text-muted); font-size: 1rem; margin-bottom: 2.5rem; line-height: 1.5;}
.p-price { display: flex; align-items: baseline; margin-bottom: 2.5rem; }
.p-price .currency { font-size: 1.4rem; font-weight: 700; margin-right: 0.3rem; color: var(--primary-light); }
.p-price .amount { font-size: 4.5rem; font-weight: 900; letter-spacing: -0.05em; color: var(--text-main); line-height:1;}
.p-price .period { color: var(--text-muted); margin-left: 0.4rem; font-size: 1rem; font-weight: 500;}
.p-features { list-style: none; margin-bottom: 2rem; }
.p-features li { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; font-size: 1.05rem; color: #A1A1AA; line-height: 1.4; }
.check-icon { width: 22px; height: 22px; color: rgba(255,255,255,0.3); flex-shrink: 0; margin-top:2px; }
.check-icon.highlight { color: var(--primary); }
.p-features li strong { color: var(--text-main); font-weight: 700; }
.p-btn { display: inline-block; width: 100%; margin-top: auto !important; text-align: center; padding: 1.25rem; font-size: 1.1rem; font-weight: 700; border-radius: var(--radius-full); }

/* Final CTA Section (Neon Dark Accent) */
.final-cta {
    padding: 140px 0;
    background-color: #050508;
    background-image: 
        radial-gradient(circle at center top, rgba(255, 153, 0, 0.12) 0%, transparent 60%),
        linear-gradient(rgba(255, 153, 0, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 153, 0, 0.04) 1px, transparent 1px);
    background-size: 100% 100%, 60px 60px, 60px 60px;
    border-top: 1px solid rgba(255, 153, 0, 0.35); /* Bright neon border */
    position: relative;
    overflow: hidden;
    color: var(--text-main); 
    text-align: center;
}
.final-cta .cta-title {
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-main);
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.final-cta .cta-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 3.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-muted);
}
.final-cta .btn-dark {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #000;
    border: none;
    box-shadow: 0 10px 30px rgba(255, 153, 0, 0.3);
}
.final-cta .btn-dark:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255, 153, 0, 0.5);
    color: #000;
}
.final-cta .cta-guarantee {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}
.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 153, 0, 0.05) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}
.final-cta .container { position: relative; z-index: 10; }

/* FAQ Section */
.faq-section {
    padding: 140px 0;
    position: relative;
    z-index: 10;
    background-color: var(--bg-surface);
}

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

.faq-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-card:hover {
    border-color: rgba(255, 153, 0, 0.2);
    background: rgba(255, 255, 255, 0.03);
}

.faq-header {
    padding: 2rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s;
}

.faq-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
}

.accordion-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0, 1, 0, 1);
    background: rgba(0,0,0,0.2);
}

.faq-content p {
    padding: 0 2.5rem 2.5rem;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Active State */
.faq-card.active {
    border-color: rgba(255, 153, 0, 0.4);
    background: rgba(255, 255, 255, 0.04);
}

.faq-card.active .faq-content {
    max-height: 500px;
    transition: all 0.5s cubic-bezier(1, 0, 1, 0);
}

.faq-card.active .accordion-icon {
    transform: rotate(180deg);
}

/* Footer */
.footer {
    padding: 60px 0;
    background: #030305;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    position: relative;
    z-index: 10;
}
.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}
.footer-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}
.footer-copyright {
    color: rgba(255,255,255,0.3);
    font-size: 0.9rem;
    font-weight: 500;
}
