/* ===================================
   BRANDIFY CREATOR - MODERN PREMIUM
   ================================== */

/* === CSS CUSTOM PROPERTIES === */
:root {
    /* Modern Color Palette */
    --color-bg-dark: #030712;
    /* Darker, richer black */
    --color-bg-card: rgba(255, 255, 255, 0.03);
    --color-primary: #3B82F6;
    --color-primary-glow: rgba(59, 130, 246, 0.5);
    --color-accent: #6366F1;
    /* Indigo accent */
    --color-text-main: #F8FAFC;
    --color-text-muted: #94A3B8;

    /* Neon Glows */
    --glow-primary: 0 0 20px rgba(59, 130, 246, 0.6);
    --glow-accent: 0 0 20px rgba(99, 102, 241, 0.6);
    --glow-text: 0 0 10px rgba(255, 255, 255, 0.3);

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

    /* Spacing & Layout */
    --container-width: 1400px;
    --spacing-sm: 1rem;
    --spacing-md: 2.5rem;
    --spacing-lg: 5rem;
    --spacing-xl: 8rem;

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: 1px solid rgba(255, 255, 255, 0.05);
    --glass-blur: blur(20px);

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
}

/* === UTILITY CLASSES === */
/* Gradient Text Effect */
.gradient-text {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glassmorphism Card Base */
.card-base {
    background: var(--glass-bg);
    border: var(--glass-border);
    backdrop-filter: var(--glass-blur);
    border-radius: 24px;
    transition: all 0.5s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.card-base:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Hover Lift Effects */
.hover-lift {
    transition: transform 0.5s var(--ease-out-expo);
}

.hover-lift:hover {
    transform: translateY(-10px);
}

.hover-lift-lg:hover {
    transform: translateY(-15px);
}

.hover-lift-sm:hover {
    transform: translateY(-5px);
}

/* Icon Circle Container */
.icon-circle {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(99, 102, 241, 0.15));
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.4s ease;
}

.icon-circle i {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.icon-sm {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
}

.icon-md {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
}

.icon-lg {
    width: 80px;
    height: 80px;
    font-size: 2rem;
}

.icon-xl {
    width: 90px;
    height: 90px;
    font-size: 2.5rem;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

/* === BACKGROUND EFFECTS === */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MDAiIGhlaWdodD0iNTAwIj48ZmlsdGVyIGlkPSJnoiPjxmZVR1cmJ1bGVuY2UgdHlwZT0iZnJhY3RhbE5vaXNlIiBiYXNlRnJlcXVlbmN5PSIwLjY1IiBudW1PY3RhdmVzPSIzIiBzdGl0Y2hUaWxlcz0ic3RpdGNoIi8+PC9maWx0ZXI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsdGVyPSJ1cmwoI24pIiBvcGFjaXR5PSIwLjAzIi8+PC9zdmc+');
    pointer-events: none;
    z-index: 0;
}

.floating-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.4;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--color-primary), transparent 70%);
    top: -20%;
    left: -10%;
    animation-delay: -5s;
}

.orb-2 {
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, var(--color-accent), transparent 70%);
    bottom: -10%;
    right: -10%;
}

@keyframes float {

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

    33% {
        transform: translate(30px, -50px);
    }

    66% {
        transform: translate(-20px, 20px);
    }
}

/* === LAYOUT === */
/* === FLOATING PARTICLES === */
.particle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--color-primary);
    opacity: 0.2;
    animation: float-particle 20s infinite ease-in-out;
}

.particle-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.particle-2 {
    top: 20%;
    right: 15%;
    animation-delay: -5s;
    animation-duration: 30s;
    color: #ef4444;
}

.particle-3 {
    top: 60%;
    left: 5%;
    animation-delay: -10s;
    animation-duration: 35s;
    color: #fbbf24;
}

.particle-4 {
    bottom: 20%;
    right: 20%;
    animation-delay: -15s;
    animation-duration: 28s;
    color: #f97316;
}

.particle-5 {
    top: 70%;
    left: 80%;
    animation-delay: -8s;
    animation-duration: 32s;
}

.particle-6 {
    top: 40%;
    right: 10%;
    animation-delay: -12s;
    animation-duration: 26s;
}

.particle-7 {
    bottom: 30%;
    left: 15%;
    animation-delay: -18s;
    animation-duration: 29s;
}

.particle-8 {
    top: 80%;
    right: 40%;
    animation-delay: -6s;
    animation-duration: 27s;
}

@keyframes float-particle {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.2;
    }

    25% {
        transform: translate(30px, -40px) rotate(90deg);
        opacity: 0.4;
    }

    50% {
        transform: translate(-20px, -80px) rotate(180deg);
        opacity: 0.15;
    }

    75% {
        transform: translate(40px, -40px) rotate(270deg);
        opacity: 0.3;
    }
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 1;
}

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

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    background: linear-gradient(to right, #fff, #94A3B8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

/* === HERO SECTION === */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 140px;
    /* Account for fixed navbar */
}

.hero-content {
    text-align: center;
    max-width: 1100px;
}

.hero-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.75rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--color-primary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    animation: badge-float 3s ease-in-out infinite;
}

.hero-badge i {
    color: #fbbf24;
    font-size: 1rem;
    animation: star-spin 4s linear infinite;
}

@keyframes badge-float {

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

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

@keyframes star-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0;
    letter-spacing: -0.04em;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text-reveal {
    display: block;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    transform: translateY(100%);
    opacity: 0;
}

.highlight-text {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.3));
}

/* Brand page smaller hero title */
.brand-hero-title {
    font-size: clamp(2.5rem, 7vw, 5rem) !important;
}

/* Hero CTA button wrapper */
.hero-cta-wrapper {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 2rem);
    font-weight: 500;
    margin-bottom: 1.25rem;
    color: var(--color-text-muted);
    line-height: 1.3;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--color-text-muted);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 2rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2.5rem 0;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

/* Removed duplicate .stat-value - now using .metric-number utility */



/* Scroll Indicator */

/* === SECTION SUBTITLE === */
.section-subtitle {
    text-align: center;
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-text-muted);
    max-width: 700px;
    margin: -2rem auto 3rem;
    line-height: 1.6;
}

/* === NAVIGATION BAR === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s var(--ease-out-expo);
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(3, 7, 18, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Right Side: Text Logo */
.navbar-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 1001;
}

.navbar-logo:hover {
    transform: translateY(-2px);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-text-main);
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.logo-highlight {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Center: Navigation Menu */
.navbar-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.nav-link {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--color-text-main);
    background: rgba(255, 255, 255, 0.05);
}

.nav-link:hover::before {
    width: 70%;
}

/* Navbar CTA Buttons */
.navbar-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s var(--ease-out-expo);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.navbar-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.navbar-btn:hover i {
    transform: scale(1.1);
}

/* Become a Brand Button */
.navbar-btn-brand {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    color: var(--color-primary);
}

.navbar-btn-brand::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(99, 102, 241, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.navbar-btn-brand:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
}

.navbar-btn-brand:hover::before {
    opacity: 1;
}

/* Become a Creator Button */
.navbar-btn-creator {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: #fff;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.navbar-btn-creator::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.navbar-btn-creator:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.navbar-btn-creator:hover::before {
    opacity: 1;
}

/* Hide mobile CTA items on desktop */
.mobile-cta-item {
    display: none;
}

/* Responsive Design */
.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    transition: all 0.3s ease;
}

.toggle-bar {
    width: 28px;
    height: 3px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 10px;
    transition: all 0.3s ease;
}

.navbar-toggle:hover .toggle-bar {
    background: var(--color-text-main);
}

/* Menu Active State */
.navbar-toggle.active .toggle-bar:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.navbar-toggle.active .toggle-bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active .toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .navbar-container {
        gap: 1rem;
    }

    .navbar-toggle {
        display: flex;
    }

    .navbar-cta {
        display: none;
        /* Hide desktop CTA buttons on mobile */
    }

    /* Show CTA buttons inside mobile menu */
    .mobile-cta-item {
        display: block !important;
        width: 100%;
        margin-top: 1.5rem;
    }

    .mobile-cta-item:first-of-type {
        margin-top: 2rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem !important;
        font-size: 1rem !important;
    }

    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 350px;
        height: 100vh;
        flex-direction: column;
        gap: 0;
        padding: 6rem 2rem 2rem;
        background: rgba(3, 7, 18, 0.98);
        backdrop-filter: blur(20px);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        transition: right 0.4s var(--ease-out-expo);
        overflow-y: auto;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        justify-content: flex-start;
    }

    .navbar-menu::before {
        content: '';
        display: block;
        width: 100%;
        margin-bottom: 1.5rem;
    }

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

    .navbar-menu li {
        width: 100%;
        opacity: 0;
        transform: translateX(20px);
        animation: slideInNav 0.4s ease forwards;
    }

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

    .navbar-menu.active li:nth-child(2) {
        animation-delay: 0.15s;
    }

    .navbar-menu.active li:nth-child(3) {
        animation-delay: 0.2s;
    }

    .navbar-menu.active li:nth-child(4) {
        animation-delay: 0.25s;
    }

    .navbar-menu.active li:nth-child(5) {
        animation-delay: 0.3s;
    }

    .navbar-menu.active li:nth-child(6) {
        animation-delay: 0.35s;
    }

    .navbar-menu.active li:nth-child(7) {
        animation-delay: 0.4s;
    }

    .nav-link {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        border-radius: 12px;
        text-align: left;
    }

}

@keyframes slideInNav {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 0;
    }

    .logo-text {
        font-size: 1.6rem;
    }

    .navbar-container {
        padding: 0 1.5rem;
    }
}

/* === HERO SECTION === */
.metrics-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.metric-item {
    text-align: center;
    padding: 2rem 1.5rem;
}

.metric-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transform: scaleX(0);
    transition: transform 0.4s var(--ease-out-expo);
}

.metric-item:hover {
    border-color: rgba(59, 130, 246, 0.3);
}

.metric-item:hover::before {
    transform: scaleX(1);
}

/* Consolidated stat/metric number styles */
.metric-number,
.stat-value {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.metric-label,
.stat-label {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* === GLASSMORPHISM CARDS === */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.service-card {
    padding: 3rem 2rem;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(99, 102, 241, 0.05));
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.5s var(--ease-out-expo);
}

.service-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card-description {
    color: var(--color-text-muted);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* === SERVICE FEATURES === */
.service-features {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.service-features li:hover {
    color: var(--color-text-main);
    padding-left: 0.5rem;
}

.service-features li i {
    color: var(--color-primary);
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.service-features li:hover i {
    transform: scale(1.2);
}

/* === HOW IT WORKS === */
.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: var(--spacing-lg) 0;
}

.process-card {
    padding: 2.5rem 2rem;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-primary), var(--color-accent));
    transform: scaleY(0);
    transition: transform 0.5s var(--ease-out-expo);
}

.process-card:hover::before {
    transform: scaleY(1);
}

.process-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    opacity: 0.15;
    line-height: 1;
}

.process-icon {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.process-card:hover .process-icon {
    background: rgba(59, 130, 246, 0.2);
    border-color: var(--color-primary);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.process-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-text-main);
}

.process-description {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.process-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--color-primary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}


/* === PARTNERSHIP FLOW === */
.partnership-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: var(--spacing-lg);
    padding: 4rem 3rem;
    background: linear-gradient(135deg,
            rgba(59, 130, 246, 0.03) 0%,
            rgba(99, 102, 241, 0.03) 50%,
            rgba(59, 130, 246, 0.03) 100%);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.partnership-flow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(59, 130, 246, 0.5),
            transparent);
}

.partnership-flow::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg,
            rgba(59, 130, 246, 0.3),
            rgba(99, 102, 241, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.partnership-flow:hover::after {
    opacity: 1;
}

.flow-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    padding: 2rem 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.5s var(--ease-out-expo);
    position: relative;
    min-width: 180px;
    backdrop-filter: blur(5px);
}

.flow-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.01));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.flow-item:hover::before {
    opacity: 1;
}

.flow-item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.15),
        0 0 30px rgba(59, 130, 246, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.flow-item p {
    font-size: 1rem;
    color: var(--color-text-muted);
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.flow-item:hover p {
    color: var(--color-text-main);
}

.flow-item-highlight {
    background: linear-gradient(135deg,
            rgba(59, 130, 246, 0.08),
            rgba(99, 102, 241, 0.08));
    border: 2px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.2),
        0 0 40px rgba(59, 130, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    z-index: 1;
    padding: 2.5rem 3rem;
}

.flow-item-highlight::before {
    background: linear-gradient(135deg,
            rgba(59, 130, 246, 0.1),
            rgba(99, 102, 241, 0.1));
}

.flow-item-highlight:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--color-primary);
    box-shadow: 0 16px 48px rgba(59, 130, 246, 0.3),
        0 0 60px rgba(59, 130, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.flow-item-highlight p {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 1.1rem;
}

.flow-icon-simple {
    color: var(--color-text-muted);
    font-size: 1.5rem;
    transition: all 0.4s var(--ease-out-expo);
}

.flow-item-highlight .flow-icon-simple {
    background: linear-gradient(135deg,
            rgba(59, 130, 246, 0.25),
            rgba(99, 102, 241, 0.25));
    border: 2px solid var(--color-primary);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4),
        0 0 30px rgba(59, 130, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.flow-item-highlight .flow-icon-simple i {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.5));
}

.flow-item:hover .flow-icon-simple {
    transform: scale(1.15) rotate(5deg);
    border-color: var(--color-primary);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.flow-item-highlight:hover .flow-icon-simple {
    transform: scale(1.2) rotate(-5deg);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.5),
        0 0 40px rgba(59, 130, 246, 0.3);
}

.flow-divider {
    font-size: 1.75rem;
    color: var(--color-primary);
    opacity: 0.6;
    transition: all 0.4s ease;
    animation: pulse-glow 2s ease-in-out infinite;
    position: relative;
}

.flow-divider i {
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.4));
}

.partnership-flow:hover .flow-divider {
    opacity: 1;
    transform: scale(1.1);
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 0.6;
        filter: drop-shadow(0 0 5px rgba(59, 130, 246, 0.3));
    }

    50% {
        opacity: 1;
        filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.6));
    }
}


/* Dark section styling */
.section-dark {
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.2));
}

/* === BENEFITS SECTION === */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.benefit-card {
    padding: 2.5rem 2rem;
    text-align: center;
}

.benefit-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transform: scaleX(0);
    transition: transform 0.5s var(--ease-out-expo);
}

.benefit-card:hover::after {
    transform: scaleX(1);
}

.benefit-icon {
    margin-bottom: 1.5rem;
}

.benefit-card:hover .benefit-icon {
    border-color: var(--color-primary);
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.3);
}

.benefit-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-text-main);
}

.benefit-description {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* === OUR SERVICES SECTION === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: var(--spacing-lg);
}

.service-detail-card {
    padding: 0;
    display: flex;
    flex-direction: column;
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transform: scaleX(0);
    transition: transform 0.5s var(--ease-out-expo);
}

.service-detail-card:hover::before {
    transform: scaleX(1);
}

.service-detail-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.service-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    padding: 0.5rem 1.2rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.creator-badge {
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.service-header {
    padding: 3rem 2.5rem 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-detail-icon {
    margin-bottom: 1.5rem;
}

.service-detail-icon i {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-detail-card:hover .service-detail-icon {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--color-primary);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.4);
}

.service-detail-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--color-text-main);
}

.service-tagline {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.service-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-section-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.service-feature-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-feature-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.service-feature-list li:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(59, 130, 246, 0.2);
    transform: translateX(5px);
}

.service-feature-list li>i {
    color: var(--color-primary);
    font-size: 1.25rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.service-feature-list li div {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.service-feature-list li strong {
    color: var(--color-text-main);
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-heading);
}

.service-feature-list li span {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Service Button Wrapper - Centers button at bottom */
.service-button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* === CONTACT SECTION === */
.contact-section {
    background: linear-gradient(180deg, transparent, rgba(59, 130, 246, 0.05));
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15), transparent 70%);
    filter: blur(100px);
    pointer-events: none;
    animation: pulse-glow 8s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Section Header */
.contact-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.75rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--color-primary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    animation: badge-float 3s ease-in-out infinite;
}

.section-badge i {
    font-size: 1rem;
}

.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: var(--spacing-lg);
}

/* Contact Cards Grid */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.contact-card {
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: visible;
}

/* Animated background pattern */
.contact-card-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(45deg, transparent 30%, rgba(59, 130, 246, 0.03) 50%, transparent 70%);
    background-size: 200% 200%;
    opacity: 0;
    transition: all 0.6s ease;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.contact-card:hover .contact-card-bg-pattern {
    opacity: 1;
}

.contact-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(99, 102, 241, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 24px;
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-card:hover {
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2),
        0 0 80px rgba(59, 130, 246, 0.1);
    transform: translateY(-8px);
}

.contact-card-icon {
    margin: 0 auto 1.25rem;
    position: relative;
    z-index: 1;
    transition: all 0.5s var(--ease-out-expo);
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
}

.contact-card:hover .contact-card-icon i {
    animation: icon-bounce 0.6s ease;
}

@keyframes icon-bounce {

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

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

.contact-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-text-main);
    position: relative;
    z-index: 1;
}

.contact-card-subtitle {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    padding: 0.5rem 0;
}

.contact-link span {
    transition: all 0.3s ease;
}

.contact-link i {
    font-size: 0.85rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-10px);
}

.contact-card:hover .contact-link i {
    opacity: 1;
    transform: translateX(0);
}

.contact-link:hover {
    color: var(--color-accent);
}

.contact-link:hover span {
    transform: translateX(-5px);
}

/* Contact Card Badges */
.contact-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.35rem 0.85rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(99, 102, 241, 0.2));
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(16, 185, 129, 0.2));
    border-color: rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }

    50% {
        opacity: 0.8;
        box-shadow: 0 0 0 4px rgba(34, 197, 94, 0);
    }
}


/* CTA Box */
.contact-cta-box {
    background: var(--glass-bg);
    border: var(--glass-border);
    backdrop-filter: blur(40px);
    padding: 4rem 3.5rem;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
}

.contact-cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(99, 102, 241, 0.1));
    opacity: 0.5;
}

/* Animated glow effect */
.cta-glow-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2), transparent 40%);
    animation: rotate-glow 10s linear infinite;
    pointer-events: none;
}

@keyframes rotate-glow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(99, 102, 241, 0.2));
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float-icon 3s ease-in-out infinite;
}

.cta-icon-wrapper i {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes float-icon {

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

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

.cta-heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, #fff, var(--color-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-text {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.cta-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.cta-stat .metric-number {
    font-size: clamp(2rem, 3vw, 2.5rem);
}

.cta-stat .metric-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 16px;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.cta-button i {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: scale(1.15);
}

.cta-button-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: #fff;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.cta-button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.5);
}

.button-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-button-primary:hover .button-shine {
    left: 100%;
}

.cta-button-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-primary);
    border: 2px solid rgba(59, 130, 246, 0.3);
}

.cta-button-secondary:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
}

/* === CONTACT FORM STYLES === */
.contact-form {
    margin-top: 2rem;
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-main);
    text-align: left;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--color-text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-muted);
    opacity: 0.6;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.form-group select {
    cursor: pointer;
}

.contact-form button[type="submit"] {
    width: 100%;
    margin-top: 1rem;
}

/* Alternative Contact */
.alternative-contact {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.alternative-contact p {
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.contact-methods {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-method {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    color: var(--color-text-main);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.contact-method i {
    font-size: 1.1rem;
    color: var(--color-primary);
}

/* === FOOTER === */
.cta-button-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.25rem 3rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 50%, #EC4899 100%);
    background-size: 200% 200%;
    border: none;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.35),
        0 4px 12px rgba(139, 92, 246, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    letter-spacing: 0.02em;
}

.cta-button-large::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cta-button-large:hover::before {
    opacity: 1;
}

.cta-button-large:hover {
    background-position: 100% 50%;
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.45),
        0 6px 16px rgba(139, 92, 246, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 0 0 2px rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.cta-button-large:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
}

.cta-button-large i {
    font-size: 1.35rem;
    transition: transform 0.4s var(--ease-out-expo);
    position: relative;
    z-index: 2;
    color: white;
}

.cta-button-large:hover i {
    transform: scale(1.1) rotate(-5deg);
}

.cta-button-large span {
    position: relative;
    z-index: 2;
    color: white;
}

.cta-button-large .liquid {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--color-accent), #8b5cf6);
    opacity: 0;
    z-index: 0;
    pointer-events: none;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .metrics-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

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

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

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

    .contact-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }

    .contact-cta-box {
        padding: 2.5rem 2rem;
    }
}

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

    .metrics-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 3rem;
    }

    .metric-item {
        padding: 1.5rem 1rem;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .service-header {
        padding: 2.5rem 1.5rem 1.5rem;
    }

    .service-content {
        padding: 1.5rem;
    }

    .service-badge {
        top: 1rem;
        right: 1rem;
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .partnership-flow {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 1rem;
    }

    /* Contact Section Mobile */
    .contact-section-header {
        margin-bottom: 3rem;
    }

    .section-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1.25rem;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .contact-card {
        padding: 2rem 1.5rem;
    }


    .contact-cta-box {
        padding: 3rem 1.75rem;
    }

    .cta-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 1.25rem;
    }

    .cta-icon-wrapper i {
        font-size: 1.5rem;
    }

    .cta-stats {
        gap: 2rem;
        flex-wrap: wrap;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-button {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .cta-button-large {
        padding: 1.1rem 2.25rem;
        font-size: 1rem;
        gap: 0.85rem;
    }

    .cta-button-large i {
        font-size: 1.2rem;
    }

    .flow-divider {
        transform: rotate(90deg);
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1.25rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .particle {
        font-size: 1.5rem;
    }
}

/* === FOOTER === */
.footer {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 5rem 0 2rem;
    margin-top: 6rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 3.5rem;
    margin-bottom: 3.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Brand Column */
.footer-brand {
    max-width: 380px;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.25rem;
}

.footer-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
}

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

.footer-social-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-main);
    font-size: 1.25rem;
    transition: all 0.4s var(--ease-out-expo);
    text-decoration: none;
}

.footer-social-btn:hover {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-color: transparent;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

/* Footer Columns */
.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-subtitle {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-text-main);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    border-radius: 2px;
}

.footer-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-list a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-list a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--color-primary);
}

.footer-list a:hover {
    color: var(--color-primary);
    transform: translateX(5px);
}

.footer-list a:hover::before {
    opacity: 1;
    left: -15px;
}

/* Contact List */
.footer-contact-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    color: var(--color-text-muted);
    font-size: 0.92rem;
}

.footer-contact-list i {
    color: var(--color-primary);
    font-size: 1.1rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.footer-contact-list a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-word;
}

.footer-contact-list a:hover {
    color: var(--color-primary);
}

/* Footer Bar */
.footer-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

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

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-legal a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--color-primary);
}

.footer-legal span {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-column:last-child {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3.5rem 0 1.5rem;
        margin-top: 4rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding-bottom: 2rem;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-column:last-child {
        grid-column: span 1;
    }

    .footer-bar {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    /* Contact Form Mobile */
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-methods {
        flex-direction: column;
        gap: 0.75rem;
    }

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

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}