/* =========================================================================
   FICTION GOON FILMS - MODERN DESIGN SYSTEM 2026
   Vibe: Premium, Sophisticated, High-End Agency
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {

    /* Colors - Digital Noir & Electric Indigo */
    --bg-primary: #06070a;
    --bg-secondary: #0a0c10;
    --bg-tertiary: #0f1218;

    --accent-primary: #6366f1;
    --accent-secondary: #8b5cf6;
    --accent-glow: rgba(99, 102, 241, 0.4);
    --accent-gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    --accent-gradient-soft: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);

    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-heavy: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-spacing: clamp(4rem, 10vw, 8rem);
    --container-max: 1400px;

    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* =========================================================================
   BASE RESET
   ========================================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

/* Custom Cursor - Disabled */
.custom-cursor {
    display: none !important;
}

.cursor-trail {
    display: none !important;
}

/* Grainy Background Texture */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.015;
    pointer-events: none;
    z-index: 9999;
}

/* Background Blobs */
.bg-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    opacity: 0.2;
}

.blob {
    position: absolute;
    background: var(--accent-gradient);
    filter: blur(60px);
    -webkit-filter: blur(60px);
    border-radius: 50%;
    opacity: 0.12;
    animation: blobFloat 25s infinite alternate ease-in-out;
    will-change: transform;
}

.blob-1 {
    top: -10%;
    left: -10%;
    background: #6366f1;
}

.blob-2 {
    bottom: -10%;
    right: -10%;
    background: #a855f7;
    animation-delay: -5s;
}

.blob-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: #4f46e5;
    opacity: 0.05;
}

@keyframes blobFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(100px, 50px) scale(1.1);
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s var(--transition-smooth);
}

ul {
    list-style: none;
}

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

/* Layout Utilities */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: var(--section-spacing) 0;
}

.section-tertiary {
    background-color: var(--bg-tertiary);
}

.section-secondary {
    background-color: var(--bg-secondary);
}

.mb-4 {
    margin-bottom: 4rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.full-width {
    width: 100%;
}

.align-center {
    align-items: center;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.section-description {
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

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

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

/* Common Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s var(--transition-smooth);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 10px 20px -10px rgba(99, 102, 241, 0.5);
}

.btn-secondary {
    background: var(--glass);
    color: white;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

/* =========================================================================
   NAVIGATION
   ========================================================================= */
.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.nav-container.scrolled {
    padding: 1rem 0;
    background: rgba(6, 7, 10, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.nav-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    white-space: nowrap;
    transition: all 0.5s var(--transition-smooth);
    letter-spacing: -1px;
    cursor: pointer;
}

.nav-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.nav-logo span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.3));
}

@media (max-width: 768px) {
    .nav-logo {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .nav-logo {
        font-size: 1.25rem;
    }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 3rem;
}

@media (max-width: 1200px) {
    .nav-toggle {
        display: block !important;
    }

    .nav-menu {
        display: none !important;
    }

    .nav-content>.btn-primary {
        display: none !important;
    }
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-link:hover {
    color: var(--white);
}

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

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    position: absolute;
    transition: all 0.3s var(--transition-smooth);
}

.nav-toggle span:nth-child(1) {
    top: 0;
}

.nav-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.nav-toggle span:nth-child(3) {
    bottom: 0;
}

.mobile-btn {
    display: none;
    width: 100%;
    padding: 0 2rem;
}

/* Mobile Menu Active State */
.nav-menu.active {
    display: flex !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-primary);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    gap: 2rem;
}

.nav-toggle.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

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

.nav-toggle.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* =========================================================================
   HERO SECTION - LIQUID ATMOSPHERIC (PREMIUM)
   ========================================================================= */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 140px 0 60px;
    overflow: hidden;
    background: #020205;
}

/* Moving Liquid Gradients */
.hero-section::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.15), transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.1), transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.1), transparent 50%);
    filter: blur(60px);
    animation: liquidMove 30s infinite alternate ease-in-out;
    z-index: 0;
}

/* Atmospheric Drifting Particles */
.hero-mesh {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: linear-gradient(to bottom, black, transparent);
    z-index: 1;
    animation: particlesDrift 60s linear infinite;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 1100px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
}

.hero-text-block {
    max-width: 800px;
    display: flex;
    flex-direction: column;
}

@media (max-width: 992px) {
    .hero-text-block {
        align-items: center;
        margin: 0 auto;
    }
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #a5b4fc;
    margin-bottom: 2.5rem;
    backdrop-filter: blur(10px);
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

.hero-tag::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-primary);
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2.5rem;
    letter-spacing: -2px;
    color: #fff;
    max-width: 1000px;
}

.hero-title span {
    display: block;
    opacity: 0;
    transform: translateY(15px);
    animation: revealTitle 0.4s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.hero-title span:nth-child(2) {
    animation-delay: 0.1s;
}

.hero-title .accent {
    background: linear-gradient(135deg, #818cf8 0%, #c084fc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(129, 140, 248, 0.3));
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3.5rem;
    max-width: 600px;
    border-left: 1px solid rgba(99, 102, 241, 0.5);
    padding-left: 2rem;
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.3s forwards;
}

@media (max-width: 992px) {
    .hero-description {
        border-left: none;
        padding-left: 0;
        text-align: center;
    }
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.5s forwards;
}

@media (max-width: 992px) {
    .hero-btns {
        justify-content: center;
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1rem, 2vw, 2.5rem);
    width: 100%;
    max-width: 900px;
    margin-top: 3.5rem;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.4s forwards;
}

@media (max-width: 1200px) {
    .hero-stats {
        grid-column: 1 / -1;
    }
}

.stat-item h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.15rem;
    background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item p {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    font-weight: 600;
    margin-top: 0.25rem;
}

/* Floating Visual Element - Restored */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.2s forwards;
}

@media (max-width: 992px) {
    .hero-visual {
        display: none;
    }
}

.visual-orb {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-card-image {
    position: absolute;
    width: 350px;
    height: auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    transform: rotateY(-20deg) rotateX(10deg);
    animation: cardFloat 6s infinite ease-in-out;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-main-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.visual-card-image:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.02) translateY(-10px);
    border-color: rgba(99, 102, 241, 0.6);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8), 0 0 40px rgba(99, 102, 241, 0.3);
}

.visual-card-image:hover .hero-main-img {
    transform: scale(1.05);
}

/* Animations Core */
@keyframes liquidMove {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    50% {
        transform: translate(3%, -3%) scale(1.05) rotate(1deg);
    }

    100% {
        transform: translate(-2%, 2%) scale(1) rotate(-1deg);
    }
}

@keyframes particlesDrift {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 0 500px;
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

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

@keyframes cardFloat {

    0%,
    100% {
        transform: rotateY(-20deg) rotateX(10deg) translateY(0);
    }

    50% {
        transform: rotateY(-15deg) rotateX(5deg) translateY(-25px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Hero Responsiveness is now handled by the centered base layout 
   Specific tweaks for smaller screens below */
@media (max-width: 992px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

/* =========================================================================
   CARDS & GRIDS
   ========================================================================= */
.card {
    background: var(--bg-secondary);
    border-radius: 2rem;
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    transition: all 0.5s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5);
}

.card-accent {
    border-color: var(--accent-primary);
}

/* =========================================================================
   CORE SERVICES - PREMIUM CARDS
   ========================================================================= */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

#services .card {
    background: linear-gradient(135deg, rgba(15, 17, 21, 0.4) 0%, rgba(22, 25, 29, 0.2) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3.5rem 2.5rem;
    position: relative;
    border-radius: 2.5rem;
    transition: all 0.5s var(--transition-smooth);
}

#services .card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(99, 102, 241, 0.4);
    background: linear-gradient(135deg, rgba(15, 17, 21, 0.8) 0%, rgba(22, 25, 29, 0.6) 100%);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(99, 102, 241, 0.1);
}

#services .icon-box {
    width: 60px;
    height: 60px;
    background: var(--glass-heavy);
    border: 1px solid var(--glass-border);
    border-radius: 1.25rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    transition: all 0.4s var(--transition-smooth);
}

#services .card:hover .icon-box {
    background: var(--accent-gradient);
    color: white;
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 10px 20px var(--accent-glow);
}

#services .card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

#services .check-list li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    transition: all 0.3s ease;
}

#services .card:hover .check-list li {
    color: var(--text-primary);
    transform: translateX(5px);
}

/* =========================================================================
   ADVERTISING ECOSYSTEM - FUTURISTIC GRID
   ========================================================================= */
.section-tertiary {
    background: radial-gradient(circle at center, #111318 0%, #08090a 100%);
    position: relative;
    overflow: hidden;
}

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

.eco-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 3rem;
    border-radius: 3rem;
    text-align: center;
    transition: all 0.6s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.eco-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 0;
}

.eco-item:hover::before {
    opacity: 0.05;
}

.eco-item:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-10px);
}

.eco-stats {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 99px;
    color: var(--accent-primary);
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 2rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
    position: relative;
    z-index: 1;
}

.eco-item h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.eco-item p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* POLITICAL SECTION */
.political-services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0;
    margin: 0;
}

.political-services-list li {
    background: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    padding: 0.8rem 1.5rem;
    border-radius: 999px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: all 0.3s var(--transition-smooth);
    list-style: none;
    margin-bottom: 0;
}

.political-services-list li:hover {
    border-color: var(--accent-primary);
    color: white;
    transform: translateY(-3px);
    background: rgba(99, 102, 241, 0.1);
}

.ceo-name {
    font-weight: 800;
    font-size: 1.2rem;
}

.discount-label {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--accent-primary);
    font-weight: 600;
}

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

.text-sm-muted {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.about-feature {
    margin-bottom: 1.5rem;
}

/* POLITICAL SECTION */
.partner-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 0.5rem 1.5rem;
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 999px;
    backdrop-filter: blur(10px);
}

.partner-badge .hero-tag {
    margin-bottom: 0;
    padding: 0.4rem 1.2rem;
    font-size: 0.85rem;
    box-shadow: none;
    border: none;
    background: var(--accent-gradient);
    color: white;
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-secondary);
    letter-spacing: 1px;
    position: relative;
    padding-left: 1.5rem;
}

.badge-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
}

.card-political {
    display: flex;
    flex-direction: column;
}

.election-year {
    font-weight: 800;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.card-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CEO Victory Card */
.victory-card {
    background: var(--accent-gradient);
    padding: 4rem;
    border-radius: 3rem;
    color: white;
    margin-top: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    box-shadow: 0 20px 40px -10px rgba(99, 102, 241, 0.3);
}

.victory-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

/* Political Campaign Boxes - Premium Design */
#political .grid-2 {
    position: relative;
    gap: 3rem;
}

/* Campaign Model Cards - Enhanced Styling */
#political .grid-2 .card {
    background: linear-gradient(135deg, rgba(15, 17, 21, 0.95) 0%, rgba(22, 25, 29, 0.95) 100%);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Gradient border effect */
#political .grid-2 .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 2rem;
    padding: 2px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(139, 92, 246, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

#political .grid-2 .card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-primary);
    box-shadow: 0 20px 60px -10px rgba(99, 102, 241, 0.4);
}

/* Elite card special styling */
#political .grid-2 .card-accent {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
    border-color: rgba(99, 102, 241, 0.3);
}

#political .grid-2 .card-accent::before {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
}

/* Campaign Model Titles */
#political .grid-2 .card h4 {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

#political .grid-2 .card>p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

/* Decorative circle between campaign boxes */
#political .grid-2::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    background: var(--accent-gradient);
    border-radius: 50%;
    border: 6px solid var(--bg-primary);
    z-index: 10;
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.6), 0 0 60px rgba(139, 92, 246, 0.3);
}

@media (max-width: 1100px) {
    #political .grid-2 {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* Hide decorative circle on smaller screens */
    #political .grid-2::after {
        display: none;
    }

    /* Ensure cards take full width */
    #political .grid-2 .card {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 992px) {
    .victory-card {
        flex-direction: column;
        text-align: center;
    }
}

.victory-text h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* =========================================================================
   PORTFOLIO (Bento)
   ========================================================================= */
.portfolio-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.portfolio-item {
    flex: 1;
    min-width: 350px;
    max-width: 500px;
    position: relative;
    border-radius: 2.5rem;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
}

/* FORM STYLES */
.form-grid-single {
    display: grid;
    gap: 1.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    color: white;
    font-family: var(--font-body);
    transition: all 0.3s var(--transition-smooth);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(99, 102, 241, 0.05);
}

.form-textarea {
    min-height: 120px;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--transition-smooth);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem;
    background: linear-gradient(transparent, rgba(8, 9, 10, 0.9));
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-rows: auto;
        display: flex;
        flex-direction: column;
    }

    .portfolio-item,
    .portfolio-item:nth-child(1),
    .portfolio-item:nth-child(4) {
        grid-column: span 12;
        height: 300px;
    }
}

/* =========================================================================
   VENTURES
   ========================================================================= */
.ventures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.venture-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 2rem;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--transition-smooth);
}

.venture-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-primary);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.venture-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.venture-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: white;
}

.venture-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.venture-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: auto;
}

.venture-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-primary);
    text-decoration: none;
    padding: 0.5rem 1.2rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 99px;
    transition: all 0.3s ease;
}

.venture-link:hover {
    background: var(--accent-gradient);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--accent-glow);
}

/* =========================================================================
   ANIMATIONS & RESPONSIVE
   ========================================================================= */
[data-animate] {
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.25s var(--transition-smooth);
    will-change: transform, opacity;
}

.hero-section [data-animate],
.nav-container [data-animate] {
    opacity: 1;
    transform: translateY(0);
}

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

.stagger>* {
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.25s var(--transition-smooth);
    will-change: transform, opacity;
}

/* Individual items in a stagger container reveal when they get .active */
.stagger>*.active {
    opacity: 1;
    transform: translateY(0);
}

/* Hyper-fast delays for individual items */
/* Hyper-fast delays for individual items */
.stagger>*.active:nth-child(1) {
    transition-delay: 0.01s;
}

.stagger>*.active:nth-child(2) {
    transition-delay: 0.02s;
}

.stagger>*.active:nth-child(3) {
    transition-delay: 0.03s;
}

.stagger>*.active:nth-child(4) {
    transition-delay: 0.04s;
}

.stagger>*.active:nth-child(5) {
    transition-delay: 0.05s;
}

.stagger>*.active:nth-child(6) {
    transition-delay: 0.06s;
}

.stagger>*.active:nth-child(7) {
    transition-delay: 0.07s;
}

.stagger>*.active:nth-child(8) {
    transition-delay: 0.08s;
}

/* Text reveal animation */
.reveal-text {
    overflow: hidden;
    position: relative;
}

.reveal-text span {
    display: block;
    transform: translateY(100%);
    transition: transform 0.5s var(--transition-smooth);
}

.reveal-text.active span {
    transform: translateY(0);
}

@keyframes floating {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(-5%, 5%) rotate(5deg);
    }
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(6, 7, 10, 0.95);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: all 0.6s var(--transition-smooth);
        z-index: 1000;
        padding: 4rem 2rem;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s var(--transition-smooth);
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-menu.active li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-menu.active li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-menu.active li:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav-menu.active li:nth-child(5) {
        transition-delay: 0.5s;
    }

    .nav-menu.active li:nth-child(6) {
        transition-delay: 0.6s;
    }

    .nav-menu.active li:nth-child(7) {
        transition-delay: 0.7s;
    }

    .mobile-nav-link {
        font-size: 1.5rem;
        font-weight: 700;
        color: white !important;
    }

    .nav-logo {
        font-size: 1.25rem;
    }

    .nav-toggle {
        display: block;
        margin-left: auto;
    }

    .nav-content>.btn {
        display: none;
    }

    .nav-menu .mobile-btn {
        display: block;
        margin-top: 2rem;
    }

    .grid-3,
    .eco-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }

    .hero-stats {
        gap: 2rem;
        justify-content: center;
        text-align: center;
    }

    .stat-item h3 {
        font-size: 2rem;
    }
}

/* =========================================================================
   FOOTER & UI ENHANCEMENTS
   ========================================================================= */
.footer-section {
    padding: 6rem 0 2rem;
    background: var(--bg-primary);
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
}

.footer-about {
    color: var(--text-muted);
    max-width: 350px;
    margin-top: 1.5rem;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.footer-menu {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.footer-address {
    font-style: normal;
    color: var(--text-muted);
}

.footer-phone {
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.footer-email {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 4rem;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--accent-gradient);
    z-index: 2000;
    transition: width 0.1s ease-out;
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-primary);
    color: white;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--transition-smooth);
    z-index: 1000;
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.4);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    background: var(--accent-gradient);
}

@media (max-width: 1200px) {
    .container {
        padding: 0 1.5rem;
    }

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

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

    .pricing-matrix {
        min-width: 500px;
    }
}

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

@media (max-width: 992px) {

    .pricing-matrix th,
    .pricing-matrix td {
        padding: 1rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-btns {
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        max-width: 350px;
        margin: 0 auto !important;
    }

    .hero-btns .btn {
        width: 100% !important;
    }

    .victory-card {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 3rem 2rem;
        border-radius: 2rem;
    }

    .victory-cta {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding-left: 0;
        padding-top: 2rem;
        width: 100%;
    }
}


/* =========================================================================
   NEW PRICING TABLE - BELOVE INSPIRED
   ========================================================================= */
.pricing-section {
    padding: 6rem 0;
    background: #000;
}

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

.pricing-header-main {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-title-gradient {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    background: linear-gradient(90deg, #6366f1, #a855f7, #6366f1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.pricing-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.pricing-model-switcher {
    display: inline-flex;
    background: #111;
    padding: 0.5rem;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1rem;
    gap: 0.5rem;
    align-items: center;
}

.model-btn {
    background: transparent;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 180px;
}

.model-btn.active {
    background: var(--accent-primary);
    color: white;
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.2);
}

.model-name {
    font-size: 1.1rem;
    font-weight: 700;
}

.model-desc {
    font-size: 0.65rem;
    opacity: 0.7;
    margin-top: 2px;
}

.model-separator {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
}

.pricing-category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.pricing-category-tabs .tab-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.8rem 2rem;
    border-radius: 1.5rem;
    color: var(--text-secondary);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-category-tabs .tab-btn.active {
    background: var(--accent-gradient);
    color: white;
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.2);
}

.model-btn:hover:not(.active) {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

/* Hidden tables/rows - More robust */
[data-model-target] {
    display: none !important;
}

.grid-header[data-model-target].active-model {
    display: flex !important;
}

.grid-row[data-model-target].active-model {
    display: contents !important;
}

.modern-pricing-table {
    background: #0a0a0a;
    border-radius: 2.5rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    margin-top: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    width: 100%;
}

/* Headers */
.grid-header {
    padding: 2.5rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.header-growth {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.header-scale {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
}

.header-maturity {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.header-label {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.header-price {
    font-size: 1.6rem;
    font-weight: 900;
    color: white;
}

.header-sub {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-top: 0.2rem;
}

/* Rows */
.grid-row {
    display: contents;
}

.grid-cell {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.cell-feature {
    justify-content: flex-start;
    padding-left: 2.5rem;
    font-weight: 600;
    color: var(--text-primary);
    border-right: 1px solid rgba(255, 255, 255, 0.03);
}

.grid-row:hover .grid-cell {
    background: rgba(255, 255, 255, 0.02);
    color: white;
}

.cell-check {
    color: #22c55e;
}

.cell-cross {
    color: #ef4444;
    opacity: 0.5;
}

/* Footer / Buttons */
.grid-footer {
    display: contents;
}

.footer-cell {
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0f0f0f;
}

.discount-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    width: 80%;
}

.btn-growth {
    background: rgba(249, 115, 22, 0.2);
    color: #f97316;
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.btn-scale {
    background: rgba(14, 165, 233, 0.2);
    color: #0ea5e9;
    border: 1px solid rgba(14, 165, 233, 0.3);
}

.btn-maturity {
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.discount-btn:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }

    .cell-feature {
        padding-left: 1rem;
    }

    .header-label {
        font-size: 1.2rem;
    }

    .header-price {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .modern-pricing-table {
        overflow-x: auto;
    }

    .pricing-grid {
        width: 800px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }

    .card {
        padding: 2rem 1.25rem;
        border-radius: 1.5rem;
    }

    .hero-title {
        font-size: 2.2rem;
        letter-spacing: -1px;
        margin-bottom: 1.5rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding-left: 0;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section {
        padding: 3rem 0;
    }

    .hero-section {
        padding-top: 100px;
        padding-bottom: 40px;
        min-height: auto;
    }

    .nav-container {
        top: 10px;
        width: 95%;
        padding: 0.5rem 1.25rem;
    }

    .nav-logo {
        font-size: 1rem;
    }

    .btn {
        width: 100%;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .hero-btns {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
        padding: 1.5rem 0;
    }

    .stat-item h3 {
        font-size: 1.8rem;
    }
}