/* ===== PORTFOLIO - OPTIMIZED CSS ===== */
/* Mobile-First Responsive Design */

:root {
    --primary: #fbbf24;
    --primary-dark: #f59e0b;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --slate-950: #020617;
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-200: #fde68a;
    --amber-300: #fcd34d;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --amber-700: #b45309;
    --emerald-400: #34d399;
    --emerald-500: #10b981;
    --blue-400: #60a5fa;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --purple-400: #c084fc;
    --purple-500: #a855f7;
    --purple-600: #9333ea;
    --green-400: #4ade80;
    --green-500: #22c55e;
    --green-600: #16a34a;
    --green-100: #dcfce7;
    --red-400: #f87171;
    --red-500: #ef4444;
    --pink-500: #ec4899;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--slate-50);
    color: var(--slate-800);
    line-height: 1.6;
    overflow-x: hidden;
    letter-spacing: -0.01em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    letter-spacing: -0.025em;
    font-weight: 800;
}

/* Texture Overlay */
.texture-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    /* Low z-index to sit behind content */
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

::selection {
    background: var(--amber-100);
    color: var(--slate-900);
}

/* ===== ANIMATIONS ===== */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes blob {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

@keyframes shine {
    0% {
        background-position: 200% center;
    }

    100% {
        background-position: -200% center;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes progressFill {
    from {
        width: 0;
    }

    to {
        width: 39%;
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-scroll {
    animation: scroll 40s linear infinite;
}

/* ===== UTILITIES ===== */
.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
}

.glass-panel-dark {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}

.gradient-text {
    background: linear-gradient(135deg, #fde68a 0%, #fbbf24 50%, #d97706 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 2px 10px rgba(251, 191, 36, 0.3));
    /* Subtle glow */
}

.text-glow {
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.6);
}

.bg-noise {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===== LAYOUT ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 10;
}

.section {
    padding: 6rem 0;
    /* Increased Mobile Padding */
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .section {
        padding: 8rem 0;
    }
}

@media (min-width: 1024px) {
    .section {
        padding: 10rem 0;
        /* Luxury Desktop Padding */
    }
}

/* ===== NAVIGATION ===== */
.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem;
    pointer-events: none;
    /* Let clicks pass through wrapper areas */
}

@media (min-width: 1024px) {
    .nav-wrapper {
        padding: 2rem;
    }
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    /* Pill shape */
    transition: all 0.3s ease;
    pointer-events: auto;
    /* Re-enable clicks on navbar */
    max-width: 1400px;
    margin: 0 auto;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 2rem;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--slate-900);
    text-decoration: none;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--slate-900);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

/* Desktop Links */
.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--slate-600);
    transition: color 0.3s;
    padding: 0;
    text-decoration: none;
    /* Ensure no underline for <a> tags */
}

.nav-link:hover {
    color: var(--slate-900);
}

/* Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-hire {
    display: none;
    align-items: center;
    gap: 0.5rem;
    background: var(--slate-900);
    color: #fff;
    padding: 0.6rem 1.25rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: transform 0.2s;
}

.btn-hire:hover {
    transform: translateY(-2px);
}

.btn-hire svg {
    width: 16px;
    height: 16px;
}

@media (min-width: 768px) {
    .btn-hire {
        display: flex;
    }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--slate-200);
    border-radius: 50%;
    cursor: pointer;
    color: var(--slate-700);
    transition: all 0.2s;
}

.mobile-menu-btn:hover {
    background: #fff;
    color: var(--slate-900);
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 90;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-link {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--slate-800);
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
}

.mobile-menu-link:hover {
    transform: scale(1.1);
    color: var(--primary-dark);
}

.mobile-menu-link.highlight {
    color: var(--primary-dark);
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 5px;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: var(--slate-900);
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

/* Aurora Background Effect */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    /* Sharper blur for more definition */
    pointer-events: none;
    opacity: 0.5;
    /* Increased visibility */
    mix-blend-mode: screen;
}

.hero-blob.blob-1 {
    top: 10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: #3b82f6;
    /* Blue */
    animation: blob 8s infinite alternate;
}

.hero-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    /* Margins for Mobile */
    display: flex;
    flex-direction: column;
    gap: 4rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .hero-container {
        padding: 0 3rem;
        /* Margins for Tablet */
    }
}

@media (min-width: 1024px) {
    .hero-container {
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        /* Text wider than visual */
        align-items: center;
        gap: 4rem;
        /* Spacing between Text and Visual */
        padding: 0 4rem;
        /* Margins for Desktop */
    }
}

.hero-blob.blob-2 {
    bottom: 0%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: #f59e0b;
    /* Amber */
    animation: blob 10s infinite alternate-reverse;
}

.hero-blob.blob-3 {
    top: 30%;
    left: 40%;
    width: 500px;
    height: 500px;
    background: #a855f7;
    /* Purple for depth */
    animation: blob 9s infinite alternate;
    opacity: 0.4;
}

.hero-headline {
    font-size: 3rem;
    /* Mobile Size */
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.04em;
    /* Tight Impact */
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-headline {
        font-size: 5rem;
        /* Massive Desktop Size */
    }
}

@media (min-width: 1024px) {
    .hero-headline {
        font-size: 6rem;
        /* Ultra Desktop Size */
        letter-spacing: -0.05em;
    }
}

/* Neon Glow Button */
.btn-shine {
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
    /* Base Glow */
    animation: pulseGlow 3s infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
    }

    50% {
        box-shadow: 0 0 40px rgba(251, 191, 36, 0.7);
    }
}

/* Restored Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    color: var(--amber-400);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.pulse-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--green-500);
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
}

.title-line {
    display: block;
}

.hero-description {
    color: var(--slate-300);
    font-size: 1rem;
    max-width: 500px;
    line-height: 1.7;
    margin: 0 auto 1.5rem;
}

@media (min-width: 1024px) {
    .hero-description {
        font-size: 1.125rem;
        margin: 0 0 1.5rem;
    }
}

.hero-description strong {
    color: #fff;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

@media (min-width: 1024px) {
    .hero-highlights {
        justify-content: flex-start;
    }
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    font-size: 0.75rem;
    color: var(--slate-300);
}

.highlight-item svg {
    color: var(--amber-400);
    width: 16px;
    height: 16px;
}

.highlight-item strong {
    color: #fff;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .hero-buttons {
        justify-content: flex-start;
    }
}

.btn-primary {
    background: linear-gradient(110deg, #fbbf24 8%, #fcd34d 18%, #fbbf24 33%);
    background-size: 200% 100%;
    animation: shine 5s linear infinite;
    color: var(--slate-900);
    border: none;
    cursor: pointer;
    padding: 0.875rem 1.75rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s;
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px);
}

.btn-primary svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s;
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid var(--slate-600);
    cursor: pointer;
    padding: 0.875rem 1.75rem;
    border-radius: 0.75rem;
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.btn-secondary:hover {
    border-color: var(--amber-400);
    background: rgba(251, 191, 36, 0.1);
}

.btn-secondary svg {
    width: 18px;
    height: 18px;
}

/* Hero Visual */
.hero-visual {
    display: none;
    position: relative;
    height: 400px;
}

@media (min-width: 1024px) {
    .hero-visual {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.dashboard-card {
    position: relative;
    width: 100%;
    max-width: 380px;
    padding: 1.5rem;
    border-radius: 1.25rem;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.window-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
}

.dot.red {
    background: #ef4444;
}

.dot.yellow {
    background: #eab308;
}

.dot.green {
    background: #22c55e;
}

.dashboard-title {
    font-size: 0.7rem;
    font-family: monospace;
    color: var(--slate-500);
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.dashboard-title svg {
    width: 12px;
    height: 12px;
}

.chart-visual {
    display: flex;
    align-items: flex-end;
    gap: 0.625rem;
    height: 140px;
    padding: 0 0.5rem;
}

.chart-bar {
    border-radius: 0.375rem 0.375rem 0 0;
    flex: 1;
}

.chart-bar.bar-1 {
    background: rgba(71, 85, 105, 0.5);
    height: 40%;
}

.chart-bar.bar-2 {
    background: rgba(71, 85, 105, 0.5);
    height: 60%;
}

.chart-bar.bar-3 {
    background: var(--blue-500);
    height: 50%;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.chart-bar.bar-4 {
    background: var(--blue-500);
    height: 85%;
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.5);
}

.chart-bar.bar-5 {
    background: var(--amber-400);
    height: 100%;
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.5);
    position: relative;
}

.bar-shine {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.2);
    transform: skewY(-12deg);
}

.stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.stat-box {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 0.75rem;
    padding: 0.875rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-label {
    font-size: 0.65rem;
    color: var(--slate-400);
    margin-bottom: 0.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

.stat-value.emerald {
    color: var(--emerald-400);
}

.floating-badge {
    position: absolute;
    bottom: 0;
    left: -1rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-left: 3px solid var(--amber-400);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: fadeInUp 1s ease-out 0.5s backwards;
}

.badge-icon {
    background: var(--emerald-400);
    background: linear-gradient(135deg, var(--emerald-400), var(--emerald-500));
    padding: 0.625rem;
    border-radius: 50%;
    color: #fff;
}

.badge-icon svg {
    width: 20px;
    height: 20px;
}

.badge-value {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--slate-900);
}

.badge-label {
    font-size: 0.65rem;
    color: var(--slate-500);
}

.floating-badge-2 {
    position: absolute;
    top: 1rem;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.875rem;
    border-radius: 0.75rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    border-left: 3px solid var(--green-500);
    display: flex;
    align-items: center;
    gap: 0.625rem;
    animation: fadeInUp 1s ease-out 0.7s backwards;
}

.floating-badge-2 .badge-icon.green {
    background: linear-gradient(135deg, var(--green-400), var(--green-500));
}

/* ===== TECH TICKER ===== */
.tech-ticker {
    position: relative;
    padding: 1.5rem 0;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.ticker-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 10;
    pointer-events: none;
}

.ticker-fade.left {
    left: 0;
    background: linear-gradient(90deg, var(--slate-900), transparent);
}

.ticker-fade.right {
    right: 0;
    background: linear-gradient(270deg, var(--slate-900), transparent);
}

.ticker-content {
    display: flex;
    gap: 3rem;
    animation: scroll 40s linear infinite;
    width: max-content;
}

.ticker-content span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--slate-400);
    font-size: 0.8rem;
    white-space: nowrap;
}

.ticker-content span svg {
    width: 16px;
    height: 16px;
    color: var(--amber-400);
}

/* ===== SECTION TITLE ===== */
.section-title {
    margin-bottom: 3rem;
}

.section-title.center {
    text-align: center;
}

.section-title h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--slate-900);
    letter-spacing: -0.025em;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .section-title h2 {
        font-size: 2.5rem;
    }
}

.section-title.dark h2 {
    color: #fff;
}

.title-bar {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--amber-400), var(--amber-500));
    border-radius: 2px;
}

.section-title.center .title-bar {
    margin: 0 auto;
}

.section-subtitle {
    color: var(--slate-600);
    max-width: 600px;
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.7;
}

.section-title.center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.section-title.dark .section-subtitle {
    color: var(--slate-400);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--amber-50);
    color: var(--amber-700);
    border: 1px solid var(--amber-200);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.section-badge svg {
    width: 14px;
    height: 14px;
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.1);
    color: var(--amber-400);
    border-color: rgba(255, 255, 255, 0.1);
}

/* ===== STATS SECTION ===== */
.bg-slate-50 {
    background: var(--slate-50);
}

.bg-white {
    background: #fff;
}

.bg-slate-900 {
    background: var(--slate-900);
}

.mega-stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .mega-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .mega-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mega-stat-card {
    background: #fff;
    border-radius: 1.25rem;
    padding: 1.5rem;
    border: 1px solid var(--slate-100);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .mega-stat-card {
        padding: 2rem;
    }
}

.mega-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.mega-stat-card.featured {
    background: linear-gradient(135deg, var(--slate-900), var(--slate-800));
    border: none;
}

.mega-stat-card.featured .mega-stat-value,
.mega-stat-card.featured .mega-stat-label {
    color: #fff;
}

.mega-stat-card.featured .mega-stat-desc {
    color: var(--slate-400);
}

.mega-stat-card.featured:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.mega-stat-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--amber-400), var(--amber-500));
    color: #fff;
}

.mega-stat-icon svg {
    width: 20px;
    height: 20px;
}

.mega-stat-icon.blue {
    background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
}

.mega-stat-icon.green {
    background: linear-gradient(135deg, var(--green-500), var(--green-600));
}

.mega-stat-icon.purple {
    background: linear-gradient(135deg, var(--purple-500), var(--purple-600));
}

.mega-stat-icon.orange {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.mega-stat-icon.pink {
    background: linear-gradient(135deg, var(--pink-500), #db2777);
}

.mega-stat-value {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--slate-900);
    letter-spacing: -0.025em;
    line-height: 1;
    margin-bottom: 0.375rem;
}

@media (min-width: 768px) {
    .mega-stat-value {
        font-size: 2.75rem;
    }
}

.mega-stat-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--slate-800);
    margin-bottom: 0.25rem;
}

.mega-stat-desc {
    font-size: 0.8rem;
    color: var(--slate-500);
}

/* ===== EXPERTISE SECTION ===== */
.expertise-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.expertise-card {
    background: #fff;
    border-radius: 1.25rem;
    padding: 1.5rem;
    border: 1px solid var(--slate-100);
    transition: all 0.3s;
}

@media (min-width: 768px) {
    .expertise-card {
        padding: 2rem;
    }
}

.expertise-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--amber-200);
}

.expertise-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.expertise-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.expertise-icon svg {
    width: 22px;
    height: 22px;
}

.expertise-icon.gradient-bg {
    background: linear-gradient(135deg, var(--amber-400), var(--amber-500));
    color: #fff;
}

.expertise-icon.blue-bg {
    background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
    color: #fff;
}

.expertise-icon.green-bg {
    background: linear-gradient(135deg, var(--green-500), var(--green-600));
    color: #fff;
}

.expertise-icon.purple-bg {
    background: linear-gradient(135deg, var(--purple-500), var(--purple-600));
    color: #fff;
}

.expertise-header h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--slate-900);
}

.expertise-card>p {
    color: var(--slate-600);
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.expertise-skills {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-bottom: 1.25rem;
}

.skill-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.skill-name {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--slate-700);
    width: 35%;
    min-width: 90px;
}

.skill-bar {
    flex: 1;
    height: 6px;
    background: var(--slate-100);
    border-radius: 100px;
    overflow: hidden;
}

.skill-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--amber-400), var(--amber-500));
    border-radius: 100px;
}

.skill-level {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--slate-500);
    width: 50px;
    text-align: right;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
}

.expertise-tags span {
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.375rem 0.625rem;
    background: var(--slate-50);
    color: var(--slate-600);
    border-radius: 0.375rem;
}

/* ===== CERTIFICATIONS ===== */
.certifications-section {
    background: var(--slate-50);
    border-radius: 1.25rem;
    padding: 1.5rem;
}

@media (min-width: 768px) {
    .certifications-section {
        padding: 2rem;
    }
}

.cert-title {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 1.25rem;
}

.cert-title svg {
    color: var(--amber-500);
    width: 20px;
    height: 20px;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .cert-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.cert-card {
    background: #fff;
    border-radius: 0.625rem;
    padding: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    border: 1px solid var(--slate-100);
    transition: all 0.3s;
}

.cert-card:hover {
    border-color: var(--amber-200);
}

.cert-logo {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cert-logo svg {
    width: 18px;
    height: 18px;
}

.cert-logo.google {
    background: #e8f0fe;
    color: #4285f4;
}

.cert-logo.meta {
    background: #e7f3ff;
    color: #0866ff;
}

.cert-logo.hubspot {
    background: #fff4e5;
    color: #ff7a59;
}

.cert-name {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--slate-900);
    line-height: 1.3;
}

.cert-issuer {
    font-size: 0.6rem;
    color: var(--slate-500);
}

/* ===== WHY HIRE ME ===== */
.value-props-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .value-props-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .value-props-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.25rem;
    padding: 1.5rem;
    position: relative;
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-4px);
    border-color: var(--amber-400);
}

.value-card.featured {
    background: linear-gradient(135deg, var(--amber-400), var(--amber-500));
    border: none;
}

.value-card.featured h3,
.value-card.featured p {
    color: var(--slate-900);
}

.value-card.featured .value-number,
.value-card.featured .value-icon {
    color: rgba(0, 0, 0, 0.2);
}

.value-number {
    position: absolute;
    top: 0.75rem;
    right: 1rem;
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.08);
    line-height: 1;
}

.value-icon {
    width: 2rem;
    height: 2rem;
    margin-bottom: 1rem;
    color: var(--amber-400);
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.value-card p {
    color: var(--slate-400);
    font-size: 0.8rem;
    line-height: 1.6;
}

/* ===== CASE STUDY ===== */
.case-hero {
    margin-bottom: 3rem;
}

.case-metrics-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--slate-900), var(--slate-800));
    border-radius: 1rem;
}

@media (min-width: 768px) {
    .case-metrics-bar {
        display: flex;
        justify-content: center;
        gap: 3rem;
        padding: 2rem 3rem;
    }
}

.case-metric {
    text-align: center;
}

.case-metric-value {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--amber-400);
}

@media (min-width: 768px) {
    .case-metric-value {
        font-size: 2.25rem;
    }
}

.case-metric-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.case-metric-divider {
    width: 1px;
    background: var(--slate-700);
    display: none;
}

@media (min-width: 768px) {
    .case-metric-divider {
        display: block;
    }
}

.case-study-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .case-study-layout {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.case-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--amber-50);
    color: var(--amber-700);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.case-badge svg {
    width: 14px;
    height: 14px;
}

.case-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--slate-900);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

@media (min-width: 768px) {
    .case-title {
        font-size: 1.75rem;
    }
}

.case-description {
    color: var(--slate-600);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.challenge-box {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border: 1px solid #fecaca;
    border-radius: 1rem;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.challenge-box h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--red-500);
    margin-bottom: 0.75rem;
}

.challenge-box h4 svg {
    width: 16px;
    height: 16px;
}

.challenge-box ul {
    list-style: none;
}

.challenge-box li {
    padding: 0.375rem 0 0.375rem 1.25rem;
    position: relative;
    color: var(--slate-700);
    font-size: 0.8rem;
}

.challenge-box li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--red-500);
    font-weight: bold;
}

.lead-magnet-card {
    background: linear-gradient(135deg, var(--slate-800), var(--slate-900));
    border-radius: 1rem;
    padding: 1.25rem;
}

.lead-magnet-title {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.625rem;
}

.lead-magnet-icon {
    background: var(--amber-400);
    padding: 0.5rem;
    border-radius: 0.5rem;
    color: var(--slate-900);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lead-magnet-icon svg {
    width: 16px;
    height: 16px;
}

.lead-magnet-desc {
    color: var(--slate-400);
    font-size: 0.8rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.progress-bar-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    padding: 0.75rem;
}

.progress-bar-bg {
    height: 8px;
    background: var(--slate-700);
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 0.375rem;
}

.progress-bar-fill {
    height: 100%;
    width: 39%;
    background: linear-gradient(90deg, var(--green-400), var(--green-500));
    border-radius: 100px;
    animation: progressFill 1.5s ease-out;
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.65rem;
}

.progress-labels span {
    color: var(--slate-500);
}

.progress-labels .highlight {
    color: var(--green-400);
    font-weight: 700;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 1.5rem;
}

@media (min-width: 768px) {
    .timeline {
        padding-left: 2rem;
    }
}

.timeline::before {
    content: "";
    position: absolute;
    left: 0.3125rem;
    top: 0.625rem;
    bottom: 0.625rem;
    width: 2px;
    background: linear-gradient(180deg, var(--amber-400), var(--slate-200));
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -1.375rem;
    top: 0.375rem;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: var(--amber-400);
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.4);
}

@media (min-width: 768px) {
    .timeline-dot {
        left: -1.875rem;
    }
}

.timeline-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.timeline-num {
    background: var(--slate-900);
    color: #fff;
    font-size: 0.625rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}

.timeline-card {
    background: var(--slate-50);
    border-radius: 0.75rem;
    padding: 1rem;
    border: 1px solid var(--slate-100);
}

.timeline-card p {
    color: var(--slate-600);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.timeline-card p strong {
    color: var(--slate-900);
}

.tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.625rem;
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
    border-radius: 0.375rem;
    font-size: 0.7rem;
    font-weight: 600;
}

.tech-badge svg {
    width: 12px;
    height: 12px;
}

.tech-badge.orange {
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
}

.tech-badge.blue {
    background: rgba(59, 130, 246, 0.1);
    color: var(--blue-500);
}

.tech-badge.pink {
    background: rgba(236, 72, 153, 0.1);
    color: var(--pink-500);
}

.tech-badge.green {
    background: rgba(34, 197, 94, 0.1);
    color: var(--green-500);
}

/* ===== PROCESS GRID ===== */
.process-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    align-items: stretch;
}

@media (min-width: 768px) {
    .process-grid {
        gap: 1rem;
    }
}

.process-step {
    background: #fff;
    border-radius: 1rem;
    padding: 1.25rem;
    text-align: center;
    flex: 1 1 100%;
    max-width: 140px;
    border: 1px solid var(--slate-100);
    transition: all 0.3s;
}

@media (min-width: 640px) {
    .process-step {
        flex: 0 1 auto;
    }
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    border-color: var(--amber-200);
}

.process-letter {
    width: 2.75rem;
    height: 2.75rem;
    margin: 0 auto 0.75rem;
    background: linear-gradient(135deg, var(--amber-400), var(--amber-500));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 900;
}

.process-step h3 {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 0.375rem;
}

.process-step p {
    font-size: 0.65rem;
    color: var(--slate-500);
    line-height: 1.4;
    display: none;
}

@media (min-width: 768px) {
    .process-step p {
        display: block;
    }
}

.process-arrow {
    display: none;
    align-items: center;
    color: var(--slate-300);
}

@media (min-width: 640px) {
    .process-arrow {
        display: flex;
    }
}

.process-arrow svg {
    width: 20px;
    height: 20px;
}

/* ===== CALCULATOR SECTION ===== */
.calculator-section {
    position: relative;
}

.calculator-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    opacity: 0.3;
}

.calculator-blob.blob-1 {
    top: 10%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: var(--amber-400);
}

.calculator-blob.blob-2 {
    bottom: 10%;
    left: 5%;
    width: 250px;
    height: 250px;
    background: var(--blue-500);
}

.presets-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.625rem;
    margin-bottom: 2rem;
}

.preset-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--slate-300);
    padding: 0.625rem 1.25rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.preset-btn svg {
    width: 14px;
    height: 14px;
}

.preset-btn:hover {
    border-color: var(--amber-400);
    color: var(--amber-400);
}

.preset-btn.active {
    background: var(--amber-400);
    border-color: var(--amber-400);
    color: var(--slate-900);
}

.calculator-panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .calculator-panel {
        grid-template-columns: 1fr 1.2fr;
        gap: 2rem;
    }
}

.calculator-inputs {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.25rem;
    padding: 1.5rem;
}

.inputs-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.inputs-icon {
    background: var(--amber-400);
    padding: 0.625rem;
    border-radius: 0.625rem;
    color: var(--slate-900);
}

.inputs-icon svg {
    width: 18px;
    height: 18px;
}

.inputs-header h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.125rem;
}

.inputs-header p {
    font-size: 0.7rem;
    color: var(--slate-400);
}

.sliders {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.slider-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slider-header label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--slate-300);
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.slider-header label svg {
    width: 14px;
    height: 14px;
    color: var(--slate-500);
}

.slider-value {
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.25rem 0.625rem;
    border-radius: 0.375rem;
}

.slider-value.amber {
    background: rgba(251, 191, 36, 0.15);
    color: var(--amber-400);
}

.slider-value.blue {
    background: rgba(96, 165, 250, 0.15);
    color: var(--blue-400);
}

.slider-value.emerald {
    background: rgba(52, 211, 153, 0.15);
    color: var(--emerald-400);
}

.slider-value.purple {
    background: rgba(192, 132, 252, 0.15);
    color: var(--purple-400);
}

input[type="range"] {
    width: 100%;
    height: 6px;
    border-radius: 100px;
    background: var(--slate-700);
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.625rem;
    color: var(--slate-500);
}

/* Calculator Results */
.calculator-results {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.25rem;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.results-blob {
    position: absolute;
    top: -50%;
    right: -30%;
    width: 400px;
    height: 400px;
    background: rgba(251, 191, 36, 0.03);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.results-content {
    position: relative;
    z-index: 1;
}

.results-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.live-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--green-500);
    animation: pulse 2s infinite;
}

.live-indicator h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.roas-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.875rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
}

.roas-badge svg {
    width: 14px;
    height: 14px;
}

.roas-badge.emerald {
    background: rgba(52, 211, 153, 0.15);
    color: var(--emerald-400);
}

.roas-badge.amber {
    background: rgba(251, 191, 36, 0.15);
    color: var(--amber-400);
}

.breakdown-section {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0.75rem;
}

.breakdown-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--slate-400);
    margin-bottom: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.breakdown-bar {
    height: 12px;
    background: var(--slate-700);
    border-radius: 100px;
    overflow: hidden;
    display: flex;
    margin-bottom: 0.5rem;
}

.spend-bar {
    height: 100%;
    background: var(--red-400);
    transition: width 0.5s;
}

.profit-bar {
    height: 100%;
    background: var(--green-400);
    transition: width 0.5s;
}

.breakdown-legend {
    display: flex;
    justify-content: space-between;
    font-size: 0.65rem;
}

.breakdown-legend span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.breakdown-legend .spend .legend-dot {
    background: var(--red-400);
}

.breakdown-legend .spend {
    color: var(--red-400);
}

.breakdown-legend .profit .legend-dot {
    background: var(--green-400);
}

.breakdown-legend .profit {
    color: var(--green-400);
}

.hero-metric {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(251, 191, 36, 0.05));
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 1rem;
    margin-bottom: 1.5rem;
}

.metric-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--slate-400);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--green-400);
    letter-spacing: -0.025em;
}

@media (min-width: 768px) {
    .metric-value {
        font-size: 3rem;
    }
}

.metric-value.negative {
    color: var(--red-400);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.result-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0.75rem;
    padding: 1rem;
    position: relative;
    overflow: hidden;
}

.result-card-bg {
    position: absolute;
    top: 0.625rem;
    right: 0.625rem;
    opacity: 0.1;
}

.result-card-bg svg {
    width: 28px;
    height: 28px;
    color: #fff;
}

.result-label {
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--slate-400);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.result-value {
    font-size: 1.375rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.125rem;
}

.result-unit {
    font-size: 0.6rem;
    color: var(--slate-500);
}

.results-cta {
    text-align: center;
}

.btn-execute {
    background: linear-gradient(135deg, var(--amber-400), var(--amber-500));
    color: var(--slate-900);
    border: none;
    cursor: pointer;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    width: 100%;
    justify-content: center;
}

@media (min-width: 640px) {
    .btn-execute {
        width: auto;
    }
}

.btn-execute:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
}

.btn-execute svg {
    width: 18px;
    height: 18px;
}

/* ===== BENTO GRID ===== */
.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto auto;
    }
}

.bento-card {
    background: #fff;
    border-radius: 1.25rem;
    padding: 1.5rem;
    border: 1px solid var(--slate-100);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.bento-card.large {
    grid-column: 1;
}

@media (min-width: 768px) {
    .bento-card.large {
        grid-row: span 1;
    }
}

.bento-card.large.dark {
    background: linear-gradient(135deg, var(--slate-900), var(--slate-800));
    border: none;
}

.bento-card.large.dark h3,
.bento-card.large.dark p {
    color: #fff;
}

.bento-card.large.dark p {
    color: var(--slate-300);
}

.bento-card.tall {
    background: linear-gradient(135deg, var(--amber-400), var(--amber-500));
    border: none;
}

.bento-card.tall h3,
.bento-card.tall p {
    color: var(--slate-900);
}

.bento-content {
    position: relative;
    z-index: 1;
}

.bento-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.bento-icon svg {
    width: 20px;
    height: 20px;
}

.bento-icon.blue {
    background: var(--blue-500);
    color: #fff;
}

.bento-icon.white {
    background: #fff;
    color: var(--amber-600);
}

.bento-icon.purple {
    background: var(--purple-500);
    color: #fff;
}

.bento-icon.green {
    background: var(--green-500);
    color: #fff;
}

.bento-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 0.5rem;
}

.bento-card p {
    color: var(--slate-600);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.bento-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
}

.bento-tags .tag {
    font-size: 0.625rem;
    font-weight: 600;
    padding: 0.375rem 0.625rem;
    border-radius: 0.375rem;
}

.bento-tags .tag.green {
    background: rgba(34, 197, 94, 0.15);
    color: var(--green-500);
}

.bento-tags .tag.blue {
    background: rgba(59, 130, 246, 0.15);
    color: var(--blue-500);
}

.bento-bg-icon {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    opacity: 0.05;
}

.bento-bg-icon svg {
    width: 120px;
    height: 120px;
}

.pipeline-visual {
    margin-top: 1rem;
}

.pipeline-step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--slate-800);
    padding: 0.25rem 0;
}

.pipeline-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
}

.pipeline-dot.green {
    background: var(--green-500);
}

.pipeline-dot.white {
    background: #fff;
}

.pipeline-dot.blue {
    background: var(--blue-500);
}

.pipeline-line {
    width: 2px;
    height: 0.75rem;
    background: rgba(0, 0, 0, 0.2);
    margin-left: 0.1875rem;
}

/* ===== PROJECTS ===== */
.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.project-card {
    background: #fff;
    border-radius: 1.25rem;
    padding: 1.5rem;
    border: 1px solid var(--slate-100);
    transition: all 0.3s;
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.project-icon-wrapper {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.project-icon-wrapper svg {
    width: 22px;
    height: 22px;
}

.project-card.green .project-icon-wrapper {
    background: var(--green-100);
    color: var(--green-600);
}

.project-card.blue .project-icon-wrapper {
    background: rgba(59, 130, 246, 0.1);
    color: var(--blue-500);
}

.project-card.purple .project-icon-wrapper {
    background: rgba(168, 85, 247, 0.1);
    color: var(--purple-500);
}

.project-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 0.5rem;
}

.project-card>p {
    color: var(--slate-600);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.project-result {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 0.875rem;
    background: var(--slate-50);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--slate-700);
}

.project-result svg {
    width: 16px;
    height: 16px;
    color: var(--green-500);
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
}

.project-tags span {
    font-size: 0.625rem;
    font-weight: 600;
    padding: 0.375rem 0.625rem;
    background: var(--slate-100);
    color: var(--slate-600);
    border-radius: 0.375rem;
}

/* ===== EXPERIENCE TIMELINE ===== */
.experience-timeline {
    max-width: 700px;
    margin: 0 auto;
}

.experience-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.experience-item:last-child {
    margin-bottom: 0;
}

.experience-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 1.5rem;
    flex-shrink: 0;
}

.experience-dot {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: var(--slate-300);
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px var(--slate-100);
    position: relative;
    z-index: 2;
}

.experience-dot.current {
    background: var(--amber-400);
    box-shadow: 0 0 0 3px var(--amber-100);
}

.experience-connector {
    width: 2px;
    flex: 1;
    background: linear-gradient(180deg, var(--slate-200), var(--slate-100));
    margin-top: 0.5rem;
}

.experience-content {
    flex: 1;
    background: var(--slate-50);
    border-radius: 1.25rem;
    padding: 1.5rem;
    border: 1px solid var(--slate-100);
}

.experience-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.experience-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--slate-900);
}

.current-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: linear-gradient(135deg, var(--amber-400), var(--amber-500));
    color: var(--slate-900);
    padding: 0.375rem 0.75rem;
    border-radius: 100px;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.current-badge svg {
    width: 12px;
    height: 12px;
}

.experience-meta {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--slate-500);
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.experience-meta svg {
    width: 14px;
    height: 14px;
}

.experience-description {
    color: var(--slate-600);
    font-size: 0.875rem;
    line-height: 1.7;
}

.experience-description p {
    margin-bottom: 0.75rem;
}

.experience-description ul {
    list-style: none;
    margin-top: 0.75rem;
}

.experience-description li {
    padding: 0.375rem 0 0.375rem 1.5rem;
    position: relative;
    font-size: 0.85rem;
}

.experience-description li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green-500);
    font-weight: bold;
}

.experience-description strong {
    color: var(--slate-900);
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.25rem;
    padding: 1.5rem;
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
}

.testimonial-card.featured {
    background: linear-gradient(135deg, var(--amber-400), var(--amber-500));
    border: none;
}

.testimonial-card.featured p {
    color: var(--slate-900);
}

.testimonial-card.featured .testimonial-quote {
    opacity: 0.3;
}

.testimonial-card.featured .author-name {
    color: var(--slate-900);
}

.testimonial-card.featured .author-company {
    color: var(--slate-700);
}

.testimonial-quote {
    color: var(--amber-400);
    margin-bottom: 0.75rem;
    opacity: 0.5;
}

.testimonial-quote svg {
    width: 28px;
    height: 28px;
}

.testimonial-card p {
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--slate-700);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.testimonial-card.featured .author-avatar {
    background: var(--slate-900);
    color: var(--amber-400);
}

.author-name {
    font-weight: 700;
    color: #fff;
    font-size: 0.8rem;
}

.author-company {
    color: var(--slate-400);
    font-size: 0.7rem;
}

/* ===== FOOTER ===== */
.footer-section {
    background: var(--slate-900);
    color: #fff;
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-section {
        padding: 6rem 0 2rem;
    }
}

.footer-gradient-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--amber-400), var(--purple-500), var(--blue-500), var(--amber-400));
}

.footer-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.footer-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    pointer-events: none;
    white-space: nowrap;
    letter-spacing: 0.1em;
}

.footer-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 10;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    color: var(--amber-400);
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-badge svg {
    width: 16px;
    height: 16px;
}

.footer-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

@media (min-width: 768px) {
    .footer-title {
        font-size: 3.5rem;
    }
}

.footer-title span {
    background: linear-gradient(135deg, var(--amber-400), var(--amber-500));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-description {
    color: var(--slate-400);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.footer-cta-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.25rem 1.75rem;
    display: inline-block;
    margin-bottom: 2rem;
}

.cta-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.cta-highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--slate-300);
    font-size: 0.8rem;
}

.cta-highlight svg {
    width: 16px;
    height: 16px;
    color: var(--green-400);
}

.footer-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-email {
    background: var(--amber-400);
    color: var(--slate-900);
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-email:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
}

.btn-email svg {
    width: 18px;
    height: 18px;
}

.btn-resume,
.btn-linkedin {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-resume:hover,
.btn-linkedin:hover {
    border-color: var(--amber-400);
    background: rgba(251, 191, 36, 0.1);
}

.btn-resume svg,
.btn-linkedin svg {
    width: 18px;
    height: 18px;
}

.btn-linkedin {
    background: #0077b5;
    border-color: #0077b5;
}

.btn-linkedin:hover {
    background: #006396;
    border-color: #006396;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.social-link {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-400);
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    border-color: var(--amber-400);
    color: var(--amber-400);
    transform: translateY(-2px);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.footer-copyright {
    color: var(--slate-500);
    font-size: 0.8rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.footer-copyright .divider {
    width: 4px;
    height: 4px;
    background: var(--slate-600);
    border-radius: 50%;
}

/* ===== RESPONSIVE UTILITIES ===== */
@media (max-width: 640px) {
    .section {
        padding: 4rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .mega-stat-value {
        font-size: 2rem;
    }

    .case-metrics-bar {
        gap: 1rem;
        padding: 1.25rem;
    }

    .case-metric-value {
        font-size: 1.5rem;
    }

    .calculator-panel {
        gap: 1rem;
    }

    .calculator-inputs,
    .calculator-results {
        padding: 1.25rem;
    }

    .footer-title {
        font-size: 2rem;
    }

    .footer-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-email,
    .btn-resume,
    .btn-linkedin {
        justify-content: center;
    }
}

/* ===== PRINT STYLES ===== */
@media print {

    .navbar,
    .scroll-progress,
    .mobile-menu {
        display: none !important;
    }

    .section {
        padding: 2rem 0;
    }

    .hero-section {
        min-height: auto;
        padding: 3rem 0;
    }
}

/* ===== PREMIUM ADDITIONS ===== */

/* Hero Metrics Bar */
.hero-metrics {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .hero-metrics {
        justify-content: flex-start;
        gap: 2rem;
        padding: 1.5rem 2rem;
    }
}

@media (min-width: 1024px) {
    .hero-metrics {
        justify-content: flex-start;
    }
}

.hero-metric-item {
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-metric-item {
        text-align: left;
    }
}

.hero-metric-value {
    font-size: 1.75rem;
    font-weight: 900;
    background: linear-gradient(135deg, #fde68a, #fbbf24, #d97706);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
    .hero-metric-value {
        font-size: 2rem;
    }
}

.hero-metric-label {
    font-size: 0.65rem;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.hero-metric-divider {
    width: 1px;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    display: none;
}

@media (min-width: 640px) {
    .hero-metric-divider {
        display: block;
    }
}

/* Platform Badges */
.platform-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    margin-top: 1.5rem;
    justify-content: center;
}

@media (min-width: 1024px) {
    .platform-badges {
        justify-content: flex-start;
    }
}

.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.875rem;
    border-radius: 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.platform-badge svg {
    width: 12px;
    height: 12px;
}

.platform-badge.google {
    background: rgba(66, 133, 244, 0.15);
    color: #4285f4;
    border: 1px solid rgba(66, 133, 244, 0.3);
}

.platform-badge.meta {
    background: rgba(8, 102, 255, 0.15);
    color: #0866ff;
    border: 1px solid rgba(8, 102, 255, 0.3);
}

.platform-badge.analytics {
    background: rgba(251, 191, 36, 0.15);
    color: var(--amber-400);
    border: 1px solid rgba(251, 191, 36, 0.3);
}

/* Button Shine Effect */
.btn-shine {
    position: relative;
    overflow: hidden;
}

.btn-shine::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: btnShine 3s infinite;
}

@keyframes btnShine {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

/* Impact Showcase */
.impact-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .impact-showcase {
        grid-template-columns: repeat(3, 1fr);
    }
}

.impact-card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid var(--slate-100);
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.impact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.impact-card.featured {
    background: linear-gradient(135deg, var(--slate-900), var(--slate-800));
    border: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.impact-card.featured .impact-value,
.impact-card.featured .impact-label,
.impact-card.featured .impact-detail {
    color: #fff;
}

.impact-card.featured .impact-detail {
    color: var(--slate-400);
}

.impact-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--amber-400), var(--amber-500));
    color: #fff;
}

.impact-icon svg {
    width: 24px;
    height: 24px;
}

.impact-icon.blue {
    background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
}

.impact-icon.green {
    background: linear-gradient(135deg, var(--green-500), var(--green-600));
}

.impact-value {
    font-size: 3rem;
    font-weight: 900;
    color: var(--slate-900);
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .impact-value {
        font-size: 3.5rem;
    }
}

.impact-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--slate-800);
    margin-bottom: 0.375rem;
}

.impact-detail {
    font-size: 0.8rem;
    color: var(--slate-500);
    line-height: 1.5;
}

.impact-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: rgba(251, 191, 36, 0.15);
    color: var(--amber-400);
    border-radius: 100px;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.impact-badge svg {
    width: 10px;
    height: 10px;
}

/* Metrics Grid with Mini Charts */
.metrics-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .metrics-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.metric-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid var(--slate-100);
    transition: all 0.3s;
}

.metric-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--amber-200);
}

.metric-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.metric-header svg {
    width: 18px;
    height: 18px;
    color: var(--slate-400);
}

.metric-tag {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    background: var(--amber-50);
    color: var(--amber-700);
}

.metric-card .metric-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--slate-900);
    margin-bottom: 0.25rem;
}

.metric-card .metric-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--slate-500);
    margin-bottom: 0.75rem;
}

/* Mini Chart */
.metric-chart {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 40px;
}

.mini-bar {
    flex: 1;
    background: var(--slate-200);
    border-radius: 2px;
    transition: all 0.3s;
}

.mini-bar.highlight {
    background: linear-gradient(to top, var(--green-500), var(--green-400));
}

/* Score Bar */
.metric-score {
    margin-top: 0.5rem;
}

.score-bar {
    height: 6px;
    background: var(--slate-100);
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 0.375rem;
}

.score-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--green-400), var(--green-500));
    border-radius: 100px;
}

.score-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--green-500);
}

/* Expertise Subtitle */
.expertise-subtitle {
    font-size: 0.7rem;
    color: var(--slate-500);
    font-weight: 500;
}

.skill-pct {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--slate-900);
    min-width: 36px;
    text-align: right;
}

/* Cert Verified */
.cert-verified {
    margin-left: auto;
    color: var(--green-500);
}

.cert-verified svg {
    width: 16px;
    height: 16px;
}

/* Value Grid (Why Hire Me) */
.value-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .value-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .value-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Case Study Company */
.case-company {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--slate-50);
    border-radius: 1rem;
    margin-bottom: 1.5rem;
}

.company-logo {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 900;
}

.case-company h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 0.125rem;
}

.case-company p {
    font-size: 0.75rem;
    color: var(--slate-500);
}

.case-role {
    margin-bottom: 1.5rem;
}

.role-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: var(--blue-500);
    color: #fff;
    border-radius: 0.375rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.625rem;
}

.role-badge svg {
    width: 12px;
    height: 12px;
}

.case-role p {
    color: var(--slate-600);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Solution Box */
.solution-box {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border: 1px solid #a7f3d0;
    border-radius: 1rem;
    padding: 1.25rem;
}

.solution-box h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--green-600);
    margin-bottom: 0.75rem;
}

.solution-box h4 svg {
    width: 16px;
    height: 16px;
}

.solution-box ul {
    list-style: none;
}

.solution-box li {
    padding: 0.375rem 0 0.375rem 1.25rem;
    position: relative;
    color: var(--slate-700);
    font-size: 0.8rem;
}

.solution-box li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green-500);
    font-weight: bold;
}

/* Case Metrics Banner */
.case-metrics-banner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--slate-900), var(--slate-800));
    border-radius: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .case-metrics-banner {
        display: flex;
        justify-content: center;
        gap: 3rem;
        padding: 2rem 4rem;
    }
}

.case-metrics-banner .case-metric {
    text-align: center;
}

.case-metrics-banner .case-metric-value {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #fde68a, #fbbf24);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
    .case-metrics-banner .case-metric-value {
        font-size: 2.5rem;
    }
}

.case-metrics-banner .case-metric-label {
    font-size: 0.65rem;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.case-metrics-banner .case-metric-divider {
    width: 1px;
    background: var(--slate-700);
    display: none;
}

@media (min-width: 768px) {
    .case-metrics-banner .case-metric-divider {
        display: block;
    }
}

/* Case Layout */
.case-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .case-layout {
        grid-template-columns: 1fr 1.2fr;
        gap: 4rem;
    }
}

.case-left,
.case-right {
    position: relative;
}

/* Timeline Content Card */
.timeline-content {
    background: var(--slate-50);
    border-radius: 0.75rem;
    padding: 1.25rem;
    border: 1px solid var(--slate-100);
}

.timeline-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.timeline-content p {
    color: var(--slate-600);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.timeline-content p strong {
    color: var(--slate-900);
}

/* Responsive Small Screen */
@media (max-width: 640px) {
    .hero-metrics {
        padding: 1rem;
        gap: 0.75rem;
    }

    .hero-metric-value {
        font-size: 1.5rem;
    }

    .impact-value {
        font-size: 2.5rem;
    }

    .impact-card {
        padding: 1.5rem;
    }

    .case-metrics-banner {
        padding: 1.25rem;
    }

    .case-metrics-banner .case-metric-value {
        font-size: 1.75rem;
    }
}

/* ===== FUNNEL SECTION - WOW FACTOR ===== */
.funnel-section {
    position: relative;
    overflow: hidden;
}

.funnel-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.funnel-blob.blob-1 {
    top: 10%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: rgba(59, 130, 246, 0.15);
}

.funnel-blob.blob-2 {
    bottom: 10%;
    left: 5%;
    width: 350px;
    height: 350px;
    background: rgba(168, 85, 247, 0.1);
}

/* Funnel Example Header */
.funnel-example-header {
    text-align: center;
    margin-bottom: 3rem;
}

.example-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(251, 191, 36, 0.05));
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 100px;
    color: var(--amber-400);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.example-badge svg {
    width: 16px;
    height: 16px;
}

.example-audience {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.example-audience span {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: var(--slate-300);
    font-size: 0.75rem;
    font-weight: 600;
}

.example-audience span svg {
    width: 14px;
    height: 14px;
    color: var(--amber-400);
}

/* Funnel Container */
.funnel-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

/* Funnel Stage */
.funnel-stage {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1.5rem;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .funnel-stage {
        grid-template-columns: 50px 1fr;
        gap: 1rem;
    }
}

/* Funnel Stage Visual (The funnel shape) */
.funnel-stage-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.stage-bar {
    width: 100%;
    border-radius: 0.5rem;
    position: relative;
}

.tofu .stage-bar {
    height: 100px;
    background: linear-gradient(180deg, #3b82f6, #60a5fa);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.4);
}

.mofu .stage-bar {
    height: 100px;
    width: 75%;
    background: linear-gradient(180deg, #a855f7, #c084fc);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.4);
}

.bofu .stage-bar {
    height: 100px;
    width: 50%;
    background: linear-gradient(180deg, #22c55e, #4ade80);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.4);
}

.stage-connector {
    width: 4px;
    height: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
}

/* Stage Content */
.funnel-stage-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.25rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.funnel-stage-content:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(4px);
}

@media (min-width: 768px) {
    .funnel-stage-content {
        padding: 2rem;
    }
}

/* Stage Header */
.stage-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.stage-label {
    padding: 0.375rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tofu-label {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
}

.mofu-label {
    background: rgba(168, 85, 247, 0.2);
    color: #c084fc;
}

.bofu-label {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
}

.stage-header h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.stage-tag {
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.25rem 0.625rem;
    background: rgba(255, 255, 255, 0.08);
    color: var(--slate-400);
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.stage-goal {
    color: var(--slate-400);
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.stage-goal strong {
    color: var(--amber-400);
}

/* Tactic Cards */
.stage-tactics {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.tactic-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0.75rem;
    transition: all 0.3s;
}

.tactic-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.tactic-card.highlight {
    background: rgba(34, 197, 94, 0.08);
    border-color: rgba(34, 197, 94, 0.2);
}

.tactic-card.highlight:hover {
    background: rgba(34, 197, 94, 0.12);
}

.tactic-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.625rem;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--slate-300);
}

.tactic-icon svg {
    width: 18px;
    height: 18px;
}

.tactic-card.highlight .tactic-icon {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
}

.tactic-content h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
}

.tactic-content p {
    font-size: 0.8rem;
    color: var(--slate-400);
    line-height: 1.5;
    margin: 0;
}

/* Stage Metrics */
.stage-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.stage-metric {
    text-align: center;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0.5rem;
    min-width: 80px;
}

.stage-metric.featured {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(251, 191, 36, 0.05));
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.metric-num {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stage-metric.featured .metric-num {
    color: var(--amber-400);
}

.metric-desc {
    font-size: 0.625rem;
    color: var(--slate-500);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* Funnel Result */
.funnel-result {
    text-align: center;
    padding-top: 1.5rem;
}

.result-arrow {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    background: rgba(251, 191, 36, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber-400);
    animation: bounce 2s infinite;
}

.result-arrow svg {
    width: 24px;
    height: 24px;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-8px);
    }

    60% {
        transform: translateY(-4px);
    }
}

.result-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(34, 197, 94, 0.05));
    border: 2px solid var(--amber-400);
    border-radius: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
}

.result-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--amber-400), var(--amber-500));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-900);
}

.result-icon svg {
    width: 28px;
    height: 28px;
}

.result-content {
    text-align: left;
    flex: 1;
    min-width: 200px;
}

.result-value {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #fde68a, #fbbf24, #d97706);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
    .result-value {
        font-size: 3rem;
    }
}

.result-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
}

.result-detail {
    font-size: 0.75rem;
    color: var(--slate-400);
}

.result-roas {
    text-align: center;
    padding: 1rem 1.5rem;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 0.75rem;
}

.roas-label {
    display: block;
    font-size: 0.65rem;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.roas-value {
    font-size: 2rem;
    font-weight: 900;
    color: #4ade80;
}

/* Funnel CTA */
.funnel-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.funnel-cta p {
    color: var(--slate-400);
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.funnel-cta strong {
    color: #fff;
}

/* Mobile Adjustments for Funnel */
@media (max-width: 640px) {
    .funnel-stage-visual {
        display: none;
    }

    .funnel-stage {
        grid-template-columns: 1fr;
    }

    .stage-header h3 {
        font-size: 1.1rem;
    }

    .tactic-card {
        flex-direction: column;
        gap: 0.75rem;
    }

    .result-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .result-content {
        text-align: center;
    }

    .result-value {
        font-size: 2rem;
    }
}

/* ===== ABOUT ME SECTION ===== */
.about-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-layout {
        grid-template-columns: 1.5fr 1fr;
        gap: 4rem;
    }
}

.about-content {
    position: relative;
}

.about-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--slate-900);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .about-title {
        font-size: 2rem;
    }
}

.about-text p {
    color: var(--slate-600);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.about-text strong {
    color: var(--slate-900);
    font-weight: 600;
}

.about-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.about-highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: var(--slate-50);
    border: 1px solid var(--slate-100);
    border-radius: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--slate-700);
}

.about-highlight svg {
    width: 16px;
    height: 16px;
    color: var(--amber-500);
}

.about-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* About Stats Grid */
.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat-card-mini {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: #fff;
    border: 1px solid var(--slate-100);
    border-radius: 1rem;
    transition: all 0.3s;
}

.stat-card-mini:hover {
    border-color: var(--amber-200);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.stat-card-mini .stat-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, var(--amber-400), var(--amber-500));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-card-mini .stat-icon svg {
    width: 20px;
    height: 20px;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--slate-900);
    line-height: 1;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--slate-500);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* ===== TOOLSTACK SECTION ===== */
.toolstack-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .toolstack-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .toolstack-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tool-category {
    background: #fff;
    border: 1px solid var(--slate-100);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s;
}

.tool-category:hover {
    border-color: var(--amber-200);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--slate-100);
}

.category-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.category-icon svg {
    width: 18px;
    height: 18px;
}

.category-icon.seo {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.category-icon.analytics {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.category-icon.ads {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.category-icon.automation {
    background: linear-gradient(135deg, #a855f7, #9333ea);
}

.category-icon.dev {
    background: linear-gradient(135deg, #64748b, #475569);
}

.category-icon.crm {
    background: linear-gradient(135deg, #ec4899, #db2777);
}

.category-header h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--slate-900);
    margin: 0;
}

.tool-list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.tool-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 0.75rem;
    background: var(--slate-50);
    border-radius: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--slate-700);
    transition: all 0.2s;
}

.tool-item:hover {
    background: var(--amber-50);
    color: var(--slate-900);
}

.tool-icon {
    font-size: 1rem;
}

/* Mobile adjustments */
@media (max-width: 640px) {
    .about-stats {
        grid-template-columns: 1fr;
    }

    .stat-card-mini {
        padding: 1rem;
    }

    .about-title {
        font-size: 1.5rem;
    }
}

/* ===== VISUAL OVERHAUL: ORGANIC & CONTRAST ===== */

/* High-Contrast Card Borders */
.tool-category,
.stat-card-mini,
.feature-card,
.expertise-card {
    border-color: var(--slate-200);
    /* Darker for "Pop" */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.tool-category:hover,
.stat-card-mini:hover,
.feature-card:hover,
.expertise-card:hover {
    border-color: var(--amber-400);
    /* Neon Interaction */
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Staggered Grid (Masonry Feel) */
@media (min-width: 1024px) {

    .grid-stagger .tool-category:nth-child(even),
    .grid-stagger .result-card:nth-child(even),
    .grid-stagger .expertise-card:nth-child(even) {
        transform: translateY(2rem);
        /* Organic Flow */
    }
}

/* Organic Slant Dividers */
.section-slant {
    position: relative;
}

.section-slant::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4rem;
    background: inherit;
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
    z-index: 1;
}

/* ===== ABOUT TEASER STYLES ===== */
.about-avatar-placeholder {
    width: 8rem;
    height: 8rem;
    background: linear-gradient(135deg, var(--slate-800), var(--slate-900));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 4px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin: 0 auto 1.5rem;
}

.avatar-initials {
    color: #fff;
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.avatar-badge {
    position: absolute;
    bottom: 0px;
    right: 0px;
    background: var(--emerald-500);
    color: #fff;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
}

.avatar-badge svg {
    width: 18px;
    height: 18px;
}

/* Responsive Font Clamping for Hero (Prevents Breakage) */
.hero-headline {
    font-size: clamp(3rem, 10vw, 6rem);
    /* Safety Clamp */
}

/* ===== FUNNEL TEASER & REVEAL ANIMATIONS ===== */

/* Teaser Card */
.funnel-teaser {
    position: relative;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 2px solid rgba(251, 191, 36, 0.3);
    border-radius: 1.5rem;
    padding: 2.5rem;
    margin-top: 2rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.funnel-teaser:hover {
    border-color: rgba(251, 191, 36, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(251, 191, 36, 0.15);
}

/* Teaser Glow Effect */
.teaser-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.08) 0%, transparent 60%);
    animation: teaserGlow 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes teaserGlow {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* Teaser Content Layout */
.teaser-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .teaser-content {
        grid-template-columns: 1fr 1.5fr;
        gap: 3rem;
        align-items: center;
    }
}

/* Teaser Visual - Funnel Icon */
.teaser-visual {
    text-align: center;
}

.teaser-funnel-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.funnel-layer {
    border-radius: 0.5rem;
    height: 1.75rem;
    animation: layerPulse 2s ease-in-out infinite;
}

.layer-1 {
    width: 100%;
    max-width: 160px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    animation-delay: 0s;
}

.layer-2 {
    width: 70%;
    max-width: 112px;
    background: linear-gradient(90deg, #a855f7, #c084fc);
    animation-delay: 0.2s;
}

.layer-3 {
    width: 40%;
    max-width: 64px;
    background: linear-gradient(90deg, #22c55e, #4ade80);
    animation-delay: 0.4s;
}

@keyframes layerPulse {

    0%,
    100% {
        opacity: 0.8;
        transform: scaleX(1);
    }

    50% {
        opacity: 1;
        transform: scaleX(1.05);
    }
}

.funnel-arrow {
    color: var(--amber-400);
    animation: arrowBounce 1.5s ease-in-out infinite;
    margin-top: 0.5rem;
}

.funnel-arrow svg {
    width: 28px;
    height: 28px;
}

@keyframes arrowBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}

/* Teaser Metrics Preview */
.teaser-metrics-preview {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.preview-metric {
    text-align: center;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.pv-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 900;
    background: linear-gradient(135deg, #fde68a, #fbbf24);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}

.pv-label {
    font-size: 0.6rem;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* Teaser Text */
.teaser-text {
    text-align: center;
}

@media (min-width: 768px) {
    .teaser-text {
        text-align: left;
    }
}

.teaser-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(251, 191, 36, 0.15);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 100px;
    color: var(--amber-400);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 1rem;
}

.teaser-eyebrow svg {
    width: 14px;
    height: 14px;
}

.teaser-headline {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .teaser-headline {
        font-size: 2rem;
    }
}

.teaser-headline span {
    background: linear-gradient(135deg, #fde68a, #fbbf24, #d97706);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.teaser-description {
    color: var(--slate-400);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.teaser-description strong {
    color: #fff;
}

.teaser-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

@media (min-width: 768px) {
    .teaser-highlights {
        justify-content: flex-start;
    }
}

.teaser-highlights span {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--slate-300);
}

.teaser-highlights svg {
    width: 14px;
    height: 14px;
    color: var(--green-400);
}

/* Reveal Button */
.reveal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    max-width: 400px;
    margin: 2rem auto 0;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--amber-400), var(--amber-500));
    border: none;
    border-radius: 100px;
    color: var(--slate-900);
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    animation: btnPulse 2s ease-in-out infinite;
}

@keyframes btnPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.4);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(251, 191, 36, 0);
    }
}

.reveal-btn:hover {
    transform: scale(1.02);
    animation: none;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
}

.reveal-btn-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.reveal-btn-text svg,
.reveal-btn-arrow svg {
    width: 20px;
    height: 20px;
}

.reveal-btn-arrow {
    animation: arrowBounce 1s ease-in-out infinite;
}

/* Funnel Reveal Container */
.funnel-reveal {
    position: relative;
}

.funnel-reveal.hidden {
    display: none;
}

.funnel-teaser.hidden {
    display: none;
}

/* Reveal Animation */
.funnel-teaser.revealing {
    animation: fadeOutUp 0.4s ease-out forwards;
}

@keyframes fadeOutUp {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}

.funnel-reveal.revealing {
    animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.funnel-reveal.collapsing {
    animation: fadeOutDown 0.3s ease-in forwards;
}

@keyframes fadeOutDown {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(30px);
    }
}

/* Funnel CTA Buttons */
.funnel-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.collapse-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--slate-300);
}

.collapse-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

/* Mobile Adjustments */
@media (max-width: 640px) {
    .funnel-teaser {
        padding: 1.5rem;
    }

    .teaser-headline {
        font-size: 1.25rem;
    }

    .reveal-btn {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }

    .funnel-layer {
        height: 1.25rem;
    }
}

/* ===== ROI CALCULATOR RESULTS GRID ===== */
.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .results-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.result-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s;
}

.result-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.result-card-bg {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--amber-400);
}

.result-card-bg svg {
    width: 20px;
    height: 20px;
}

.result-label {
    font-size: 0.8rem;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.result-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
}

.result-unit {
    font-size: 0.75rem;
    color: var(--slate-500);
}

.results-cta {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-execute {
    background: var(--emerald-500);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-execute:hover {
    background: var(--emerald-600);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}


/* ===== SHARED REVEAL COMPONENTS ===== */

/* Common Reveal Transition Classes */
.section-teaser {
    background: #fff;
    border: 1px solid var(--slate-200);
    border-radius: 1.5rem;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.section-teaser:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--amber-300);
}

.section-teaser .teaser-description,
.section-teaser .teaser-highlights span {
    color: var(--slate-600);
}

.section-teaser .teaser-headline {
    color: var(--slate-900);
}

.section-teaser .teaser-headline span {
    background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-teaser .teaser-eyebrow {
    background: var(--amber-50);
    border-color: var(--amber-200);
    color: var(--amber-600);
}

.section-reveal {
    position: relative;
}

.section-reveal.hidden {
    display: none;
}

.section-teaser.hidden {
    display: none;
}

.section-teaser.revealing {
    animation: fadeOutUp 0.4s ease-out forwards;
}

.section-reveal.revealing {
    animation: fadeInUp 0.6s ease-out forwards;
}

.section-reveal.collapsing {
    animation: fadeOutDown 0.3s ease-in forwards;
}

.reveal-collapse-cta {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

/* ===== TOOLSTACK TEASER ===== */
.tools-orbit {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
}

.orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--slate-900);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 2;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 160px;
    height: 160px;
    border: 2px dashed var(--slate-200);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: orbitSpin 20s linear infinite;
}

@keyframes orbitSpin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.orbit-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid var(--slate-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-600);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    /* Distribute icons around circle */
    transform: translate(-50%, -50%) rotate(calc(var(--i) * 60deg)) translateY(-80px) rotate(calc(var(--i) * -60deg));
}

.tools-count-badge {
    text-align: center;
    font-weight: 700;
    color: var(--slate-900);
}

.tools-count-badge span {
    color: var(--amber-500);
    font-size: 1.25rem;
}

/* ===== RESULTS TEASER ===== */
.redacted-metrics {
    display: flex;
    gap: 1rem;
    justify-content: center;
    filter: blur(4px);
    opacity: 0.7;
    transition: all 0.3s;
}

.section-teaser:hover .redacted-metrics {
    filter: blur(2px);
    opacity: 0.9;
}

.redacted-card {
    background: var(--slate-100);
    padding: 1rem;
    border-radius: 0.5rem;
    width: 100px;
}

.redacted-blur {
    height: 1.5rem;
    background: var(--slate-300);
    border-radius: 4px;
    margin-bottom: 0.5rem;
    color: transparent;
}

.redacted-label {
    height: 0.75rem;
    background: var(--slate-200);
    width: 60%;
    border-radius: 2px;
}

.shimmer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    transform: skewX(-20deg) translateX(-150%);
    animation: teaserShimmer 3s infinite;
}

@keyframes teaserShimmer {
    0% {
        transform: skewX(-20deg) translateX(-150%);
    }

    100% {
        transform: skewX(-20deg) translateX(150%);
    }
}

/* ===== CASE STUDY TEASER ===== */
.case-teaser-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--slate-50);
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid var(--slate-200);
    margin-bottom: 1rem;
}

.teaser-company-logo {
    width: 3rem;
    height: 3rem;
    background: #f97316;
    color: #fff;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    font-size: 1.5rem;
}

.tc-name {
    font-weight: 700;
    color: var(--slate-900);
}

.tc-role {
    font-size: 0.8rem;
    color: var(--slate-500);
}

.teaser-challenge-preview {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #fff;
    border-left: 3px solid var(--amber-400);
    border-radius: 0 0.5rem 0.5rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.tcp-icon {
    color: var(--amber-500);
}

.tcp-text {
    font-size: 0.85rem;
    color: var(--slate-600);
}

/* ===== CALCULATOR TEASER (Dark Theme Override) ===== */
.calculator-teaser {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.calculator-teaser .teaser-headline {
    color: #fff;
}

.calculator-teaser .teaser-description,
.calculator-teaser .teaser-highlights span {
    color: var(--slate-400);
}

.calculator-teaser .teaser-eyebrow {
    background: rgba(251, 191, 36, 0.15);
    border-color: rgba(251, 191, 36, 0.3);
}

.calc-teaser-visual {
    position: relative;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.ctv-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--emerald-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
    animation: pulse 2s infinite;
}

.ctv-arrow {
    color: var(--slate-500);
}

.ctv-result {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ctv-blur {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    filter: blur(4px);
    transition: all 0.3s;
}

.calculator-teaser:hover .ctv-blur {
    filter: blur(0);
}

.ctv-badge {
    font-size: 0.65rem;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    color: var(--slate-300);
}

.calc-preview-text {
    text-align: center;
    font-size: 0.9rem;
    color: var(--slate-400);
    margin-top: 1rem;
}

.calc-preview-text strong {
    color: var(--emerald-400);
}

/* Mobile Teaser Adjustments */
@media (max-width: 640px) {
    .teaser-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .teaser-text {
        text-align: center;
    }

    .teaser-highlights {
        justify-content: center;
    }

    .tools-orbit {
        transform: scale(0.8);
        margin-bottom: 0;
    }

    .section-teaser {
        padding: 1.5rem;
    }

    .section-teaser {
        padding: 1.5rem;
    }
}

/* ===== CRITICAL VISIBILITY FIXES ===== */

/* Fix Teaser Headlines for Light Sections (Tools, Results, Case Study) */
.tools-teaser .teaser-headline,
.results-teaser .teaser-headline,
.casestudy-teaser .teaser-headline {
    color: var(--slate-900);
}

/* Fix Strong Text inside Light Teasers (was inheriting white from funnel) */
.tools-teaser .teaser-description strong,
.results-teaser .teaser-description strong,
.casestudy-teaser .teaser-description strong {
    color: var(--slate-900);
    font-weight: 700;
}

/* ===== FOOTER / CONTACT ===== */
.footer-section {
    background: var(--slate-950);
    color: #fff;
    padding: 6rem 0 3rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.footer-gradient-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--amber-400), transparent);
}

.footer-blob {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(circle, var(--blue-500) 0%, transparent 70%);
    opacity: 0.15;
    pointer-events: none;
    filter: blur(80px);
}

.footer-watermark {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 15vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.015);
    white-space: nowrap;
    pointer-events: none;
}

.footer-container {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 100px;
    color: var(--emerald-400);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.footer-title span {
    color: var(--amber-400);
}

@media (min-width: 768px) {
    .footer-title {
        font-size: 4rem;
    }
}

.footer-description {
    color: var(--slate-300);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.footer-cta-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 3rem;
}

.cta-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.cta-highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--slate-300);
}

.cta-highlight svg {
    color: var(--emerald-400);
    width: 18px;
    height: 18px;
}

.footer-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 4rem;
    align-items: center;
}

@media (min-width: 640px) {
    .footer-actions {
        flex-direction: row;
        justify-content: center;
    }
}

.btn-email {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #fff;
    color: var(--slate-900);
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s;
}

.btn-email:hover {
    transform: translateY(-4px);
}

.btn-resume {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    border: 1px solid var(--slate-600);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-resume:hover {
    border-color: var(--amber-400);
    color: var(--amber-400);
}

.btn-linkedin {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #0077b5;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s;
}

.btn-linkedin:hover {
    filter: brightness(1.1);
    transform: translateY(-4px);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-link {
    color: var(--slate-400);
    transition: color 0.2s;
}

.social-link:hover {
    color: #fff;
}

.footer-copyright {
    color: var(--slate-500);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer-copyright .divider {
    display: inline-block;
    width: 4px;
    height: 4px;
    background: var(--slate-600);
    border-radius: 50%;
}

/* Fix 'Get in Touch' Button Visibility in About Section */
.about-cta .btn-secondary {
    background: transparent;
    color: var(--slate-700);
    border: 1px solid var(--slate-300);
}

.about-cta .btn-secondary:hover {
    background: var(--slate-50);
    color: var(--slate-900);
    border-color: var(--slate-900);
}

/* Ensure Gradient Spans are Visible */
.tools-teaser .teaser-headline span,
.results-teaser .teaser-headline span,
.casestudy-teaser .teaser-headline span {
    background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ===== PREMIUM VISUAL POLISH ===== */

/* Global Micro-interactions */
button,
a {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

button:active,
a:active {
    transform: scale(0.98);
}

/* Premium Button Shimmer */
.btn-primary {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transform: skewX(-20deg);
    animation: btnShine 6s infinite;
    z-index: -1;
}

@keyframes btnShine {
    0% {
        left: -100%;
    }

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

/* Inner borders for Dark Mode Cards */
.glass-panel-dark,
.value-card,
.calculator-section .section-teaser,
.funnel-section .section-teaser {
    box-shadow:
        0 10px 40px -10px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.1);
}

/* Better Shadows for Light Cards */
.feature-card,
.expertise-card,
.stat-card-mini,
.tool-category {
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.feature-card:hover,
.expertise-card:hover,
.stat-card-mini:hover,
.tool-category:hover {
    box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.05),
        0 10px 10px -5px rgba(0, 0, 0, 0.02);
}

.hero-helper {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 18px 0 24px;
    padding: 8px 14px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    backdrop-filter: blur(6px);
}

.hero-helper i {
    width: 14px;
    height: 14px;
    opacity: 0.8;
}

.hero-cta-group {
    margin-top: 24px;
    max-width: 560px;
}


.hero-helper::before {
    content: "ⓘ";
    opacity: 0.6;
}

.hero-helper {
    font-size: 12.5px;
    letter-spacing: 0.2px;
}

