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

    :root {
        --primary: #8B5CF6;
        --primary-dark: #7C3AED;
        --secondary: #A78BFA;
        --accent: #C4B5FD;
        --bg-dark: #1a1625;
        --bg-darker: #0f0a1a;
        --bg-hero: hsl(270, 40%, 8%);
        --bg-light: #FAFAFA;
        --text-dark: #1F2937;
        --text-muted: #6B7280;
        --border: #E5E7EB;
        --card: #FFFFFF;
        --muted: #F3F4F6;
    }

    body {
        font-family: 'Inter', system-ui, sans-serif;
        -webkit-font-smoothing: antialiased;
        background: var(--bg-light);
        color: var(--text-dark);
    }

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

    .text-gradient {
        background: linear-gradient(135deg, #8B5CF6, #A78BFA);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    /* ===== HEADER ===== */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        padding: 0 32px;
        transition: all 0.3s;
    }

    .header.transparent { background: transparent; }

    .header.scrolled {
        background: rgba(255,255,255,0.95);
        backdrop-filter: blur(20px);
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }

    .header-inner {
        max-width: 1400px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 80px;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
    }

    .logo-img {
        height: 50px;
        width: auto;
        transition: opacity 0.3s;
    }

    /* Logo branco no header transparente */
    .header.transparent .logo-img.logo-white {
        opacity: 1;
    }
    .header.transparent .logo-img.logo-color {
        opacity: 0;
        position: absolute;
    }

    /* Logo colorido quando scrolled */
    .header.scrolled .logo-img.logo-white {
        opacity: 0;
        position: absolute;
    }
    .header.scrolled .logo-img.logo-color {
        opacity: 1;
        position: relative;
    }

    /* Logo no footer (sempre branco em fundo escuro) */
    .footer .logo-img {
        height: 44px;
    }

    /* Esconder tagline no header */
    .header .logo-text .tagline {
        display: none;
    }

    .logo-text .name {
        font-size: 22px;
        font-weight: 700;
        display: block;
    }

    .logo-text .tagline {
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        opacity: 0.6;
    }

    .header.transparent .logo-text .name { color: white; }
    .header.scrolled .logo-text .name { color: var(--text-dark); }
    .footer .logo-text .name { color: white; }
    .footer .logo-text .tagline { color: rgba(255,255,255,0.6); }

    .nav {
        display: flex;
        gap: 4px;
    }

    .nav-item {
        position: relative;
    }

    .nav-link {
        display: flex;
        align-items: center;
        gap: 4px;
        padding: 8px 16px;
        font-size: 14px;
        font-weight: 500;
        text-decoration: none;
        border-radius: 8px;
        transition: all 0.2s;
        cursor: pointer;
    }

    .nav-link svg {
        width: 16px;
        height: 16px;
        transition: transform 0.2s;
    }

    .nav-item:hover .nav-link svg {
        transform: rotate(180deg);
    }

    .header.transparent .nav-link { color: rgba(255,255,255,0.8); }
    .header.transparent .nav-link:hover { color: white; background: rgba(255,255,255,0.1); }
    .header.scrolled .nav-link { color: var(--text-muted); }
    .header.scrolled .nav-link:hover { color: var(--text-dark); background: var(--muted); }

    .mega-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        padding-top: 8px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.2s;
        z-index: 1000;
    }

    .mega-menu-inner {
        background: white;
        border-radius: 16px;
        box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        border: 1px solid var(--border);
        overflow: hidden;
    }

    .nav-item:hover .mega-menu {
        opacity: 1;
        visibility: visible;
    }

    .mega-menu-header {
        padding: 16px 24px;
        background: var(--muted);
        border-bottom: 1px solid var(--border);
    }

    .mega-menu-header h4 {
        font-size: 14px;
        font-weight: 600;
        color: var(--text-dark);
        margin: 0;
    }

    .mega-menu-header p {
        font-size: 12px;
        color: var(--text-muted);
        margin: 4px 0 0;
    }

    .mega-menu-grid {
        padding: 12px;
        display: grid;
        gap: 4px;
    }

    .mega-menu-grid.cols-1 { min-width: 320px; grid-template-columns: 1fr; }
    .mega-menu-grid.cols-2 { min-width: 580px; grid-template-columns: repeat(2, 1fr); }

    .mega-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 12px;
        border-radius: 12px;
        text-decoration: none;
        transition: background 0.2s;
    }

    .mega-item:hover { background: var(--muted); }

    .mega-item-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: linear-gradient(135deg, rgba(139,92,246,0.1), rgba(167,139,250,0.1));
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: background 0.2s;
    }

    .mega-item:hover .mega-item-icon {
        background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(167,139,250,0.2));
    }

    .mega-item-icon svg {
        width: 20px;
        height: 20px;
        color: var(--primary);
    }

    .mega-item-content { flex: 1; min-width: 0; }

    .mega-item-title {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        font-weight: 500;
        color: var(--text-dark);
        margin-bottom: 2px;
    }

    .mega-item:hover .mega-item-title { color: var(--primary); }

    .mega-item-badge {
        padding: 2px 8px;
        font-size: 10px;
        font-weight: 600;
        border-radius: 50px;
        background: linear-gradient(135deg, #f97316, #ef4444);
        color: white;
    }

    .mega-item-desc {
        font-size: 12px;
        color: var(--text-muted);
    }

    .mega-item-arrow {
        width: 16px;
        height: 16px;
        color: var(--text-muted);
        opacity: 0;
        transform: translateX(-4px);
        transition: all 0.2s;
        flex-shrink: 0;
        margin-top: 4px;
    }

    .mega-item:hover .mega-item-arrow {
        opacity: 1;
        transform: translateX(0);
    }

    .mega-menu-footer {
        padding: 12px 24px;
        background: var(--muted);
        border-top: 1px solid var(--border);
    }

    .mega-menu-footer a {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        font-weight: 500;
        color: var(--primary);
        text-decoration: none;
        transition: color 0.2s;
    }

    .mega-menu-footer a:hover { color: var(--primary-dark); }
    .mega-menu-footer svg { width: 16px; height: 16px; }

    .header-cta {
        display: flex;
        gap: 12px;
    }

    .btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 20px;
        font-size: 14px;
        font-weight: 500;
        border-radius: 8px;
        text-decoration: none;
        border: none;
        cursor: pointer;
        transition: all 0.2s;
    }

    .btn-ghost { background: transparent; }
    .header.transparent .btn-ghost { color: rgba(255,255,255,0.8); }
    .header.transparent .btn-ghost:hover { background: rgba(255,255,255,0.1); color: white; }
    .header.scrolled .btn-ghost { color: var(--text-dark); }
    .header.scrolled .btn-ghost:hover { background: var(--muted); }

    .btn-primary {
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        color: white;
        box-shadow: 0 4px 12px rgba(139,92,246,0.4);
    }

    .btn-primary:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(139,92,246,0.5);
    }

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

    .btn-outline:hover {
        background: rgba(255,255,255,0.1);
        border-color: rgba(255,255,255,0.5);
    }

    .btn-white {
        background: white;
        color: var(--primary);
    }

    .btn-whatsapp {
        background: #25D366;
        color: white;
    }

    .btn-whatsapp:hover {
        background: #128C7E;
    }

    .btn-lg {
        padding: 14px 32px;
        font-size: 16px;
    }

    /* ===== MOBILE MENU ===== */
    .mobile-menu-btn {
        display: none;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        border: none;
        background: transparent;
        cursor: pointer;
        border-radius: 8px;
        transition: background 0.2s;
    }

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

    .header.scrolled .mobile-menu-btn:hover {
        background: var(--muted);
    }

    .mobile-menu-btn svg {
        width: 24px;
        height: 24px;
    }

    @media (max-width: 1024px) {
        .nav, .header-cta { display: none; }
        .mobile-menu-btn { display: flex !important; }
    }

    .header.transparent .mobile-menu-btn svg {
        color: white;
    }

    .header.scrolled .mobile-menu-btn svg {
        color: var(--text-dark);
    }

    .mobile-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background: white;
        z-index: 999;
        overflow-y: auto;
        padding: 24px;
    }

    .mobile-menu.active {
        display: block;
    }

    .mobile-nav-item {
        border-bottom: 1px solid var(--border);
    }

    .mobile-nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 0;
        font-size: 16px;
        font-weight: 500;
        color: var(--text-dark);
        text-decoration: none;
        cursor: pointer;
    }

    .mobile-nav-link svg {
        width: 20px;
        height: 20px;
        color: var(--text-muted);
        transition: transform 0.2s;
    }

    .mobile-nav-item.open .mobile-nav-link svg {
        transform: rotate(180deg);
    }

    .mobile-submenu {
        display: none;
        padding-bottom: 16px;
    }

    .mobile-nav-item.open .mobile-submenu {
        display: block;
    }

    .mobile-submenu-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 16px;
        border-radius: 12px;
        text-decoration: none;
        color: var(--text-muted);
        transition: background 0.2s;
    }

    .mobile-submenu-item:hover {
        background: var(--muted);
        color: var(--text-dark);
    }

    .mobile-submenu-icon {
        width: 36px;
        height: 36px;
        border-radius: 8px;
        background: linear-gradient(135deg, rgba(139,92,246,0.1), rgba(167,139,250,0.1));
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .mobile-submenu-icon svg {
        width: 18px;
        height: 18px;
        color: var(--primary);
    }

    .mobile-submenu-text {
        font-size: 14px;
    }

    .mobile-cta {
        padding: 24px 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

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

    /* ===== HERO ===== */
    .hero {
        min-height: 100vh;
        background: var(--bg-hero);
        display: flex;
        flex-direction: column;
        position: relative;
        overflow: hidden;
    }

    .hero-video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg,
            hsla(270,40%,8%,0.8) 0%,
            hsla(270,35%,10%,0.7) 50%,
            hsla(270,40%,8%,0.9) 100%);
    }

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

    .hero-bg-effects::before {
        content: '';
        position: absolute;
        top: 25%;
        right: -128px;
        width: 500px;
        height: 500px;
        background: rgba(167,139,250,0.1);
        border-radius: 50%;
        filter: blur(120px);
    }

    .hero-bg-effects::after {
        content: '';
        position: absolute;
        bottom: 25%;
        left: -128px;
        width: 400px;
        height: 400px;
        background: rgba(196,181,253,0.08);
        border-radius: 50%;
        filter: blur(100px);
    }

    .hero-grid-pattern {
        position: absolute;
        inset: 0;
        opacity: 0.02;
        background-image: linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
                          linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
        background-size: 60px 60px;
    }

    .hero-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 128px 24px 80px;
        position: relative;
        z-index: 10;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 20px;
        background: rgba(167,139,250,0.1);
        border: 1px solid rgba(167,139,250,0.2);
        border-radius: 50px;
        font-size: 14px;
        font-weight: 500;
        color: var(--secondary);
        margin-bottom: 32px;
        backdrop-filter: blur(4px);
    }

    .hero-badge svg {
        width: 16px;
        height: 16px;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 5vw, 4.5rem);
        font-weight: 700;
        color: white;
        line-height: 1.1;
        margin-bottom: 24px;
        max-width: 1000px;
    }

    .hero-subtitle {
        font-size: 20px;
        color: rgba(255,255,255,0.6);
        font-style: italic;
        margin-bottom: 16px;
    }

    .hero-desc {
        font-size: 18px;
        color: rgba(255,255,255,0.5);
        max-width: 560px;
        margin-bottom: 40px;
    }

    .hero-buttons {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-stats {
        margin-top: 80px;
        width: 100%;
        max-width: 900px;
    }

    .hero-stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

    @media (max-width: 768px) {
        .hero-stats-grid { grid-template-columns: repeat(2, 1fr); }
    }

    .hero-stat {
        text-align: center;
        padding: 16px;
        border-radius: 16px;
        background: rgba(255,255,255,0.05);
        backdrop-filter: blur(4px);
        border: 1px solid rgba(255,255,255,0.1);
    }

    .hero-stat-value {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 4px;
    }

    .hero-stat-label {
        font-size: 12px;
        color: rgba(255,255,255,0.5);
    }

    .scroll-indicator {
        position: absolute;
        bottom: 32px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        z-index: 10;
    }

    .scroll-indicator span {
        font-size: 10px;
        color: rgba(255,255,255,0.4);
        text-transform: uppercase;
        letter-spacing: 0.2em;
    }

    .scroll-mouse {
        width: 24px;
        height: 40px;
        border-radius: 12px;
        border: 2px solid rgba(255,255,255,0.2);
        display: flex;
        align-items: flex-start;
        justify-content: center;
        padding-top: 8px;
    }

    .scroll-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--secondary);
        animation: scrollBounce 1.5s infinite;
    }

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

    /* ===== SOCIAL PROOF ===== */
    .social-proof {
        padding: 64px 0;
        background: var(--bg-light);
        overflow: hidden;
    }

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

    .social-proof-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 16px;
        border-radius: 50px;
        background: rgba(167,139,250,0.1);
        border: 1px solid rgba(167,139,250,0.2);
        font-size: 14px;
        font-weight: 500;
        color: var(--secondary);
    }

    .social-proof-badge svg {
        width: 16px;
        height: 16px;
    }

    .logos-carousel {
        position: relative;
    }

    .logos-carousel::before,
    .logos-carousel::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 128px;
        z-index: 10;
        pointer-events: none;
    }

    .logos-carousel::before {
        left: 0;
        background: linear-gradient(to right, var(--bg-light), transparent);
    }

    .logos-carousel::after {
        right: 0;
        background: linear-gradient(to left, var(--bg-light), transparent);
    }

    .logos-track {
        display: flex;
        align-items: center;
        gap: 64px;
        animation: scrollLogos 40s linear infinite;
        width: max-content;
    }

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

    .logo-item {
        flex-shrink: 0;
        height: 64px;
        width: 128px;
        display: flex;
        align-items: center;
        justify-content: center;
        filter: grayscale(100%);
        opacity: 0.6;
        transition: all 0.3s;
    }

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

    .logo-item img {
        max-height: 48px;
        max-width: 100%;
        object-fit: contain;
    }

    /* ===== ABOUT ===== */
    .about {
        padding: 96px 0;
        background: var(--bg-light);
    }

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

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

    .about-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 16px;
        border-radius: 50px;
        background: rgba(139,92,246,0.1);
        border: 1px solid rgba(139,92,246,0.2);
        font-size: 12px;
        font-weight: 500;
        color: var(--primary);
        margin-bottom: 24px;
    }

    .about-badge svg {
        width: 14px;
        height: 14px;
    }

    .about h2 {
        font-size: clamp(2rem, 4vw, 2.5rem);
        font-weight: 700;
        margin-bottom: 24px;
        line-height: 1.2;
    }

    .about-text {
        font-size: 18px;
        color: var(--text-muted);
        line-height: 1.7;
        margin-bottom: 24px;
    }

    .about-text-sm {
        font-size: 16px;
        color: var(--text-muted);
        line-height: 1.6;
        margin-bottom: 32px;
    }

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

    .about-stat {
        text-align: center;
        padding: 16px;
        border-radius: 12px;
        background: rgba(243,244,246,0.5);
    }

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

    .about-stat-label {
        font-size: 12px;
        color: var(--text-muted);
    }

    .about-values {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .value-card {
        display: flex;
        gap: 20px;
        padding: 24px;
        border-radius: 16px;
        background: rgba(243,244,246,0.3);
        border: 1px solid rgba(229,231,235,0.5);
        transition: border-color 0.3s;
    }

    .value-card:hover {
        border-color: var(--border);
    }

    .value-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        background: linear-gradient(135deg, var(--secondary), var(--accent));
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .value-icon svg {
        width: 24px;
        height: 24px;
        color: white;
    }

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

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

    /* ===== TECHNOLOGIES ===== */
    .technologies {
        padding: 96px 0;
        background: rgba(243,244,246,0.3);
    }

    .section-header {
        text-align: center;
        margin-bottom: 64px;
    }

    .section-badge {
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--secondary);
        margin-bottom: 12px;
    }

    .section-header h2 {
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 700;
        margin-bottom: 16px;
    }

    .section-desc {
        font-size: 18px;
        color: var(--text-muted);
        max-width: 700px;
        margin: 0 auto;
    }

    .tech-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 24px;
    }

    @media (max-width: 1024px) {
        .tech-grid { grid-template-columns: repeat(3, 1fr); }
    }

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

    .tech-card {
        padding: 24px;
        border-radius: 16px;
        background: white;
        border: 1px solid rgba(229,231,235,0.5);
        text-align: center;
        transition: all 0.3s;
    }

    .tech-card:hover {
        box-shadow: 0 0 40px rgba(139,92,246,0.15);
        transform: scale(1.05);
    }

    .tech-icon {
        width: 64px;
        height: 64px;
        border-radius: 16px;
        background: linear-gradient(135deg, var(--primary), rgba(139,92,246,0.8));
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 16px;
        transition: transform 0.3s;
    }

    .tech-card:hover .tech-icon {
        transform: scale(1.1);
    }

    .tech-icon svg {
        width: 32px;
        height: 32px;
        color: white;
    }

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

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

    /* ===== SECTORS ===== */
    .sectors {
        padding: 96px 0;
        background: white;
    }

    .sectors-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

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

    @media (max-width: 640px) {
        .sectors-grid { grid-template-columns: 1fr; }
    }

    .sector-card {
        padding: 32px;
        border-radius: 24px;
        background: white;
        border: 1px solid var(--border);
        transition: all 0.3s;
    }

    .sector-card:hover {
        box-shadow: 0 8px 30px rgba(0,0,0,0.1);
        transform: translateY(-4px);
    }

    .sector-card.highlight {
        border-color: var(--primary);
        background: linear-gradient(135deg, rgba(139,92,246,0.02), rgba(167,139,250,0.05));
    }

    .sector-icon {
        width: 56px;
        height: 56px;
        border-radius: 16px;
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 24px;
        transition: transform 0.3s;
    }

    .sector-card:hover .sector-icon {
        transform: scale(1.1);
    }

    .sector-icon svg {
        width: 28px;
        height: 28px;
        color: white;
    }

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

    .sector-title h3 {
        font-size: 18px;
        font-weight: 600;
    }

    .sector-badge {
        padding: 2px 8px;
        font-size: 10px;
        font-weight: 600;
        border-radius: 50px;
        background: linear-gradient(135deg, #f97316, #ef4444);
        color: white;
    }

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

    /* ===== DIFFERENTIALS ===== */
    .differentials {
        padding: 96px 0;
        background: var(--bg-hero);
        position: relative;
        overflow: hidden;
    }

    .differentials-bg {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 800px;
        height: 800px;
        background: rgba(167,139,250,0.1);
        border-radius: 50%;
        filter: blur(200px);
    }

    .differentials-grid-pattern {
        position: absolute;
        inset: 0;
        opacity: 0.02;
        background-image: linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
                          linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
        background-size: 40px 40px;
    }

    .differentials .container {
        position: relative;
        z-index: 10;
    }

    .differentials .section-header h2 {
        color: white;
    }

    .differentials .section-desc {
        color: rgba(255,255,255,0.6);
    }

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

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

    @media (max-width: 640px) {
        .diff-grid { grid-template-columns: 1fr; }
    }

    .diff-card {
        padding: 32px;
        border-radius: 24px;
        background: rgba(255,255,255,0.05);
        backdrop-filter: blur(4px);
        border: 1px solid rgba(255,255,255,0.1);
        transition: all 0.5s;
    }

    .diff-card:hover {
        background: rgba(255,255,255,0.1);
        border-color: rgba(255,255,255,0.2);
    }

    .diff-icon {
        width: 56px;
        height: 56px;
        border-radius: 16px;
        background: linear-gradient(135deg, var(--secondary), var(--accent));
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 24px;
        transition: transform 0.3s;
    }

    .diff-card:hover .diff-icon {
        transform: scale(1.1);
    }

    .diff-icon svg {
        width: 28px;
        height: 28px;
        color: white;
    }

    .diff-card h3 {
        font-size: 20px;
        font-weight: 700;
        color: white;
        margin-bottom: 12px;
    }

    .diff-card p {
        font-size: 14px;
        color: rgba(255,255,255,0.6);
        line-height: 1.6;
    }

    /* ===== CTA ===== */
    .cta {
        padding: 96px 0;
        background: var(--bg-hero);
        position: relative;
        overflow: hidden;
    }

    .cta-bg-1 {
        position: absolute;
        top: 0;
        right: 0;
        width: 600px;
        height: 600px;
        background: rgba(167,139,250,0.15);
        border-radius: 50%;
        filter: blur(150px);
    }

    .cta-bg-2 {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 500px;
        height: 500px;
        background: rgba(196,181,253,0.1);
        border-radius: 50%;
        filter: blur(120px);
    }

    .cta-bg-3 {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 400px;
        height: 400px;
        background: rgba(139,92,246,0.1);
        border-radius: 50%;
        filter: blur(100px);
    }

    .cta-grid-pattern {
        position: absolute;
        inset: 0;
        opacity: 0.02;
        background-image: linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
                          linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
        background-size: 50px 50px;
    }

    .cta .container {
        position: relative;
        z-index: 10;
    }

    .cta-content {
        max-width: 900px;
        margin: 0 auto;
        text-align: center;
    }

    .cta h2 {
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 700;
        color: white;
        margin-bottom: 24px;
    }

    .cta-desc {
        font-size: 18px;
        color: rgba(255,255,255,0.6);
        max-width: 560px;
        margin: 0 auto 48px;
    }

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

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

    @media (max-width: 768px) {
        .contact-grid { grid-template-columns: 1fr; }
    }

    .contact-card {
        padding: 24px;
        border-radius: 16px;
        background: rgba(255,255,255,0.05);
        backdrop-filter: blur(4px);
        border: 1px solid rgba(255,255,255,0.1);
        text-align: center;
        transition: background 0.3s;
        cursor: pointer;
    }

    .contact-card:hover {
        background: rgba(255,255,255,0.1);
    }

    .contact-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        background: linear-gradient(135deg, rgba(167,139,250,0.5), rgba(196,181,253,0.5));
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 16px;
    }

    .contact-icon svg {
        width: 24px;
        height: 24px;
        color: white;
    }

    .contact-card h3 {
        font-size: 14px;
        color: rgba(255,255,255,0.6);
        margin-bottom: 4px;
    }

    .contact-value {
        font-size: 18px;
        font-weight: 600;
        color: white;
        margin-bottom: 4px;
    }

    .contact-sub {
        font-size: 12px;
        color: rgba(255,255,255,0.4);
    }

    /* ===== CASES ===== */
    .cases {
        padding: 96px 0;
        background: var(--bg-light);
    }

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

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

    .case-card {
        border-radius: 24px;
        background: white;
        border: 1px solid var(--border);
        overflow: hidden;
        transition: all 0.3s;
    }

    .case-card:hover {
        box-shadow: 0 8px 30px rgba(0,0,0,0.1);
        transform: translateY(-4px);
    }

    .case-card.highlight {
        border-color: var(--primary);
        background: linear-gradient(135deg, rgba(139,92,246,0.02), rgba(167,139,250,0.05));
    }

    .case-header {
        padding: 32px;
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .case-logo {
        width: 56px;
        height: 56px;
        border-radius: 16px;
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        font-weight: 700;
        color: white;
        flex-shrink: 0;
    }

    .case-info h3 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 4px;
    }

    .case-info p {
        font-size: 14px;
        color: var(--text-muted);
        line-height: 1.5;
    }

    .case-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        padding: 0 32px 24px;
    }

    .case-stat {
        text-align: center;
        padding: 16px;
        border-radius: 12px;
        background: var(--muted);
    }

    .case-stat-value {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 4px;
    }

    .case-stat-label {
        font-size: 11px;
        color: var(--text-muted);
    }

    .case-footer {
        padding: 16px 32px;
        border-top: 1px solid var(--border);
    }

    .case-footer a {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        font-weight: 500;
        color: var(--primary);
        text-decoration: none;
        transition: gap 0.2s;
    }

    .case-footer a:hover {
        gap: 12px;
    }

    .case-footer svg {
        width: 16px;
        height: 16px;
    }

    .case-badge {
        padding: 4px 12px;
        font-size: 10px;
        font-weight: 600;
        border-radius: 50px;
        background: linear-gradient(135deg, #f97316, #ef4444);
        color: white;
        margin-left: auto;
    }

    .cases-cta {
        text-align: center;
        margin-top: 48px;
    }

    /* ===== BLOG ===== */
    .blog {
        padding: 96px 0;
        background: white;
    }

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

    @media (max-width: 768px) {
        .blog-header {
            flex-direction: column;
            text-align: center;
            gap: 24px;
        }
    }

    .blog-header-left .section-badge {
        margin-bottom: 8px;
    }

    .blog-header-left h2 {
        font-size: clamp(2rem, 4vw, 2.5rem);
        font-weight: 700;
    }

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

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

    .blog-card {
        border-radius: 24px;
        background: white;
        border: 1px solid var(--border);
        overflow: hidden;
        transition: all 0.3s;
    }

    .blog-card:hover {
        box-shadow: 0 8px 30px rgba(0,0,0,0.1);
        transform: translateY(-4px);
    }

    .blog-image {
        height: 200px;
        background: linear-gradient(135deg, var(--bg-hero), var(--bg-dark));
        position: relative;
        overflow: hidden;
    }

    .blog-image::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(139,92,246,0.3), rgba(167,139,250,0.2));
    }

    .blog-tag {
        position: absolute;
        top: 16px;
        left: 16px;
        padding: 6px 12px;
        font-size: 11px;
        font-weight: 600;
        border-radius: 50px;
        background: rgba(255,255,255,0.9);
        color: var(--primary);
    }

    .blog-content {
        padding: 24px;
    }

    .blog-card h3 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 12px;
        line-height: 1.4;
    }

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

    .blog-meta {
        display: flex;
        align-items: center;
        gap: 16px;
        font-size: 12px;
        color: var(--text-muted);
    }

    .blog-meta span {
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .blog-meta svg {
        width: 14px;
        height: 14px;
    }

    /* ===== FOOTER ===== */
    .footer {
        padding: 64px 0 0;
        background: hsl(270, 25%, 6%);
        border-top: 1px solid rgba(255,255,255,0.1);
    }

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

    @media (max-width: 1024px) {
        .footer-grid { grid-template-columns: repeat(3, 1fr); }
        .footer-brand { grid-column: span 3; }
    }

    @media (max-width: 640px) {
        .footer-grid { grid-template-columns: 1fr 1fr; }
        .footer-brand { grid-column: span 2; }
    }

    .footer-brand .logo {
        margin-bottom: 24px;
    }

    .footer .logo-text .name { color: white; }
    .footer .logo-text .tagline { color: rgba(255,255,255,0.4); }

    .footer-brand > p {
        font-size: 14px;
        color: rgba(255,255,255,0.5);
        line-height: 1.6;
        margin-bottom: 24px;
        max-width: 350px;
    }

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

    .social-link {
        width: 40px;
        height: 40px;
        border-radius: 8px;
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255,255,255,0.5);
        text-decoration: none;
        transition: all 0.2s;
    }

    .social-link:hover {
        background: rgba(255,255,255,0.1);
        color: white;
    }

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

    .footer-col h4 {
        font-size: 14px;
        font-weight: 600;
        color: white;
        margin-bottom: 16px;
    }

    .footer-col ul {
        list-style: none;
    }

    .footer-col li {
        margin-bottom: 12px;
    }

    .footer-col a {
        font-size: 14px;
        color: rgba(255,255,255,0.5);
        text-decoration: none;
        transition: color 0.2s;
    }

    .footer-col a:hover { color: white; }

    .footer-contact-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 16px;
        font-size: 14px;
        color: rgba(255,255,255,0.5);
    }

    .footer-contact-item svg {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .footer-bottom {
        padding: 24px 0;
        border-top: 1px solid rgba(255,255,255,0.1);
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 16px;
    }

    .footer-bottom p {
        font-size: 12px;
        color: rgba(255,255,255,0.4);
    }

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

    .footer-legal a {
        font-size: 12px;
        color: rgba(255,255,255,0.4);
        text-decoration: none;
        transition: color 0.2s;
    }

    .footer-legal a:hover { color: rgba(255,255,255,0.7); }
