:root {
    --blue: #0877ff;
    --blue-dark: #0757c9;
    --blue-light: #eaf4ff;
    --navy: #071b33;
    --text: #0b1f33;
    --muted: #61758b;
    --border: #dfe9f2;
    --surface: #f7fafc;
    --white: #ffffff;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Inter", sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}
a {
    text-decoration: none;
    color: inherit;
}
img {
    max-width: 100%;
    display: block;
}
.container {
    width: min(1180px, calc(100% - 48px));
    margin: auto;
}
/* =========================
   NAVIGATION
========================= */
nav {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(223, 233, 242, 0.7);
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(18px);
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-inner {
    width: min(1240px, calc(100% - 48px));
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.7px;
}
.logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--blue);
    display: grid;
    place-items: center;
    color: white;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(8,119,255,.22);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
    font-size: 15px;
    font-weight: 500;
    color: #52677b;
}
.nav-links a:hover {
    color: var(--blue);
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}
.login {
    font-size: 14px;
    font-weight: 600;
}
.nav-button {
    background: var(--blue);
    color: white;
    padding: 11px 18px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 600;
    transition: .2s;
}
.nav-button:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
}
/* =========================
   HERO
========================= */
.hero {
    padding: 95px 0 90px;
    overflow: hidden;
    position: relative;
}
.hero::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    background: radial-gradient(
            circle,
            rgba(8,119,255,.09),
            transparent 68%
    );
    top: -200px;
    right: -100px;
    pointer-events: none;
}
.hero-content {
    max-width: 900px;
    margin: auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    background: var(--blue-light);
    color: var(--blue);
    border: 1px solid #d7eaff;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .4px;
    text-transform: uppercase;
    margin-bottom: 26px;
}
.eyebrow-dot {
    width: 6px;
    height: 6px;
    background: var(--blue);
    border-radius: 50%;
}
h1 {
    font-size: clamp(52px, 7vw, 88px);
    line-height: .98;
    letter-spacing: -5px;
    font-weight: 800;
    color: var(--navy);
}
h1 span {
    color: var(--blue);
}
.hero-description {
    max-width: 600px;
    margin: 20px auto 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}
.hero-buttons {
    margin-top: 50px;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    gap: 5px;
}
.primary-button {
    padding: 14px 23px;
    background: var(--blue);
    color: white;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(8,119,255,.22);
}
.secondary-button {
    padding: 14px 23px;
    border: 1px solid var(--border);
    border-radius: 9px;
    font-size: 14px;
    font-weight: 600;
    background: white;
}
/* =========================
   PRODUCT VIDEO
========================= */
.product-video-wrap {
    width: min(1360px, calc(100% - 48px));
    margin: 72px auto 0;
}
.product-video {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}
.product-video-header {
    max-width: 760px;
    width: 100%;
    margin: 0 auto 36px;
    text-align: center;
}
.product-video-title {
    font-size: clamp(28px, 4vw, 40px);
    letter-spacing: -2px;
    line-height: 1.1;
    font-weight: 800;
    color: var(--navy);
}
.product-video-description {
    margin-top: 14px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}
.product-video-frame {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: 24px;
    overflow: hidden;
    border: 6px solid #000;
    box-shadow:
            0 30px 80px rgba(19, 57, 92, 0.13),
            0 5px 20px rgba(19, 57, 92, 0.05);
    background: var(--navy);
}
.product-video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
/* =========================
   HERO VISUAL
========================= */
.hero-visual {
    margin-top: 75px;
    position: relative;
}
.map-window {
    height: 570px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #dce7f0;
    box-shadow:
            0 30px 80px rgba(19,57,92,.13),
            0 5px 20px rgba(19,57,92,.05);
    position: relative;
    background:
            linear-gradient(rgba(8,119,255,.06) 1px, transparent 1px),
            linear-gradient(90deg, rgba(8,119,255,.06) 1px, transparent 1px),
            linear-gradient(135deg, #dff1ff, #f6fbff 45%, #d8ebf7);
    background-size: 55px 55px, 55px 55px, auto;
}
.map-window::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
            radial-gradient(
                    ellipse at 35% 60%,
                    rgba(23, 141, 255, .32),
                    transparent 38%
            ),
            radial-gradient(
                    ellipse at 72% 28%,
                    rgba(8, 119, 255, .18),
                    transparent 35%
            );
}
.map-toolbar {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    z-index: 3;
}
.map-pill {
    background: rgba(255,255,255,.94);
    border: 1px solid #dce7f0;
    padding: 9px 13px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(0,0,0,.06);
}
.analysis-card {
    position: absolute;
    right: 24px;
    bottom: 24px;
    width: 260px;
    padding: 18px;
    background: rgba(255,255,255,.96);
    border: 1px solid #dce7f0;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(20,50,80,.13);
    z-index: 3;
}
.analysis-title {
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 10px;
}
.analysis-value {
    font-size: 27px;
    font-weight: 800;
    letter-spacing: -1px;
}
.analysis-label {
    font-size: 11px;
    color: var(--muted);
}
.analysis-bar {
    margin-top: 15px;
    height: 6px;
    background: #e8f0f6;
    border-radius: 10px;
    overflow: hidden;
}
.analysis-bar span {
    display: block;
    width: 78%;
    height: 100%;
    background: var(--blue);
    border-radius: inherit;
}
/* =========================
   TRUST
========================= */
.trust {
    padding: 10px 0 80px;
    text-align: center;
}
.trust p {
    font-size: 12px;
    color: #8293a3;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}
.trust-row {
    margin-top: 26px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 65px;
    color: #a6b5c2;
    font-weight: 800;
    font-size: 15px;
}
/* =========================
   SECTION
========================= */
section {
    padding: 115px 0;
}
.section-label {
    color: var(--blue);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}
.section-title {
    font-size: clamp(36px, 5vw, 58px);
    letter-spacing: -3px;
    line-height: 1.05;
    max-width: 760px;
    font-weight: 800;
}
.section-description {
    max-width: 650px;
    color: var(--muted);
    margin-top: 22px;
    font-size: 17px;
    line-height: 1.8;
}
/* =========================
   FEATURES
========================= */
.features {
    background: var(--surface);
    border-top: 1px solid #edf2f6;
    border-bottom: 1px solid #edf2f6;
}
.feature-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.feature-card {
    background: white;
    border: 1px solid var(--border);
    padding: 30px;
    border-radius: 16px;
    transition: .25s;
}
.feature-card:hover {
    transform: translateY(-5px);
    border-color: #bcdcff;
    box-shadow: 0 20px 45px rgba(20,70,110,.08);
}
.feature-number {
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 45px;
}
.feature-card h3 {
    font-size: 21px;
    letter-spacing: -.8px;
    margin-bottom: 12px;
}
.feature-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}
/* =========================
   HOW IT WORKS
========================= */
.how-it-works {
    background: var(--surface);
    border-top: 1px solid #edf2f6;
    border-bottom: 1px solid #edf2f6;
}
.hiw-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 70px;
}
.hiw-title {
    margin: 0 auto;
    color: var(--navy);
}
.hiw-description {
    margin: 22px auto 0;
}
.hiw-pipeline {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 20px;
    align-items: stretch;
}
.hiw-step {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 24px;
    border-radius: 18px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(15, 40, 70, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hiw-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(15, 40, 70, 0.08);
}
.hiw-step-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 800;
    color: var(--white);
    background: var(--blue);
}
.hiw-visual {
    width: 100%;
    aspect-ratio: 3 / 2;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #eef4f9;
}
.hiw-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hiw-copy h3 {
    font-size: 21px;
    letter-spacing: -0.8px;
    margin-bottom: 10px;
    color: var(--navy);
}
.hiw-copy p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}
.hiw-tag {
    display: inline-block;
    margin-bottom: 10px;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--blue);
    background: var(--blue-light);
}
.hiw-formats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}
.hiw-formats span {
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    color: var(--navy);
    background: var(--surface);
    border: 1px solid var(--border);
}
.hiw-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    font-size: 20px;
    font-weight: 700;
    color: #b8c7d4;
}
/* =========================
   PRODUCT SECTION
========================= */
.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}
.product-visual {
    height: 500px;
    border-radius: 20px;
    background:
            linear-gradient(rgba(8,119,255,.07) 1px, transparent 1px),
            linear-gradient(90deg, rgba(8,119,255,.07) 1px, transparent 1px),
            #f0f8ff;
    background-size: 40px 40px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}
.polygon {
    position: absolute;
    width: 270px;
    height: 190px;
    background: rgba(8,119,255,.22);
    border: 2px solid var(--blue);
    transform: rotate(-7deg);
    top: 135px;
    left: 110px;
    clip-path: polygon(
            8% 20%,
            38% 4%,
            83% 14%,
            100% 48%,
            78% 90%,
            30% 100%,
            0 62%
    );
}
.point {
    width: 10px;
    height: 10px;
    background: var(--blue);
    border: 3px solid white;
    border-radius: 50%;
    position: absolute;
    box-shadow: 0 3px 12px rgba(0,0,0,.2);
}
.point.p1 { top: 120px; left: 170px; }
.point.p2 { top: 260px; left: 350px; }
.point.p3 { top: 200px; left: 420px; }
.floating-data {
    position: absolute;
    background: white;
    border: 1px solid var(--border);
    border-radius: 11px;
    padding: 14px 16px;
    box-shadow: 0 15px 35px rgba(15,50,80,.12);
    font-size: 11px;
}
.floating-data strong {
    display: block;
    font-size: 17px;
    margin-bottom: 2px;
}
.data-one {
    top: 35px;
    right: 30px;
}
.data-two {
    bottom: 30px;
    left: 30px;
}
.check-list {
    margin-top: 30px;
    display: grid;
    gap: 15px;
}
.check {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
}
.check-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--blue-light);
    color: var(--blue);
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 800;
}
/* =========================
   NUMBERS
========================= */
.numbers {
    background: var(--navy);
    color: white;
}
.numbers .section-label {
    color: #56a9ff;
}
.numbers .section-title {
    color: white;
}
.numbers .section-description {
    color: #9fb1c3;
}
.stats {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255,255,255,.12);
}
.stat {
    padding: 35px 20px;
    border-right: 1px solid rgba(255,255,255,.12);
}
.stat:last-child {
    border-right: 0;
}
.stat-value {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -2px;
}
.stat-label {
    margin-top: 6px;
    font-size: 12px;
    color: #94a9bd;
}
/* =========================
   USE CASES
========================= */
.use-case-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 18px;
}
.use-case {
    min-height: 290px;
    border-radius: 18px;
    border: 1px solid var(--border);
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    background: linear-gradient(
            145deg,
            #f1f9ff,
            white
    );
}
.use-case.large {
    min-height: 410px;
    background:
            radial-gradient(
                    circle at 70% 30%,
                    rgba(8,119,255,.16),
                    transparent 35%
            ),
            linear-gradient(145deg,#e8f5ff,#ffffff);
}
.use-case-icon {
    position: absolute;
    top: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: white;
    border: 1px solid var(--border);
    display: grid;
    place-items: center;
    color: var(--blue);
    font-weight: 800;
}
.use-case h3 {
    font-size: 23px;
    letter-spacing: -1px;
}
.use-case p {
    margin-top: 8px;
    font-size: 13px;
    color: var(--muted);
    max-width: 390px;
}
/* =========================
   CTA
========================= */
.cta {
    padding: 110px 0;
}
.cta-box {
    border-radius: 25px;
    background:
            radial-gradient(
                    circle at 80% 20%,
                    rgba(255,255,255,.14),
                    transparent 30%
            ),
            var(--blue);
    padding: 80px;
    text-align: center;
    color: white;
    overflow: hidden;
    position: relative;
}
.cta-box h2 {
    font-size: clamp(38px,5vw,62px);
    line-height: 1;
    letter-spacing: -3px;
    max-width: 750px;
    margin: auto;
}
.cta-box p {
    margin: 22px auto 30px;
    max-width: 580px;
    color: #d9ecff;
    font-size: 16px;
}
.cta-button {
    display: inline-block;
    background: white;
    color: var(--blue);
    padding: 14px 24px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 800;
}
/* =========================
   FOOTER
========================= */
footer {
    border-top: 1px solid var(--border);
    padding: 55px 0 30px;
}
.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}
.footer-description {
    color: var(--muted);
    max-width: 340px;
    font-size: 13px;
    margin-top: 15px;
}
.footer-links {
    display: flex;
    gap: 70px;
}
.footer-column h4 {
    font-size: 12px;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-column a {
    display: block;
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 10px;
}
.footer-column a:hover {
    color: var(--blue);
}
.copyright {
    border-top: 1px solid var(--border);
    margin-top: 50px;
    padding-top: 25px;
    font-size: 11px;
    color: #8a9aaa;
}
/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }
    .feature-grid,
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-grid {
        grid-template-columns: 1fr;
    }
    .use-case-grid {
        grid-template-columns: 1fr;
    }
    .footer-top {
        flex-direction: column;
    }
    .hiw-pipeline {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .hiw-connector {
        min-height: 28px;
        transform: rotate(90deg);
    }
}
@media (max-width: 600px) {
    .container {
        width: min(100% - 32px, 1180px);
    }
    .nav-inner {
        width: calc(100% - 32px);
    }
    .nav-actions .login {
        display: none;
    }
    .hero {
        padding-top: 65px;
    }
    h1 {
        letter-spacing: -3px;
        font-size: 52px;
    }
    .hero-description {
        font-size: 16px;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .hero-buttons a {
        width: 100%;
    }
    .video-wrapper {
        width: calc(100% - 32px);
        margin-top: 48px;
        border-width: 6px;
    }
    .product-video-header {
        margin-bottom: 24px;
    }
    .product-video-title {
        letter-spacing: -1.5px;
    }
    .product-video-description {
        font-size: 15px;
    }
    .product-video-frame {
        border-radius: 16px;
    }
    .map-window {
        height: 430px;
    }
    .analysis-card {
        width: 210px;
    }
    section {
        padding: 80px 0;
    }
    .hiw-header {
        margin-bottom: 48px;
    }
    .hiw-step {
        padding: 24px 20px 26px;
    }
    .hiw-copy h3 {
        font-size: 20px;
    }
    .feature-grid,
    .stats {
        grid-template-columns: 1fr;
    }
    .stat {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.12);
    }
    .product-visual {
        height: 400px;
    }
    .polygon {
        left: 50px;
    }
    .floating-data {
        transform: scale(.9);
    }
    .cta-box {
        padding: 55px 25px;
    }
    .footer-links {
        flex-wrap: wrap;
        gap: 40px;
    }
}
.video-wrapper {
    position: relative;
    width: min(1360px, calc(100% - 48px));
    margin: 72px auto 0;
    aspect-ratio: 16 / 9;
    border: 8px solid #000;
    box-sizing: border-box;
    background: #000;
    overflow: hidden;
}
.video-wrapper iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}
.industries {
    padding: 140px 0;
    background: #f7f9fb;
}
.industries-header {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: end;
    margin-bottom: 60px;
}
.industries-header .section-title {
    margin-top: 20px;
}
.industries-header .section-description {
    margin: 0;
    max-width: 420px;
}
/* GRID */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
/* CARD */
.industry-card {
    position: relative;
    height: 430px;
    overflow: hidden;
    border-radius: 4px;
    background: #0b1720;
    color: white;
}
.industry-card.industry-large {
    grid-row: span 2;
    height: 878px;
}
.industry-card.industry-wide {
    grid-column: span 2;
}
/* IMAGE */
.industry-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
            transform 0.7s ease,
            filter 0.7s ease;
}
.industry-card:hover img {
    transform: scale(1.05);
}
/* OVERLAY */
.industry-overlay {
    position: absolute;
    inset: 0;
    background:
            linear-gradient(
                    to bottom,
                    rgba(0, 0, 0, 0.05) 20%,
                    rgba(0, 0, 0, 0.15) 40%,
                    rgba(0, 0, 0, 0.85) 100%
            );
}
/* CONTENT */
.industry-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px;
}
.industry-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
}
.industry-top span:first-child {
    opacity: 0.7;
}
.industry-content h3 {
    margin: 0 0 12px;
    font-size: 32px;
    line-height: 1.05;
    letter-spacing: -0.03em;
}
.industry-content p {
    max-width: 430px;
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
}
/* LARGE CARD */
.industry-large .industry-content h3 {
    font-size: 46px;
}
.industry-large .industry-content p {
    max-width: 460px;
}
/* MOBILE */
@media (max-width: 800px) {
    .industries {
        padding: 90px 0;
    }
    .industries-header {
        display: block;
        margin-bottom: 40px;
    }
    .industries-header .section-description {
        margin-top: 25px;
    }
    .industry-grid {
        grid-template-columns: 1fr;
    }
    .industry-card,
    .industry-card.industry-large,
    .industry-card.industry-wide {
        grid-column: auto;
        grid-row: auto;
        height: 400px;
    }
    .industry-large .industry-content h3 {
        font-size: 36px;
    }
}
.pricing {
    padding: 140px 0;
    background: #ffffff;
}
.pricing-header {
    max-width: 760px;
    margin-bottom: 70px;
}
.pricing-header .section-title {
    margin-top: 20px;
}
.pricing-header .section-description {
    max-width: 580px;
    margin-top: 24px;
}
/* GRID */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
/* CARD */
.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 560px;
    padding: 34px;
    border: 1px solid #dfe5e9;
    border-radius: 4px;
    background: #ffffff;
}
/* FEATURED */
.pricing-featured {
    border: 1px solid var(--blue);
    box-shadow: 0 20px 50px rgba(8, 119, 255, 0.08);
}
/* BADGE */
.pricing-badge {
    position: absolute;
    top: -1px;
    right: 28px;
    padding: 7px 12px;
    background: var(--blue);
    color: white;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
}
/* NAME */
.pricing-name {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--blue);
}
.pricing-card-top p {
    max-width: 260px;
    margin: 14px 0 35px;
    font-size: 14px;
    line-height: 1.6;
    color: #68747c;
}
/* PRICE */
.pricing-price {
    font-size: 52px;
    font-weight: 600;
    letter-spacing: -0.05em;
    color: #111820;
}
.pricing-price .currency {
    margin-right: 3px;
    font-size: 24px;
    vertical-align: top;
}
.pricing-custom {
    font-size: 42px;
}
.pricing-period {
    margin-top: 4px;
    font-size: 12px;
    color: #8a959c;
}
/* DIVIDER */
.pricing-divider {
    height: 1px;
    margin: 30px 0;
    background: #e7ecef;
}
/* FEATURES */
.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.pricing-features li {
    display: flex;
    gap: 12px;
    font-size: 14px;
    color: #39444b;
}
.pricing-features li span {
    color: var(--blue);
    font-weight: 700;
}
/* BUTTON */
.pricing-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: auto;
    padding: 14px 20px;
    border: 1px solid #cfd8dd;
    border-radius: 3px;
    color: var(--blue);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s ease;
}
.pricing-button:hover {
    background: var(--blue-light);
}
.pricing-featured .pricing-button {
    border-color: var(--blue);
    background: var(--blue);
    color: white;
}
.pricing-featured .pricing-button:hover {
    background: var(--blue-dark);
}
/* MOBILE */
@media (max-width: 850px) {
    .pricing {
        padding: 90px 0;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .pricing-card {
        min-height: auto;
    }
}
.contact {
    padding: 140px 0 50px;
    background: #f7f9fb;
}
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}
/* LEFT */
.contact-content {
    padding-top: 15px;
}
.contact-content .section-title {
    margin-top: 20px;
}
.contact-content .section-description {
    max-width: 520px;
    margin-top: 25px;
}
/* CONTACT DETAILS */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 50px;
}
.contact-detail {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.contact-detail-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--blue);
}
.contact-detail a,
.contact-detail > span:last-child {
    font-size: 14px;
    color: #28343b;
    text-decoration: none;
}
/* FORM */
.contact-form-wrapper {
    padding: 38px;
    background: white;
    border: 1px solid #dfe5e9;
    border-radius: 4px;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-group label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #303b42;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 13px 14px;
    border: 1px solid #d8e0e4;
    border-radius: 3px;
    outline: none;
    background: #ffffff;
    font-family: inherit;
    font-size: 14px;
    color: #182128;
    transition:
            border-color 0.2s ease,
            box-shadow 0.2s ease;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9aa5ab;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(8, 119, 255, 0.15);
}
.form-group textarea {
    resize: vertical;
    min-height: 130px;
}
/* BUTTON */
.contact-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px 18px;
    border: none;
    border-radius: 3px;
    background: var(--blue);
    color: white;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition:
            background 0.2s ease,
            transform 0.2s ease;
}
.contact-button span {
    font-size: 18px;
}
.contact-button:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
}
/* FOOTER LINE */
.contact-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 100px;
    padding-top: 25px;
    border-top: 1px solid #dfe5e9;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: #8b969d;
}
/* MOBILE */
@media (max-width: 800px) {
    .contact {
        padding: 90px 0 40px;
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .contact-form-wrapper {
        padding: 25px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-footer {
        margin-top: 60px;
    }
}