/* ================================================
   GESTIONAR.AI — Main Stylesheet
   Dark theme, blue gradient accents, modern UI
   ================================================ */

/* --- CSS Variables --- */
:root {
    --bg-primary: #0d1117;
    --bg-secondary: #161b22;
    --bg-card: #1c2128;
    --bg-card-hover: #21262d;
    --border: rgba(99, 163, 230, 0.08);
    --border-hover: rgba(99, 163, 230, 0.2);

    --text-primary: #f0f6fc;
    --text-secondary: #8b949e;
    --text-muted: #6e7681;

    --accent-1: #6CB4EE;
    --accent-2: #4A7BD4;
    --accent-3: #3a5fad;
    --gradient: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    --gradient-subtle: linear-gradient(135deg, rgba(108,180,238,0.1), rgba(74,123,212,0.1));
    --gradient-bg: linear-gradient(180deg, #0d1117 0%, #111820 50%, #0d1117 100%);

    --glow: 0 0 20px rgba(108, 180, 238, 0.15);
    --glow-strong: 0 0 40px rgba(108, 180, 238, 0.25);

    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-main);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: rgba(108, 180, 238, 0.3);
    color: var(--text-primary);
}

img {
    max-width: 100%;
    height: auto;
}

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

/* --- Cursor Glow --- */
.cursor-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(108,180,238,0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    opacity: 0;
}

body:hover .cursor-glow {
    opacity: 1;
}

/* --- Layout --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 120px 0;
    position: relative;
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(13, 17, 23, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    z-index: 10;
}

.logo-img {
    height: 36px;
    width: auto;
}

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

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: var(--transition);
    border-radius: 1px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    font-size: 14px;
    font-weight: 600;
    padding: 10px 24px;
    background: var(--gradient);
    color: white;
    border-radius: 100px;
    transition: var(--transition);
}

.nav-cta:hover {
    box-shadow: var(--glow-strong);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 10;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-geometric {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    z-index: 0;
    opacity: 0.07;
}

.geo-triangle {
    position: absolute;
    top: 50%;
    left: 50%;
    border-style: solid;
    animation: geoRotate 20s linear infinite;
}

.geo-1 {
    width: 0;
    height: 0;
    margin-top: -200px;
    margin-left: -200px;
    border-width: 0 200px 346px 200px;
    border-color: transparent transparent var(--accent-1) transparent;
    opacity: 0.5;
}

.geo-2 {
    width: 0;
    height: 0;
    margin-top: -150px;
    margin-left: -150px;
    border-width: 0 150px 260px 150px;
    border-color: transparent transparent var(--accent-2) transparent;
    opacity: 0.3;
    animation-direction: reverse;
    animation-duration: 25s;
}

.geo-3 {
    width: 0;
    height: 0;
    margin-top: -100px;
    margin-left: -100px;
    border-width: 0 100px 173px 100px;
    border-color: transparent transparent var(--accent-1) transparent;
    opacity: 0.4;
    animation-duration: 30s;
}

@keyframes geoRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--gradient-subtle);
    border: 1px solid var(--border-hover);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--accent-1);
    margin-bottom: 32px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-1);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-main);
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 20px rgba(108, 180, 238, 0.2);
}

.btn-primary:hover {
    box-shadow: var(--glow-strong);
    transform: translateY(-2px);
}

.btn-ghost {
    background: rgba(108, 180, 238, 0.08);
    color: var(--accent-1);
    border: 1px solid rgba(108, 180, 238, 0.15);
}

.btn-ghost:hover {
    background: rgba(108, 180, 238, 0.15);
    border-color: rgba(108, 180, 238, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-hover);
}

.btn-outline:hover {
    border-color: var(--accent-1);
    color: var(--accent-1);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 16px;
}

/* --- Hero Stats --- */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-suffix {
    font-size: 28px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* --- Scroll Indicator --- */
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid var(--border-hover);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: var(--accent-1);
    border-radius: 2px;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(12px); opacity: 0.3; }
}

/* --- Section Header --- */
.section-header {
    text-align: center;
    margin-bottom: 72px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-1);
    margin-bottom: 16px;
    padding: 6px 16px;
    background: var(--gradient-subtle);
    border-radius: 100px;
    border: 1px solid rgba(108, 180, 238, 0.1);
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-desc {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* --- Service Cards --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    overflow: hidden;
}

.service-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    background: var(--bg-card-hover);
}

.card-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(108, 180, 238, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    transition: var(--transition-slow);
}

.service-card:hover .card-glow {
    transform: scale(1.5);
    opacity: 1.5;
}

.service-card.featured {
    border-color: rgba(108, 180, 238, 0.2);
    background: linear-gradient(135deg, rgba(108, 180, 238, 0.05) 0%, var(--bg-card) 100%);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 12px;
    background: var(--gradient);
    color: white;
    border-radius: 100px;
}

.card-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.card-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.card-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    font-size: 12px;
    font-weight: 500;
    padding: 4px 12px;
    background: rgba(108, 180, 238, 0.08);
    color: var(--accent-1);
    border-radius: 100px;
    border: 1px solid rgba(108, 180, 238, 0.1);
}

/* --- Process / Timeline --- */
.process {
    background: var(--bg-secondary);
}

.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--border);
}

.process-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient);
    transition: width 1.5s ease-out;
}

.process-timeline.animated .process-line::after {
    width: 100%;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 2px solid var(--border);
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font-mono);
    color: var(--accent-1);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    transition: var(--transition-slow);
}

.process-step:hover .step-number {
    border-color: var(--accent-1);
    box-shadow: var(--glow);
}

.step-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- Platforms / TargetDocs --- */
.platforms-showcase {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

/* Platform Hero Card */
.platform-hero-card {
    background: var(--bg-card);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-xl);
    padding: 48px;
    overflow: hidden;
    position: relative;
    transition: var(--transition);
}

.platform-hero-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
}

.platform-hero-card:hover {
    box-shadow: var(--glow);
}

.platform-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: center;
}

.platform-hero-visual {
    position: relative;
}

/* Mockup */
.platform-mockup {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.platform-hero-card:hover .platform-mockup {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.mockup-header {
    padding: 10px 16px;
    background: rgba(0,0,0,0.25);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
}

.mockup-dots span:first-child { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #ffbd2e; }
.mockup-dots span:last-child { background: #28ca41; }

.mockup-url {
    font-size: 11px;
    color: var(--text-muted);
    font-family: var(--font-mono);
    background: rgba(0,0,0,0.2);
    padding: 3px 10px;
    border-radius: 4px;
}

.mockup-body {
    display: flex;
    min-height: 260px;
    padding: 16px;
    gap: 16px;
}

.mockup-sidebar {
    width: 100px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 8px;
    background: rgba(0,0,0,0.15);
    border-radius: var(--radius-sm);
}

.mockup-line {
    height: 8px;
    background: var(--border);
    border-radius: 4px;
}

.mockup-line.short { width: 60%; }

.mockup-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mockup-stats-row {
    display: flex;
    gap: 10px;
}

.mockup-stat-box {
    flex: 1;
    padding: 12px;
    background: rgba(0,0,0,0.15);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mockup-stat-value {
    height: 16px;
    width: 50%;
    background: var(--gradient);
    border-radius: 4px;
    opacity: 0.4;
}

.mockup-table {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: rgba(0,0,0,0.1);
    border-radius: var(--radius-sm);
    padding: 10px;
}

.table-row {
    height: 10px;
    background: var(--border);
    border-radius: 3px;
    opacity: 0.5;
}

.table-row.header {
    opacity: 0.8;
    height: 12px;
    margin-bottom: 4px;
}

/* Platform Hero Info */
.platform-logo-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: var(--gradient-subtle);
    border: 1px solid rgba(108, 180, 238, 0.15);
    border-radius: 100px;
    color: var(--accent-1);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
}

.platform-hero-info h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.3;
}

.platform-hero-info p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.btn-sm {
    padding: 12px 24px;
    font-size: 14px;
}

/* Platform Feature Cards Grid */
.platform-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pf-card {
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.pf-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
    background: var(--bg-card-hover);
}

.pf-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--gradient-subtle);
    border: 1px solid rgba(108, 180, 238, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-1);
    margin-bottom: 16px;
}

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

.pf-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.pf-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Platform Audience */
.platform-audience {
    text-align: center;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.platform-audience h4 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.audience-tags {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.audience-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    background: rgba(108, 180, 238, 0.05);
    border: 1px solid var(--border);
    border-radius: 100px;
    transition: var(--transition);
}

.audience-tag svg {
    color: var(--accent-1);
    flex-shrink: 0;
}

.audience-tag:hover {
    border-color: var(--border-hover);
    color: var(--text-primary);
    background: rgba(108, 180, 238, 0.1);
}

/* --- About Section --- */
.about {
    background: var(--bg-secondary);
}

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

.about-content .section-tag {
    margin-bottom: 16px;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.about-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-text strong {
    color: var(--text-primary);
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 36px;
}

.value-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.value-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--gradient-subtle);
    border: 1px solid rgba(108, 180, 238, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent-1);
}

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

.value-item h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.value-item p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* About Visual / Floating Cards */
.about-visual {
    position: relative;
    min-height: 480px;
}

.visual-container {
    position: relative;
    width: 100%;
    height: 480px;
}

.about-logo-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    opacity: 0.08;
    animation: floatSlow 8s ease-in-out infinite;
}

@keyframes floatSlow {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    50% { transform: translate(-50%, -53%) rotate(5deg); }
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    animation: floatCard 6s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 40px;
    right: 20px;
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 200px;
    left: 0;
    animation-delay: -2s;
}

.floating-card.card-3 {
    bottom: 40px;
    right: 40px;
    animation-delay: -4s;
}

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

.fc-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(108, 180, 238, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-1);
    flex-shrink: 0;
}

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

.fc-icon.green {
    background: rgba(40, 202, 65, 0.1);
    color: #28ca41;
}

.fc-icon.purple {
    background: rgba(130, 80, 223, 0.1);
    color: #8250df;
}

.fc-label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
}

.fc-value {
    display: block;
    font-size: 18px;
    font-weight: 700;
}

.fc-green {
    color: #28ca41;
}

/* --- Tech Marquee --- */
.tech-marquee {
    padding: 40px 0;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.marquee-track {
    overflow: hidden;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 32px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-item {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
    font-family: var(--font-mono);
    transition: var(--transition);
}

.marquee-item:hover {
    color: var(--accent-1);
}

.marquee-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-2);
    border-radius: 50%;
    flex-shrink: 0;
    opacity: 0.4;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- CTA Section --- */
.cta {
    padding: 120px 0;
}

.cta-box {
    position: relative;
    padding: 80px 60px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    text-align: center;
}

.cta-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
}

.cta-shape.shape-1 {
    top: -120px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(108, 180, 238, 0.08) 0%, transparent 70%);
}

.cta-shape.shape-2 {
    bottom: -100px;
    left: -60px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(74, 123, 212, 0.08) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-desc {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Footer --- */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 32px;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 280px;
}

.footer-links h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.footer-links a {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    padding: 6px 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-1);
    transform: translateX(4px);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

/* --- Scroll Animations --- */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-visual {
        min-height: 360px;
    }

    .visual-container {
        height: 360px;
    }

    .platform-hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .platform-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-line {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .nav-links {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(13, 17, 23, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        z-index: 5;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links .nav-link {
        font-size: 20px;
    }

    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle br {
        display: none;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 28px;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .platform-hero-card {
        padding: 24px;
    }

    .platform-hero-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .platform-features-grid {
        grid-template-columns: 1fr;
    }

    .platform-hero-info h3 {
        font-size: 22px;
    }

    .audience-tags {
        flex-direction: column;
        align-items: center;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 48px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .floating-card.card-1 {
        top: 20px;
        right: 0;
    }

    .floating-card.card-2 {
        top: 140px;
        left: 0;
    }

    .floating-card.card-3 {
        bottom: 20px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 30px;
    }

    .section-title {
        font-size: 28px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}
