/* =========================================================
   ACQUISITION PLATFORM
   Main Website Styles
========================================================= */


/* =========================================================
   1. DESIGN TOKENS / RESET
========================================================= */

:root {
    --bg-main: #07101d;
    --bg-secondary: #0a1525;
    --bg-card: rgba(15, 29, 48, 0.72);
    --bg-card-solid: #0e1c2e;
    --bg-card-hover: #12243a;

    --border: rgba(148, 163, 184, 0.13);
    --border-bright: rgba(96, 165, 250, 0.28);

    --text-main: #f8fafc;
    --text-secondary: #aab8ca;
    --text-muted: #74839a;

    --blue: #4f8cff;
    --blue-light: #75b8ff;
    --cyan: #39d5e6;
    --green: #4ade80;
    --yellow: #facc15;

    --gradient-primary:
        linear-gradient(
            135deg,
            #4f8cff 0%,
            #63a7ff 45%,
            #39d5e6 100%
        );

    --gradient-text:
        linear-gradient(
            100deg,
            #7bb6ff 0%,
            #5f9cff 45%,
            #45d7e4 100%
        );

    --shadow-large:
        0 35px 90px rgba(0, 0, 0, 0.38);

    --shadow-card:
        0 18px 50px rgba(0, 0, 0, 0.22);

    --radius-small: 10px;
    --radius-medium: 18px;
    --radius-large: 28px;

    --container-width: 1180px;
}


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


html {
    scroll-behavior: smooth;
}


body {
    min-height: 100vh;

    background:
        radial-gradient(
            circle at 50% -20%,
            rgba(37, 99, 235, 0.13),
            transparent 42%
        ),
        var(--bg-main);

    color: var(--text-main);

    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    line-height: 1.6;

    overflow-x: hidden;
}


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


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


img {
    max-width: 100%;
}


.container {
    width: min(
        calc(100% - 40px),
        var(--container-width)
    );

    margin-inline: auto;
}


/* =========================================================
   2. HEADER
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;

    background: rgba(7, 16, 29, 0.82);

    border-bottom: 1px solid
        rgba(148, 163, 184, 0.09);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}


.nav-container {
    min-height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


.brand {
    display: inline-flex;
    align-items: center;

    gap: 12px;

    flex-shrink: 0;
}


.brand-mark {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border-radius: 11px;

    background: var(--gradient-primary);

    color: white;

    font-size: 20px;
    font-weight: 800;

    box-shadow:
        0 0 28px rgba(79, 140, 255, 0.24);
}


.brand-text {
    display: flex;
    flex-direction: column;

    color: var(--text-main);

    font-size: 14px;
    font-weight: 750;

    line-height: 1.08;

    letter-spacing: -0.01em;
}


.brand-text span {
    color: var(--blue-light);

    font-size: 11px;
    font-weight: 650;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    margin-top: 3px;
}


.desktop-nav {
    display: flex;
    align-items: center;

    gap: 34px;
}


.desktop-nav a {
    position: relative;

    color: var(--text-secondary);

    font-size: 14px;
    font-weight: 550;

    transition:
        color 0.2s ease;
}


.desktop-nav a:hover {
    color: var(--text-main);
}


.desktop-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    right: 100%;
    bottom: -8px;

    height: 2px;

    border-radius: 999px;

    background: var(--gradient-primary);

    transition:
        right 0.2s ease;
}


.desktop-nav a:hover::after {
    right: 0;
}


.nav-actions {
    display: flex;
    align-items: center;

    gap: 18px;
}


.login-link {
    color: var(--text-secondary);

    font-size: 14px;
    font-weight: 600;

    transition:
        color 0.2s ease;
}


.login-link:hover {
    color: white;
}


/* =========================================================
   3. BUTTONS
========================================================= */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 50px;

    padding:
        0 22px;

    border: 1px solid transparent;

    border-radius: 11px;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}


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


.button-small {
    min-height: 42px;

    padding:
        0 18px;
}


.button-primary {
    background: var(--gradient-primary);

    color: white;

    box-shadow:
        0 12px 30px rgba(79, 140, 255, 0.22);
}


.button-primary:hover {
    box-shadow:
        0 16px 40px rgba(79, 140, 255, 0.34);
}


.button-secondary {
    background:
        rgba(255, 255, 255, 0.035);

    border-color:
        rgba(148, 163, 184, 0.18);

    color: var(--text-main);
}


.button-secondary:hover {
    background:
        rgba(255, 255, 255, 0.07);

    border-color:
        rgba(148, 163, 184, 0.35);
}


.button-light {
    background: white;

    color: #0b1727;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.18);
}


.button-light:hover {
    box-shadow:
        0 18px 42px rgba(0, 0, 0, 0.27);
}


/* =========================================================
   4. HERO
========================================================= */

.hero {
    position: relative;

    min-height: 720px;

    display: flex;
    align-items: center;

    padding:
        105px 0 115px;

    overflow: hidden;
}


.hero::before {
    content: "";

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.018) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.018) 1px,
            transparent 1px
        );

    background-size:
        56px 56px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 82%
        );

    pointer-events: none;
}


.hero-glow {
    position: absolute;

    border-radius: 999px;

    filter: blur(90px);

    pointer-events: none;
}


.hero-glow-one {
    width: 500px;
    height: 500px;

    top: -180px;
    right: -130px;

    background:
        rgba(37, 99, 235, 0.17);
}


.hero-glow-two {
    width: 400px;
    height: 400px;

    bottom: -220px;
    left: 20%;

    background:
        rgba(6, 182, 212, 0.08);
}


.hero-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(450px, 0.9fr);

    align-items: center;

    gap: 72px;
}


.hero-content {
    max-width: 660px;
}


.eyebrow {
    width: fit-content;

    display: flex;
    align-items: center;

    gap: 9px;

    padding:
        7px 12px;

    background:
        rgba(79, 140, 255, 0.075);

    border:
        1px solid rgba(79, 140, 255, 0.16);

    border-radius: 999px;

    color: #8fbaff;

    font-size: 11px;
    font-weight: 750;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}


.eyebrow-dot {
    width: 6px;
    height: 6px;

    border-radius: 999px;

    background: var(--cyan);

    box-shadow:
        0 0 13px rgba(57, 213, 230, 0.7);
}


.hero h1 {
    max-width: 690px;

    margin-top: 25px;

    font-size:
        clamp(48px, 6vw, 76px);

    line-height: 1.04;

    letter-spacing: -0.055em;

    font-weight: 780;
}


.gradient-text {
    background:
        var(--gradient-text);

    background-clip: text;
    -webkit-background-clip: text;

    color: transparent;
    -webkit-text-fill-color: transparent;
}


.hero-description {
    max-width: 615px;

    margin-top: 26px;

    color: var(--text-secondary);

    font-size: 18px;

    line-height: 1.75;
}


.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 13px;

    margin-top: 34px;
}


.hero-trust {
    display: flex;
    flex-wrap: wrap;

    gap:
        12px 24px;

    margin-top: 30px;

    color: var(--text-muted);

    font-size: 12px;
}


.trust-item {
    display: flex;
    align-items: center;

    gap: 7px;
}


.check {
    color: var(--green);

    font-weight: 800;
}


/* =========================================================
   5. HERO DASHBOARD
========================================================= */

.hero-visual {
    position: relative;
}


.hero-visual::before {
    content: "";

    position: absolute;

    width: 80%;
    height: 75%;

    left: 10%;
    top: 15%;

    background:
        rgba(59, 130, 246, 0.18);

    filter: blur(80px);

    border-radius: 999px;

    pointer-events: none;
}


.dashboard-card {
    position: relative;

    padding: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(18, 34, 55, 0.94),
            rgba(9, 20, 34, 0.96)
        );

    border:
        1px solid rgba(126, 160, 202, 0.17);

    border-radius: 22px;

    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.035);

    backdrop-filter: blur(20px);

    transform:
        perspective(1200px)
        rotateY(-2deg)
        rotateX(1deg);
}


.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding-bottom: 21px;

    border-bottom:
        1px solid rgba(148, 163, 184, 0.1);
}


.dashboard-label {
    color: var(--text-muted);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.09em;

    text-transform: uppercase;
}


.dashboard-header h2 {
    margin-top: 4px;

    font-size: 18px;

    letter-spacing: -0.025em;
}


.live-status {
    display: flex;
    align-items: center;

    gap: 7px;

    padding:
        6px 10px;

    background:
        rgba(74, 222, 128, 0.06);

    border:
        1px solid rgba(74, 222, 128, 0.15);

    border-radius: 999px;

    color: #92e9ad;

    font-size: 10px;
    font-weight: 650;
}


.status-dot {
    width: 7px;
    height: 7px;

    border-radius: 999px;

    background: var(--green);

    box-shadow:
        0 0 10px rgba(74, 222, 128, 0.55);
}


.dashboard-stats {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 10px;

    margin-top: 17px;
}


.mini-stat {
    padding: 16px;

    background:
        rgba(255, 255, 255, 0.025);

    border:
        1px solid rgba(148, 163, 184, 0.09);

    border-radius: 12px;
}


.mini-stat span {
    display: block;

    color: var(--text-muted);

    font-size: 10px;

    margin-bottom: 4px;
}


.mini-stat strong {
    display: block;

    font-size: 23px;
    line-height: 1.2;

    letter-spacing: -0.035em;
}


.mini-stat small {
    display: block;

    margin-top: 4px;

    color: #718096;

    font-size: 9px;
}


.prospect-list {
    display: flex;
    flex-direction: column;

    gap: 8px;

    margin-top: 17px;
}


.prospect-row {
    display: grid;

    grid-template-columns:
        39px
        minmax(0, 1fr)
        auto
        auto;

    align-items: center;

    gap: 12px;

    padding: 13px;

    background:
        rgba(255, 255, 255, 0.024);

    border:
        1px solid rgba(148, 163, 184, 0.085);

    border-radius: 12px;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}


.prospect-row:hover {
    background:
        rgba(255, 255, 255, 0.045);

    border-color:
        rgba(96, 165, 250, 0.18);

    transform: translateX(3px);
}


.company-icon {
    width: 39px;
    height: 39px;

    display: grid;
    place-items: center;

    background:
        rgba(79, 140, 255, 0.1);

    border:
        1px solid rgba(79, 140, 255, 0.18);

    border-radius: 10px;

    color: #84b4ff;

    font-size: 12px;
    font-weight: 800;
}


.company-info {
    min-width: 0;
}


.company-info strong {
    display: block;

    overflow: hidden;

    color: #e9eff8;

    font-size: 11px;
    font-weight: 650;

    white-space: nowrap;
    text-overflow: ellipsis;
}


.company-info span {
    display: block;

    margin-top: 2px;

    color: var(--text-muted);

    font-size: 9px;
}


.score {
    min-width: 42px;

    text-align: center;
}


.score span {
    display: block;

    color: var(--text-muted);

    font-size: 8px;

    text-transform: uppercase;
}


.score strong {
    display: block;

    color: var(--text-main);

    font-size: 15px;
}


.status-badge {
    min-width: 68px;

    padding:
        5px 8px;

    border-radius: 999px;

    font-size: 8px;
    font-weight: 750;

    text-align: center;

    text-transform: uppercase;

    letter-spacing: 0.035em;
}


.status-badge.approved {
    background:
        rgba(74, 222, 128, 0.08);

    border:
        1px solid rgba(74, 222, 128, 0.15);

    color: #81e6a4;
}


.status-badge.review {
    background:
        rgba(250, 204, 21, 0.075);

    border:
        1px solid rgba(250, 204, 21, 0.14);

    color: #ead566;
}


.dashboard-footer {
    display: flex;
    justify-content: space-between;

    gap: 20px;

    margin-top: 17px;

    padding-top: 15px;

    border-top:
        1px solid rgba(148, 163, 184, 0.08);

    color: var(--text-muted);

    font-size: 9px;
}


/* =========================================================
   6. TRUST STRIP
========================================================= */

.trust-strip {
    padding:
        36px 0 43px;

    background:
        rgba(255, 255, 255, 0.013);

    border-top:
        1px solid rgba(148, 163, 184, 0.07);

    border-bottom:
        1px solid rgba(148, 163, 184, 0.07);
}


.trust-heading {
    margin-bottom: 24px;

    color: var(--text-muted);

    font-size: 11px;
    font-weight: 650;

    letter-spacing: 0.11em;

    text-align: center;

    text-transform: uppercase;
}


.trust-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}


.trust-grid div {
    padding:
        0 20px;

    border-right:
        1px solid rgba(148, 163, 184, 0.08);
}


.trust-grid div:last-child {
    border-right: 0;
}


.trust-grid strong {
    display: block;

    margin-bottom: 5px;

    color: #dfe8f5;

    font-size: 14px;
}


.trust-grid span {
    display: block;

    color: var(--text-muted);

    font-size: 11px;

    line-height: 1.55;
}


/* =========================================================
   7. COMMON SECTIONS
========================================================= */

.section {
    padding:
        115px 0;
}


.section-alt {
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.018),
            rgba(255, 255, 255, 0.005)
        );

    border-top:
        1px solid rgba(148, 163, 184, 0.055);

    border-bottom:
        1px solid rgba(148, 163, 184, 0.055);
}


.section-heading {
    max-width: 720px;

    margin:
        0 auto 58px;

    text-align: center;
}


.section-heading .eyebrow {
    margin-inline: auto;
}


.section-heading h2,
.why-content h2 {
    margin-top: 20px;

    font-size:
        clamp(34px, 4vw, 48px);

    line-height: 1.12;

    letter-spacing: -0.045em;
}


.section-heading p {
    max-width: 650px;

    margin:
        20px auto 0;

    color: var(--text-secondary);

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   8. PROCESS CARDS
========================================================= */

.process-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 17px;
}


.process-card {
    position: relative;

    min-height: 275px;

    padding: 26px;

    background:
        linear-gradient(
            145deg,
            rgba(18, 34, 55, 0.68),
            rgba(10, 22, 38, 0.82)
        );

    border:
        1px solid var(--border);

    border-radius: var(--radius-medium);

    overflow: hidden;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}


.process-card:hover {
    transform: translateY(-6px);

    border-color:
        rgba(96, 165, 250, 0.24);

    background:
        linear-gradient(
            145deg,
            rgba(22, 42, 67, 0.78),
            rgba(10, 22, 38, 0.9)
        );
}


.step-number {
    position: absolute;

    top: 21px;
    right: 22px;

    color:
        rgba(148, 163, 184, 0.18);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.1em;
}


.process-icon {
    width: 47px;
    height: 47px;

    display: grid;
    place-items: center;

    margin-bottom: 28px;

    background:
        rgba(79, 140, 255, 0.08);

    border:
        1px solid rgba(79, 140, 255, 0.16);

    border-radius: 12px;

    color: #82b4ff;

    font-size: 20px;
}


.process-card h3 {
    margin-bottom: 11px;

    color: #edf3fb;

    font-size: 18px;

    letter-spacing: -0.02em;
}


.process-card p {
    color: var(--text-muted);

    font-size: 13px;

    line-height: 1.75;
}


/* =========================================================
   9. SERVICES
========================================================= */

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    align-items: stretch;

    gap: 19px;
}


.service-card {
    position: relative;

    padding: 31px;

    background:
        rgba(13, 27, 45, 0.72);

    border:
        1px solid var(--border);

    border-radius: var(--radius-medium);

    box-shadow:
        var(--shadow-card);
}


.featured-service {
    border-color:
        rgba(79, 140, 255, 0.27);

    background:
        linear-gradient(
            145deg,
            rgba(25, 47, 76, 0.86),
            rgba(11, 24, 41, 0.9)
        );

    box-shadow:
        0 24px 70px rgba(37, 99, 235, 0.09);
}


.popular-label {
    position: absolute;

    top: -11px;
    right: 22px;

    padding:
        5px 10px;

    background: var(--gradient-primary);

    border-radius: 999px;

    color: white;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 0.08em;
}


.service-icon {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    margin-bottom: 24px;

    background:
        rgba(79, 140, 255, 0.08);

    border:
        1px solid rgba(79, 140, 255, 0.15);

    border-radius: 12px;

    color: #8ab8ff;

    font-size: 11px;
    font-weight: 800;
}


.service-card h3 {
    margin-bottom: 12px;

    font-size: 20px;

    letter-spacing: -0.025em;
}


.service-card > p {
    min-height: 76px;

    color: var(--text-secondary);

    font-size: 13px;

    line-height: 1.75;
}


.service-card ul {
    display: flex;
    flex-direction: column;

    gap: 10px;

    margin-top: 24px;

    padding-top: 22px;

    border-top:
        1px solid rgba(148, 163, 184, 0.08);

    list-style: none;
}


.service-card li {
    position: relative;

    padding-left: 20px;

    color: var(--text-muted);

    font-size: 12px;
}


.service-card li::before {
    content: "✓";

    position: absolute;

    left: 0;

    color: var(--green);

    font-weight: 800;
}


/* =========================================================
   10. WHY US
========================================================= */

.why-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1fr);

    align-items: center;

    gap: 90px;
}


.why-content p {
    margin-top: 20px;

    color: var(--text-secondary);

    font-size: 15px;

    line-height: 1.8;
}


.text-link {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    margin-top: 27px;

    color: #79b0ff;

    font-size: 14px;
    font-weight: 700;
}


.text-link span {
    transition:
        transform 0.2s ease;
}


.text-link:hover span {
    transform: translateX(4px);
}


.feature-stack {
    display: flex;
    flex-direction: column;

    gap: 12px;
}


.feature-row {
    display: grid;

    grid-template-columns:
        42px 1fr;

    gap: 17px;

    padding: 20px;

    background:
        rgba(255, 255, 255, 0.018);

    border:
        1px solid rgba(148, 163, 184, 0.09);

    border-radius: 14px;

    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}


.feature-row:hover {
    background:
        rgba(255, 255, 255, 0.032);

    border-color:
        rgba(96, 165, 250, 0.18);
}


.feature-check {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    background:
        rgba(74, 222, 128, 0.075);

    border:
        1px solid rgba(74, 222, 128, 0.14);

    border-radius: 10px;

    color: var(--green);

    font-size: 14px;
    font-weight: 800;
}


.feature-row h3 {
    margin-bottom: 5px;

    color: #e8eff8;

    font-size: 15px;
}


.feature-row p {
    color: var(--text-muted);

    font-size: 12px;

    line-height: 1.65;
}


/* =========================================================
   11. CTA
========================================================= */

.cta-section {
    padding:
        40px 0 115px;
}


.cta-card {
    position: relative;

    padding:
        70px 50px;

    background:
        linear-gradient(
            130deg,
            #153d78,
            #184f88 52%,
            #17647b
        );

    border:
        1px solid rgba(125, 190, 255, 0.22);

    border-radius: var(--radius-large);

    overflow: hidden;

    box-shadow:
        0 35px 90px rgba(0, 0, 0, 0.3);
}


.cta-card::before {
    content: "";

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.04) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.04) 1px,
            transparent 1px
        );

    background-size:
        42px 42px;

    mask-image:
        radial-gradient(
            circle at center,
            black,
            transparent 75%
        );
}


.cta-glow {
    position: absolute;

    width: 400px;
    height: 400px;

    top: -220px;
    right: -100px;

    background:
        rgba(78, 225, 230, 0.3);

    border-radius: 999px;

    filter: blur(70px);
}


.cta-content {
    position: relative;
    z-index: 2;

    max-width: 700px;

    margin-inline: auto;

    text-align: center;
}


.cta-content .eyebrow {
    margin-inline: auto;

    background:
        rgba(255, 255, 255, 0.09);

    border-color:
        rgba(255, 255, 255, 0.14);

    color: #d7ebff;
}


.cta-content h2 {
    margin-top: 21px;

    font-size:
        clamp(34px, 5vw, 52px);

    line-height: 1.12;

    letter-spacing: -0.045em;
}


.cta-content p {
    max-width: 560px;

    margin:
        19px auto 0;

    color:
        rgba(235, 245, 255, 0.78);

    font-size: 15px;

    line-height: 1.75;
}


.cta-actions {
    display: flex;
    justify-content: center;

    margin-top: 30px;
}


/* =========================================================
   12. FOOTER
========================================================= */

.site-footer {
    padding:
        65px 0 30px;

    background:
        rgba(4, 10, 18, 0.65);

    border-top:
        1px solid rgba(148, 163, 184, 0.07);
}


.footer-grid {
    display: grid;

    grid-template-columns:
        2fr 1fr 1fr 1fr;

    gap: 60px;

    padding-bottom: 55px;
}


.footer-brand {
    max-width: 320px;
}


.footer-brand p {
    margin-top: 18px;

    color: var(--text-muted);

    font-size: 12px;

    line-height: 1.75;
}


.footer-column {
    display: flex;
    flex-direction: column;

    gap: 10px;
}


.footer-column h3 {
    margin-bottom: 5px;

    color: #dce6f2;

    font-size: 11px;
    font-weight: 750;

    letter-spacing: 0.09em;

    text-transform: uppercase;
}


.footer-column a {
    width: fit-content;

    color: var(--text-muted);

    font-size: 12px;

    transition:
        color 0.2s ease;
}


.footer-column a:hover {
    color: #8abaff;
}


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

    gap: 20px;

    padding-top: 26px;

    border-top:
        1px solid rgba(148, 163, 184, 0.07);

    color: #617087;

    font-size: 10px;
}


.footer-status {
    display: flex;
    align-items: center;

    gap: 8px;
}


/* =========================================================
   13. RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

    .desktop-nav {
        display: none;
    }


    .hero {
        padding:
            85px 0 95px;
    }


    .hero-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }


    .hero-content {
        max-width: 760px;
    }


    .hero-visual {
        max-width: 720px;
    }


    .dashboard-card {
        transform: none;
    }


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


    .why-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }

}


@media (max-width: 820px) {

    .section {
        padding:
            90px 0;
    }


    .services-grid {
        grid-template-columns: 1fr;
    }


    .service-card > p {
        min-height: 0;
    }


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

        gap: 25px 0;
    }


    .trust-grid div:nth-child(2) {
        border-right: 0;
    }


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

        gap: 45px;
    }


    .footer-brand {
        grid-column:
            1 / -1;
    }

}


@media (max-width: 650px) {

    .container {
        width:
            min(
                calc(100% - 28px),
                var(--container-width)
            );
    }


    .site-header {
        position: relative;
    }


    .nav-container {
        min-height: 70px;
    }


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


    .brand-text {
        font-size: 12px;
    }


    .login-link {
        display: none;
    }


    .nav-actions {
        gap: 8px;
    }


    .button-small {
        min-height: 38px;

        padding:
            0 14px;

        font-size: 12px;
    }


    .hero {
        min-height: unset;

        padding:
            70px 0 80px;
    }


    .hero h1 {
        font-size:
            clamp(42px, 13vw, 58px);
    }


    .hero-description {
        font-size: 16px;
    }


    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }


    .hero-actions .button {
        width: 100%;
    }


    .hero-trust {
        flex-direction: column;

        gap: 10px;
    }


    .dashboard-card {
        padding: 16px;
    }


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


    .prospect-row {
        grid-template-columns:
            36px
            minmax(0, 1fr)
            auto;
    }


    .prospect-row .score {
        display: none;
    }


    .dashboard-footer {
        flex-direction: column;

        gap: 4px;
    }


    .trust-grid {
        grid-template-columns: 1fr;
    }


    .trust-grid div {
        padding:
            0 0 18px;

        border-right: 0;

        border-bottom:
            1px solid rgba(148, 163, 184, 0.08);
    }


    .trust-grid div:last-child {
        padding-bottom: 0;

        border-bottom: 0;
    }


    .process-grid {
        grid-template-columns: 1fr;
    }


    .process-card {
        min-height: unset;
    }


    .section-heading {
        margin-bottom: 42px;
    }


    .section-heading h2,
    .why-content h2 {
        font-size: 35px;
    }


    .cta-section {
        padding:
            20px 0 80px;
    }


    .cta-card {
        padding:
            55px 22px;

        border-radius: 20px;
    }


    .footer-grid {
        grid-template-columns: 1fr;
    }


    .footer-brand {
        grid-column: auto;
    }


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

}


/* =========================================================
   14. ACCESSIBILITY / MOTION
========================================================= */

a:focus-visible,
button:focus-visible {
    outline:
        2px solid var(--blue-light);

    outline-offset: 4px;
}


::selection {
    background:
        rgba(79, 140, 255, 0.35);

    color: white;
}


@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }


    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        transition-duration:
            0.01ms !important;

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;
    }

}


/* =========================================================
   15. SCROLL REVEAL ANIMATIONS
========================================================= */

.reveal {
    opacity: 0;

    transform: translateY(24px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}


.reveal.reveal-visible {
    opacity: 1;

    transform: translateY(0);
}