/* =====================================================
GLOBAL
===================================================== */

{
box-sizing: border-box;
}

html {
scroll-behavior: smooth;
}

body {
margin: 0;

font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    sans-serif;

color: #10233f;
background: #ffffff;


}

a {
text-decoration: none;
color: inherit;
}

button,
input,
select {
font-family: inherit;
}

/* =====================================================
HEADER
===================================================== */

.site-header {
width: 100%;

background: #ffffff;

border-bottom: 1px solid #e5edf5;


}

.header-inner {
max-width: 1200px;

min-height: 72px;

margin: 0 auto;

padding: 0 20px;

display: flex;

align-items: center;

justify-content: space-between;

gap: 20px;


}

.brand {
display: flex;

align-items: center;

flex-shrink: 0;


}

.brand-logo {
display: block;

width: auto;

height: 42px;

max-width: 220px;

object-fit: contain;


}

/* =====================================================
RIGHT HEADER LOGO
===================================================== */

.header-label {
display: flex;

align-items: center;

justify-content: flex-end;

flex-shrink: 0;

margin-left: auto;


}

.header-partner-logo {
display: block;

width: auto;

height: 46px;

max-width: 220px;

object-fit: contain;


}

/* =====================================================
HERO
===================================================== */

.hero {
position: relative;

overflow: hidden;

background:
    linear-gradient(
        135deg,
        #f8fbff 0%,
        #edf6ff 50%,
        #ffffff 100%
    );

padding:
    80px 20px
    100px;


}

.hero-background {
position: absolute;

width: 600px;
height: 600px;

right: -220px;
top: -200px;

border-radius: 50%;

background:
    radial-gradient(
        circle,
        rgba(0, 114, 206, 0.15),
        rgba(0, 114, 206, 0)
    );


}

.hero-container {
max-width: 1200px;

margin: auto;

position: relative;

display: grid;

grid-template-columns:
    minmax(0, 1.15fr)
    minmax(420px, 0.85fr);

gap: 70px;

align-items: center;


}

/* =====================================================
HERO COPY
===================================================== */

.hero-copy {
position: relative;

z-index: 2;


}

/* =====================================================
HERO PRODUCT IMAGE
===================================================== */

.hero-product-image {
position: relative;

z-index: 3;

display: block;

width: 1200px;

max-width: 100%;

height: auto;

margin-bottom: 40px;

object-fit: contain;

visibility: visible;

opacity: 1;

filter:
    drop-shadow(
        0 50px 50px
        rgba(6, 114, 206, 0.15)
    );


}

/* =====================================================
HERO TEXT
===================================================== */

.eyebrow {
color: #0672ce;

font-size: 13px;

font-weight: 800;

letter-spacing: 2px;

margin-bottom: 22px;


}

.hero h1 {
margin: 0;

max-width: 680px;

font-size: clamp(42px, 5vw, 68px);

line-height: 1.08;

letter-spacing: -3px;

color: #10233f;


}

.hero h1 span {
display: block;

color: #0672ce;


}

.hero-description {
max-width: 600px;

margin-top: 30px;

color: #506783;

font-size: 18px;

line-height: 1.8;


}

.hero-benefits {
display: flex;

flex-wrap: wrap;

gap: 30px;

margin-top: 42px;


}

.hero-benefits div {
color: #48617c;

font-size: 13px;

font-weight: 600;


}

.hero-benefits strong {
display: block;

color: #0672ce;

font-size: 12px;

margin-bottom: 5px;


}

/* =====================================================
LEAD CARD
===================================================== */

.lead-card {
background: #ffffff;

border:
    1px solid #dce7f2;

border-radius: 18px;

padding: 38px;

box-shadow:
    0 25px 70px rgba(25, 73, 120, 0.12);


}

.form-header {
margin-bottom: 28px;
}

.form-label {
color: #0672ce;

font-size: 11px;

font-weight: 800;

letter-spacing: 1.5px;


}

.form-header h2 {
margin: 8px 0 10px;

font-size: 28px;

color: #10233f;


}

.form-header p {
margin: 0;

color: #71839a;

line-height: 1.6;

font-size: 14px;


}

/* =====================================================
FORM
===================================================== */

.form-section-title {
font-size: 13px;

font-weight: 800;

color: #10233f;

margin:
    22px 0
    15px;

padding-bottom: 10px;

border-bottom:
    1px solid #e7edf5;


}

.form-group {
margin-bottom: 17px;
}

.form-row {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 18px;

    width: 100%;
}

.form-row .form-group {
    width: 85%;
    min-width: 0px;
}




.form-group label {
display: block;

margin-bottom: 7px;

font-size: 12px;

font-weight: 700;

color: #344d68;


}

.form-group label span {
color: #0672ce;
}

input,
select {
    width: 100%;
    max-width: 100%;
    min-width: 0;

    height: 48px;

    padding: 0 14px;

    border:
        1px solid #d7e2ed;

    border-radius: 8px;

    background: #ffffff;

    color: #203a56;

    font-size: 13px;

    outline: none;

    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}


input:focus,
select:focus {
border-color: #0672ce;

box-shadow:
    0 0 0 3px
    rgba(6, 114, 206, 0.1);


}

input::placeholder {
color: #a6b3c1;
}

/* =====================================================
CHECKBOX
===================================================== */

.checkbox-card {
border:
1px solid #dce7f2;

border-radius: 9px;

margin-bottom: 15px;

transition: all 0.2s;


}

.checkbox-card:hover {
border-color: #0672ce;

background: #f7fbff;


}

.checkbox-card label {
display: flex;

align-items: flex-start;

gap: 12px;

padding: 15px;

cursor: pointer;


}

.checkbox-card input {
width: 18px;
height: 18px;

margin-top: 2px;

accent-color: #0672ce;


}

.checkbox-card strong {
display: block;

font-size: 13px;

color: #243e5b;


}

.checkbox-card small {
display: block;

margin-top: 4px;

color: #7b8da1;

line-height: 1.5;

font-size: 11px;


}

/* =====================================================
PRIVACY
===================================================== */

.privacy-box {
margin-top: 20px;

padding: 15px;

background: #f6f9fc;

border-radius: 8px;

font-size: 11px;

color: #647990;


}

.privacy-box label {
display: flex;

gap: 8px;

align-items: flex-start;

cursor: pointer;


}

.privacy-box input {
width: 16px;
height: 16px;

flex-shrink: 0;

accent-color: #0672ce;


}

.privacy-box strong {
color: #0672ce;
}

.privacy-link {
border: none;

background: transparent;

padding: 0;

margin-top: 8px;

color: #0672ce;

font-size: 11px;

cursor: pointer;

text-decoration: underline;


}

/* =====================================================
SUBMIT BUTTON
===================================================== */

.submit-button {
width: 100%;

height: 56px;

margin-top: 18px;

border: none;

border-radius: 8px;

background:
    linear-gradient(
        90deg,
        #0672ce,
        #005db3
    );

color: white;

font-size: 14px;

font-weight: 800;

cursor: pointer;

display: flex;

align-items: center;

justify-content: space-between;

padding: 0 20px;

box-shadow:
    0 10px 25px
    rgba(6, 114, 206, 0.2);

transition:
    transform 0.2s,
    box-shadow 0.2s;


}

.submit-button:hover {
transform: translateY(-2px);

box-shadow:
    0 15px 30px
    rgba(6, 114, 206, 0.28);


}

.form-notice {
text-align: center;

font-size: 10px;

line-height: 1.6;

color: #96a5b4;

margin-top: 14px;


}

/* =====================================================
ALERT
===================================================== */

.alert {
padding: 12px;

border-radius: 7px;

margin-bottom: 15px;

font-size: 12px;


}

.alert.error {
background: #fff2f2;

border:
    1px solid #ffd5d5;

color: #b42318;


}

/* =====================================================
SUCCESS
===================================================== */

.success-state {
text-align: center;

padding:
    35px 10px;


}

.success-icon {
width: 70px;
height: 70px;

margin: auto;

border-radius: 50%;

display: flex;

align-items: center;
justify-content: center;

background: #e8f7ef;

color: #1b9c5a;

font-size: 32px;

font-weight: 800;


}

.success-state h2 {
margin:
22px 0
10px;

color: #10233f;


}

.success-state p {
color: #71839a;

font-size: 14px;

line-height: 1.7;


}

.download-button {
display: flex;

align-items: center;
justify-content: center;

height: 56px;

margin-top: 25px;

border-radius: 8px;

background: #0672ce;

color: white;

font-weight: 800;

transition:
    background 0.2s,
    transform 0.2s;


}

.download-button:hover {
background: #005db3;

transform: translateY(-2px);


}

.small-text {
font-size: 11px !important;

color: #9aa7b5 !important;


}

/* =====================================================
VALUE SECTION
===================================================== */

.value-section {
padding:
100px 20px;

background: #ffffff;


}

.section-container {
max-width: 1100px;

margin: auto;


}

.section-heading {
max-width: 700px;

margin-bottom: 50px;


}

.section-heading span {
color: #0672ce;

font-size: 12px;

font-weight: 800;

letter-spacing: 1.5px;


}

.section-heading h2 {
margin-top: 12px;

font-size: 38px;

line-height: 1.25;

letter-spacing: -1.5px;


}

.value-grid {
display: grid;

grid-template-columns:
    repeat(3, 1fr);

gap: 20px;


}

.value-card {
padding: 32px;

border:
    1px solid #e4ebf3;

border-radius: 12px;

background: #ffffff;

transition:
    transform 0.2s,
    box-shadow 0.2s;


}

.value-card:hover {
transform: translateY(-5px);

box-shadow:
    0 20px 45px
    rgba(30, 75, 120, 0.08);


}

.value-card .number {
color: #0672ce;

font-size: 12px;

font-weight: 800;

margin-bottom: 35px;


}

.value-card h3 {
font-size: 22px;

margin-bottom: 10px;


}

.value-card p {
color: #71839a;

line-height: 1.7;

font-size: 13px;


}

/* =====================================================
BOTTOM CTA
===================================================== */

.bottom-cta {
max-width: 1100px;

margin:
    20px auto
    100px;

padding:
    60px;

border-radius: 18px;

background:
    linear-gradient(
        120deg,
        #073c70,
        #0672ce
    );

color: white;

display: flex;

align-items: center;

justify-content: space-between;

gap: 40px;


}

.bottom-cta span {
font-size: 11px;

font-weight: 800;

letter-spacing: 1.5px;

opacity: 0.8;


}

.bottom-cta h2 {
max-width: 650px;

font-size: 30px;

line-height: 1.35;

margin:
    10px 0;


}

.bottom-cta p {
opacity: 0.8;

font-size: 13px;


}

.bottom-button {
flex-shrink: 0;

padding:
    16px 22px;

background: white;

color: #0672ce;

border-radius: 7px;

font-size: 13px;

font-weight: 800;


}

/* =====================================================
FOOTER
===================================================== */

.footer {
padding:
28px 20px;

background: #071a2d;

color: #7890a8;

font-size: 11px;


}

.footer-inner {
max-width: 1100px;

margin: auto;

display: flex;

justify-content: space-between;

gap: 20px;


}

.footer-brand {
color: white;

font-weight: 800;


}

/* =====================================================
MODAL
===================================================== */

.modal {
display: none;

position: fixed;

z-index: 100;

inset: 0;

background:
    rgba(4, 21, 38, 0.65);

align-items: center;

justify-content: center;

padding: 20px;


}

.modal.active {
display: flex;
}

.modal-content {
position: relative;

max-width: 600px;

width: 100%;

background: white;

border-radius: 14px;

padding: 35px;

box-shadow:
    0 30px 80px
    rgba(0, 0, 0, 0.25);


}

.modal-content h2 {
margin-top: 0;

color: #10233f;


}

.modal-content p {
color: #667b91;

font-size: 13px;

line-height: 1.8;


}

.modal-close {
position: absolute;

right: 18px;

top: 15px;

border: none;

background: none;

font-size: 28px;

color: #7890a8;

cursor: pointer;


}

.modal-confirm {
width: 100%;

height: 48px;

border: none;

border-radius: 7px;

background: #0672ce;

color: white;

font-weight: 700;

cursor: pointer;

margin-top: 10px;


}

/* =====================================================
RESPONSIVE
===================================================== */

@media (max-width: 900px) {

.hero-container {
    grid-template-columns: 1fr;

    gap: 50px;
}

.hero {
    padding-top: 55px;
}

.hero-copy {
    text-align: center;
}

.hero-product-image {
    margin-left: auto;
    margin-right: auto;
}

.hero-description {
    margin-left: auto;
    margin-right: auto;
}

.hero-benefits {
    justify-content: center;
}

.lead-card {
    max-width: 650px;

    margin: auto;

    width: 100%;
}

.value-grid {
    grid-template-columns: 1fr;
}

.bottom-cta {
    margin-left: 20px;
    margin-right: 20px;

    flex-direction: column;

    align-items: flex-start;
}


}

/* =====================================================
TABLET / MOBILE
===================================================== */

@media (max-width: 600px) {

.header-inner {
    min-height: 62px;

    padding:
        0 15px;

    gap: 10px;
}

.brand-logo {
    height: 34px;

    max-width: 155px;
}

.header-partner-logo {
    height: 34px;

    max-width: 155px;
}

.hero-product-image {
    width: 260px;

    margin-left: auto;
    margin-right: auto;

    margin-bottom: 22px;
}

.hero h1 {
    font-size: 42px;

    letter-spacing: -2px;
}

.hero-description {
    font-size: 15px;
}

.form-row {
    grid-template-columns: 1fr;
}

.lead-card {
    padding: 25px;
}

.section-heading h2 {
    font-size: 30px;
}

.bottom-cta {
    padding: 35px 25px;
}

.bottom-cta h2 {
    font-size: 24px;
}

.footer-inner {
    flex-direction: column;
}


}

/* =====================================================
VERY SMALL MOBILE
===================================================== */

@media (max-width: 400px) {

.header-inner {
    padding:
        0 12px;

    gap: 8px;
}

.brand-logo {
    height: 30px;

    max-width: 130px;
}

.header-partner-logo {
    height: 30px;

    max-width: 130px;
}


}