/* =====================================================
   DOZSA AGENCY — Glassmorphism Redesign 2025
   ===================================================== */

:root {
    --bg-deep:         #050816;
    --bg-surface:      #0a0f23;

    --purple:          #a855f7;
    --cyan:            #06b6d4;
    --purple-dim:      rgba(168, 85, 247, 0.15);
    --cyan-dim:        rgba(6, 182, 212, 0.12);

    --glass-bg:        rgba(255, 255, 255, 0.045);
    --glass-bg-hover:  rgba(255, 255, 255, 0.075);
    --glass-border:    rgba(255, 255, 255, 0.09);
    --glass-blur:      blur(20px);
    --glass-shadow:    0 8px 40px rgba(0, 0, 0, 0.45);

    --text-1:          #ffffff;
    --text-2:          rgba(255, 255, 255, 0.58);
    --text-3:          rgba(255, 255, 255, 0.32);

    --gradient-brand:  linear-gradient(135deg, #a855f7 0%, #06b6d4 100%);

    --t-fast:  0.2s ease;
    --t-med:   0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--bg-deep);
    color: var(--text-1);
    line-height: 1.7;
    font-size: 15px;
    overflow-x: hidden;
    background-image:
        radial-gradient(ellipse 90% 55% at 15% 5%,  rgba(168, 85, 247, 0.07) 0%, transparent 65%),
        radial-gradient(ellipse 70% 45% at 85% 90%, rgba(6, 182, 212, 0.06)  0%, transparent 65%);
}

/* =====================================================
   UTILITY
   ===================================================== */

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

.section {
    padding: 6rem 0;
}

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

.section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--purple);
    background: var(--purple-dim);
    border: 1px solid rgba(168, 85, 247, 0.28);
    padding: 0.35rem 1.05rem;
    border-radius: 50px;
    margin-bottom: 1.2rem;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 4rem;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.13;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--text-2);
    line-height: 1.75;
}

/* =====================================================
   SCROLL FADE-IN
   ===================================================== */

.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.features-grid .fade-in:nth-child(2) { transition-delay: 0.08s; }
.features-grid .fade-in:nth-child(3) { transition-delay: 0.16s; }
.features-grid .fade-in:nth-child(4) { transition-delay: 0.24s; }
.features-grid .fade-in:nth-child(5) { transition-delay: 0.32s; }
.features-grid .fade-in:nth-child(6) { transition-delay: 0.40s; }

.stats-grid .fade-in:nth-child(2) { transition-delay: 0.1s; }
.stats-grid .fade-in:nth-child(3) { transition-delay: 0.2s; }
.stats-grid .fade-in:nth-child(4) { transition-delay: 0.3s; }

.pricing-grid .fade-in:nth-child(2) { transition-delay: 0.12s; }
.pricing-grid .fade-in:nth-child(3) { transition-delay: 0.24s; }

.contact-grid .fade-in:nth-child(2) { transition-delay: 0.1s; }
.contact-grid .fade-in:nth-child(3) { transition-delay: 0.2s; }

/* =====================================================
   BUTTONS
   ===================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--t-med);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-brand);
    color: #fff;
    box-shadow: 0 0 28px rgba(168, 85, 247, 0.28);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 0 55px rgba(168, 85, 247, 0.45), 0 16px 32px rgba(0,0,0,0.3);
}

.btn-ghost {
    background: var(--glass-bg);
    -webkit-backdrop-filter: var(--glass-blur);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    color: var(--text-1);
}

.btn-ghost:hover {
    background: var(--glass-bg-hover);
    border-color: rgba(168, 85, 247, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 0 22px rgba(168, 85, 247, 0.14);
}

@keyframes pulse-glow {
    0%, 100% { filter: brightness(1)    saturate(1);    }
    50%       { filter: brightness(1.1) saturate(1.25); }
}

.btn-pulse {
    animation: pulse-glow 3s ease infinite;
}

/* =====================================================
   NAVIGATION
   ===================================================== */

#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    -webkit-backdrop-filter: var(--glass-blur);
    backdrop-filter: var(--glass-blur);
    background: rgba(5, 8, 22, 0.75);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
    transition: background var(--t-med), padding var(--t-med), border-color var(--t-med);
}

#navbar.scrolled {
    background: rgba(5, 8, 22, 0.96);
    border-bottom-color: rgba(168, 85, 247, 0.18);
    box-shadow: 0 4px 36px rgba(0, 0, 0, 0.45);
    padding: 0.7rem 0;
}

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

.nav-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    letter-spacing: -0.02em;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.15rem;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    display: block;
    color: var(--text-2);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.45rem 0.9rem;
    border-radius: 8px;
    transition: all var(--t-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-brand);
    border-radius: 2px;
    transition: width var(--t-med);
}

.nav-links a:hover {
    color: var(--text-1);
    background: rgba(255, 255, 255, 0.05);
}

.nav-links a:hover::after {
    width: 55%;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.58rem 1.35rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    background: linear-gradient(135deg, rgba(168,85,247,0.18), rgba(6,182,212,0.15));
    border: 1px solid rgba(168, 85, 247, 0.38);
    color: var(--text-1);
    transition: all var(--t-med);
    flex-shrink: 0;
}

.nav-cta:hover {
    background: var(--gradient-brand);
    border-color: transparent;
    box-shadow: 0 0 28px rgba(168, 85, 247, 0.38);
    transform: translateY(-1px);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-shrink: 0;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-1);
    border-radius: 2px;
    transition: all var(--t-med);
}

.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* =====================================================
   HERO
   ===================================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 2rem 5rem;
    text-align: center;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1467232004584-a241de8bcf5d?w=1920&auto=format&fit=crop&q=60');
    background-size: cover;
    background-position: center;
    opacity: 0.06;
    z-index: 0;
}

/* Floating ambient orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
    will-change: transform;
}

.orb-1 {
    width: 520px;
    height: 520px;
    background: rgba(168, 85, 247, 0.22);
    top: -120px;
    left: -120px;
    animation: float-orb 14s ease-in-out infinite;
}

.orb-2 {
    width: 420px;
    height: 420px;
    background: rgba(6, 182, 212, 0.18);
    bottom: -100px;
    right: -100px;
    animation: float-orb 17s ease-in-out infinite reverse;
}

.orb-3 {
    width: 280px;
    height: 280px;
    background: rgba(168, 85, 247, 0.12);
    top: 35%;
    right: 12%;
    animation: float-orb 11s ease-in-out infinite 2s;
}

.orb-4 {
    width: 220px;
    height: 220px;
    background: rgba(6, 182, 212, 0.1);
    bottom: 28%;
    left: 8%;
    animation: float-orb 20s ease-in-out infinite 4s;
}

@keyframes float-orb {
    0%,  100% { transform: translate(0,    0)    scale(1);    }
    33%        { transform: translate(30px, -25px) scale(1.06); }
    66%        { transform: translate(-20px, 28px) scale(0.97); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cyan);
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.28);
    padding: 0.4rem 1.15rem;
    border-radius: 50px;
    margin-bottom: 2rem;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.4rem, 7vw, 4.5rem);
    font-weight: 800;
    line-height: 1.07;
    letter-spacing: -0.03em;
    margin-bottom: 1.6rem;
    color: var(--text-1);
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--text-2);
    max-width: 580px;
    margin: 0 auto 2.75rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* =====================================================
   FEATURE CARDS
   ===================================================== */

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

.feature-card {
    background: var(--glass-bg);
    -webkit-backdrop-filter: var(--glass-blur);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.25rem;
    transition: transform var(--t-med), box-shadow var(--t-med), background var(--t-med), border-color var(--t-med);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: radial-gradient(circle at 50% -10%, rgba(168,85,247,0.09), transparent 65%);
    opacity: 0;
    transition: opacity var(--t-med);
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: var(--glass-bg-hover);
    border-color: rgba(168, 85, 247, 0.32);
    box-shadow:
        0 22px 60px rgba(0,0,0,0.42),
        0 0 42px rgba(168, 85, 247, 0.1),
        inset 0 1px 0 rgba(255,255,255,0.07);
}

.feature-card:hover::after {
    opacity: 1;
}

.card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(168,85,247,0.18), rgba(6,182,212,0.13));
    border: 1px solid rgba(168, 85, 247, 0.28);
    border-radius: 14px;
    margin-bottom: 1.5rem;
    color: var(--purple);
    transition: all var(--t-med);
}

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

.feature-card:hover .card-icon {
    transform: scale(1.12) rotate(-5deg);
    background: linear-gradient(135deg, rgba(168,85,247,0.32), rgba(6,182,212,0.22));
    border-color: rgba(168,85,247,0.5);
    box-shadow: 0 0 22px rgba(168, 85, 247, 0.28);
}

.feature-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: 0.7rem;
    transition: background var(--t-med), -webkit-text-fill-color var(--t-med);
}

.feature-card:hover h3 {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--text-2);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    border-top: 1px solid rgba(255,255,255,0.055);
    padding-top: 1.2rem;
}

.card-tags span {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-3);
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.07);
    padding: 0.28rem 0.7rem;
    border-radius: 20px;
    letter-spacing: 0.025em;
    transition: all var(--t-med);
}

.feature-card:hover .card-tags span {
    color: var(--purple);
    border-color: rgba(168, 85, 247, 0.24);
    background: rgba(168, 85, 247, 0.07);
}

/* =====================================================
   VISUAL HIGHLIGHT / PROCESS
   ===================================================== */

.highlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.highlight-text .section-title {
    text-align: left;
    margin-bottom: 1.2rem;
}

.highlight-text > p {
    font-size: 0.975rem;
    color: var(--text-2);
    line-height: 1.8;
    margin-bottom: 2.2rem;
}

.process-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    margin-bottom: 2.75rem;
}

.process-list li {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.process-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(168,85,247,0.18), rgba(6,182,212,0.13));
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 50%;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--purple);
    font-family: 'Space Grotesk', sans-serif;
    margin-top: 1px;
}

.process-list li strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: 0.3rem;
    font-family: 'Space Grotesk', sans-serif;
}

.process-list li p {
    font-size: 0.85rem;
    color: var(--text-2);
    line-height: 1.65;
    margin: 0;
}

.image-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.image-frame img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: transform 0.65s ease;
}

.image-frame:hover img {
    transform: scale(1.04);
}

.image-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(5, 8, 22, 0.82);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(168, 85, 247, 0.25);
    border-radius: 16px;
    padding: 0.9rem 1.35rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.badge-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.9rem;
    font-weight: 800;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.2rem;
}

.badge-text {
    font-size: 0.7rem;
    color: var(--text-2);
    font-weight: 500;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

/* =====================================================
   STATS
   ===================================================== */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
    margin-bottom: 3.5rem;
}

.stat-card {
    background: var(--glass-bg);
    -webkit-backdrop-filter: var(--glass-blur);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.1rem 1.5rem;
    text-align: center;
    transition: all var(--t-med);
}

.stat-card:hover {
    transform: translateY(-7px);
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 22px 52px rgba(0,0,0,0.38), 0 0 32px rgba(6,182,212,0.08);
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-number span {
    font-size: 1.7rem;
}

.stat-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: 0.7rem;
}

.stat-card p {
    font-size: 0.8rem;
    color: var(--text-2);
    line-height: 1.6;
}

.testimonial-wrap {
    max-width: 660px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--glass-bg);
    -webkit-backdrop-filter: var(--glass-blur);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(168, 85, 247, 0.18);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
}

.quote-mark {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 0.6;
    margin-bottom: 1.5rem;
    display: block;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-2);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    justify-content: center;
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gradient-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: #fff;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: 0.15rem;
}

.testimonial-author span {
    font-size: 0.78rem;
    color: var(--text-3);
}

/* =====================================================
   PRICING
   ===================================================== */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
    align-items: start;
}

.pricing-card {
    background: var(--glass-bg);
    -webkit-backdrop-filter: var(--glass-blur);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all var(--t-med);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 22px 55px rgba(0,0,0,0.42), 0 0 32px rgba(168,85,247,0.1);
}

.pricing-card.featured {
    background: linear-gradient(145deg, rgba(168,85,247,0.07), rgba(6,182,212,0.05));
    border-color: rgba(168, 85, 247, 0.38);
    box-shadow: 0 0 44px rgba(168, 85, 247, 0.1);
}

.pricing-card.featured:hover {
    box-shadow: 0 24px 65px rgba(0,0,0,0.5), 0 0 65px rgba(168,85,247,0.2);
}

.pricing-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-brand);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 1.2rem;
    border-radius: 0 0 12px 12px;
    white-space: nowrap;
}

.pricing-top {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
}

.pricing-top h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: 0.8rem;
}

.pricing-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.4rem;
    font-weight: 800;
    color: var(--text-1);
    line-height: 1;
    margin-bottom: 0.45rem;
    display: flex;
    align-items: flex-start;
    gap: 0.05rem;
}

.pricing-price span {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-2);
    margin-top: 0.55rem;
}

.pricing-top p {
    font-size: 0.82rem;
    color: var(--text-3);
}

.pricing-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.pricing-list li {
    font-size: 0.87rem;
    color: var(--text-2);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.pricing-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Ccircle cx='8' cy='8' r='7' stroke='rgba%28168%2C85%2C247%2C0.45%29' stroke-width='1.2'/%3E%3Cpath d='M5 8l2 2 4-4' stroke='%23a855f7' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 0.9rem;
    border-radius: 50px;
    text-align: center;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    transition: all var(--t-med);
    border: 1px solid rgba(168, 85, 247, 0.38);
    background: rgba(168, 85, 247, 0.07);
    color: var(--text-1);
}

.pricing-card.featured .pricing-btn {
    background: var(--gradient-brand);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 0 28px rgba(168, 85, 247, 0.32);
}

.pricing-btn:hover {
    background: var(--gradient-brand);
    border-color: transparent;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(168, 85, 247, 0.38);
}

/* =====================================================
   CTA BANNER
   ===================================================== */

.cta-section {
    padding: 2rem 0 4rem;
}

.cta-glass {
    background: var(--glass-bg);
    -webkit-backdrop-filter: var(--glass-blur);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(168, 85, 247, 0.18);
    border-radius: 28px;
    padding: 5.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(65px);
    pointer-events: none;
}

.cta-orb-1 {
    width: 360px;
    height: 360px;
    background: rgba(168, 85, 247, 0.18);
    top: -130px;
    left: -100px;
}

.cta-orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(6, 182, 212, 0.14);
    bottom: -90px;
    right: -70px;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 580px;
    margin: 0 auto;
}

.cta-content .section-title {
    font-size: clamp(1.7rem, 4vw, 2.6rem);
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--text-2);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 2.5rem;
}

/* =====================================================
   CONTACT
   ===================================================== */

.contact-section {
    padding-top: 2rem;
}

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

.contact-card {
    background: var(--glass-bg);
    -webkit-backdrop-filter: var(--glass-blur);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.25rem;
    text-align: center;
    transition: all var(--t-med);
}

.contact-card:hover {
    transform: translateY(-7px);
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 18px 44px rgba(0,0,0,0.32), 0 0 24px rgba(6,182,212,0.08);
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(6,182,212,0.14), rgba(168,85,247,0.1));
    border: 1px solid rgba(6, 182, 212, 0.24);
    border-radius: 50%;
    margin: 0 auto 1.25rem;
    color: var(--cyan);
    transition: all var(--t-med);
}

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

.contact-card:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 0 18px rgba(6,182,212,0.25);
}

.contact-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: 0.8rem;
}

.contact-card p {
    font-size: 0.875rem;
    color: var(--text-2);
    line-height: 1.65;
}

.contact-card a {
    color: var(--cyan);
    text-decoration: none;
    transition: color var(--t-fast);
}

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

.contact-meta {
    font-size: 0.78rem !important;
    color: var(--text-3) !important;
    margin-top: 0.45rem;
}

/* =====================================================
   FOOTER
   ===================================================== */

footer {
    background: rgba(5, 8, 22, 0.96);
    border-top: 1px solid var(--glass-border);
    padding: 4.5rem 0 2rem;
    margin-top: 3rem;
}

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

.footer-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.865rem;
    color: var(--text-2);
    line-height: 1.75;
    max-width: 310px;
}

.footer-links h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-3);
    margin-bottom: 1.2rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--text-2);
    text-decoration: none;
    transition: color var(--t-fast);
}

.footer-links a:hover {
    color: var(--text-1);
}

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

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-3);
}

/* =====================================================
   CURSOR GLOW
   ===================================================== */

.cursor-glow {
    position: fixed;
    width: 380px;
    height: 380px;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(circle, rgba(168,85,247,0.06) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: left 0.12s ease, top 0.12s ease;
    will-change: left, top;
}

/* =====================================================
   SCROLL TO TOP
   ===================================================== */

.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(168,85,247,0.25), rgba(6,182,212,0.25));
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(168, 85, 247, 0.38);
    color: var(--text-1);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(18px);
    transition: all var(--t-med);
    z-index: 900;
}

.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--gradient-brand);
    border-color: transparent;
    box-shadow: 0 0 24px rgba(168, 85, 247, 0.5);
    transform: translateY(-3px);
}

/* =====================================================
   PORTFOLIO SHOWCASE
   ===================================================== */

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

.showcase-card {
    background: var(--glass-bg);
    -webkit-backdrop-filter: var(--glass-blur);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all var(--t-med);
}

.showcase-card:hover {
    transform: translateY(-8px);
    border-color: rgba(168, 85, 247, 0.32);
    box-shadow: 0 22px 60px rgba(0,0,0,0.42), 0 0 42px rgba(168,85,247,0.1);
}

.showcase-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.showcase-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.65s ease;
}

.showcase-card:hover .showcase-img img {
    transform: scale(1.06);
}

.showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,8,22,0.75) 0%, transparent 55%);
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
    opacity: 0;
    transition: opacity var(--t-med);
}

.showcase-card:hover .showcase-overlay {
    opacity: 1;
}

.showcase-tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cyan);
    background: rgba(6, 182, 212, 0.15);
    border: 1px solid rgba(6, 182, 212, 0.3);
    padding: 0.3rem 0.85rem;
    border-radius: 20px;
}

.showcase-info {
    padding: 1.5rem;
}

.showcase-info h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: 0.5rem;
    transition: background var(--t-med), -webkit-text-fill-color var(--t-med);
}

.showcase-card:hover .showcase-info h3 {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.showcase-info p {
    font-size: 0.855rem;
    color: var(--text-2);
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* =====================================================
   RESPONSIVE — 1024px
   ===================================================== */

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

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

    .highlight-grid {
        gap: 3rem;
    }
}

/* =====================================================
   RESPONSIVE — 768px
   ===================================================== */

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

    .nav-links, .nav-cta { display: none; }
    .nav-hamburger { display: flex; }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 61px;
        left: 0;
        right: 0;
        background: rgba(5, 8, 22, 0.98);
        -webkit-backdrop-filter: var(--glass-blur);
        backdrop-filter: var(--glass-blur);
        padding: 1.25rem 2rem 1.75rem;
        gap: 0.15rem;
        border-bottom: 1px solid var(--glass-border);
    }

    .features-grid      { grid-template-columns: 1fr; }
    .showcase-grid      { grid-template-columns: 1fr; }
    .pricing-grid       { grid-template-columns: 1fr; }
    .contact-grid       { grid-template-columns: 1fr; }

    .highlight-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .highlight-text .section-title { text-align: center; }
    .highlight-text > p            { text-align: center; }
    .process-list li               { flex-direction: row; }
    .highlight-text .btn           { display: flex; margin: 0 auto; width: fit-content; }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-brand p { max-width: 100%; }

    .orb-1 { width: 260px; height: 260px; }
    .orb-2 { width: 210px; height: 210px; }
    .orb-3, .orb-4 { display: none; }

    .cursor-glow { display: none; }
}

/* =====================================================
   RESPONSIVE — 480px
   ===================================================== */

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

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

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

    .hero-title { font-size: clamp(2rem, 9vw, 2.6rem); }

    .pricing-card.featured { transform: none; }

    .cta-glass { padding: 4rem 1.5rem; }
}
