/* ============================================
   NOKM.dev - Hyperbrutal Ultra-Creative Design
   Stripe/Linear/Arc/Raycast/Framer/Figma Level
   Colorful, Futuristic, Cinematic, Premium
   ============================================ */

/* ============================================
   CSS Variables - Hypercolorful Design Tokens
   ============================================ */

:root {
    /* Colorful Palette - Premium Electric */
    --color-electric-blue: #2563EB;
    --color-electric-blue-light: #3B82F6;
    --color-purple: #6366F1;
    --color-purple-light: #8B5CF6;
    --color-cyan: #06B6D4;
    --color-cyan-light: #22D3EE;
    --color-pink: #EC4899;
    --color-pink-light: #F472B6;
    --color-orange: #F59E0B;
    --color-orange-light: #FBBF24;
    --color-teal: #14B8A6;
    --color-amber: #F59E0B;
    --color-lime: #84CC16;
    --color-lavender: #A78BFA;

    /* Backgrounds */
    --bg-body: #FFFFFF;
    --bg-light: #F9FAFB;
    --bg-dark: #020617;

    /* Text */
    --text-main: #0A0A0A;
    --text-muted: #6B7280;
    --text-on-dark: #FFFFFF;
    --text-on-dark-muted: rgba(255, 255, 255, 0.7);

    /* Borders */
    --border-subtle: rgba(0, 0, 0, 0.06);
    --border-subtle-dark: rgba(255, 255, 255, 0.1);

    /* Premium Shadows - Colorful Glows */
    --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.04);
    --shadow-card-hover: 0 32px 64px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(37, 99, 235, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    --shadow-glow-blue: 0 20px 60px rgba(37, 99, 235, 0.2);
    --shadow-glow-purple: 0 20px 60px rgba(99, 102, 241, 0.2);
    --shadow-glow-pink: 0 20px 60px rgba(236, 72, 153, 0.2);
    --shadow-button: 0 4px 16px rgba(37, 99, 235, 0.3);
    --shadow-button-hover: 0 8px 24px rgba(37, 99, 235, 0.4);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-2xl: 64px;
    --spacing-3xl: 96px;
    --spacing-4xl: 128px;

    /* Section Spacing - Refined */
    --section-spacing-mobile: 75px;
    --section-spacing-tablet: 100px;
    --section-spacing-desktop: 130px;

    /* Grid Spacing */
    --grid-spacing-mobile: 24px;
    --grid-spacing-tablet: 28px;
    --grid-spacing-desktop: 32px;

    /* Container */
    --container-max: 1200px;
    --container-padding-mobile: 20px;
    --container-padding-tablet: 32px;
    --container-padding-desktop: 48px;

    /* Transitions - Premium Springy */
    --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-base: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================
   Reset & Base Styles
   ============================================ */

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

html {
    scroll-behavior: smooth;
    font-size: 18px;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-body);
    color: var(--text-main);
    line-height: 1.7;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

::selection {
    background: var(--color-electric-blue);
    color: var(--text-on-dark);
}

/* ============================================
   Container
   ============================================ */

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding-mobile);
}

@media (min-width: 641px) {
    .container {
        padding: 0 var(--container-padding-tablet);
    }
}

@media (min-width: 1025px) {
    .container {
        padding: 0 var(--container-padding-desktop);
    }
}

/* ============================================
   Typography - Big, Bold, Elegant
   ============================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.1;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

h1 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 40px;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 28px;
    letter-spacing: -0.01em;
}

h4 {
    font-size: 24px;
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.7;
}

a {
    color: var(--color-electric-blue);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-purple);
}

/* Tablet Typography */
@media (min-width: 641px) {
    h1 {
        font-size: 68px;
    }

    h2 {
        font-size: 48px;
    }
}

/* Desktop Typography */
@media (min-width: 1025px) {
    h1 {
        font-size: 80px;
    }

    h2 {
        font-size: 60px;
    }
}

/* ============================================
   Header / Navigation - Premium Glass
   ============================================ */

.header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    z-index: 1000;
    transition: all var(--transition-base);
}

.header.scrolled {
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
    background: rgba(255, 255, 255, 0.95);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: height var(--transition-base);
}

.header.scrolled .nav {
    height: 72px;
}

.nav-logo a {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-main);
    transition: color var(--transition-fast);
    letter-spacing: -0.01em;
}

.nav-logo a:hover {
    background: linear-gradient(90deg, var(--color-electric-blue), var(--color-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: none;
    list-style: none;
    gap: var(--spacing-xl);
    align-items: center;
}

@media (min-width: 641px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    transition: color var(--transition-fast);
    position: relative;
    padding: var(--spacing-xs) 0;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-electric-blue), var(--color-purple));
    transition: width var(--transition-base);
}

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

.nav-link-cta {
    padding: 10px 24px;
    background: linear-gradient(90deg, var(--color-electric-blue) 0%, var(--color-purple) 100%);
    color: var(--text-on-dark);
    border-radius: 24px;
    margin-left: var(--spacing-sm);
    box-shadow: var(--shadow-button);
}

.nav-link-cta::after {
    display: none;
}

.nav-link-cta:hover {
    background: linear-gradient(90deg, var(--color-purple) 0%, var(--color-pink) 100%);
    color: var(--text-on-dark);
    box-shadow: var(--shadow-button-hover);
    transform: translateY(-1px);
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
    z-index: 1001;
    width: 28px;
    height: 28px;
    justify-content: center;
}

@media (min-width: 641px) {
    .nav-toggle {
        display: none;
    }
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-main);
    transition: all var(--transition-base);
    border-radius: 2px;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
@media (max-width: 640px) {
    .nav-links.mobile-open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        padding: var(--spacing-xl);
        border-bottom: 1px solid var(--border-subtle);
        box-shadow: var(--shadow-card);
        gap: var(--spacing-md);
        align-items: flex-start;
    }

    .nav-links.mobile-open .nav-link {
        font-size: 18px;
        padding: var(--spacing-sm) 0;
    }

    .nav-links.mobile-open .nav-link-cta {
        margin-left: 0;
        margin-top: var(--spacing-sm);
    }
}

/* ============================================
   Sections - Perfect Rhythm
   ============================================ */

.section {
    padding: var(--section-spacing-mobile) 0;
    position: relative;
    overflow: visible;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

@media (min-width: 641px) {
    .section {
        padding: var(--section-spacing-tablet) 0;
    }
}

@media (min-width: 1025px) {
    .section {
        padding: var(--section-spacing-desktop) 0;
    }
}

.section-alt {
    background: var(--bg-light);
}

.section-alt-2 {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(99, 102, 241, 0.02) 100%);
}

.section-glass {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    letter-spacing: -0.03em;
}

.section-title-gradient {
    background: linear-gradient(135deg, var(--color-electric-blue) 0%, var(--color-purple) 50%, var(--color-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title-bg {
    display: block;
}

.section-title-accent {
    display: block;
    background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 18px;
    line-height: 1.7;
    font-weight: 400;
}

@media (min-width: 641px) {
    .section-title {
        font-size: 48px;
    }

    .section-subtitle {
        font-size: 24px;
    }
}

@media (min-width: 1025px) {
    .section-title {
        font-size: 60px;
    }

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

/* ============================================
   Section Dividers - Creative Shapes
   ============================================ */

.hero-divider-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: var(--bg-light);
    clip-path: path('M0,0 Q250,100 500,0 T1000,0 L1000,150 L0,150 Z');
    z-index: 1;
}

.section-divider-diagonal {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-light) 50%, transparent 50%);
    clip-path: polygon(0 0, 100% 0, 100% 60%, 0 100%);
    z-index: 1;
}

.section-divider-curved {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 180px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.04) 0%, rgba(99, 102, 241, 0.03) 100%);
    clip-path: ellipse(120% 100% at 50% 0%);
    z-index: 1;
}

/* ============================================
   Hero Section - Multi-Layer Color Explosion
   ============================================ */

.hero {
    padding-top: calc(80px + var(--section-spacing-mobile));
    padding-bottom: var(--section-spacing-mobile);
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    overflow-x: hidden;
    background: linear-gradient(135deg, #020617 0%, #0F172A 50%, #1E293B 100%);
    color: var(--text-on-dark);
    width: 100%;
    max-width: 100vw;
}

@media (min-width: 641px) {
    .hero {
        padding-top: calc(80px + var(--section-spacing-tablet));
        padding-bottom: var(--section-spacing-tablet);
    }
}

@media (min-width: 1025px) {
    .hero {
        padding-top: calc(80px + var(--section-spacing-desktop));
        padding-bottom: var(--section-spacing-desktop);
    }
}

/* Mesh Gradient Base - Refined */
.hero-mesh-gradient {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 120%;
    height: 140%;
    background:
        radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.15) 0%, transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.1) 0%, transparent 55%);
    opacity: 1;
    z-index: 0;
    animation: float-mesh 30s ease-in-out infinite;
}

/* Ribbon Gradient - Refined */
.hero-ribbon-gradient {
    position: absolute;
    top: 0;
    left: -15%;
    right: -15%;
    height: 400px;
    background: linear-gradient(135deg,
            rgba(37, 99, 235, 0.12) 0%,
            rgba(99, 102, 241, 0.1) 25%,
            rgba(168, 85, 247, 0.08) 50%,
            rgba(99, 102, 241, 0.1) 75%,
            rgba(37, 99, 235, 0.12) 100%);
    opacity: 0.85;
    z-index: 0;
    clip-path: polygon(0 0, 100% 0, 100% 75%, 0 100%);
    transform: rotate(-1deg);
    animation: float-ribbon 25s ease-in-out infinite;
}

/* Blob 1 - Electric Blue */
.hero-blob-1 {
    position: absolute;
    top: 15%;
    right: -5%;
    width: 700px;
    height: 700px;
    background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.25) 0%, transparent 70%);
    filter: blur(120px);
    z-index: 0;
    animation: float-blob-1 20s ease-in-out infinite;
}

/* Blob 2 - Purple */
.hero-blob-2 {
    position: absolute;
    bottom: 10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
    filter: blur(100px);
    z-index: 0;
    animation: float-blob-2 24s ease-in-out infinite reverse;
}

/* Blob 3 - Pink */
.hero-blob-3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(236, 72, 153, 0.18) 0%, transparent 65%);
    filter: blur(110px);
    z-index: 0;
    animation: float-blob-3 18s ease-in-out infinite;
}

/* Glass Bubbles */
.hero-glass-bubble-1 {
    position: absolute;
    top: 25%;
    right: 20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
    animation: float-bubble-1 15s ease-in-out infinite;
}

.hero-glass-bubble-2 {
    position: absolute;
    bottom: 30%;
    left: 15%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(35px);
    z-index: 0;
    animation: float-bubble-2 18s ease-in-out infinite reverse;
}

/* Diagonal Shape */
.hero-shape-diagonal {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(37, 99, 235, 0.08) 100%);
    clip-path: polygon(100% 0, 100% 100%, 0 0);
    z-index: 0;
    animation: float-diagonal 22s ease-in-out infinite;
}

/* Light Beam */
.hero-light-beam {
    position: absolute;
    top: 0;
    left: 20%;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(37, 99, 235, 0.3) 20%,
            rgba(99, 102, 241, 0.4) 50%,
            rgba(236, 72, 153, 0.3) 80%,
            transparent 100%);
    filter: blur(2px);
    z-index: 0;
    animation: float-beam 10s ease-in-out infinite;
}

@keyframes float-mesh {

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

    33% {
        transform: translate(50px, -50px) rotate(3deg);
    }

    66% {
        transform: translate(-40px, 40px) rotate(-2deg);
    }
}

@keyframes float-ribbon {

    0%,
    100% {
        transform: rotate(-1deg) translateY(0);
    }

    50% {
        transform: rotate(-0.3deg) translateY(-25px);
    }
}

@keyframes float-blob-1 {

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

    50% {
        transform: translate(60px, -60px) scale(1.15);
    }
}

@keyframes float-blob-2 {

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

    50% {
        transform: translate(-50px, 50px) scale(1.2);
    }
}

@keyframes float-blob-3 {

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

    50% {
        transform: translate(-50%, -50%) scale(1.25) rotate(15deg);
    }
}

@keyframes float-bubble-1 {

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

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

@keyframes float-bubble-2 {

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

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

@keyframes float-diagonal {

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

    50% {
        transform: translate(-30px, 30px) rotate(5deg);
    }
}

@keyframes float-beam {

    0%,
    100% {
        opacity: 0.3;
        transform: translateX(0);
    }

    50% {
        opacity: 0.6;
        transform: translateX(20px);
    }
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--spacing-xl);
    letter-spacing: -0.04em;
}

.hero-title-gradient {
    display: block;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title-accent {
    display: block;
    background: linear-gradient(135deg, var(--color-electric-blue-light) 0%, var(--color-purple-light) 50%, var(--color-pink-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--spacing-2xl);
    line-height: 1.7;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-2xl);
}

.hero-metrics {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    max-width: 600px;
    margin: var(--spacing-2xl) auto 0;
}

.metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    position: relative;
    overflow: visible;
}

.metric-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-electric-blue), var(--color-purple), var(--color-pink));
    opacity: 0.6;
}

.metric-item-1::before {
    background: linear-gradient(90deg, var(--color-electric-blue), var(--color-cyan));
}

.metric-item-2::before {
    background: linear-gradient(90deg, var(--color-purple), var(--color-pink));
}

.metric-item-3::before {
    background: linear-gradient(90deg, var(--color-cyan), var(--color-electric-blue));
}

.metric-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-on-dark);
    margin-bottom: var(--spacing-xs);
    letter-spacing: -0.02em;
}

.metric-label {
    font-size: 13px;
    color: var(--text-on-dark-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (min-width: 641px) {
    .hero-title {
        font-size: 68px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .metric-number {
        font-size: 40px;
    }

    .hero-metrics {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1025px) {
    .hero-title {
        font-size: 80px;
    }

    .hero-subtitle {
        font-size: 28px;
    }

    .metric-number {
        font-size: 48px;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 42px;
        line-height: 1.15;
    }
    
    .hero-subtitle {
        font-size: 17px;
    }
    
    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }
}

/* ============================================
   Buttons - Colorful Premium
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 24px;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
    text-decoration: none;
    min-height: 48px;
    letter-spacing: -0.01em;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-electric-blue) 0%, var(--color-purple) 50%, var(--color-pink) 100%);
    color: var(--text-on-dark);
    box-shadow: var(--shadow-button);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-pink) 50%, var(--color-electric-blue) 100%);
    color: var(--text-on-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-button-hover);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    color: var(--text-on-dark);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text-on-dark);
    transform: translateY(-2px);
}

.section-light .btn-secondary,
.section-alt .btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    color: var(--text-main);
    border: 1px solid var(--border-subtle);
}

.section-light .btn-secondary:hover,
.section-alt .btn-secondary:hover {
    background: rgba(255, 255, 255, 1);
    border-color: var(--color-electric-blue);
    color: var(--color-electric-blue);
}

.btn-large {
    padding: 16px 40px;
    font-size: 19px;
    min-height: 56px;
}

@media (max-width: 640px) {
    .btn {
        width: 100%;
    }
}

/* ============================================
   Process Section - Colorful Background
   ============================================ */

.process-gradient-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.05) 0%, transparent 55%);
    z-index: 0;
}

.process-shape-overlay {
    position: absolute;
    top: 10%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    filter: blur(60px);
    z-index: 0;
    animation: float-shape 20s ease-in-out infinite;
}

@keyframes float-shape {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    33% {
        transform: translate(30px, -30px) rotate(120deg);
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }

    66% {
        transform: translate(-20px, 20px) rotate(240deg);
        border-radius: 70% 30% 50% 50% / 30% 50% 60% 70%;
    }
}

.process-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--grid-spacing-mobile);
}

@media (min-width: 641px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--grid-spacing-tablet);
    }
}

@media (min-width: 1025px) {
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--grid-spacing-desktop);
    }
}

.process-card {
    text-align: center;
    padding: var(--spacing-xl);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-electric-blue), var(--color-purple), var(--color-pink));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.process-card-1::before {
    background: linear-gradient(90deg, var(--color-electric-blue), var(--color-cyan));
}

.process-card-2::before {
    background: linear-gradient(90deg, var(--color-purple), var(--color-pink));
}

.process-card-3::before {
    background: linear-gradient(90deg, var(--color-cyan), var(--color-electric-blue));
}

.process-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(37, 99, 235, 0.3);
}

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

.process-icon-wrapper {
    margin-bottom: var(--spacing-md);
}

.process-icon {
    font-size: 80px;
    font-weight: 700;
    margin: 0 auto;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--color-electric-blue), var(--color-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.15;
}

.process-card-1 .process-icon {
    background: linear-gradient(135deg, var(--color-electric-blue), var(--color-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.process-card-2 .process-icon {
    background: linear-gradient(135deg, var(--color-purple), var(--color-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.process-card-3 .process-icon {
    background: linear-gradient(135deg, var(--color-cyan), var(--color-electric-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.process-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.02em;
}

.process-description {
    font-size: 17px;
    margin-bottom: 0;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ============================================
   Services Section - Color Blocks
   ============================================ */

.services-mesh-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 15% 25%, rgba(236, 72, 153, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(6, 182, 212, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.05) 0%, transparent 55%);
    z-index: 0;
}

.services-color-blocks {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(99, 102, 241, 0.08) 50%, rgba(236, 72, 153, 0.06) 100%);
    clip-path: polygon(100% 0, 100% 100%, 0 0);
    z-index: 0;
    filter: blur(80px);
}

.services-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
}

@media (min-width: 641px) {
    .services-container {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xl);
    }
}

@media (min-width: 1025px) {
    .services-container {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-xl);
    }
}

.service-group {
    display: flex;
    flex-direction: column;
}

.service-group-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: var(--spacing-xl);
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--color-electric-blue), var(--color-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

.service-card {
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: visible;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-electric-blue), var(--color-purple));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-card-1::before {
    background: linear-gradient(90deg, var(--color-electric-blue), var(--color-cyan));
}

.service-card-2::before {
    background: linear-gradient(90deg, var(--color-purple), var(--color-pink));
}

.service-card-3::before {
    background: linear-gradient(90deg, var(--color-cyan), var(--color-electric-blue));
}

.service-card-4::before {
    background: linear-gradient(90deg, var(--color-pink), var(--color-purple));
}

.service-card-5::before {
    background: linear-gradient(90deg, var(--color-electric-blue), var(--color-purple));
}

.service-card-6::before {
    background: linear-gradient(90deg, var(--color-purple), var(--color-pink));
}

.service-card-7::before {
    background: linear-gradient(90deg, var(--color-cyan), var(--color-electric-blue));
}

.service-card-8::before {
    background: linear-gradient(90deg, var(--color-pink), var(--color-electric-blue));
}

.service-card-9::before {
    background: linear-gradient(90deg, var(--color-electric-blue), var(--color-purple));
}

.service-card-10::before {
    background: linear-gradient(90deg, var(--color-purple), var(--color-cyan));
}

.service-card-11::before {
    background: linear-gradient(90deg, var(--color-cyan), var(--color-pink));
}

.service-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(37, 99, 235, 0.3);
}

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

.service-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    letter-spacing: -0.01em;
}

.service-description {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
    font-weight: 400;
    color: var(--text-secondary);
}

/* ============================================
   Products Section - Galaxy Gradient
   ============================================ */

.section-featured {
    position: relative;
}

.products-galaxy-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(236, 72, 153, 0.08) 0%, transparent 55%),
        radial-gradient(circle at 30% 80%, rgba(6, 182, 212, 0.06) 0%, transparent 60%);
    z-index: 0;
}

.products-holographic-ribbon {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(135deg,
            rgba(37, 99, 235, 0.1) 0%,
            rgba(99, 102, 241, 0.08) 20%,
            rgba(236, 72, 153, 0.1) 40%,
            rgba(6, 182, 212, 0.08) 60%,
            rgba(37, 99, 235, 0.1) 80%,
            rgba(99, 102, 241, 0.08) 100%);
    opacity: 0.8;
    z-index: 0;
    clip-path: polygon(0 0, 100% 0, 100% 60%, 0 100%);
}

.products-floating-shapes {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.08) 0%, transparent 70%);
    border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%;
    filter: blur(50px);
    z-index: 0;
    animation: float-shape 18s ease-in-out infinite;
}

.products-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--grid-spacing-mobile);
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 641px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--grid-spacing-tablet);
    }
}

.product-card {
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-electric-blue), var(--color-purple), var(--color-pink));
    opacity: 0.8;
}

.product-card-mailer::before {
    background: linear-gradient(90deg, var(--color-electric-blue), var(--color-cyan));
}

.product-card-flow::before {
    background: linear-gradient(90deg, var(--color-purple), var(--color-pink));
}

.product-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(37, 99, 235, 0.3);
}

.product-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--spacing-md);
}

.product-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
}

.product-icon-mailer {
    background: linear-gradient(135deg, var(--color-electric-blue) 0%, var(--color-cyan) 100%);
    color: var(--text-on-dark);
}

.product-icon-flow {
    background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-pink) 100%);
    color: var(--text-on-dark);
}

.product-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(59, 130, 246, 0.1) 100%);
    color: var(--color-electric-blue);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.01em;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.15);
}

.product-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
}

.product-description {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

.product-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.product-features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 14px;
    line-height: 1.7;
}

.product-features li svg {
    flex-shrink: 0;
    color: var(--color-electric-blue);
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-lg);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-electric-blue);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.product-link:hover {
    color: var(--color-purple);
    gap: var(--spacing-sm);
}

/* ============================================
   Portfolio Section - Colorful Gallery
   ============================================ */

.portfolio-gradient-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(6, 182, 212, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(236, 72, 153, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.04) 0%, transparent 55%);
    z-index: 0;
}

.portfolio-geometric-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(45deg, rgba(37, 99, 235, 0.02) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(37, 99, 235, 0.02) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(99, 102, 241, 0.02) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(99, 102, 241, 0.02) 75%);
    background-size: 60px 60px;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
    opacity: 0.5;
    z-index: 0;
}

.portfolio-stats {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin: var(--spacing-2xl) 0;
}

@media (min-width: 641px) {
    .portfolio-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xl);
    }
}

@media (min-width: 1025px) {
    .portfolio-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-xl);
    }
}

.stat-item {
    text-align: center;
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: visible;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-electric-blue), var(--color-purple));
    opacity: 0.6;
}

.stat-item-1::before {
    background: linear-gradient(90deg, var(--color-electric-blue), var(--color-cyan));
}

.stat-item-2::before {
    background: linear-gradient(90deg, var(--color-purple), var(--color-pink));
}

.stat-item-3::before {
    background: linear-gradient(90deg, var(--color-cyan), var(--color-electric-blue));
}

.stat-number {
    display: block;
    font-size: 64px;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--color-electric-blue), var(--color-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.portfolio-filters {
    position: relative;
    z-index: 1;
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-xl);
}

.filter-btn {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
    border-radius: 999px;
    cursor: pointer;
    transition: all var(--transition-fast);
    min-height: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.filter-btn:hover {
    color: var(--color-electric-blue);
    border-color: var(--color-electric-blue);
    background: rgba(37, 99, 235, 0.08);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--color-electric-blue) 0%, var(--color-purple) 100%);
    color: var(--text-on-dark);
    border-color: transparent;
    box-shadow: var(--shadow-button);
}

.portfolio-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--grid-spacing-mobile);
}

@media (min-width: 641px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--grid-spacing-tablet);
    }
}

@media (min-width: 1025px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--grid-spacing-desktop);
    }
}

.portfolio-item {
    opacity: 1;
    transition: opacity var(--transition-base), transform var(--transition-base);
}

.portfolio-item.hidden {
    opacity: 0;
    pointer-events: none;
    height: 0;
    overflow: hidden;
    margin: 0;
}

.portfolio-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: var(--spacing-xl);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: visible;
}

.portfolio-gradient-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    opacity: 0.8;
}

.portfolio-gradient-accent-1 {
    background: linear-gradient(90deg, var(--color-electric-blue), var(--color-cyan));
}

.portfolio-gradient-accent-2 {
    background: linear-gradient(90deg, var(--color-purple), var(--color-pink));
}

.portfolio-gradient-accent-3 {
    background: linear-gradient(90deg, var(--color-cyan), var(--color-electric-blue));
}

.portfolio-gradient-accent-4 {
    background: linear-gradient(90deg, var(--color-pink), var(--color-purple));
}

.portfolio-gradient-accent-5 {
    background: linear-gradient(90deg, var(--color-electric-blue), var(--color-purple));
}

.portfolio-gradient-accent-6 {
    background: linear-gradient(90deg, var(--color-purple), var(--color-cyan));
}

.portfolio-gradient-accent-7 {
    background: linear-gradient(90deg, var(--color-cyan), var(--color-pink));
}

.portfolio-gradient-accent-8 {
    background: linear-gradient(90deg, var(--color-pink), var(--color-electric-blue));
}

.portfolio-gradient-accent-9 {
    background: linear-gradient(90deg, var(--color-electric-blue), var(--color-cyan));
}

.portfolio-gradient-accent-10 {
    background: linear-gradient(90deg, var(--color-purple), var(--color-pink));
}

.portfolio-gradient-accent-11 {
    background: linear-gradient(90deg, var(--color-cyan), var(--color-electric-blue));
}

.portfolio-gradient-accent-12 {
    background: linear-gradient(90deg, var(--color-pink), var(--color-purple));
}

.portfolio-gradient-accent-13 {
    background: linear-gradient(90deg, var(--color-electric-blue), var(--color-purple));
}

.portfolio-icon-shape {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    margin-bottom: var(--spacing-md);
    position: relative;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(99, 102, 241, 0.08));
}

.portfolio-icon-shape-1 {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(6, 182, 212, 0.1));
}

.portfolio-icon-shape-2 {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(236, 72, 153, 0.1));
}

.portfolio-icon-shape-3 {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(37, 99, 235, 0.1));
}

.portfolio-icon-shape-4 {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(99, 102, 241, 0.1));
}

.portfolio-icon-shape-5 {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(99, 102, 241, 0.1));
}

.portfolio-icon-shape-6 {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(6, 182, 212, 0.1));
}

.portfolio-icon-shape-7 {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(236, 72, 153, 0.1));
}

.portfolio-icon-shape-8 {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(37, 99, 235, 0.1));
}

.portfolio-icon-shape-9 {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(6, 182, 212, 0.1));
}

.portfolio-icon-shape-10 {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(236, 72, 153, 0.1));
}

.portfolio-icon-shape-11 {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(37, 99, 235, 0.1));
}

.portfolio-icon-shape-12 {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(99, 102, 241, 0.1));
}

.portfolio-icon-shape-13 {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(99, 102, 241, 0.1));
}

.portfolio-icon-shape::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--color-electric-blue), var(--color-purple));
    opacity: 0.4;
}

.portfolio-content:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(37, 99, 235, 0.25);
}

.portfolio-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.01em;
}

.portfolio-description {
    font-size: 17px;
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
    flex: 1;
    color: var(--text-secondary);
}

.portfolio-tags {
    display: flex;
    gap: var(--spacing-xs);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-md);
}

.tag {
    display: inline-flex;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.01em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.tag-1 {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(59, 130, 246, 0.1));
    color: var(--color-electric-blue);
}

.tag-2 {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.1));
    color: var(--color-purple);
}

.tag-3 {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(244, 114, 182, 0.1));
    color: var(--color-pink);
}

.tag-4 {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(34, 211, 238, 0.1));
    color: var(--color-cyan);
}

.tag-5 {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(192, 132, 252, 0.1));
    color: var(--color-purple-light);
}

.tag-6 {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(251, 191, 36, 0.1));
    color: var(--color-orange);
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-electric-blue);
    transition: all var(--transition-fast);
    margin-top: auto;
}

.portfolio-link:hover {
    color: var(--color-purple);
    gap: var(--spacing-sm);
}

/* ============================================
   About Section - Sunset Gradient
   ============================================ */

.section#about,
section.about.section {
    overflow: hidden;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    max-width: 100vw;
}

.section#about .container,
section.about.section .container {
    position: relative;
    overflow: visible;
    width: 100%;
    max-width: 100%;
}

.about-sunset-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(245, 158, 11, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.06) 0%, transparent 55%);
    z-index: 0;
}

.about-color-splash {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    border-radius: 50% 40% 30% 70% / 60% 30% 70% 40%;
    filter: blur(100px);
    z-index: 0;
    animation: float-shape 25s ease-in-out infinite;
    pointer-events: none;
}

@media (min-width: 1025px) {
    .about-color-splash {
        bottom: -150px;
        left: -150px;
    }
}

.about-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-3xl);
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    overflow: visible;
}

@media (min-width: 1025px) {
    .about-content {
        grid-template-columns: 1.5fr 1fr;
    }
}

.about-text {
    max-width: 700px;
}

.about-intro {
    font-size: 28px;
    line-height: 1.7;
    margin-bottom: var(--spacing-xl);
    font-weight: 400;
    background: linear-gradient(135deg, var(--color-electric-blue), var(--color-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-description {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 0;
    font-weight: 400;
}

/* ============================================
   About Stats Card - Vertical Layout Only
   ============================================ */

.about-stats-card.about-stats-vertical {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
    align-items: center;
    justify-content: center;
    padding: 3rem 2.5rem;
    border-radius: 1.75rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: visible;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.about-stats-card.about-stats-vertical::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-electric-blue), var(--color-purple), var(--color-pink));
    opacity: 0.6;
    border-radius: 1.75rem 1.75rem 0 0;
}

.about-stats-card.about-stats-vertical .about-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: none !important;
    padding: 0;
    position: relative;
    z-index: 1;
}

.about-stats-card.about-stats-vertical .about-stat-number {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-electric-blue);
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
    width: 100%;
    text-align: center;
}

.about-stats-card.about-stats-vertical .about-stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    font-weight: 500;
}

@media (min-width: 1025px) {
    .about-stats-card.about-stats-vertical .about-stat-number {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .about-stats-card.about-stats-vertical {
        padding: 2rem 1.75rem;
        gap: 2rem;
    }

    .about-stats-card.about-stats-vertical .about-stat-number {
        font-size: 2.2rem;
    }
}

/* ============================================
   Contact Section
   ============================================ */

.contact-gradient-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.contact-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-3xl);
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 1025px) {
    .contact-wrapper {
        grid-template-columns: 1.2fr 1fr;
    }
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

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

.form-label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: var(--spacing-xs);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 17px;
    font-family: var(--font-primary);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    transition: all var(--transition-fast);
    min-height: 48px;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-electric-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background: rgba(255, 255, 255, 1);
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.7;
}

.form-success {
    padding: var(--spacing-md);
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid #10B981;
    border-radius: 20px;
    color: #10B981;
    font-size: 14px;
    margin-top: var(--spacing-md);
    font-weight: 500;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    font-size: 14px;
}

.contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--text-muted);
}

.contact-item a {
    color: var(--text-muted);
    transition: color var(--transition-fast);
    font-weight: 400;
}

.contact-item a:hover {
    color: var(--color-electric-blue);
}

.contact-links-group {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    flex-wrap: wrap;
}

.contact-links-group span {
    color: var(--text-muted);
}

/* ============================================
   Footer
   ============================================ */

.footer {
    border-top: 1px solid var(--border-subtle);
    padding: var(--spacing-2xl) 0;
    background: var(--bg-light);
    margin-top: var(--spacing-3xl);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: center;
    text-align: center;
}

@media (min-width: 641px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-left p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 0;
    font-weight: 400;
}

.footer-right {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.footer-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--text-muted);
    transition: all var(--transition-fast);
    border-radius: 12px;
}

.footer-link:hover {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(99, 102, 241, 0.08));
    color: var(--color-electric-blue);
    transform: translateY(-2px);
}

/* ============================================
   Utility Classes
   ============================================ */

/* Mobile overflow fixes */
@media (max-width: 640px) {
    .hero-mesh-gradient,
    .hero-ribbon-gradient,
    .hero-blob-1,
    .hero-blob-2,
    .hero-blob-3 {
        max-width: 110vw;
        left: -5% !important;
        right: -5% !important;
    }
    
    .process-gradient-overlay,
    .services-gradient-overlay,
    .products-gradient-overlay {
        max-width: 100vw;
    }
    
    .portfolio-gradient-blocks {
        max-width: 100vw;
    }
    
    .about-gradient-sculpt {
        max-width: 100vw;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}