/* Main Site CSS - Darker Grey + Tighter Spacing */
:root {
    --grey-dark: #e5e5e7;
    --grey-100: #ececee;
    --grey-200: #d8d8dc;
    --grey-300: #c4c4ca;
    --grey-400: #9999a3;
    --grey-500: #6e6e7a;
    --grey-600: #4a4a56;
    --grey-900: #18181b;
    --purple-500: #a855f7;
    --purple-600: #9333ea;
    --primary: var(--purple-600);
    --bg: var(--grey-dark);
    --bg-card: #ffffff;
    --text: var(--grey-900);
    --text-muted: var(--grey-600);
    --border: var(--grey-300);
    --font-sans: 'IBM Plex Sans', sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;
    --space-xs: 0.5rem;
    --space-sm: 0.875rem;
    --space-md: 1.25rem;
    --space-lg: 1.75rem;
    --space-xl: 2.5rem;
    --space-2xl: 3.5rem;
    --space-3xl: 5rem;
    --radius: 10px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.1);
    --transition: all 0.25s ease;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); font-size: 16px; font-weight: 400; line-height: 1.6; color: var(--text); background: var(--bg); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--space-md); }
section { padding: var(--space-3xl) 0; }
.header { position: sticky; top: 0; z-index: 100; background: rgba(229, 229, 231, 0.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.nav-wrapper { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo { font-family: var(--font-mono); font-size: 1.125rem; font-weight: 500; letter-spacing: -0.01em; color: var(--text); }
.nav-menu { display: flex; align-items: center; gap: var(--space-xl); }
.nav-menu a { font-size: 0.9375rem; font-weight: 400; color: var(--text-muted); transition: var(--transition); }
.nav-menu a:hover { color: var(--text); }
.nav-btn { padding: 0.5rem 1.25rem; background: var(--primary); color: white !important; border-radius: var(--radius); font-weight: 500; transition: var(--transition); }
.nav-btn:hover { background: var(--purple-500); transform: translateY(-1px); }
.menu-btn { display: none; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.menu-btn span { width: 22px; height: 2px; background: var(--text); transition: var(--transition); }
.hero { padding: var(--space-2xl) 0 var(--space-xl); }
.hero-content { max-width: 720px; }
.hero-tag { display: inline-block; padding: 0.375rem 0.875rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: 999px; font-family: var(--font-mono); font-size: 0.8125rem; font-weight: 400; color: var(--text-muted); margin-bottom: var(--space-md); }
.hero h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 300; line-height: 1.1; letter-spacing: -0.02em; color: var(--text); margin-bottom: var(--space-md); }
.accent { color: var(--primary); font-weight: 500; }
.lead { font-size: 1.0625rem; font-weight: 400; line-height: 1.65; color: var(--text-muted); margin-bottom: var(--space-lg); max-width: 640px; }
.cta-group { display: flex; gap: var(--space-sm); margin-bottom: var(--space-xl); flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.875rem 1.5rem; font-family: var(--font-sans); font-weight: 500; font-size: 0.9375rem; border-radius: var(--radius); transition: var(--transition); cursor: pointer; }
.btn-primary { background: var(--primary); color: white; border: none; }
.btn-primary:hover { background: var(--purple-500); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost { background: var(--bg-card); color: var(--text); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--grey-400); box-shadow: var(--shadow); }
.stats-grid { display: flex; gap: var(--space-lg); padding-top: var(--space-md); border-top: 1px solid var(--border); }
.stat { text-align: left; }
.stat-num { font-family: var(--font-mono); font-size: 1.5rem; font-weight: 500; color: var(--primary); margin-bottom: 0.25rem; }
.stat-label { font-size: 0.875rem; font-weight: 400; color: var(--text-muted); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto var(--space-xl); }
.section-head h2 { font-size: clamp(1.875rem, 4vw, 2.5rem); font-weight: 400; letter-spacing: -0.02em; color: var(--text); margin-bottom: var(--space-sm); }
.section-head p { font-size: 1.0625rem; font-weight: 400; color: var(--text-muted); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); margin-bottom: var(--space-lg); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); }
.card { position: relative; background: var(--bg-card); padding: var(--space-lg); border-radius: var(--radius); border: 1px solid var(--border); transition: var(--transition); }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card.featured { border-color: var(--primary); }
.card-badge { position: absolute; top: -10px; right: var(--space-md); padding: 0.25rem 0.75rem; background: var(--primary); color: white; border-radius: 999px; font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }
.card-header { display: flex; align-items: center; gap: var(--space-sm); margin-bottom: var(--space-sm); }
.card-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: #faf5ff; color: var(--primary); border-radius: var(--radius); flex-shrink: 0; }
.card h3 { font-size: 1.25rem; font-weight: 500; color: var(--text); }
.card-desc { font-size: 0.9375rem; font-weight: 400; line-height: 1.65; color: var(--text-muted); margin-bottom: var(--space-sm); }
.card-list { list-style: none; display: flex; flex-direction: column; gap: 0.375rem; }
.card-list li { font-size: 0.9375rem; font-weight: 400; color: var(--text-muted); padding-left: 1.25rem; position: relative; }
.card-list li::before { content: '→'; position: absolute; left: 0; color: var(--primary); }
.card-small { background: var(--bg-card); padding: var(--space-md); border-radius: var(--radius); border: 1px solid var(--border); transition: var(--transition); }
.card-small:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.icon-small { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: #faf5ff; color: var(--primary); border-radius: var(--radius); margin-bottom: var(--space-xs); }
.card-small h4 { font-size: 1rem; font-weight: 500; margin-bottom: 0.25rem; }
.card-small p { font-size: 0.875rem; font-weight: 400; color: var(--text-muted); line-height: 1.5; }

/* ========================================
   REFINED WORK CARDS - SUBTLE & CLASSY
   ======================================== */
.work-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    position: relative;
}

.work-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
    border-color: var(--grey-400);
}

.work-preview {
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, var(--grey-200), var(--grey-300));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Subtle dark overlay only on hover */
.work-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    transition: all 0.35s ease;
    z-index: 1;
}

.work-card:hover .work-preview::before {
    background: rgba(0, 0, 0, 0.15);
}

/* Minimal, classy badge */
.work-label {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    padding: 0.375rem 0.875rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--text);
    font-weight: 500;
    font-size: 0.75rem;
    border-radius: 6px;
    letter-spacing: 0.025em;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.work-card:hover .work-label {
    background: white;
    border-color: var(--border);
}

.work-info {
    padding: 1.5rem;
    background: var(--bg-card);
}

.work-info h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text);
    transition: color 0.3s ease;
}

.work-card:hover .work-info h3 {
    color: var(--primary);
}

.work-info p {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.work-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--primary);
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.work-link::after {
    content: '→';
    display: inline-block;
    transition: transform 0.3s ease;
}

.work-card:hover .work-link {
    gap: 0.5rem;
}

.work-card:hover .work-link::after {
    transform: translateX(3px);
}

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); margin-bottom: var(--space-lg); }
.price-card { position: relative; background: var(--bg-card); padding: var(--space-lg); border-radius: var(--radius); border: 1px solid var(--border); transition: var(--transition); }
.price-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.price-card.highlight { border-color: var(--primary); }
.popular-badge { position: absolute; top: -10px; left: 50%; transform: translateX(-50%); padding: 0.375rem 1rem; background: var(--primary); color: white; border-radius: 999px; font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }
.price-top { text-align: center; padding-bottom: var(--space-sm); border-bottom: 1px solid var(--border); margin-bottom: var(--space-sm); }
.price-name { font-family: var(--font-mono); font-size: 0.8125rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); margin-bottom: var(--space-xs); }
.price-amount { font-size: 2.5rem; font-weight: 300; color: var(--primary); line-height: 1; margin-bottom: 0.25rem; }
.price-sub { font-size: 0.8125rem; font-weight: 400; color: var(--text-muted); }
.price-desc { text-align: center; font-size: 0.9375rem; color: var(--text-muted); margin-bottom: var(--space-md); padding-bottom: var(--space-sm); border-bottom: 1px solid #f0f0f2; }
.price-list { list-style: none; margin-bottom: var(--space-lg); }
.price-list li { padding: 0.5rem 0; font-size: 0.9375rem; font-weight: 400; color: var(--text-muted); border-bottom: 1px solid #f0f0f2; }
.price-list li:last-child { border-bottom: none; }
.price-btn { display: block; width: 100%; padding: 0.875rem; text-align: center; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); color: var(--text); font-weight: 500; transition: var(--transition); }
.price-btn:hover { border-color: var(--grey-400); box-shadow: var(--shadow); }
.price-btn.primary { background: var(--primary); color: white; border-color: var(--primary); }
.price-btn.primary:hover { background: var(--purple-500); }
.price-note { text-align: center; padding: var(--space-md); background: var(--bg-card); border-radius: var(--radius); border: 1px solid var(--border); font-size: 0.9375rem; color: var(--text-muted); }
.contact-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--space-2xl); }
.contact-info h2 { font-size: 2.25rem; font-weight: 400; margin-bottom: var(--space-sm); }
.contact-info p { font-size: 1rem; font-weight: 400; color: var(--text-muted); line-height: 1.65; margin-bottom: var(--space-lg); }
.info-list { display: flex; flex-direction: column; gap: var(--space-md); }
.info-item { display: flex; gap: var(--space-sm); }
.info-icon { font-size: 1.5rem; }
.info-label { font-size: 0.8125rem; font-weight: 500; color: var(--text-muted); margin-bottom: 0.25rem; }
.info-value { font-weight: 500; color: var(--text); }
.form { background: var(--bg-card); padding: var(--space-lg); border-radius: var(--radius); border: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-sm); }
.field { display: flex; flex-direction: column; gap: 0.375rem; margin-bottom: var(--space-sm); }
label { font-size: 0.8125rem; font-weight: 500; color: var(--text); }
input, textarea { padding: 0.75rem 1rem; border: 1px solid var(--border); border-radius: var(--radius); font-family: inherit; font-size: 0.9375rem; font-weight: 400; transition: var(--transition); background: var(--bg); }
input:focus, textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px #f3e8ff; }
textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.875rem; background: var(--primary); color: white; border: none; border-radius: var(--radius); font-family: inherit; font-weight: 500; font-size: 0.9375rem; cursor: pointer; transition: var(--transition); }
.form-submit:hover { background: var(--purple-500); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.footer { background: var(--grey-900); color: #9999a3; padding: var(--space-xl) 0 var(--space-md); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: var(--space-2xl); padding-bottom: var(--space-md); border-bottom: 1px solid #27272a; margin-bottom: var(--space-sm); }
.footer-brand .logo { color: white; margin-bottom: var(--space-xs); }
.footer-brand p { font-size: 0.9375rem; font-weight: 400; color: #6e6e7a; max-width: 400px; }
.footer-nav { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
.footer-col h4 { color: white; font-weight: 500; font-size: 0.875rem; margin-bottom: var(--space-sm); }
.footer-col a { display: block; color: #6e6e7a; padding: 0.25rem 0; font-size: 0.9375rem; font-weight: 400; transition: var(--transition); }
.footer-col a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.875rem; }
.footer-bottom a { color: #6e6e7a; transition: var(--transition); }
.footer-bottom a:hover { color: var(--primary); }
@media (max-width: 1024px) { .grid-2 { grid-template-columns: 1fr; } .grid-4 { grid-template-columns: repeat(2, 1fr); } .contact-layout, .footer-grid { grid-template-columns: 1fr; } }
@media (max-width: 768px) { section { padding: var(--space-xl) 0; } .hero { padding: var(--space-xl) 0; } .stats-grid { flex-wrap: wrap; } .grid-3, .grid-4, .price-grid { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } .footer-nav { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; gap: var(--space-xs); text-align: center; } }
@media (max-width: 640px) { .nav-menu { position: fixed; top: 68px; left: 0; right: 0; background: var(--bg-card); border-bottom: 1px solid var(--border); flex-direction: column; align-items: stretch; padding: var(--space-sm); gap: 0; max-height: 0; overflow: hidden; transition: max-height 0.3s ease; box-shadow: var(--shadow); } .nav-menu.active { max-height: 400px; } .nav-menu a { padding: var(--space-sm); border-bottom: 1px solid var(--border); } .nav-btn { width: 100%; text-align: center; } .menu-btn { display: flex; } .menu-btn.active span:first-child { transform: rotate(45deg) translate(4px, 4px); } .menu-btn.active span:nth-child(2) { opacity: 0; } .menu-btn.active span:last-child { transform: rotate(-45deg) translate(4px, -4px); } .hero h1 { font-size: 2rem; } .cta-group { flex-direction: column; } .btn { width: 100%; justify-content: center; } }
