/* ══════════════════════════════════════════════
   STARTUP SLING — Premium Dark Theme
   ══════════════════════════════════════════════ */

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

/* ── Brand Tokens ── */
:root {
    --primary: #E53E3E;
    --primary-dark: #C53030;
    --primary-light: #FC8181;
    --primary-glow: rgba(229, 62, 62, 0.15);
    --primary-subtle: rgba(229, 62, 62, 0.08);

    --bg-dark: #0C0C0F;
    --bg-card: #141419;
    --bg-card-hover: #1A1A22;
    --bg-elevated: #1E1E28;
    --bg-surface: #111116;

    --text-white: #F5F5F7;
    --text-secondary: #A1A1AA;
    --text-tertiary: #71717A;
    --text-dim: #52525B;

    --border: rgba(255,255,255,0.06);
    --border-light: rgba(255,255,255,0.10);
    --border-hover: rgba(255,255,255,0.14);

    --gradient: linear-gradient(135deg, var(--primary) 0%, #991B1B 100%);
    --gradient-red: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --gradient-glow: radial-gradient(ellipse at 50% 0%, rgba(229,62,62,0.12) 0%, transparent 60%);

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.4);
    --shadow-lg: 0 16px 64px rgba(0,0,0,0.5);
    --shadow-glow: 0 4px 24px rgba(229,62,62,0.25);
    --shadow-glow-lg: 0 8px 40px rgba(229,62,62,0.3);

    --radius: 14px;
    --radius-lg: 22px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

    --font-display: 'Sora', 'Inter', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

::selection {
    background: var(--primary);
    color: white;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }


/* ══════════════════════════════════════════════
   LAYOUT
   ══════════════════════════════════════════════ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 120px 0;
    position: relative;
}


/* ══════════════════════════════════════════════
   TYPOGRAPHY
   ══════════════════════════════════════════════ */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-bottom: 20px;
    font-family: var(--font-body);
}

.section-label::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    opacity: 0.6;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--text-white);
}

.section-desc {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 600px;
}

.section-desc.centered {
    margin: 0 auto;
    text-align: center;
}

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

.section-header .section-label::before {
    display: none;
}

.section-header .section-label {
    justify-content: center;
}

.section-header .section-title {
    margin-bottom: 16px;
}


/* ══════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 28px;
    border-radius: 12px;
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    border: none;
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
    border-radius: 14px;
}

.btn-primary {
    background: var(--gradient-red);
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    box-shadow: var(--shadow-glow-lg);
    transform: translateY(-2px);
}

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

.btn-ghost {
    background: rgba(255,255,255,0.05);
    color: var(--text-white);
    border: 1px solid var(--border-light);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.10);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.btn-white {
    background: white;
    color: var(--primary-dark);
    box-shadow: var(--shadow-md);
    font-weight: 700;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-full {
    width: 100%;
}


/* ══════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(12, 12, 15, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, box-shadow 0.3s;
}

nav.scrolled {
    border-bottom-color: var(--border);
    box-shadow: 0 1px 20px rgba(0,0,0,0.4);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 42px;
    width: auto;
    display: block;
}

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

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-tertiary);
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-white);
}

.nav-cta {
    background: var(--gradient-red) !important;
    color: white !important;
    padding: 10px 22px !important;
    border-radius: 10px !important;
    transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s !important;
    box-shadow: var(--shadow-glow) !important;
}

.nav-cta:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

/* Mobile toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

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

.mobile-toggle span + span {
    margin-top: 5px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* ══════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════ */
.hero {
    padding: 180px 0 130px;
    text-align: center;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(229,62,62,0.10) 0%, rgba(229,62,62,0.03) 40%, transparent 70%);
    pointer-events: none;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 65%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 65%);
    pointer-events: none;
}

.hero .container {
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

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

.pulse-dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid #22C55E;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.8); opacity: 0; }
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 6.5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -0.04em;
    margin-bottom: 28px;
    color: var(--text-white);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.1875rem;
    color: var(--text-secondary);
    max-width: 620px;
    margin: 0 auto 44px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    margin-top: 80px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
}

.hero-stat {
    text-align: center;
}

.hero-stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-white);
}

.hero-stat-label {
    font-size: 0.8125rem;
    color: var(--text-dim);
    margin-top: 4px;
    display: block;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-light);
}


/* ══════════════════════════════════════════════
   ABOUT / BENTO SECTION
   ══════════════════════════════════════════════ */
.about {
    background: var(--bg-surface);
}

.about-top {
    margin-bottom: 48px;
    max-width: 700px;
}

.about-top .section-title {
    margin-bottom: 0;
}

.about-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto auto;
    gap: 16px;
}

.bento-main {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bento-text {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.bento-text:last-child {
    margin-bottom: 0;
}

.bento-text strong {
    color: var(--text-white);
}

.bento-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all 0.35s var(--ease-out);
}

.bento-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}

.bento-speed {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.bento-founder {
    grid-column: 4 / 5;
    grid-row: 1 / 2;
}

.bento-stack {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.bento-highlight {
    grid-column: 2 / 5;
    grid-row: 2 / 3;
}

.bento-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-subtle);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 20px;
}

.bento-card h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-white);
}

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

/* Bento highlight card */
.bento-highlight-inner {
    background: var(--gradient);
    padding: 44px 40px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bento-highlight-inner::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -60px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.bento-highlight-inner h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
    color: white;
    position: relative;
}

.bento-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    position: relative;
}

.bento-stat {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 18px 16px;
}

.bento-stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    color: white;
}

.bento-stat-label {
    display: block;
    font-size: 0.6875rem;
    opacity: 0.55;
    margin-top: 4px;
    color: white;
}


/* ══════════════════════════════════════════════
   SERVICES SECTION
   ══════════════════════════════════════════════ */
.services {
    background: var(--bg-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: all 0.35s var(--ease-out);
    position: relative;
    overflow: hidden;
}

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

.service-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

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

.service-number {
    position: absolute;
    top: 24px;
    right: 28px;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-dim);
    letter-spacing: 0.05em;
}

.service-icon {
    width: 52px;
    height: 52px;
    background: var(--primary-subtle);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 24px;
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    background: var(--gradient-red);
    color: white;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
    color: var(--text-white);
}

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

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.service-tags li {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 5px 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    color: var(--text-dim);
    transition: all 0.2s;
}

.service-card:hover .service-tags li {
    background: var(--primary-subtle);
    border-color: rgba(229,62,62,0.15);
    color: var(--primary-light);
}


/* ══════════════════════════════════════════════
   PROCESS SECTION
   ══════════════════════════════════════════════ */
.process {
    background: var(--bg-surface);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-step {
    position: relative;
    padding: 40px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.35s var(--ease-out);
    overflow: hidden;
}

.process-step::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-red);
    opacity: 0;
    transition: opacity 0.3s;
}

.process-step:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}

.process-step:hover::after {
    opacity: 1;
}

.step-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 24px;
    transition: opacity 0.3s;
}

.process-step:hover .step-num {
    opacity: 0.5;
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-white);
}

.step-content p {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    line-height: 1.65;
}


/* ══════════════════════════════════════════════
   IDEAL FOR SECTION
   ══════════════════════════════════════════════ */
.ideal-for {
    background: var(--bg-dark);
}

.ideal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ideal-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 24px;
    text-align: center;
    transition: all 0.35s var(--ease-out);
}

.ideal-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.ideal-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-subtle);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
    transition: all 0.3s;
}

.ideal-card:hover .ideal-icon {
    background: var(--gradient-red);
    color: white;
}

.ideal-card h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-white);
}

.ideal-card p {
    font-size: 0.8125rem;
    color: var(--text-tertiary);
    line-height: 1.65;
}


/* ══════════════════════════════════════════════
   CTA BANNER
   ══════════════════════════════════════════════ */
.cta-banner {
    background: var(--gradient);
    padding: 110px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255,255,255,0.04) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
}

.cta-banner h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 800;
    color: white;
    letter-spacing: -0.03em;
    line-height: 1.12;
    margin-bottom: 18px;
}

.cta-banner p {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.7);
    max-width: 540px;
    margin: 0 auto 40px;
    line-height: 1.7;
}


/* ══════════════════════════════════════════════
   CONTACT SECTION
   ══════════════════════════════════════════════ */
.contact {
    background: var(--bg-surface);
    padding-bottom: 120px;
}

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

.contact-info .section-title {
    margin-bottom: 16px;
}

.contact-info .section-desc {
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 14px;
    align-items: center;
}

.contact-item-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--primary-subtle);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.contact-item span {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 44px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-group label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.required {
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 13px 16px;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    font-size: 0.9375rem;
    font-family: inherit;
    color: var(--text-white);
    background: var(--bg-elevated);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-dim);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2371717A' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-group select option {
    background: var(--bg-card);
    color: var(--text-white);
}

/* Submit button loading state */
.btn-loader {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.btn.loading .btn-text { display: none; }
.btn.loading .btn-arrow { display: none; }
.btn.loading .btn-loader { display: block; }

/* Success state */
.form-success {
    display: none;
    text-align: center;
    padding: 60px 20px;
}

.form-success.show {
    display: block;
    animation: fadeScale 0.5s var(--ease-spring);
}

.success-icon {
    width: 72px;
    height: 72px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #22C55E;
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-white);
}

.form-success p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

@keyframes fadeScale {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}


/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
footer {
    background: var(--bg-dark);
    padding: 60px 0;
    border-top: 1px solid var(--border);
}

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

.footer-brand .logo {
    margin-bottom: 8px;
}

.footer-brand p {
    font-size: 0.8125rem;
    color: var(--text-dim);
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    font-size: 0.8125rem;
    color: var(--text-dim);
    transition: color 0.2s;
}

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

.footer-copy p {
    font-size: 0.75rem;
    color: var(--text-dim);
    opacity: 0.6;
}


/* ══════════════════════════════════════════════
   SCROLL ANIMATIONS
   ══════════════════════════════════════════════ */
.hero-anim {
    opacity: 0;
    transform: translateY(30px);
    animation: heroIn 0.8s var(--ease-out) forwards;
}

.hero-anim:nth-child(1) { animation-delay: 0.05s; }
.hero-anim:nth-child(2) { animation-delay: 0.15s; }
.hero-anim:nth-child(3) { animation-delay: 0.25s; }
.hero-anim:nth-child(4) { animation-delay: 0.35s; }
.hero-anim:nth-child(5) { animation-delay: 0.45s; }
.hero-anim:nth-child(6) { animation-delay: 0.55s; }

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

.anim-fade-up,
.anim-fade-left,
.anim-fade-right,
.anim-scale-in {
    opacity: 0;
    transition-property: opacity, transform;
    transition-duration: 0.7s;
    transition-timing-function: var(--ease-out);
}

.anim-fade-up { transform: translateY(40px); }
.anim-fade-left { transform: translateX(-50px); }
.anim-fade-right { transform: translateX(50px); }
.anim-scale-in { transform: scale(0.92); }

.anim-fade-up.visible,
.anim-fade-left.visible,
.anim-fade-right.visible,
.anim-scale-in.visible {
    opacity: 1;
    transform: none;
}

[data-delay="1"] { transition-delay: 0.08s; }
[data-delay="2"] { transition-delay: 0.16s; }
[data-delay="3"] { transition-delay: 0.24s; }
[data-delay="4"] { transition-delay: 0.32s; }
[data-delay="5"] { transition-delay: 0.40s; }
[data-delay="6"] { transition-delay: 0.48s; }


/* ══════════════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .about-bento {
        grid-template-columns: 1fr 1fr;
    }

    .bento-main {
        grid-column: 1 / 3;
    }

    .bento-speed {
        grid-column: 1 / 2;
        grid-row: auto;
    }

    .bento-founder {
        grid-column: 2 / 3;
        grid-row: auto;
    }

    .bento-stack {
        grid-column: 1 / 2;
        grid-row: auto;
    }

    .bento-highlight {
        grid-column: 1 / 3;
        grid-row: auto;
    }

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

    .contact-wrapper {
        gap: 48px;
    }
}


/* ══════════════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════════════ */
@media (max-width: 768px) {
    section { padding: 80px 0; }

    /* Nav */
    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--bg-card);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        padding: 24px;
        gap: 8px;
        box-shadow: var(--shadow-lg);
    }

    .nav-links.open { display: flex; }

    .nav-links a {
        display: block;
        padding: 12px 0;
        font-size: 1rem;
        color: var(--text-secondary);
    }

    .nav-cta {
        text-align: center !important;
        margin-top: 8px;
    }

    .mobile-toggle { display: block; }

    /* Hero */
    .hero { padding: 140px 0 80px; }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .hero-stat-divider {
        width: 40px;
        height: 1px;
    }

    /* Grids */
    .about-bento {
        grid-template-columns: 1fr;
    }

    .bento-main,
    .bento-highlight {
        grid-column: 1 / -1;
    }

    .bento-speed,
    .bento-founder,
    .bento-stack {
        grid-column: 1 / -1;
    }

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

    .services-grid { grid-template-columns: 1fr; }
    .process-timeline { grid-template-columns: 1fr; }
    .ideal-grid { grid-template-columns: 1fr; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }

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

    .footer-brand { order: 1; }
    .footer-links { order: 2; }
    .footer-copy { order: 3; }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        justify-content: center;
    }

    .contact-form-wrapper {
        padding: 28px 20px;
    }

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