:root {
    --background: #0c0d11;
    --background-soft: #141419;
    --surface: #1b1b22;
    --surface-light: #262229;
    --text: #f7f8fa;
    --text-muted: #aeb3bb;
    --border: rgba(255, 255, 255, 0.11);
    --primary: #ff641f;
    --primary-hover: #e95212;
    --accent: #ff0f39;
    --success: #54d19b;
    --max-width: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--background);
    color: var(--text);
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

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

@media (max-width: 575.98px) {
    .d-none{
        display: none;
    }
}

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(var(--max-width), calc(100% - 40px));
    margin-inline: auto;
}

.eyebrow {
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 48px;
}

.section-heading h2 {
    margin-top: 12px;
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.section-heading p {
    margin-top: 18px;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 750;
    transition: 0.2s ease;
    white-space: nowrap;
}

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

.button-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.button-secondary {
    border-color: var(--border);
    background: rgba(255, 255, 255, 0.04);
    color: white;
}

.button-secondary:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
}

/* Navigation */

.navigation {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border);
    background: rgba(12, 13, 17, 0.9);
    backdrop-filter: blur(16px);
}

.navigation-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

.logo-image {
    display: block;
    width: clamp(176px, 20vw, 242px);
    height: auto;
}

.navigation-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.navigation-links a {
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 650;
}

.navigation-links a:hover {
    color: white;
}

/* Hero */

.hero {
    position: relative;
    overflow: hidden;
    padding: 110px 0 100px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.22;
    background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: linear-gradient(to bottom, black, transparent);
}

.hero::after {
    content: "";
    position: absolute;
    top: -250px;
    right: -150px;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 35%, rgba(255, 15, 57, 0.18), transparent 42%),
        rgba(255, 100, 31, 0.12);
    filter: blur(100px);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 70px;
}

.hero h1 {
    max-width: 760px;
    margin-top: 20px;
    font-size: clamp(3rem, 7vw, 5.9rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.hero h1 span {
    color: var(--primary);
}

.hero-description {
    max-width: 650px;
    margin-top: 28px;
    color: var(--text-muted);
    font-size: 1.15rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 38px;
}

.hero-note {
    margin-top: 22px;
    color: var(--text-muted);
    font-size: 0.88rem;
}

/* Dashboard visual */

.dashboard-visual {
    position: relative;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(27, 27, 34, 0.88);
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.35);
    transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
}

.dashboard-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 100, 31, 0.11), transparent 42%);
}

.window-bar,
.dashboard-title,
.dashboard-metrics,
.dashboard-content {
    position: relative;
}

.window-bar {
    display: flex;
    align-items: center;
    gap: 7px;
    padding-bottom: 18px;
}

.window-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #636774;
}

.window-dot:first-child {
    background: var(--primary);
}

.dashboard-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.dashboard-title strong {
    font-size: 1.05rem;
}

.live-status {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--success);
    font-size: 0.78rem;
    font-weight: 700;
}

.live-status::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
}

.dashboard-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 10px;
}

.dashboard-metric,
.dashboard-form,
.dashboard-process {
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--background-soft);
}

.dashboard-metric {
    padding: 15px;
}

.dashboard-metric span {
    display: block;
    color: var(--text-muted);
    font-size: 0.68rem;
}

.dashboard-metric strong {
    font-size: 1.45rem;
}

.dashboard-content {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 10px;
}

.dashboard-form,
.dashboard-process {
    padding: 16px;
}

.mock-label {
    display: block;
    margin: 13px 0 6px;
    color: var(--text-muted);
    font-size: 0.7rem;
}

.mock-input {
    height: 34px;
    border: 1px solid var(--border);
    border-radius: 5px;
    background: var(--surface);
}

.mock-upload {
    height: 75px;
    margin-top: 12px;
    display: grid;
    place-items: center;
    border: 1px dashed #737782;
    border-radius: 6px;
    color: var(--text-muted);
    font-size: 0.7rem;
    text-align: center;
}

.process-item {
    position: relative;
    margin-top: 13px;
    padding-left: 20px;
    color: var(--text-muted);
    font-size: 0.72rem;
}

.process-item::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    width: 7px;
    height: 7px;
    border: 2px solid var(--primary);
    border-radius: 50%;
}

/* Benefits */

.benefits {
    padding: 95px 0;
    border-top: 1px solid var(--border);
    background: var(--background-soft);
}

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

.benefit {
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface);
}

.benefit-number {
    color: var(--primary);
    font-family: monospace;
    font-size: 0.85rem;
    font-weight: 800;
}

.benefit h3 {
    margin-top: 28px;
    font-size: 1.25rem;
}

.benefit p {
    margin-top: 12px;
    color: var(--text-muted);
    font-size: 0.94rem;
}

/* Services */

.services {
    padding: 105px 0;
}

.service-list {
    border-top: 1px solid var(--border);
}

.service {
    display: grid;
    grid-template-columns: 80px 1fr 1.1fr;
    gap: 30px;
    padding: 34px 0;
    border-bottom: 1px solid var(--border);
}

.service-number {
    color: var(--primary);
    font-family: monospace;
    font-weight: 750;
}

.service h3 {
    font-size: 1.35rem;
}

.service p {
    color: var(--text-muted);
}

/* Industries */

.industries {
    padding: 95px 0;
    background: var(--surface);
}

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

.industry {
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 9px;
    background: var(--background-soft);
    font-weight: 720;
}

.industry span {
    display: block;
    margin-top: 5px;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 400;
}

/* Process */

.process {
    padding: 105px 0;
}

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

.process-step {
    position: relative;
    padding-top: 26px;
    border-top: 2px solid var(--border);
}

.process-step::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
}

.process-step small {
    color: var(--primary);
    font-weight: 800;
}

.process-step h3 {
    margin-top: 13px;
    font-size: 1.15rem;
}

.process-step p {
    margin-top: 9px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Contact */

.contact {
    padding: 105px 0;
    background:
        linear-gradient(120deg, rgba(255, 100, 31, 0.12), transparent 45%),
        var(--background-soft);
}

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

.contact h2 {
    margin-top: 13px;
    font-size: clamp(2.3rem, 5vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.contact-copy {
    margin-top: 20px;
    color: var(--text-muted);
}

.contact-points {
    margin-top: 32px;
    display: grid;
    gap: 13px;
}

.contact-point {
    display: flex;
    gap: 11px;
    color: var(--text-muted);
}

.contact-point::before {
    content: "✓";
    color: var(--primary);
    font-weight: 900;
}

.contact-form {
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--surface);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-field {
    display: grid;
    gap: 7px;
}

.form-field-full {
    grid-column: 1 / -1;
}

.form-field label {
    font-size: 0.86rem;
    font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid var(--border);
    border-radius: 7px;
    outline: none;
    background: var(--background-soft);
    color: white;
}

.form-field textarea {
    min-height: 130px;
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 100, 31, 0.12);
}

.contact-form .button {
    width: 100%;
    margin-top: 20px;
}

.form-note {
    margin-top: 12px;
    color: var(--text-muted);
    font-size: 0.75rem;
    text-align: center;
}

.form-note a {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.contact-response {
    min-height: 100vh;
    display: grid;
    align-items: center;
    padding: 80px 0;
    background:
        linear-gradient(120deg, rgba(255, 100, 31, 0.12), transparent 45%),
        var(--background);
}

.contact-response-inner {
    max-width: 680px;
}

.contact-response h1 {
    margin-top: 12px;
    font-size: clamp(2.4rem, 6vw, 4.4rem);
    line-height: 1;
    letter-spacing: -0.045em;
}

.contact-response p:not(.eyebrow) {
    margin-top: 22px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.contact-response .button {
    margin-top: 32px;
}

/* Footer */

footer {
    padding: 28px 0;
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: var(--text-muted);
    font-size: 0.82rem;
}

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

.footer-links a:hover,
.footer-links a[aria-current="page"] {
    color: var(--text);
}

/* Legal pages */

.legal-hero {
    padding: 92px 0 62px;
    border-bottom: 1px solid var(--border);
    background:
        linear-gradient(120deg, rgba(255, 100, 31, 0.12), transparent 44%),
        var(--background-soft);
}

.legal-hero h1 {
    margin-top: 14px;
    font-size: clamp(2.6rem, 6vw, 4.8rem);
    line-height: 1;
    letter-spacing: 0;
}

.legal-section {
    padding: 74px 0 98px;
}

.legal-content {
    max-width: 860px;
}

.legal-content article + article {
    margin-top: 34px;
    padding-top: 34px;
    border-top: 1px solid var(--border);
}

.legal-content h2 {
    margin-bottom: 12px;
    font-size: clamp(1.3rem, 2vw, 1.75rem);
    line-height: 1.2;
    letter-spacing: 0;
}

.legal-content p {
    color: var(--text-muted);
}

.legal-content p + p {
    margin-top: 14px;
}

.legal-content a {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

/* Responsive */

@media (max-width: 900px) {
    .hero-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-visual {
        transform: none;
    }

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

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

    .service {
        grid-template-columns: 50px 1fr;
    }

    .service p {
        grid-column: 2;
    }
}

@media (max-width: 650px) {
    .container {
        width: min(100% - 28px, var(--max-width));
    }

    .navigation-inner {
        gap: 14px;
    }

    .logo-image {
        width: 158px;
    }

    .navigation-links {
        gap: 14px;
    }

    .navigation-links a:not(.button) {
        display: none;
    }

    .navigation-links .button {
        min-height: 42px;
        padding-inline: 15px;
        font-size: 0.82rem;
    }

    .hero {
        padding: 75px 0;
    }

    .hero h1 {
        font-size: 3.2rem;
    }

    .dashboard-metrics,
    .dashboard-content,
    .benefit-grid,
    .industry-grid,
    .process-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .service {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .service p {
        grid-column: 1;
    }

    .form-field-full {
        grid-column: auto;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .legal-hero {
        padding: 70px 0 46px;
    }

    .legal-section {
        padding: 54px 0 72px;
    }
}

@media (max-width: 420px) {
    .logo-image {
        width: 138px;
    }

    .navigation-links .button {
        padding-inline: 10px;
        font-size: 0.74rem;
    }

    .hero h1 {
        font-size: 2.75rem;
    }
}
