@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Montserrat:wght@600;700;800&display=swap');

:root {
    --bg: #070907;
    --bg-soft: #0c110e;
    --card: rgba(15, 21, 17, .84);
    --card-2: rgba(10, 15, 12, .92);
    --text: #f5f7f5;
    --muted: #9aa39d;
    --line: rgba(255,255,255,.08);
    --green: #079447;
    --green-2: #0fbd61;
    --red: #ef1739;
    --red-2: #ff3c59;
    --shadow: 0 24px 70px rgba(0,0,0,.34);
    --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background:
        radial-gradient(circle at 18% 18%, rgba(0,145,69,.13), transparent 28%),
        radial-gradient(circle at 82% 12%, rgba(239,23,57,.08), transparent 22%),
        var(--bg);
    color: var(--text);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.noise {
    pointer-events: none;
    position: fixed;
    inset: 0;
    opacity: .12;
    z-index: 999;
    mix-blend-mode: soft-light;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
}

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(7,9,7,.64);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,.05);
    transition: .3s ease;
}
.topbar.scrolled { background: rgba(7,9,7,.92); }

.nav {
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}
.brand img {
    width: 230px;
    height: 52px;
    object-fit: contain;
    object-position: left center;
}
.menu {
    display: flex;
    align-items: center;
    gap: 34px;
    margin-left: auto;
}
.menu a {
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    transition: .2s ease;
}
.menu a:hover { color: #fff; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border: 0;
    border-radius: 14px;
    color: white;
    font-weight: 800;
    background: linear-gradient(135deg, var(--green), var(--green-2));
    box-shadow: 0 14px 34px rgba(5,148,71,.2);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(5,148,71,.28);
    filter: brightness(1.05);
}
.btn-small {
    min-height: 44px;
    padding: 0 18px;
    font-size: 14px;
}
.btn-ghost {
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: none;
    color: #e7ebe8;
}
.btn-ghost:hover { box-shadow: none; background: rgba(255,255,255,.075); }

.hero {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    padding: 150px 0 88px;
    isolation: isolate;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 82%);
    z-index: -2;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    align-items: center;
    gap: 64px;
}
.hero-content { max-width: 650px; }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #9ce4bb;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .16em;
}
.eyebrow::before {
    content: "";
    width: 26px;
    height: 2px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--green-2), var(--red));
}
h1, h2, h3 {
    font-family: Montserrat, Inter, sans-serif;
    margin-top: 0;
}
.hero h1 {
    margin: 20px 0 20px;
    font-size: clamp(44px, 6vw, 78px);
    line-height: .99;
    letter-spacing: -.05em;
}
.hero h1 span {
    background: linear-gradient(95deg, #fff 8%, #77dfa3 44%, #ff4260 92%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-content > p {
    margin: 0;
    max-width: 590px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.78;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}
.trust-row {
    display: flex;
    gap: 32px;
    margin-top: 44px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}
.trust-row div { display: grid; gap: 4px; }
.trust-row strong { font-size: 14px; }
.trust-row span { color: var(--muted); font-size: 12px; }

.hero-logo { position: relative; }
.logo-card {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 390px;
    padding: 44px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 36px;
    background:
        radial-gradient(circle at 50% 0, rgba(24,197,95,.11), transparent 34%),
        linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.015));
    box-shadow: var(--shadow);
}
.logo-card::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 35px;
    box-shadow: inset 0 0 80px rgba(255,255,255,.025);
    pointer-events: none;
}
.logo-card img {
    width: min(100%, 560px);
    position: relative;
    z-index: 2;
    border-radius: 10px;
    mix-blend-mode: screen;
}
.logo-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(5,148,71,.18);
    filter: blur(64px);
    animation: pulseGlow 5s ease-in-out infinite;
}
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .18;
    z-index: -1;
}
.orb-green { width: 340px; height: 340px; left: -120px; top: 180px; background: var(--green-2); }
.orb-red { width: 280px; height: 280px; right: -100px; bottom: 80px; background: var(--red); }

.about { padding: 110px 0; background: #0a0e0b; border-top: 1px solid var(--line); }
.section-heading { max-width: 760px; }
.section-heading h2,
.contact-copy h2 {
    margin: 16px 0;
    font-size: clamp(34px, 4.7vw, 54px);
    line-height: 1.08;
    letter-spacing: -.035em;
}
.section-heading p,
.contact-copy > p {
    color: var(--muted);
    line-height: 1.75;
    font-size: 17px;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 48px;
}
.feature-card {
    min-height: 240px;
    padding: 28px;
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(255,255,255,.042), rgba(255,255,255,.018));
    border: 1px solid var(--line);
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(15,189,97,.28);
    background: linear-gradient(145deg, rgba(15,189,97,.07), rgba(255,255,255,.018));
}
.feature-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 28px;
    border-radius: 14px;
    background: rgba(5,148,71,.12);
    border: 1px solid rgba(15,189,97,.16);
}
.feature-icon svg {
    width: 25px;
    fill: var(--green-2);
}
.feature-card h3 { margin-bottom: 10px; font-size: 19px; }
.feature-card p { margin: 0; color: var(--muted); line-height: 1.65; font-size: 14px; }

.contact-section { padding: 120px 0; }
.contact-grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 72px;
    align-items: start;
}
.contact-copy { position: sticky; top: 132px; }
.contact-copy > p { max-width: 500px; }
.contact-note {
    display: flex;
    gap: 16px;
    margin-top: 34px;
    padding: 20px;
    max-width: 440px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.025);
}
.contact-note > span {
    flex: 0 0 auto;
    width: 10px;
    height: 10px;
    margin-top: 7px;
    border-radius: 50%;
    background: var(--green-2);
    box-shadow: 0 0 0 7px rgba(15,189,97,.10);
}
.contact-note strong { display: block; margin-bottom: 5px; }
.contact-note p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }

.form-card {
    padding: 34px;
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: var(--shadow);
}
.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.field { margin-bottom: 18px; }
.field label {
    display: block;
    margin-bottom: 8px;
    color: #dfe5e1;
    font-size: 13px;
    font-weight: 700;
}
.field input,
.field textarea {
    width: 100%;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 14px;
    outline: none;
    color: white;
    background: rgba(0,0,0,.22);
    padding: 15px 16px;
    transition: .2s ease;
}
.field textarea { resize: vertical; min-height: 150px; }
.field input::placeholder,
.field textarea::placeholder { color: #68716b; }
.field input:focus,
.field textarea:focus {
    border-color: rgba(15,189,97,.6);
    box-shadow: 0 0 0 4px rgba(15,189,97,.08);
    background: rgba(0,0,0,.33);
}
.submit-btn {
    width: 100%;
    margin-top: 2px;
    gap: 10px;
}
.submit-btn svg { width: 18px; fill: currentColor; }
.hp-field { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; }

.alert {
    padding: 14px 16px;
    margin-bottom: 22px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
}
.alert-success {
    color: #bff6d4;
    background: rgba(15,189,97,.11);
    border: 1px solid rgba(15,189,97,.22);
}
.alert-error {
    color: #ffbec9;
    background: rgba(239,23,57,.10);
    border: 1px solid rgba(239,23,57,.20);
}

footer {
    border-top: 1px solid var(--line);
    background: #060806;
}
.footer-inner {
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.footer-inner img {
    width: 200px;
    max-height: 48px;
    object-fit: contain;
    object-position: left center;
}
.footer-inner p {
    margin: 0;
    color: #6f7872;
    font-size: 13px;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }

@keyframes pulseGlow {
    0%, 100% { transform: scale(.85); opacity: .7; }
    50% { transform: scale(1.16); opacity: 1; }
}

@media (max-width: 960px) {
    .menu { display: none; }
    .hero { min-height: auto; padding-top: 132px; }
    .hero-grid,
    .contact-grid { grid-template-columns: 1fr; }
    .hero-grid { gap: 42px; }
    .hero-logo { max-width: 720px; }
    .logo-card { min-height: 300px; }
    .features { grid-template-columns: 1fr; }
    .feature-card { min-height: auto; }
    .contact-copy { position: static; }
    .contact-grid { gap: 44px; }
}

@media (max-width: 640px) {
    .container { width: min(100% - 28px, 1180px); }
    .nav { height: 74px; }
    .brand img { width: 178px; height: 42px; }
    .nav > .btn { display: none; }
    .hero { padding: 118px 0 68px; }
    .hero h1 { font-size: clamp(42px, 14vw, 62px); }
    .hero-content > p { font-size: 16px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .trust-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }
    .logo-card {
        min-height: 240px;
        padding: 22px;
        border-radius: 26px;
    }
    .about, .contact-section { padding: 82px 0; }
    .section-heading h2, .contact-copy h2 { font-size: 36px; }
    .field-row { grid-template-columns: 1fr; gap: 0; }
    .form-card { padding: 22px; border-radius: 22px; }
    .footer-inner {
        min-height: 145px;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
    .footer-inner img { object-position: center; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
