:root {
    --bg-main: #0b0f1a;
    --bg-alt: #111827;
    --bg-card: rgba(31, 41, 55, 0.48);
    --teal: #2dd4bf;
    --teal-glow: rgba(45, 212, 191, 0.14);
    --blue-glow: rgba(59, 130, 246, 0.10);
    --text-primary: #f9fafb;
    --text-secondary: #9ca3af;
    --border: rgba(255, 255, 255, 0.08);
    --radius-lg: 24px;
    --radius-md: 16px;
    --container: 1140px;
    --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 15% 15%, rgba(45, 212, 191, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 85% 85%, rgba(59, 130, 246, 0.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: -1;
}

img { max-width: 100%; display: block; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 14px;
    z-index: 100;
}

.nav-shell {
    margin-top: 14px;
    background: rgba(17, 24, 39, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 12px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
    transition: var(--transition);
}

.navbar.scrolled .nav-shell {
    background: rgba(17, 24, 39, 0.88);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.36);
}

.brand {
    text-decoration: none;
    color: var(--text-primary);
    min-width: 0;
    flex: 0 0 auto;
}

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

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

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.94rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover { color: var(--teal); }

.nav-cta {
    background: var(--teal-glow);
    color: var(--teal) !important;
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid rgba(45, 212, 191, 0.3);
}

/* Typography */
h1 {
    font-size: clamp(2.7rem, 5vw, 4.5rem);
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 22px;
    letter-spacing: -0.04em;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.9rem);
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.15rem;
    line-height: 1.3;
}

.text-gradient {
    background: linear-gradient(90deg, #2dd4bf, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.kicker {
    display: block;
    color: var(--teal);
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}

.section-copy,
.lead-small {
    color: var(--text-secondary);
    font-size: 1.03rem;
}

.section-copy {
    max-width: 720px;
    margin: 0 auto;
}

.lead {
    font-size: 1.16rem;
    color: var(--text-secondary);
    margin-bottom: 34px;
    max-width: 640px;
}

.section { padding: 92px 0; }
.bg-alt { background-color: var(--bg-alt); }
.section-header { text-align: center; margin-bottom: 56px; max-width: 780px; margin-inline: auto; }

/* Hero */
.hero { padding: 132px 0 84px; }

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    align-items: center;
}

.hero-logo {
    width: min(100%, 640px);
    margin-bottom: 18px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 34px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    font-size: 1rem;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--teal);
    color: #081017;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(45, 212, 191, 0.22);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border-color: var(--border);
}

.btn-secondary:hover { background: rgba(255, 255, 255, 0.10); }

.trust-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    padding: 7px 14px;
    border-radius: 999px;
    color: var(--text-secondary);
}

.pill i { width: 14px; color: var(--teal); }

/* Hero card */
.hero-card {
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.62) 0%, rgba(17, 24, 39, 0.84) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, var(--teal), transparent 55%, rgba(255,255,255,0.05));
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.18;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.icon-teal { color: var(--teal); }

.feature-list { list-style: none; }

.feature-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.97rem;
    display: flex;
    align-items: center;
}

.feature-list li::before {
    content: "→";
    margin-right: 12px;
    color: var(--teal);
}

.card-footer {
    margin-top: 22px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.card-footer strong { color: var(--text-primary); }

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 34px 30px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.service-card:hover {
    background: rgba(31, 41, 55, 0.60);
    transform: translateY(-6px);
    border-color: rgba(45, 212, 191, 0.30);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.20);
}

.service-card i {
    width: 30px;
    height: 30px;
    color: var(--teal);
    margin-bottom: 20px;
}

.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--text-secondary); font-size: 0.96rem; }

/* Process */
.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 34px;
}

.process-item {
    display: flex;
    gap: 28px;
    position: relative;
}

.process-number {
    flex-shrink: 0;
    width: 62px;
    height: 62px;
    background: var(--teal-glow);
    border: 1px solid rgba(45, 212, 191, 0.24);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--teal);
}

.process-content h3 { margin-bottom: 8px; }
.process-content p { color: var(--text-secondary); }

/* Contact */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-methods {
    margin-top: 34px;
    display: grid;
    gap: 22px;
}

.method-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 1rem;
    color: var(--text-secondary);
}

.method-item strong { color: var(--text-primary); }
.method-item i { color: var(--teal); width: 20px; margin-top: 3px; }
.method-item a { text-decoration: none; color: inherit; transition: var(--transition); }
.method-item a:hover { color: var(--teal); }

.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 34px;
    border-radius: var(--radius-lg);
}

.form { display: grid; gap: 18px; }
.form-group { display: grid; gap: 8px; }
.form-group label { font-size: 0.86rem; color: var(--text-secondary); }

input, textarea {
    background: rgba(0, 0, 0, 0.20);
    border: 1px solid var(--border);
    padding: 14px 16px;
    border-radius: 12px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--teal);
    background: rgba(0, 0, 0, 0.30);
    box-shadow: 0 0 0 4px rgba(45, 212, 191, 0.08);
}

textarea { min-height: 150px; resize: vertical; }

.btn-block { width: 100%; }

.form-disclaimer {
    font-size: 0.78rem;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 10px;
}

.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Alerts */
.alert {
    padding: 15px 16px;
    border-radius: 12px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.alert i { width: 18px; }

.alert-success {
    background: rgba(16, 185, 129, 0.10);
    border: 1px solid rgba(16, 185, 129, 0.30);
    color: #9ae6b4;
}

.alert-error {
    background: rgba(239, 68, 68, 0.10);
    border: 1px solid rgba(239, 68, 68, 0.30);
    color: #fca5a5;
}

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.delay-1 { transition-delay: 0.15s; }

/* Footer */
.footer {
    border-top: 1px solid var(--border);
    padding: 48px 0;
    background-color: var(--bg-alt);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
}

.footer-brand-name {
    font-size: 1.05rem;
    font-weight: 700;
}

.footer-brand p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-top: 8px;
}

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

.footer-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

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

/* Responsive */
@media (max-width: 992px) {
    .hero-grid,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero {
        padding-top: 118px;
    }

    .nav-shell {
        border-radius: 24px;
        padding: 14px 16px;
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }

    .brand-mark {
        width: 210px;
        height: 36px;
    }

    .brand-logo-cropped {
        width: 210px;
    }

    .nav-links {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
        align-items: center;
    }

    .nav-links a {
        text-align: center;
        font-size: 0.9rem;
        padding: 8px 6px;
    }

    .nav-cta {
        padding: 8px 6px;
    }
}

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

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .process-item {
        flex-direction: column;
        gap: 14px;
    }

    .process-number {
        width: 48px;
        height: 48px;
        font-size: 1rem;
        border-radius: 16px;
    }

    .section { padding: 68px 0; }

    .hero-logo {
        width: min(100%, 540px);
    }

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

    .footer-grid {
        flex-direction: column;
        text-align: center;
    }
}
