/* === Reset & Base === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #f8f8f8;
    --bg-white: #ffffff;
    --bg-subtle: #f0f0f0;
    --border: rgba(0, 0, 0, 0.05);
    --border-strong: rgba(0, 0, 0, 0.1);
    --text: #0a0a0a;
    --text-secondary: #52525b;
    --text-muted: #a1a1aa;
    --accent: #7C3AED;
    --accent-light: #8B5CF6;
    --accent-bg: rgba(124, 58, 237, 0.06);
    --accent-bg-strong: rgba(124, 58, 237, 0.12);
    --gradient: linear-gradient(135deg, #7C3AED, #8B5CF6, #A78BFA);
    --gradient-warm: linear-gradient(135deg, #7C3AED, #6D28D9);
    --gradient-subtle: linear-gradient(135deg, rgba(124,58,237,0.06), rgba(139,92,246,0.02));
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.03);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.06);
    --shadow-lg: 0 16px 50px rgba(0,0,0,0.08);
    --shadow-xl: 0 24px 70px rgba(0,0,0,0.12);
    --shadow-glow: 0 0 60px rgba(124, 58, 237, 0.15);
    --radius: 20px;
    --radius-sm: 14px;
    --radius-xs: 10px;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

a { color: inherit; text-decoration: none; }

::selection {
    background: var(--accent-bg-strong);
    color: var(--accent);
}

/* === Cursor Glow === */
.cursor-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    opacity: 0;
}

body:hover .cursor-glow {
    opacity: 1;
}

/* === Animations === */
.animate-in {
    opacity: 0;
    transform: translateY(32px);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.35s; }
.delay-4 { animation-delay: 0.5s; }

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

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

@keyframes pulseRing {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(2.5); opacity: 0; }
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* === Header === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: rgba(248, 248, 248, 0.6);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s;
}

.header.scrolled {
    background: rgba(248, 248, 248, 0.9);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.logo {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: var(--text-muted);
    transition: color 0.2s;
}

.logo:hover { color: var(--text); }

.logo-accent {
    color: var(--text);
    font-weight: 800;
}

.nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 8px 18px;
    border-radius: 50px;
    transition: all 0.2s;
}

.nav a:hover {
    color: var(--text);
    background: rgba(0,0,0,0.04);
}

.nav-cta {
    background: var(--text) !important;
    color: white !important;
    font-weight: 600 !important;
    margin-left: 4px;
}

.nav-cta:hover {
    background: #222 !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

/* Mobile menu button */
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 210;
}

.mobile-menu span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mobile-menu.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav overlay */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 190;
    background: rgba(248, 248, 248, 0.97);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.mobile-nav.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-link {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    padding: 12px 24px;
    border-radius: 16px;
    transition: all 0.2s;
    letter-spacing: -0.5px;
}

.mobile-nav-link:hover {
    background: var(--accent-bg);
    color: var(--accent);
}

/* === Hero === */
.hero {
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(124, 58, 237, 0.12);
    top: 10%;
    left: -8%;
    animation: float 22s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(139, 92, 246, 0.1);
    top: 5%;
    right: -5%;
    animation: float 28s ease-in-out infinite reverse;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: rgba(196, 181, 253, 0.08);
    bottom: 0;
    left: 35%;
    animation: float 18s ease-in-out infinite 5s;
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,0,0,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 70%);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    margin-bottom: 56px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px 8px 16px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 36px;
    box-shadow: var(--shadow-xs);
}

.pulse {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    position: relative;
}

.pulse::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid #22c55e;
    animation: pulseRing 2s ease-out infinite;
}

.hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(40px, 7vw, 76px);
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -3px;
    margin-bottom: 24px;
}

.hero h1 em {
    font-style: italic;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* === Buttons === */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--text);
    color: white;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: #1a1a1a;
}

.btn-primary:active { transform: translateY(0); }

.btn-large {
    padding: 16px 32px;
    font-size: 15px;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--bg-white);
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    border: 1px solid var(--border-strong);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-ghost:hover {
    border-color: var(--text);
    color: var(--text);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Hero Stats */
.hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 36px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 20px 44px;
    box-shadow: var(--shadow-sm);
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border-strong);
}

/* === Marquee === */
.marquee-wrapper {
    padding: 24px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-white);
    overflow: hidden;
}

.marquee {
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 32px;
    animation: marquee 30s linear infinite;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.marquee-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    opacity: 0.5;
}

/* === Section Shared === */
.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--accent);
    background: var(--accent-bg);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 420px;
    margin: 0 auto;
}

/* === Work Section === */
.work-section {
    padding: 100px 0;
}

/* === Showcase Card === */
.showcase-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
}

.showcase-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient);
    border-radius: 30px;
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 0;
}

.showcase-card:hover .showcase-glow {
    opacity: 0.15;
}

.showcase-inner {
    position: relative;
    z-index: 1;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 48px;
    box-shadow: var(--shadow-md);
    transition: box-shadow 0.4s;
}

.showcase-card:hover .showcase-inner {
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.showcase-top {
    margin-bottom: 28px;
}

.showcase-badge-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.showcase-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--accent-bg);
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-green {
    background: rgba(34, 197, 94, 0.08);
    color: #16a34a;
}

.showcase-hero-area {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.app-icon-large {
    width: 68px;
    height: 68px;
    background: var(--gradient);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 28px rgba(124, 58, 237, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.showcase-card:hover .app-icon-large {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 0 12px 36px rgba(124, 58, 237, 0.35);
}

.showcase-title-area h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 4px;
}

.showcase-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 500;
}

.showcase-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 580px;
    margin-bottom: 36px;
}

/* === Feature Cards === */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 36px;
}

.feature-card {
    padding: 24px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    border-color: rgba(124, 58, 237, 0.15);
    background: var(--bg-white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

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

.feature-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--accent-bg);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: all 0.3s;
}

.feature-card:hover .feature-card-icon {
    background: var(--accent-bg-strong);
    transform: scale(1.08);
}

.feature-card h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}

.feature-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* === Showcase CTA === */
.showcase-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--text);
    color: white;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-sm);
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: #1a1a1a;
}

.cta-note {
    font-size: 13px;
    color: var(--text-muted);
}

/* === More Card === */
.more-card {
    margin-top: 16px;
    background: var(--bg-white);
    border: 2px dashed rgba(0,0,0,0.08);
    border-radius: var(--radius);
    padding: 36px 44px;
    transition: all 0.3s;
}

.more-card:hover {
    border-color: rgba(124, 58, 237, 0.2);
    background: var(--gradient-subtle);
}

.more-inner {
    display: flex;
    align-items: center;
    gap: 20px;
}

.more-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--bg-subtle);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}

.more-card:hover .more-icon {
    background: var(--accent-bg);
    color: var(--accent);
}

.more-inner h4 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.3px;
    margin-bottom: 2px;
}

.more-inner p {
    font-size: 14px;
    color: var(--text-muted);
}

/* === About Section === */
.about-section {
    padding: 100px 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}

.about-left h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(34px, 5vw, 48px);
    font-weight: 700;
    letter-spacing: -2px;
}

.about-lead {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: -0.3px;
    margin-bottom: 20px;
}

.about-body {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 36px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.value {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    padding: 14px 20px;
    background: var(--bg);
    border-radius: var(--radius-xs);
    border: 1px solid var(--border);
    transition: all 0.25s;
}

.value:hover {
    border-color: rgba(124, 58, 237, 0.15);
    background: var(--accent-bg);
    transform: translateX(4px);
}

.value-marker {
    width: 8px;
    height: 8px;
    background: var(--gradient);
    border-radius: 50%;
    flex-shrink: 0;
}

/* === Contact Section === */
.contact-section {
    padding: 100px 0;
}

.contact-card {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
}

.contact-glow {
    position: absolute;
    inset: -2px;
    background: var(--gradient);
    border-radius: 34px;
    opacity: 0.08;
    z-index: 0;
}

.contact-inner {
    position: relative;
    z-index: 1;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 72px 48px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.contact-inner h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(30px, 5vw, 44px);
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 12px;
    line-height: 1.1;
}

.contact-inner p {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 420px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

/* === Footer === */
.footer {
    padding: 28px 0;
    border-top: 1px solid var(--border);
}

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

.footer p {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.bavaria-flag {
    flex-shrink: 0;
}

/* === Scroll reveal === */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

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

@media (max-width: 768px) {
    .container { padding: 0 20px; }

    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .hero h1 {
        font-size: clamp(32px, 9vw, 48px);
        letter-spacing: -1.5px;
    }

    .hero-sub {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .hero-stats {
        gap: 0;
        padding: 0;
        flex-direction: column;
        border-radius: 20px;
        overflow: hidden;
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }

    .stat {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        padding: 14px 24px;
        border-bottom: 1px solid var(--border);
    }

    .stat:last-child { border-bottom: none; }

    .stat-number { font-size: 16px; }
    .stat-label { font-size: 11px; }
    .stat-divider { display: none; }

    .nav { display: none; }
    .mobile-menu { display: flex; }

    .feature-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .showcase-inner {
        padding: 28px;
        border-radius: 22px;
    }

    .showcase-card { border-radius: 22px; }
    .showcase-glow { border-radius: 24px; }

    .showcase-hero-area {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .about-section { padding: 72px 0; }

    .contact-inner {
        padding: 48px 24px;
        border-radius: 24px;
    }

    .contact-card { border-radius: 24px; }
    .contact-glow { border-radius: 26px; }

    .footer-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .footer p { justify-content: center; }

    .showcase-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .more-card { padding: 24px; }

    .section-header h2 {
        font-size: clamp(28px, 7vw, 40px);
    }

    .work-section { padding: 72px 0; }
    .contact-section { padding: 72px 0; }

    .marquee-track {
        font-size: 12px;
        gap: 24px;
    }
}

@media (max-width: 420px) {
    .hero h1 {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 14px 6px 12px;
    }

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

    .hero-actions .btn-primary,
    .hero-actions .btn-ghost {
        justify-content: center;
    }

    .hero-stats {
        max-width: 300px;
    }

    .stat { padding: 12px 20px; }
    .stat-number { font-size: 15px; }

    .showcase-title-area h3 { font-size: 24px; }

    .about-left h2 { font-size: 32px; }
    .about-lead { font-size: 18px; }

    .value {
        padding: 12px 16px;
        font-size: 14px;
    }
}
