:root {
    --bg: #05080d;
    --bg-2: #080d14;
    --panel: rgba(255, 255, 255, 0.045);
    --panel-soft: rgba(255, 255, 255, 0.035);
    --panel-hover: rgba(121, 184, 255, 0.065);
    --border: rgba(255, 255, 255, 0.075);
    --border-soft: rgba(255, 255, 255, 0.055);
    --border-blue: rgba(121, 184, 255, 0.32);
    --text: #f7fbff;
    --muted: #c5d0dc;
    --muted-2: #9fb1c1;
    --blue: #1f6feb;
    --cyan: #0fb5d6;
    --gold: #f0c77b;
    --green: #9ef0b4;
    --danger: #ffb3b3;
    --shadow: 0 18px 55px rgba(0, 0, 0, 0.22);
    --shadow-strong: 0 28px 90px rgba(0, 0, 0, 0.38);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    background:
        radial-gradient(circle at top right, rgba(31, 111, 235, 0.16), transparent 34rem),
        radial-gradient(circle at top left, rgba(15, 181, 214, 0.08), transparent 28rem),
        linear-gradient(135deg, #05080d 0%, #080d14 55%, #05080d 100%);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 76%);
    z-index: -1;
}

a {
    color: inherit;
}

img,
svg {
    max-width: 100%;
}

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

::selection {
    background: rgba(121, 184, 255, 0.32);
    color: #ffffff;
}

.container {
    max-width: 1180px;
}

.site-wide-wrap {
    width: 100%;
    max-width: 1280px;
}

.nav-wide-wrap {
    display: flex;
    align-items: center;
    width: 100%;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -4rem;
    z-index: 9999;
    display: inline-flex;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    color: #ffffff;
    background: #1f6feb;
    text-decoration: none;
    font-weight: 800;
}

.skip-link:focus {
    top: 1rem;
}

.site-navbar {
    min-height: 72px;
    background: rgba(3, 8, 15, 0.94);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(14px);
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 1.15rem !important;
    font-weight: 850 !important;
    letter-spacing: -0.035em;
    white-space: nowrap;
}

.navbar-brand:hover,
.navbar-brand:focus {
    color: #79b8ff !important;
}

.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(31, 111, 235, 0.25);
    flex: 0 0 auto;
}

.navbar-nav {
    gap: 0.65rem;
}

.nav-link {
    color: #d8e1ea !important;
    font-size: 0.93rem;
    font-weight: 750;
    padding: 0.55rem 0.7rem !important;
    border-radius: 12px;
    transition:
        color 160ms ease,
        background 160ms ease;
}

.nav-link:hover,
.nav-link:focus {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.055);
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: #ffffff;
    min-height: 40px;
    margin-left: auto;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(31, 111, 235, 0.24);
}

.nav-btn {
    min-width: 128px;
    min-height: 40px;
    border-radius: 12px;
    font-weight: 800;
}

.btn {
    border-radius: 12px;
    font-weight: 800;
    border-width: 1px;
    transition:
        background 160ms ease,
        border-color 160ms ease,
        color 160ms ease,
        transform 160ms ease,
        box-shadow 160ms ease;
}

.btn:hover,
.btn:focus {
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background: linear-gradient(135deg, #1f6feb, #0fb5d6);
    border-color: rgba(121, 184, 255, 0.35);
    color: #ffffff;
    box-shadow: 0 14px 32px rgba(31, 111, 235, 0.18);
}

.btn-primary:hover,
.btn-primary:focus {
    background: linear-gradient(135deg, #2f7cf0, #11c2e5);
    border-color: rgba(121, 184, 255, 0.55);
    color: #ffffff;
}

.btn-outline-light,
.btn-outline-soft {
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.09);
    color: #ffffff;
}

.btn-outline-light:hover,
.btn-outline-light:focus,
.btn-outline-soft:hover,
.btn-outline-soft:focus {
    background: rgba(255, 255, 255, 0.105);
    border-color: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

.btn-dark-flat {
    width: 100%;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1f6feb, #0fb5d6);
    border: 1px solid rgba(121, 184, 255, 0.35);
    color: #ffffff;
    border-radius: 12px;
    font-weight: 850;
    text-decoration: none;
    box-shadow: 0 14px 32px rgba(31, 111, 235, 0.18);
}

.btn-dark-flat:hover,
.btn-dark-flat:focus {
    background: linear-gradient(135deg, #2f7cf0, #11c2e5);
    border-color: rgba(121, 184, 255, 0.55);
    color: #ffffff;
    text-decoration: none;
}

.hero-section,
.platform-section,
.top-features-section,
.steps-section,
.use-case-section,
.pricing-section,
.cta-section,
.legal-hero-section,
.legal-content-section {
    padding: 4.25rem 1.25rem;
    background:
        radial-gradient(circle at top right, rgba(31, 111, 235, 0.08), transparent 30rem),
        linear-gradient(135deg, #05080d 0%, #080d14 55%, #05080d 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.hero-section,
.legal-hero-section {
    padding-top: 1.25rem;
}

.hero-card,
.legal-hero-card {
    background:
        radial-gradient(circle at top right, rgba(31, 111, 235, 0.11), transparent 26rem),
        var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
    padding: clamp(1.2rem, 3vw, 2.25rem);
    overflow: hidden;
}

.hero-card-wide {
    max-width: 100%;
}

.hero-kicker {
    color: var(--gold);
    font-size: 0.88rem;
    font-weight: 850;
    margin-bottom: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    letter-spacing: 0.02em;
}

.hero-title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.35rem, 4.65vw, 4.2rem);
    font-weight: 900;
    letter-spacing: -0.06em;
    line-height: 1.02;
    max-width: 760px;
}

.hero-copy {
    margin: 1rem 0 0;
    color: var(--muted);
    max-width: 720px;
    font-size: 1.05rem;
    line-height: 1.62;
}

.hero-actions {
    margin-top: 1.6rem;
}

.hero-btn {
    min-width: 178px;
    min-height: 48px;
    border-radius: 14px;
    font-size: 1rem;
}

.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.3rem;
}

.hero-trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    min-height: 34px;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    color: #d8efff;
    background: rgba(56, 139, 253, 0.12);
    border: 1px solid rgba(121, 184, 255, 0.18);
    font-size: 0.84rem;
    font-weight: 750;
}

.hero-feature-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 1.5rem;
    padding-top: 1.3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.075);
}

.hero-feature-strip div {
    padding: 0.95rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.065);
}

.hero-feature-strip span {
    display: block;
    color: var(--muted-2);
    font-size: 0.76rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-feature-strip strong {
    display: block;
    color: #ffffff;
    margin-top: 0.28rem;
    font-size: 0.95rem;
    line-height: 1.35;
}

.hero-product-card {
    padding: 1rem;
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(31, 111, 235, 0.16), transparent 18rem),
        rgba(4, 10, 18, 0.84);
    border: 1px solid rgba(121, 184, 255, 0.16);
    box-shadow: var(--shadow-strong);
}

.product-window-top {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
    padding-bottom: 1rem;
}

.product-window-top strong {
    display: block;
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.25;
}

.product-window-top span {
    display: block;
    color: var(--muted-2);
    margin-top: 0.2rem;
    font-size: 0.9rem;
}

.product-window-status {
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.25rem 0.7rem;
    color: #9bdcff;
    background: rgba(56, 139, 253, 0.16);
    border: 1px solid rgba(121, 184, 255, 0.18);
    font-size: 0.72rem;
    font-weight: 850;
    white-space: nowrap;
}

.product-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.product-stat {
    display: grid;
    gap: 0.22rem;
    padding: 0.9rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.075);
}

.product-stat span {
    color: var(--muted-2);
    font-size: 0.78rem;
}

.product-stat strong {
    color: #ffffff;
    font-size: 1.25rem;
    line-height: 1.15;
}

.product-chat {
    display: grid;
    gap: 0.75rem;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.product-message {
    max-width: 88%;
    padding: 0.8rem 0.95rem;
    border-radius: 14px;
    color: #ffffff;
    font-size: 0.92rem;
    line-height: 1.5;
}

.product-message-user {
    justify-self: start;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.product-message-ai {
    justify-self: end;
    background: rgba(31, 111, 235, 0.18);
    border: 1px solid rgba(121, 184, 255, 0.22);
}

.product-task-list {
    display: grid;
    gap: 0.55rem;
    margin-top: 1rem;
}

.product-task-list div {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.75rem 0.85rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.065);
    color: #dce7f2;
    font-size: 0.9rem;
}

.product-task-list i {
    color: #79b8ff;
}

.section-intro {
    max-width: 840px;
    margin: 0 auto 2.3rem;
    text-align: center;
}

.section-intro span {
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 850;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.section-intro h2,
.section-title,
.use-case-panel h2,
.cta-section h2 {
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 1.08;
}

.section-intro h2 {
    margin: 0.45rem 0 0;
}

.section-intro p,
.use-case-panel p,
.cta-section p {
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.62;
}

.section-intro p {
    margin: 1rem auto 0;
    max-width: 760px;
}

.section-title {
    text-align: center;
    margin: 0 0 2.35rem;
}

.platform-card,
.feature-box,
.step-card,
.pricing-card,
.use-case-panel,
.legal-document-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.platform-card,
.feature-box,
.step-card {
    height: 100%;
    min-height: 226px;
    padding: 1.2rem;
    transition:
        transform 160ms ease,
        background 160ms ease,
        border-color 160ms ease;
}

.platform-card:hover,
.feature-box:hover,
.step-card:hover,
.pricing-card:hover {
    transform: translateY(-3px);
    background: var(--panel-hover);
    border-color: rgba(121, 184, 255, 0.18);
}

.platform-icon,
.feature-icon {
    width: 46px;
    height: 46px;
    margin: 0 auto 1rem;
    border-radius: 15px;
    display: grid;
    place-items: center;
    background: rgba(121, 184, 255, 0.11);
    color: #79b8ff !important;
    font-size: 1.22rem;
}

.platform-card {
    text-align: left;
}

.platform-card .platform-icon {
    margin-left: 0;
}

.platform-card h3,
.feature-box h3,
.step-card h3 {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 850;
    margin: 0 0 0.75rem;
    line-height: 1.35;
}

.platform-card p,
.feature-box p,
.step-card p {
    color: #aebdca;
    font-size: 0.93rem;
    line-height: 1.58;
    margin: 0;
}

.step-head {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0.9rem;
}

.step-number {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    color: #ffffff;
    font-weight: 900;
    flex: 0 0 auto;
    box-shadow: 0 12px 30px rgba(31, 111, 235, 0.22);
}

.use-case-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 2rem;
    align-items: center;
    padding: clamp(1.2rem, 3vw, 2rem);
}

.use-case-panel h2 {
    margin: 0.45rem 0 0;
}

.use-case-panel p {
    margin: 1rem 0 0;
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.use-case-grid div {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0.75rem 0.85rem;
    border-radius: 14px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.075);
    font-weight: 750;
}

.pricing-card {
    height: 100%;
    min-height: 456px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    transition:
        transform 160ms ease,
        border-color 160ms ease,
        background 160ms ease;
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(31, 111, 235, 0.28), rgba(15, 181, 214, 0.12));
    border-color: var(--border-blue);
    box-shadow: 0 0 0 2px rgba(31, 111, 235, 0.16), var(--shadow);
}

.pricing-body {
    padding: 1.2rem;
}

.pricing-footer {
    padding: 1.2rem;
    border-top: 1px solid var(--border-soft);
    background: var(--panel-soft);
}

.pricing-card h3 {
    color: #ffffff;
    font-size: 1.23rem;
    font-weight: 850;
    letter-spacing: -0.03em;
    margin: 0;
    line-height: 1.25;
}

.pricing-subtitle {
    color: var(--muted-2);
    font-size: 0.84rem;
    line-height: 1.35;
    margin-top: 0.24rem;
}

.pricing-topline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
}

.popular-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.24rem 0.58rem;
    font-size: 0.72rem;
    font-weight: 850;
    color: #9bdcff;
    background: rgba(56, 139, 253, 0.16);
    border: 1px solid rgba(121, 184, 255, 0.18);
    white-space: nowrap;
}

.pricing-seat-line {
    display: inline-flex;
    width: fit-content;
    margin-top: 1rem;
    padding: 0.34rem 0.62rem;
    border-radius: 999px;
    color: #ffeac2;
    background: rgba(240, 199, 123, 0.13);
    border: 1px solid rgba(240, 199, 123, 0.18);
    font-size: 0.78rem;
    font-weight: 850;
}

.plan-price {
    margin-top: 1rem;
    color: #ffffff;
    font-size: 2rem;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.045em;
}

.plan-price span {
    color: var(--muted-2);
    font-size: 0.9rem;
    font-weight: 750;
    letter-spacing: 0;
}

.custom-price {
    font-size: 1.8rem;
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 1.35rem 0 0;
    display: grid;
    gap: 0.8rem;
}

.pricing-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    color: #dce7f2;
    font-size: 0.95rem;
    line-height: 1.45;
}

.pricing-list li::before {
    content: "✓";
    color: #79b8ff;
    font-weight: 900;
    flex: 0 0 auto;
}

.text-muted {
    color: var(--muted-2) !important;
}

.cta-section {
    text-align: center;
}

.cta-section h2 {
    margin: 0 0 1rem;
}

.cta-section p {
    max-width: 740px;
    margin: 0 auto 1.55rem;
}

.cta-section .btn {
    min-width: 184px;
    min-height: 48px;
}

.legal-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.3rem;
}

.legal-meta-row span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    color: #d8efff;
    background: rgba(56, 139, 253, 0.12);
    border: 1px solid rgba(121, 184, 255, 0.18);
    font-size: 0.84rem;
    font-weight: 750;
}

.legal-document-card {
    max-width: 980px;
    margin: 0 auto;
    border-radius: 28px;
    padding: clamp(1.2rem, 3vw, 2.4rem);
}

.legal-document-card h2 {
    color: #ffffff;
    font-size: 1.22rem;
    font-weight: 900;
    letter-spacing: -0.025em;
    line-height: 1.25;
    margin: 2rem 0 0.7rem;
}

.legal-document-card h2:first-child {
    margin-top: 0;
}

.legal-document-card p,
.legal-document-card li {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.72;
}

.legal-document-card p {
    margin: 0 0 1rem;
}

.legal-document-card ul {
    display: grid;
    gap: 0.55rem;
    margin: 0 0 1rem;
    padding-left: 1.2rem;
}

.legal-document-card a {
    color: #9bdcff;
    text-decoration: none;
    border-bottom: 1px solid rgba(155, 220, 255, 0.35);
}

.legal-document-card a:hover,
.legal-document-card a:focus {
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.6);
}

.site-footer {
    background:
        radial-gradient(circle at top right, rgba(31, 111, 235, 0.1), transparent 26rem),
        rgba(3, 8, 15, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 0;
}

.brokerwise-footer {
    margin-top: 0;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(260px, 1.45fr) repeat(3, minmax(130px, 0.7fr));
    gap: 1.75rem;
    padding: 3rem 0 2.2rem;
}

.footer-main-simple {
    grid-template-columns: minmax(260px, 1.6fr) repeat(3, minmax(150px, 0.7fr));
}

.footer-brand-block {
    max-width: 420px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: #ffffff;
    font-size: 1.16rem;
    font-weight: 900;
    letter-spacing: -0.035em;
    text-decoration: none;
}

.footer-logo:hover,
.footer-logo:focus {
    color: #79b8ff;
    text-decoration: none;
}

.footer-brand-block p {
    color: var(--muted);
    line-height: 1.65;
    margin: 1rem 0 0;
    max-width: 390px;
}

.footer-domain {
    display: inline-flex;
    margin-top: 1rem;
    min-height: 30px;
    align-items: center;
    padding: 0.32rem 0.65rem;
    border-radius: 999px;
    color: #d8efff;
    background: rgba(56, 139, 253, 0.12);
    border: 1px solid rgba(121, 184, 255, 0.18);
    font-size: 0.82rem;
    font-weight: 750;
}

.footer-column {
    display: grid;
    align-content: start;
    gap: 0.55rem;
}

.footer-column h2 {
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin: 0 0 0.35rem;
}

.footer-column a {
    width: fit-content;
    color: var(--muted-2);
    text-decoration: none;
    font-size: 0.92rem;
    line-height: 1.45;
}

.footer-column a:hover,
.footer-column a:focus {
    color: #ffffff;
    text-decoration: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    padding: 1.15rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-copy,
.footer-bottom-links {
    color: var(--muted-2);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: var(--muted-2);
    text-decoration: none;
}

.footer-bottom-links a:hover,
.footer-bottom-links a:focus {
    color: #ffffff;
}

.footer-links {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    color: var(--muted-2);
    font-size: 0.9rem;
}

.footer-links a {
    color: var(--muted-2);
    text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus {
    color: #ffffff;
}

.region-block-page {
    min-height: 100vh;
}

.region-block-card {
    min-height: 70vh;
    display: grid;
    place-items: center;
    text-align: center;
}

.region-block-icon {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border-radius: 24px;
    color: #79b8ff;
    background: rgba(121, 184, 255, 0.11);
    border: 1px solid rgba(121, 184, 255, 0.18);
    font-size: 1.6rem;
    margin: 0 auto 1rem;
}

.region-block-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(12px);
}

.region-block-modal {
    width: min(560px, 100%);
    padding: 1.5rem;
    border-radius: 24px;
    background: rgba(4, 10, 18, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.region-block-modal h2 {
    color: #ffffff;
    font-size: 1.65rem;
    font-weight: 900;
    line-height: 1.15;
}

.region-block-modal p {
    color: var(--muted);
    line-height: 1.6;
    margin: 1rem 0 0;
}

@media (min-width: 1400px) {
    .site-wide-wrap {
        max-width: 1320px;
    }
}

@media (max-width: 1199.98px) {
    .site-wide-wrap {
        max-width: 1120px;
    }

    .hero-title {
        font-size: clamp(3rem, 7vw, 4.05rem);
    }

    .footer-main,
    .footer-main-simple {
        grid-template-columns: minmax(260px, 1fr) repeat(2, minmax(160px, 0.7fr));
    }
}

@media (max-width: 991.98px) {
    .site-wide-wrap {
        max-width: 100%;
    }

    .nav-wide-wrap {
        flex-wrap: wrap;
    }

    .site-navbar {
        min-height: auto;
    }

    .navbar-collapse {
        flex-basis: 100%;
        padding: 1rem 0;
    }

    .navbar-nav {
        gap: 0.25rem;
    }

    .nav-link {
        padding: 0.65rem 0.7rem !important;
    }

    .nav-btn {
        width: 100%;
    }

    .hero-section,
    .platform-section,
    .top-features-section,
    .steps-section,
    .use-case-section,
    .pricing-section,
    .cta-section,
    .legal-hero-section,
    .legal-content-section {
        padding: 3rem 1rem;
    }

    .hero-section,
    .legal-hero-section {
        padding-top: 1rem;
    }

    .hero-card,
    .legal-hero-card {
        padding: 1rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-feature-strip,
    .use-case-panel {
        grid-template-columns: 1fr;
    }

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

    .legal-document-card {
        border-radius: 20px;
        padding: 1.2rem;
    }

    .footer-main {
        padding: 2.5rem 0 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2.45rem;
    }

    .hero-copy {
        font-size: 0.96rem;
    }

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

    .hero-btn {
        width: 100%;
    }

    .section-title,
    .section-intro h2,
    .use-case-panel h2,
    .cta-section h2 {
        font-size: 2.15rem;
    }

    .pricing-card {
        min-height: auto;
    }

    .use-case-grid {
        grid-template-columns: 1fr;
    }

    .footer-main,
    .footer-main-simple {
        grid-template-columns: 1fr;
        gap: 1.4rem;
        padding: 2.4rem 0 2rem;
    }

    .footer-brand-block {
        max-width: none;
    }

    .footer-bottom {
        display: grid;
        justify-content: stretch;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .footer-brand,
    .footer-domain,
    .footer-links,
    .footer-copy {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-section,
    .platform-section,
    .top-features-section,
    .steps-section,
    .use-case-section,
    .pricing-section,
    .cta-section,
    .legal-hero-section,
    .legal-content-section {
        padding-left: 0.85rem;
        padding-right: 0.85rem;
    }

    .hero-title {
        font-size: 2.15rem;
    }

    .hero-card,
    .legal-hero-card,
    .hero-product-card,
    .platform-card,
    .feature-box,
    .step-card,
    .pricing-card,
    .use-case-panel,
    .legal-document-card {
        border-radius: 18px;
    }

    .pricing-body,
    .pricing-footer,
    .platform-card,
    .feature-box,
    .step-card {
        padding: 1rem;
    }

    .product-message {
        max-width: 100%;
    }

    .legal-document-card h2 {
        font-size: 1.1rem;
    }

    .legal-document-card p,
    .legal-document-card li {
        font-size: 0.96rem;
    }

    .footer-main {
        padding: 2rem 0 1.6rem;
    }
}