/*==================================================
  VARIABLES
==================================================*/

:root {
    --primary: #173f82;
    --primary-dark: #0e2d64;
    --primary-soft: #edf3ff;
    --accent: #eba925;
    --accent-dark: #c98600;
    --accent-soft: #fff5dd;
    --background: #f6f8fc;
    --surface: #ffffff;
    --heading: #122958;
    --text: #657186;
    --muted: #8b95a5;
    --border: #e4e9f1;
    --shadow: 0 24px 70px rgba(20, 52, 105, 0.10);
}

/*==================================================
  RESET
==================================================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: var(--background);
    color: var(--heading);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

button {
    font: inherit;
}

img {
    display: block;
    max-width: 100%;
}

/*==================================================
  HEADER
==================================================*/

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--border);
    transition: 0.25s ease;
}

.site-header.scrolled {
    box-shadow: 0 10px 35px rgba(21, 55, 111, 0.08);
}

.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.brand-logo img {
    height: 54px;
    width: auto;
}

/*==================================================
  DESKTOP NAV
==================================================*/

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.desktop-nav a {
    position: relative;
    color: #35435c;
    font-size: 13px;
    font-weight: 600;
    transition: 0.2s ease;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    border-radius: 10px;
    background: var(--accent);
    transition: 0.2s ease;
}

.desktop-nav a:hover {
    color: var(--primary);
}

.desktop-nav a:hover::after {
    width: 100%;
}

/*==================================================
  HEADER CTA
==================================================*/

.header-cta {
    min-height: 46px;
    padding: 0 19px;
    border-radius: 9px;
    background: var(--primary);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    transition: 0.2s ease;
}

.header-cta:hover {
    background: var(--primary-dark);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(23, 63, 130, 0.2);
}

/*==================================================
  MOBILE BUTTON
==================================================*/

.menu-toggle {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 9px;
    background: #ffffff;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 19px;
    height: 2px;
    border-radius: 4px;
    background: var(--primary);
    transition: 0.2s ease;
}

.menu-toggle.active span:first-child {
    transform: translateY(4px) rotate(45deg);
}

.menu-toggle.active span:last-child {
    transform: translateY(-4px) rotate(-45deg);
}

/*==================================================
  MOBILE MENU
==================================================*/

.mobile-menu {
    position: fixed;
    top: 78px;
    left: 15px;
    right: 15px;
    z-index: 999;
    padding: 11px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: #ffffff;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: 0.22s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.mobile-menu a {
    padding: 13px 14px;
    border-radius: 8px;
    color: var(--heading);
    font-size: 13px;
    font-weight: 600;
}

.mobile-menu a:hover {
    background: var(--background);
}

.mobile-menu-cta {
    background: var(--primary);
    color: #ffffff !important;
    text-align: center;
}

/*==================================================
  HERO
==================================================*/

.hero-section {
    position: relative;
    padding: 126px 0 66px;
    overflow: hidden;
    background:
        linear-gradient(135deg,
            #ffffff 0%,
            #f7f9fd 70%,
            #eef3fb 100%);
}

.hero-section .container {
    position: relative;
    z-index: 4;
}

/* Background details */

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(23, 63, 130, 0.12) 1px,
            transparent 1px);
    background-size: 24px 24px;
    mask-image:
        linear-gradient(to right,
            rgba(0, 0, 0, 0.45),
            transparent 44%);
    opacity: 0.35;
}

.hero-shape {
    position: absolute;
    pointer-events: none;
}

.hero-shape-blue {
    right: -150px;
    bottom: -160px;
    width: 430px;
    height: 430px;
    border: 72px solid rgba(23, 63, 130, 0.08);
    border-radius: 50%;
    transform: rotate(25deg);
}

.hero-shape-gold {
    left: -115px;
    bottom: -110px;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: rgba(235, 169, 37, 0.11);
}

/*==================================================
  HERO CONTENT
==================================================*/

.hero-content {
    max-width: 510px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 21px;
    padding: 8px 11px;
    border: 1px solid #f1d89e;
    border-radius: 999px;
    background: var(--accent-soft);
    color: #a96b00;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-content h2 {
    max-width: 530px;
    margin-bottom: 20px;
    font-family: "Manrope", sans-serif;
    font-size: 45px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
}

.hero-content h2 span {
    display: block;
    color: var(--accent);
}

.hero-content>p {
    max-width: 500px;
    margin-bottom: 26px;
    color: var(--text);
    font-size: 15px;
    line-height: 1.75;
}

/*==================================================
  HERO BENEFITS
==================================================*/

.hero-benefits {
    display: grid;
    gap: 11px;
    margin-bottom: 28px;
}

.hero-benefits div {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #3f4c62;
    font-size: 13px;
    font-weight: 600;
}

.hero-benefits i {
    color: var(--primary);
    font-size: 17px;
}

/*==================================================
  HERO ACTIONS
==================================================*/

.hero-actions {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-bottom: 24px;
}

.primary-button {
    min-height: 52px;
    padding: 0 22px;
    border-radius: 9px;
    background: var(--primary);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 700;
    transition: 0.22s ease;
}

.primary-button:hover {
    background: var(--primary-dark);
    color: #ffffff;
    transform: translateY(-2px);
}

.hero-action-note {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.5;
}

.hero-legal-note {
    max-width: 430px;
    margin: 0 !important;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    color: #929cac !important;
    font-size: 9px !important;
    line-height: 1.6 !important;
}

/*==================================================
  APPLICATION CARD
==================================================*/

.application-card {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.application-card-header {
    padding: 23px 25px 18px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.application-eyebrow {
    display: inline-block;
    margin-bottom: 7px;
    color: var(--accent-dark);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.application-card h2 {
    margin-bottom: 7px;
    font-family: "Manrope", sans-serif;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.7px;
}

.application-card-header p {
    margin: 0;
    color: var(--text);
    font-size: 12px;
    line-height: 1.6;
}

.secure-badge {
    flex-shrink: 0;
    padding: 8px 10px;
    border-radius: 8px;
    background: var(--primary-soft);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 700;
}

/*==================================================
  FORM DIVIDER
==================================================*/

.application-divider {
    padding: 0 25px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 12px;
}

.application-divider span {
    height: 1px;
    background: var(--border);
}

.application-divider i {
    color: var(--primary);
    font-size: 15px;
}

/*==================================================
  CLIENT FORM
==================================================*/

.client-form-wrapper {
    max-height: 590px;
    padding: 20px 24px;
    overflow-y: auto;
}

.client-form-wrapper::-webkit-scrollbar {
    width: 5px;
}

.client-form-wrapper::-webkit-scrollbar-track {
    background: #f0f3f7;
}

.client-form-wrapper::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #bcc5d1;
}

#_lg_form_ {
    min-height: 450px;
}

/*==================================================
  APPLICATION FOOTER
==================================================*/

.application-card-footer {
    padding: 15px 24px;
    border-top: 1px solid var(--border);
    background: #fafbfd;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.application-card-footer div {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    color: #7f8999;
    font-size: 9px;
    line-height: 1.5;
}

.application-card-footer i {
    flex-shrink: 0;
    color: var(--primary);
    font-size: 13px;
}

/*==================================================
  TRUST STRIP
==================================================*/

.trust-strip {
    padding: 0 0 58px;
    background: #eef3fb;
}

.trust-grid {
    position: relative;
    margin-top: -1px;
    border-radius: 0 0 16px 16px;
    background: var(--primary);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
}

.trust-item {
    min-height: 105px;
    padding: 24px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-item:last-child {
    border-right: none;
}

.trust-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--accent-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
}

.trust-item strong {
    display: block;
    margin-bottom: 4px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
}

.trust-item small {
    display: block;
    color: rgba(255, 255, 255, 0.67);
    font-size: 9px;
    line-height: 1.45;
}

/*==================================================
  SHARED SECTION LABEL
==================================================*/

.section-label {
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
    color: var(--accent-dark);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/*==================================================
  HOW IT WORKS
==================================================*/

.process-section {
    position: relative;
    padding: 92px 0;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 14px 16px 8px #f2f6ff;
}

.process-section::before {
    content: "";
    position: absolute;
    top: 60px;
    right: -140px;
    width: 330px;
    height: 330px;
    border: 1px solid rgba(23, 63, 130, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

/*==================================================
  PROCESS HEADING
==================================================*/

.process-heading {
    position: relative;
    z-index: 2;
    margin-bottom: 52px;
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    align-items: end;
    gap: 70px;
}

.process-heading h2 {
    max-width: 610px;
    margin: 0;
    color: var(--heading);
    font-family: "Manrope", sans-serif;
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -1.4px;
}

.process-heading>p {
    max-width: 520px;
    margin: 0;
    color: var(--text);
    font-size: 14px;
    line-height: 1.8;
}

/*==================================================
  PROCESS FLOW
==================================================*/

.process-flow {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.process-line {
    position: absolute;
    top: 58px;
    left: 8%;
    right: 8%;
    height: 1px;
    background:
        repeating-linear-gradient(to right,
            rgba(23, 63, 130, 0.22) 0,
            rgba(23, 63, 130, 0.22) 7px,
            transparent 7px,
            transparent 14px);
    z-index: 0;
}

/*==================================================
  PROCESS STEP
==================================================*/

.process-step {
    position: relative;
    z-index: 2;
    min-height: 330px;
    padding: 23px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.97);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.process-step:hover {
    transform: translateY(-7px);
    border-color: rgba(23, 63, 130, 0.22);
    box-shadow:
        0 20px 50px rgba(20, 52, 105, 0.09);
}

.process-step-top {
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.process-count {
    color: #a4adbb;
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 800;
}

.process-icon {
    width: 54px;
    height: 54px;
    border: 1px solid #dce5f3;
    border-radius: 15px;
    background: var(--primary-soft);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    transition: 0.25s ease;
}

.process-step:hover .process-icon {
    background: var(--primary);
    color: #ffffff;
    transform: rotate(-4deg);
}

.process-step h3 {
    margin-bottom: 12px;
    color: var(--heading);
    font-family: "Manrope", sans-serif;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.35;
}

.process-step p {
    margin-bottom: 24px;
    color: var(--text);
    font-size: 12px;
    line-height: 1.75;
}

.process-status {
    position: absolute;
    left: 23px;
    bottom: 22px;
    display: inline-flex;
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: #9f6800;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/*==================================================
  PROCESS NOTICE
==================================================*/

.process-note {
    margin-top: 28px;
    padding: 18px 20px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: #f8fafe;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 15px;
}

.process-note-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--primary-soft);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

.process-note p {
    margin: 0;
    color: var(--text);
    font-size: 10px;
    line-height: 1.65;
}

.process-note a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
}

.process-note a i {
    transition: 0.2s ease;
}

.process-note a:hover i {
    transform: translate(2px, -2px);
}

/*==================================================
  LOAN OPTIONS
==================================================*/

.options-section {
    padding: 96px 0;
    background:
        linear-gradient(180deg,
            #f7f9fd 0%,
            #eef3fb 100%);
}

.options-layout {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 72px;
    align-items: start;
}

/*==================================================
  OPTIONS INTRO
==================================================*/

.options-intro {
    position: sticky;
    top: 115px;
}

.options-intro h2 {
    max-width: 460px;
    margin-bottom: 18px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -1.4px;
}

.options-intro>p {
    max-width: 470px;
    margin-bottom: 26px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.8;
}

.options-disclaimer {
    max-width: 440px;
    padding: 15px 16px;
    border: 1px solid #dce5f2;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.62);
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: #6d788a;
    font-size: 10px;
    line-height: 1.6;
}

.options-disclaimer i {
    flex-shrink: 0;
    color: var(--primary);
    font-size: 14px;
}

/*==================================================
  OPTIONS INTERFACE
==================================================*/

.options-interface {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 25px 70px rgba(20, 52, 105, 0.09);
    overflow: hidden;
}

/*==================================================
  OPTIONS TABS
==================================================*/

.options-tabs {
    padding: 12px;
    border-right: 1px solid var(--border);
    background: #f9fbfe;
    display: grid;
    gap: 7px;
}

.option-tab {
    width: 100%;
    padding: 15px 14px;
    border: 1px solid transparent;
    border-radius: 12px;
    background: transparent;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    text-align: left;
    cursor: pointer;
    transition: 0.22s ease;
}

.option-tab:hover {
    background: #ffffff;
    border-color: var(--border);
}

.option-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 12px 28px rgba(23, 63, 130, 0.17);
}

.option-tab-icon {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: var(--primary-soft);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
}

.option-tab.active .option-tab-icon {
    background: rgba(255, 255, 255, 0.14);
    color: var(--accent);
}

.option-tab-copy {
    min-width: 0;
}

.option-tab-copy strong {
    display: block;
    margin-bottom: 3px;
    color: var(--heading);
    font-size: 12px;
    font-weight: 700;
}

.option-tab-copy small {
    display: block;
    color: var(--muted);
    font-size: 9px;
    line-height: 1.4;
}

.option-tab.active .option-tab-copy strong {
    color: #ffffff;
}

.option-tab.active .option-tab-copy small {
    color: rgba(255, 255, 255, 0.65);
}

.option-tab-arrow {
    color: #a0a9b7;
    font-size: 14px;
    transition: 0.22s ease;
}

.option-tab.active .option-tab-arrow {
    color: var(--accent);
    transform: translateX(3px);
}

/*==================================================
  OPTION DETAIL
==================================================*/

.option-detail {
    position: relative;
    min-height: 520px;
    padding: 38px 34px;
    display: flex;
    flex-direction: column;
}

.option-detail::before {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -90px;
    width: 260px;
    height: 260px;
    border: 46px solid rgba(23, 63, 130, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.option-detail-top,
.option-detail h3,
.option-detail>p,
.option-detail-list,
.option-detail-button,
.option-detail-note {
    position: relative;
    z-index: 2;
}

.option-detail-top {
    margin-bottom: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.option-detail-icon {
    width: 54px;
    height: 54px;
    border-radius: 15px;
    background: var(--accent-soft);
    color: var(--accent-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
}

.option-detail-label {
    color: var(--muted);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.option-detail h3 {
    margin-bottom: 13px;
    font-family: "Manrope", sans-serif;
    font-size: 29px;
    font-weight: 800;
    letter-spacing: -0.7px;
}

.option-detail>p {
    margin-bottom: 26px;
    color: var(--text);
    font-size: 13px;
    line-height: 1.8;
}

.option-detail-list {
    display: grid;
    gap: 12px;
    margin-bottom: 30px;
}

.option-detail-list div {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #445168;
    font-size: 12px;
    font-weight: 600;
}

.option-detail-list i {
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background: var(--primary-soft);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.option-detail-button {
    width: fit-content;
    min-height: 48px;
    padding: 0 19px;
    border-radius: 9px;
    background: var(--primary);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    transition: 0.22s ease;
}

.option-detail-button:hover {
    background: var(--primary-dark);
    color: #ffffff;
    transform: translateY(-2px);
}

.option-detail-note {
    margin-top: auto;
    padding-top: 26px;
    border-top: 1px solid var(--border);
    color: #8c96a5;
    font-size: 9px;
    line-height: 1.65;
}

/*==================================================
  WHY CHOOSE US
==================================================*/

.why-section {
    position: relative;
    padding: 96px 0;
    background: #ffffff;
    overflow: hidden;
}

.why-section::before {
    content: "";
    position: absolute;
    left: -120px;
    bottom: -150px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(235, 169, 37, 0.07);
    pointer-events: none;
}

/*==================================================
  WHY HEADING
==================================================*/

.why-heading {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 0.75fr;
    align-items: end;
    gap: 70px;
    margin-bottom: 48px;
}

.why-heading h2 {
    max-width: 650px;
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -1.4px;
    color: var(--heading);
}

.why-heading>p {
    max-width: 500px;
    margin: 0;
    color: var(--text);
    font-size: 14px;
    line-height: 1.8;
}

/*==================================================
  MAIN FEATURE CARD
==================================================*/

.why-feature-card {
    min-height: 100%;
    border: 1px solid var(--border);
    border-radius: 22px;
    background:
        linear-gradient(145deg,
            #ffffff 0%,
            #f7f9fd 100%);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    overflow: hidden;
    box-shadow: 0 22px 60px rgba(20, 52, 105, 0.08);
}

.why-feature-content {
    padding: 38px 34px;
}

.why-feature-number,
.why-side-number {
    color: #aab3c1;
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 800;
}

.why-feature-icon {
    width: 52px;
    height: 52px;
    margin: 28px 0 24px;
    border-radius: 15px;
    background: var(--primary);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
}

.why-feature-content h3 {
    max-width: 430px;
    margin-bottom: 15px;
    font-family: "Manrope", sans-serif;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.7px;
}

.why-feature-content>p {
    max-width: 490px;
    margin-bottom: 28px;
    color: var(--text);
    font-size: 13px;
    line-height: 1.8;
}

/*==================================================
  FEATURE POINTS
==================================================*/

.why-feature-points {
    display: grid;
    gap: 12px;
}

.why-feature-points div {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #435067;
    font-size: 12px;
    font-weight: 600;
}

.why-feature-points i {
    color: var(--accent-dark);
    font-size: 16px;
}

/*==================================================
  FEATURE VISUAL
==================================================*/

.why-feature-visual {
    padding: 26px;
    background:
        linear-gradient(160deg,
            var(--primary) 0%,
            var(--primary-dark) 100%);
    display: flex;
    align-items: center;
}

.transparency-panel {
    width: 100%;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.transparency-head {
    padding-bottom: 18px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.transparency-head i {
    color: var(--accent);
    font-size: 19px;
}

.transparency-row {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.transparency-row:last-child {
    border-bottom: none;
}

.transparency-row span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 10px;
}

.transparency-row strong {
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    text-align: right;
}

/*==================================================
  SIDE CARDS
==================================================*/

.why-side-grid {
    height: 100%;
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    gap: 24px;
}

.why-side-card {
    min-height: 240px;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #f8fafe;
    transition: 0.25s ease;
}

.why-side-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(20, 52, 105, 0.08);
}

.why-side-card-accent {
    background: var(--accent-soft);
    border-color: #f0d797;
}

.why-side-top {
    margin-bottom: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.why-side-icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: var(--primary-soft);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
}

.why-side-card-accent .why-side-icon {
    background: #ffffff;
    color: var(--accent-dark);
}

.why-side-card h3 {
    max-width: 360px;
    margin-bottom: 12px;
    font-family: "Manrope", sans-serif;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
}

.why-side-card p {
    margin: 0;
    color: var(--text);
    font-size: 12px;
    line-height: 1.75;
}

/*==================================================
  WHY BOTTOM BAR
==================================================*/

.why-bottom-bar {
    margin-top: 26px;
    padding: 18px 20px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: #f8fafe;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.why-bottom-copy {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--text);
    font-size: 10px;
    line-height: 1.6;
}

.why-bottom-copy i {
    color: var(--primary);
    font-size: 15px;
}

.why-bottom-bar>a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
}

.why-bottom-bar>a i {
    transition: 0.2s ease;
}

.why-bottom-bar>a:hover i {
    transform: translate(2px, -2px);
}

/*==================================================
  SECURITY & TRANSPARENCY
==================================================*/

.security-section {
    position: relative;
    padding: 96px 0;
    overflow: hidden;
    background: #f3f6fb;
}

.security-section::before {
    content: "";
    position: absolute;
    top: -170px;
    left: -160px;
    width: 390px;
    height: 390px;
    border: 65px solid rgba(23, 63, 130, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.security-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 78px;
}

/*==================================================
  SECURITY CONTENT
==================================================*/

.security-content h2 {
    max-width: 540px;
    margin-bottom: 18px;
    color: var(--heading);
    font-family: "Manrope", sans-serif;
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -1.4px;
}

.security-content>p {
    max-width: 530px;
    margin-bottom: 30px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.8;
}

/*==================================================
  SECURITY LIST
==================================================*/

.security-list {
    display: grid;
    gap: 14px;
    margin-bottom: 30px;
}

.security-list-item {
    padding: 17px 18px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.78);
    display: flex;
    align-items: flex-start;
    gap: 13px;
    transition: 0.22s ease;
}

.security-list-item:hover {
    transform: translateX(5px);
    border-color: rgba(23, 63, 130, 0.22);
    background: #ffffff;
}

.security-list-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 12px;
    background: var(--primary-soft);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.security-list-item strong {
    display: block;
    margin-bottom: 5px;
    color: var(--heading);
    font-size: 13px;
    font-weight: 700;
}

.security-list-item p {
    margin: 0;
    color: var(--text);
    font-size: 11px;
    line-height: 1.65;
}

/*==================================================
  SECURITY BUTTON
==================================================*/

.security-button {
    min-height: 50px;
    padding: 0 21px;
    border-radius: 9px;
    background: var(--primary);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 12px;
    font-weight: 700;
    transition: 0.22s ease;
}

.security-button:hover {
    background: var(--primary-dark);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(23, 63, 130, 0.17);
}

.security-button i {
    transition: 0.22s ease;
}

.security-button:hover i {
    transform: translateX(3px);
}

/*==================================================
  SECURITY PANEL
==================================================*/

.security-panel {
    position: relative;
    border-radius: 22px;
    background:
        linear-gradient(150deg,
            var(--primary) 0%,
            var(--primary-dark) 100%);
    box-shadow: 0 28px 75px rgba(18, 48, 102, 0.2);
    overflow: hidden;
}

.security-panel::before {
    content: "";
    position: absolute;
    right: -100px;
    bottom: -110px;
    width: 280px;
    height: 280px;
    border: 45px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

/*==================================================
  PANEL HEADER
==================================================*/

.security-panel-top {
    position: relative;
    z-index: 2;
    padding: 28px 30px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.security-panel-label {
    display: inline-block;
    margin-bottom: 7px;
    color: var(--accent);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.security-panel-top h3 {
    margin: 0;
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: 27px;
    font-weight: 800;
    letter-spacing: -0.6px;
}

.security-panel-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.11);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
}

/*==================================================
  PANEL BODY
==================================================*/

.security-panel-body {
    position: relative;
    z-index: 2;
    padding: 10px 30px;
}

.security-row {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.security-row:last-child {
    border-bottom: none;
}

.security-row span {
    color: rgba(255, 255, 255, 0.64);
    font-size: 11px;
    line-height: 1.5;
}

.security-row strong {
    max-width: 190px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.5;
    text-align: right;
}

/*==================================================
  PANEL NOTE
==================================================*/

.security-panel-note {
    position: relative;
    z-index: 2;
    margin: 5px 30px 30px;
    padding: 14px 15px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 9px;
}

.security-panel-note i {
    flex-shrink: 0;
    color: var(--accent);
    font-size: 15px;
}

.security-panel-note p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 9px;
    line-height: 1.6;
}

/*==================================================
  FAQ
==================================================*/

.faq-section {
    padding: 96px 0;
    background: #ffffff;
}

.faq-layout {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 80px;
    align-items: start;
}

/*==================================================
  FAQ INTRO
==================================================*/

.faq-intro {
    position: sticky;
    top: 110px;
}

.faq-intro h2 {
    max-width: 460px;
    margin-bottom: 18px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -1.4px;
}

.faq-intro>p {
    max-width: 450px;
    margin-bottom: 26px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.8;
}

.faq-cta {
    min-height: 48px;
    padding: 0 18px;
    border-radius: 9px;
    background: var(--primary);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    transition: 0.22s ease;
}

.faq-cta:hover {
    background: var(--primary-dark);
    color: #ffffff;
    transform: translateY(-2px);
}

/*==================================================
  FAQ LIST
==================================================*/

.faq-list {
    border-top: 1px solid var(--border);
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    padding: 24px 0;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    color: var(--heading);
    text-align: left;
    font-family: "Manrope", sans-serif;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
}

.faq-question i {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: 0.22s ease;
}

.faq-item.active .faq-question i {
    background: var(--primary);
    color: #ffffff;
    transform: rotate(45deg);
}

/*==================================================
  FAQ ANSWER
==================================================*/

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.32s ease;
}

.faq-answer p {
    max-width: 720px;
    padding: 0 56px 24px 0;
    margin: 0;
    color: var(--text);
    font-size: 13px;
    line-height: 1.8;
}

/*==================================================
  FINAL CTA
==================================================*/

.final-cta-section {
    padding: 88px 0;
    background: #f3f6fb;
}

.final-cta-panel {
    position: relative;
    overflow: hidden;
    padding: 46px;
    border-radius: 24px;
    background:
        linear-gradient(135deg,
            var(--primary-dark) 0%,
            var(--primary) 100%);
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 50px;
    box-shadow: 0 28px 70px rgba(18, 48, 102, 0.2);
}

.final-cta-panel::before {
    content: "";
    position: absolute;
    right: -120px;
    top: -130px;
    width: 340px;
    height: 340px;
    border: 55px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

.final-cta-panel::after {
    content: "";
    position: absolute;
    left: 38%;
    bottom: -100px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: rgba(235, 169, 37, 0.08);
    pointer-events: none;
}

.final-cta-content,
.final-cta-action {
    position: relative;
    z-index: 2;
}

.final-cta-label {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--accent);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.final-cta-content h2 {
    max-width: 720px;
    margin-bottom: 15px;
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: 35px;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -1.2px;
}

.final-cta-content>p {
    max-width: 620px;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    line-height: 1.75;
}

.final-cta-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.final-cta-notes span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 10px;
    font-weight: 600;
}

.final-cta-notes i {
    color: var(--accent);
}

.final-cta-action {
    min-width: 220px;
    text-align: center;
}

.final-cta-button {
    min-height: 54px;
    padding: 0 24px;
    border-radius: 10px;
    background: #ffffff;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 800;
    transition: 0.22s ease;
}

.final-cta-button:hover {
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.final-cta-action small {
    display: block;
    max-width: 220px;
    margin: 12px auto 0;
    color: rgba(255, 255, 255, 0.54);
    font-size: 8px;
    line-height: 1.5;
}

/*==================================================
  FOOTER
==================================================*/

.footer {
    position: relative;
    padding: 70px 0 26px;
    overflow: hidden;
    background: linear-gradient(145deg, #64b5d5 0%, #32709d 20%, #223f62 50%, #071534 100%);
    color: #ffffff;
}

.footer::before {
    content: "";
    position: absolute;
    top: -170px;
    left: -140px;
    width: 420px;
    height: 420px;
    border: 70px solid rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

.footer::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -150px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: rgba(235, 169, 37, 0.05);
    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 2;
}

/*==================================================
  FOOTER MAIN
==================================================*/

.footer-main {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 85px;
    padding-bottom: 48px;
}

/*==================================================
  FOOTER BRAND
==================================================*/

.footer-logo {
    display: inline-flex;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 66px;
    width: auto;
}

.footer-brand>p {
    max-width: 510px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    line-height: 1.8;
}

/*==================================================
  FOOTER TRUST
==================================================*/

.footer-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.footer-trust-item {
    min-height: 84px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.055);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.22s ease;
}

.footer-trust-item:hover {
    transform: translateY(-3px);
    border-color: rgba(235, 169, 37, 0.35);
    background: rgba(255, 255, 255, 0.08);
}

.footer-trust-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 11px;
    background: rgba(235, 169, 37, 0.14);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.footer-trust-item strong {
    display: block;
    margin-bottom: 3px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
}

.footer-trust-item small {
    display: block;
    color: rgba(255, 255, 255, 0.53);
    font-size: 8px;
    line-height: 1.4;
}

/*==================================================
  FOOTER NAVIGATION
==================================================*/

.footer-navigation {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 52px;
}

.footer-link-column h4 {
    position: relative;
    margin-bottom: 21px;
    padding-bottom: 12px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
}

.footer-link-column h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 32px;
    height: 2px;
    border-radius: 10px;
    background: var(--accent);
}

.footer-link-column a {
    display: block;
    width: fit-content;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 11px;
    line-height: 1.5;
    transition: 0.2s ease;
}

.footer-link-column a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

/*==================================================
  FOOTER LEGAL
==================================================*/

.footer-legal {
    padding: 24px 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(0, 0, 0, 0.08);
}

.footer-legal p {
    max-width: 1080px;
    margin: 0;
    color: rgba(255, 255, 255, 0.52);
    font-size: 9px;
    line-height: 1.85;
}

.footer-legal strong {
    color: rgba(255, 255, 255, 0.78);
}

/*==================================================
  FOOTER BOTTOM
==================================================*/

.footer-bottom {
    padding-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-bottom>span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 9px;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 9px;
    transition: 0.2s ease;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

/*==================================================
  LEGAL MODAL
==================================================*/

body.legal-modal-open {
    overflow: hidden;
}

.legal-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}

.legal-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/*==================================================
  MODAL OVERLAY
==================================================*/

.legal-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 18, 43, 0.76);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
}

/*==================================================
  MODAL DIALOG
==================================================*/

.legal-modal-dialog {
    position: relative;
    z-index: 2;
    width: min(780px, 100%);
    max-height: 88vh;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 34px 100px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transform: translateY(20px) scale(0.98);
    transition: transform 0.25s ease;
}

.legal-modal.active .legal-modal-dialog {
    transform: translateY(0) scale(1);
}

/*==================================================
  MODAL HEADER
==================================================*/

.legal-modal-header {
    padding: 22px 24px;
    border-bottom: 1px solid var(--border);
    background:
        linear-gradient(135deg,
            #ffffff 0%,
            #f5f8fd 100%);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.legal-modal-brand {
    display: inline-block;
    margin-bottom: 6px;
    color: var(--accent-dark);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.legal-modal-header h3 {
    margin: 0;
    color: var(--heading);
    font-family: "Manrope", sans-serif;
    font-size: 27px;
    font-weight: 800;
    letter-spacing: -0.6px;
}

.legal-modal-close {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #ffffff;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    cursor: pointer;
    transition: 0.2s ease;
}

.legal-modal-close:hover {
    background: var(--primary);
    color: #ffffff;
    transform: rotate(90deg);
}

/*==================================================
  MODAL BODY
==================================================*/

.legal-modal-body {
    max-height: calc(88vh - 96px);
    padding: 26px 24px 30px;
    overflow-y: auto;
    color: var(--text);
    font-size: 13px;
    line-height: 1.8;
}

.legal-modal-body::-webkit-scrollbar {
    width: 6px;
}

.legal-modal-body::-webkit-scrollbar-track {
    background: #eef1f6;
}

.legal-modal-body::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: var(--primary);
}

.legal-modal-body h4 {
    margin: 24px 0 9px;
    color: var(--heading);
    font-size: 15px;
    font-weight: 800;
}

.legal-modal-body h4:first-child {
    margin-top: 0;
}

.legal-modal-body p {
    margin-bottom: 14px;
}

.legal-modal-body ul {
    margin: 0 0 18px;
    padding-left: 20px;
}

.legal-modal-body li {
    margin-bottom: 7px;
}

/*==================================================
  LEGAL NOTICE BOX
==================================================*/

.legal-notice-box {
    margin-bottom: 22px;
    padding: 15px 17px;
    border: 1px solid #efd99f;
    border-left: 4px solid var(--accent);
    border-radius: 11px;
    background: var(--accent-soft);
    color: #5e4b21;
    font-size: 11px;
    line-height: 1.7;
}

/*==================================================
  MODAL FORMS
==================================================*/

.legal-form {
    display: grid;
    gap: 15px;
    margin-top: 20px;
}

.legal-form-group {
    display: grid;
    gap: 7px;
}

.legal-form label {
    color: var(--heading);
    font-size: 11px;
    font-weight: 700;
}

.legal-form input,
.legal-form textarea {
    width: 100%;
    padding: 12px 13px;
    border: 1px solid var(--border);
    border-radius: 9px;
    background: #ffffff;
    color: var(--heading);
    font: inherit;
    font-size: 12px;
    outline: none;
    transition: 0.2s ease;
}

.legal-form input:focus,
.legal-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(23, 63, 130, 0.09);
}

.legal-form textarea {
    min-height: 120px;
    resize: vertical;
}

.legal-form-button {
    width: fit-content;
    min-height: 46px;
    padding: 0 19px;
    border: none;
    border-radius: 9px;
    background: var(--primary);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s ease;
}

.legal-form-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.legal-form-button:disabled {
    cursor: default;
    opacity: 0.7;
    transform: none;
}

.legal-form-message {
    display: none;
    padding: 12px 14px;
    border-radius: 9px;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
}

.legal-form-message.show {
    display: block;
}