:root {
    --primary: #0B3D91;
    --primary-dark: #081F4D;
    --text: #172033;
    --muted: #667085;
    --background: #F7F9FC;
    --white: #FFFFFF;
    --border: #E5E7EB;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    color: var(--text);
    background: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}


/* ================================
   NAVIGATION
================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255,255,255,.94);

    backdrop-filter: blur(16px);

    border-bottom: 1px solid rgba(0,0,0,.06);
}

.nav-container {
    max-width: 1200px;

    margin: auto;

    padding: 16px 24px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.brand {
    display: flex;

    align-items: center;

    gap: 12px;
}

.brand-logo {
    width: 48px;
    height: 48px;

    object-fit: contain;
}

.brand-text {
    display: flex;

    flex-direction: column;
}

.brand-name {
    font-size: 18px;

    font-weight: 800;

    letter-spacing: .5px;
}

.brand-tagline {
    font-size: 10px;

    color: var(--muted);
}

.desktop-nav {
    display: flex;

    align-items: center;

    gap: 28px;
}

.desktop-nav a {
    font-size: 14px;

    font-weight: 600;

    color: #4B5563;

    transition: .2s;
}

.desktop-nav a:hover {
    color: var(--primary);
}

.download-button {
    background: var(--primary);

    color: white !important;

    padding: 11px 18px;

    border-radius: 10px;
}


/* ================================
   HERO
================================ */

.hero {
    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(11,61,145,.12),
            transparent 35%
        ),

        linear-gradient(
            135deg,
            #F7F9FC,
            #FFFFFF
        );

    padding: 90px 24px 80px;
}

.hero-container {
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: 1.1fr .9fr;

    align-items: center;

    gap: 60px;
}

.hero-badge {
    display: inline-block;

    padding: 8px 14px;

    background: #EAF0FA;

    color: var(--primary);

    border-radius: 30px;

    font-size: 13px;

    font-weight: 700;

    margin-bottom: 22px;
}

.hero h1 {
    font-size: clamp(44px, 6vw, 72px);

    line-height: 1.05;

    letter-spacing: -2px;

    margin: 0;

    max-width: 700px;
}

.hero h1 span {
    display: block;

    color: var(--primary);
}

.hero-description {
    max-width: 600px;

    font-size: 19px;

    line-height: 1.7;

    color: var(--muted);

    margin: 25px 0;
}

.hero-actions {
    display: flex;

    gap: 14px;

    flex-wrap: wrap;
}

.primary-button,
.secondary-button {
    padding: 14px 22px;

    border-radius: 10px;

    font-weight: 700;

    transition: .2s;
}

.primary-button {
    background: var(--primary);

    color: white;
}

.primary-button:hover {
    background: var(--primary-dark);
}

.secondary-button {
    border: 1px solid var(--border);

    background: white;
}

.secondary-button:hover {
    border-color: var(--primary);

    color: var(--primary);
}

.hero-trust {
    display: flex;

    gap: 35px;

    margin-top: 45px;
}

.hero-trust div {
    display: flex;

    flex-direction: column;

    gap: 4px;
}

.hero-trust strong {
    font-size: 14px;
}

.hero-trust span {
    color: var(--muted);

    font-size: 12px;
}


/* HERO LOGO */

.hero-visual {
    position: relative;

    min-height: 420px;

    display: flex;

    align-items: center;

    justify-content: center;
}

.hero-glow {
    position: absolute;

    width: 340px;
    height: 340px;

    border-radius: 50%;

    background: rgba(11,61,145,.10);

    filter: blur(5px);
}

.logo-card {
    position: relative;

    width: 330px;

    padding: 45px 30px;

    border-radius: 30px;

    background: rgba(255,255,255,.85);

    border: 1px solid rgba(255,255,255,.9);

    box-shadow:
        0 30px 80px rgba(11,61,145,.15);

    text-align: center;
}

.logo-card img {
    width: 190px;

    height: 190px;

    object-fit: contain;
}

.logo-card-text {
    display: flex;

    flex-direction: column;

    gap: 6px;

    margin-top: 15px;
}

.logo-card-text strong {
    font-size: 22px;

    letter-spacing: 1px;
}

.logo-card-text span {
    font-size: 12px;

    color: var(--muted);
}


/* ================================
   SECTIONS
================================ */

.section-container {
    max-width: 1200px;

    margin: auto;

    padding: 100px 24px;
}

.intro-section {
    background: white;

    text-align: center;
}

.section-label {
    color: var(--primary);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.section-container h2 {
    font-size: clamp(32px, 4vw, 46px);

    letter-spacing: -1px;

    margin: 12px 0 15px;
}

.section-description {
    max-width: 650px;

    margin: auto;

    color: var(--muted);

    line-height: 1.7;
}


/* ================================
   FEATURES
================================ */

.feature-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;

    margin-top: 55px;

    text-align: left;
}

.feature-card {
    padding: 28px;

    border: 1px solid var(--border);

    border-radius: 18px;

    transition: .25s;

    background: white;
}

.feature-card:hover {
    transform: translateY(-5px);

    border-color: #C8D5EB;

    box-shadow:
        0 15px 40px rgba(0,0,0,.06);
}

.feature-icon {
    font-size: 30px;

    margin-bottom: 18px;
}

.feature-card h3 {
    margin: 0 0 10px;

    font-size: 20px;
}

.feature-card p {
    color: var(--muted);

    font-size: 14px;

    line-height: 1.6;
}

.card-link {
    display: inline-block;

    margin-top: 12px;

    color: var(--primary);

    font-weight: 700;

    font-size: 13px;
}


/* ================================
   RESOURCES
================================ */

.resources-section {
    background: var(--background);
}

.resources-heading {
    display: flex;

    align-items: end;

    justify-content: space-between;

    gap: 30px;
}

.text-button {
    color: var(--primary);

    font-weight: 700;
}

.resource-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 16px;

    margin-top: 45px;
}

.resource-card {
    background: white;

    padding: 24px;

    border-radius: 16px;

    border: 1px solid var(--border);

    display: flex;

    flex-direction: column;

    gap: 7px;

    transition: .2s;
}

.resource-card:hover {
    border-color: #B9C9E4;

    transform: translateY(-3px);
}

.resource-card span {
    font-size: 28px;
}

.resource-card strong {
    font-size: 16px;
}

.resource-card small {
    color: var(--muted);

    font-size: 13px;
}


/* ================================
   DOWNLOAD
================================ */

.download-section {
    background: var(--primary-dark);

    color: white;
}

.download-container {
    max-width: 1200px;

    margin: auto;

    padding: 90px 24px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 50px;
}

.download-container h2 {
    font-size: clamp(36px, 5vw, 55px);

    line-height: 1.1;

    margin: 15px 0;
}

.download-container p {
    color: #CBD5E1;

    line-height: 1.7;

    max-width: 550px;
}

.store-buttons {
    display: flex;

    gap: 12px;

    margin-top: 30px;
}

.store-button {
    display: flex;

    align-items: center;

    gap: 10px;

    padding: 10px 18px;

    border: 1px solid rgba(255,255,255,.3);

    border-radius: 10px;

    color: white;

    background: rgba(255,255,255,.08);
}

.store-button small {
    display: block;

    font-size: 9px;

    color: #CBD5E1;
}

.download-logo {
    text-align: center;
}

.download-logo img {
    width: 260px;

    max-width: 80%;

    filter: drop-shadow(
        0 20px 40px rgba(0,0,0,.3)
    );
}


/* ================================
   FOOTER
================================ */

.site-footer {
    background: #071936;

    color: white;

    padding: 60px 24px 25px;
}

.footer-container {
    max-width: 1200px;

    margin: auto;

    display: flex;

    justify-content: space-between;

    gap: 60px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    width: 55px;

    height: 55px;

    object-fit: contain;
}

.footer-brand h3 {
    margin: 12px 0 5px;
}

.footer-brand p {
    color: #94A3B8;

    font-size: 13px;
}

.footer-links {
    display: flex;

    gap: 80px;
}

.footer-links div {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.footer-links h4 {
    margin: 0 0 8px;
}

.footer-links a {
    color: #94A3B8;

    font-size: 13px;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;

    margin: 50px auto 0;

    padding-top: 20px;

    border-top: 1px solid rgba(255,255,255,.1);

    display: flex;

    justify-content: space-between;

    gap: 20px;

    color: #64748B;

    font-size: 11px;
}


/* ================================
   MOBILE
================================ */

@media (max-width: 850px) {

    .desktop-nav {
        display: none;
    }

    .hero {
        padding-top: 60px;
    }

    .hero-container {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        min-height: 320px;
    }

    .feature-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .resource-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .resources-heading {
        align-items: start;

        flex-direction: column;
    }

    .download-container {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .download-container p {
        margin-left: auto;
        margin-right: auto;
    }

    .store-buttons {
        justify-content: center;
    }

    .footer-container {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;

        text-align: center;
    }
}

@media (max-width: 550px) {

    .brand-tagline {
        display: none;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-trust {
        gap: 18px;
    }

    .feature-grid,
    .resource-grid {
        grid-template-columns: 1fr;
    }

    .logo-card {
        width: 280px;
    }

    .logo-card img {
        width: 160px;
        height: 160px;
    }

    .store-buttons {
        flex-direction: column;
    }

    .store-button {
        justify-content: center;
    }

    .footer-links {
        gap: 50px;
    }
 
  .value-points {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important; 
  }

  .value-point div {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
  }

  .value-point span {
    display: block !important;
  }

}

/* =========================================
   CONTACT PAGE
========================================= */

.contact-hero {
    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(11,61,145,.13),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #F7F9FC,
            #FFFFFF
        );

    padding: 90px 24px 100px;
}

.contact-hero-container {
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: 1.05fr .95fr;

    align-items: center;

    gap: 70px;
}

.contact-hero-content h1 {
    font-size: clamp(44px, 6vw, 70px);

    line-height: 1.05;

    letter-spacing: -2px;

    margin: 0;

    max-width: 650px;
}

.contact-hero-content h1 span {
    display: block;

    color: var(--primary);
}

.contact-hero-content > p {
    max-width: 600px;

    margin: 25px 0;

    color: var(--muted);

    font-size: 19px;

    line-height: 1.7;
}


/* HERO VISUAL */

.contact-hero-visual {
    position: relative;

    min-height: 420px;

    display: flex;

    align-items: center;

    justify-content: center;
}

.contact-glow {
    position: absolute;

    width: 340px;
    height: 340px;

    border-radius: 50%;

    background: rgba(11,61,145,.10);

    filter: blur(6px);
}

.contact-logo-card {
    position: relative;

    width: 350px;

    padding: 42px 30px;

    border-radius: 28px;

    background: rgba(255,255,255,.88);

    border: 1px solid rgba(255,255,255,.95);

    box-shadow:
        0 30px 80px rgba(11,61,145,.15);

    text-align: center;

    z-index: 2;
}

.contact-logo-card img {
    width: 180px;
    height: 180px;

    object-fit: contain;

    display: block;

    margin: auto;
}

.contact-logo-card strong {
    display: block;

    font-size: 23px;

    margin-top: 18px;

    letter-spacing: .5px;
}

.contact-logo-card span {
    display: block;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.5;

    margin-top: 7px;
}


/* =========================================
   CONTACT OPTIONS
========================================= */

.contact-options-section {
    background: white;
}

.contact-heading {
    max-width: 700px;

    margin: auto;

    text-align: center;
}

.contact-heading h2 {
    font-size: clamp(34px, 4vw, 48px);

    line-height: 1.1;

    letter-spacing: -1px;

    margin: 14px 0 15px;
}

.contact-heading p {
    color: var(--muted);

    line-height: 1.7;

    margin: auto;
}

.contact-options-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;

    margin-top: 55px;
}

.contact-option-card {
    padding: 28px;

    border: 1px solid var(--border);

    border-radius: 20px;

    background: white;

    transition: .25s;
}

.contact-option-card:hover {
    transform: translateY(-5px);

    border-color: #C8D5EB;

    box-shadow:
        0 15px 40px rgba(0,0,0,.06);
}

.contact-option-icon {
    width: 54px;
    height: 54px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #EAF0FA;

    border-radius: 16px;

    font-size: 25px;

    margin-bottom: 22px;
}

.contact-option-label {
    color: var(--primary);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.3px;
}

.contact-option-card h3 {
    margin: 8px 0 10px;

    font-size: 19px;
}

.contact-option-card p {
    color: var(--muted);

    font-size: 14px;

    line-height: 1.65;

    min-height: 70px;
}

.contact-option-link {
    display: inline-block;

    margin-top: 10px;

    color: var(--primary);

    font-size: 13px;

    font-weight: 700;
}


/* =========================================
   CONTACT FORM
========================================= */

.contact-form-section {
    background: var(--background);
}

.contact-form-layout {
    display: grid;

    grid-template-columns: .85fr 1.15fr;

    gap: 80px;

    align-items: start;
}

.contact-form-info h2 {
    font-size: clamp(36px, 4vw, 50px);

    line-height: 1.1;

    letter-spacing: -1px;

    margin: 14px 0 20px;
}

.contact-form-info > p {
    max-width: 500px;

    color: var(--muted);

    line-height: 1.7;
}

.contact-info-list {
    margin-top: 40px;

    display: flex;

    flex-direction: column;

    gap: 22px;
}

.contact-info-item {
    display: flex;

    align-items: center;

    gap: 15px;
}

.contact-info-icon {
    width: 46px;
    height: 46px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: #EAF0FA;

    font-size: 20px;
}

.contact-info-item strong {
    display: block;

    font-size: 14px;

    margin-bottom: 3px;
}

.contact-info-item span {
    display: block;

    color: var(--muted);

    font-size: 13px;
}


/* FORM CARD */

.contact-form-card {
    background: white;

    padding: 38px;

    border-radius: 24px;

    border: 1px solid var(--border);

    box-shadow:
        0 20px 60px rgba(0,0,0,.05);
}

.contact-form-card form {
    display: flex;

    flex-direction: column;

    gap: 20px;
}

.contact-form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}

.contact-field {
    display: flex;

    flex-direction: column;

    gap: 8px;
}

.contact-field label {
    font-size: 13px;

    font-weight: 700;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;

    padding: 13px 14px;

    border: 1px solid var(--border);

    border-radius: 10px;

    background: white;

    color: var(--text);

    font: inherit;

    outline: none;

    transition: .2s;
}

.contact-field textarea {
    resize: vertical;

    min-height: 145px;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: var(--primary);

    box-shadow:
        0 0 0 3px rgba(11,61,145,.08);
}

.contact-submit-button {
    border: 0;

    padding: 14px 22px;

    border-radius: 10px;

    background: var(--primary);

    color: white;

    font: inherit;

    font-weight: 700;

    cursor: pointer;

    transition: .2s;
}

.contact-submit-button:hover {
    background: var(--primary-dark);
}

.contact-submit-button span {
    margin-left: 8px;
}

.contact-form-note {
    color: var(--muted);

    font-size: 11px;

    line-height: 1.5;
}


/* =========================================
   FAQ
========================================= */

.contact-faq-section {
    background: white;
}

.faq-grid {
    max-width: 950px;

    margin: 55px auto 0;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}

.faq-card {
    padding: 26px 28px;

    border: 1px solid var(--border);

    border-radius: 18px;

    background: white;
}

.faq-card h3 {
    font-size: 17px;

    margin: 0 0 10px;
}

.faq-card p {
    color: var(--muted);

    font-size: 14px;

    line-height: 1.65;

    margin: 0;
}


/* =========================================
   EMERGENCY
========================================= */

.contact-emergency-section {
    background: #FFF8E8;

    border-top: 1px solid #F3E3B8;

    border-bottom: 1px solid #F3E3B8;
}

.contact-emergency-container {
    max-width: 900px;

    margin: auto;

    padding: 30px 24px;

    display: flex;

    align-items: center;

    gap: 18px;
}

.contact-emergency-icon {
    width: 46px;
    height: 46px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #F2C94C;

    color: #5C4300;

    font-weight: 900;

    font-size: 22px;
}

.contact-emergency-container strong {
    display: block;

    margin-bottom: 4px;
}

.contact-emergency-container p {
    margin: 0;

    color: #6B5A2A;

    font-size: 13px;

    line-height: 1.6;
}


/* =========================================
   CONTACT CTA
========================================= */

.contact-cta-section {
    background: var(--primary-dark);

    color: white;
}

.contact-cta-container {
    max-width: 1200px;

    margin: auto;

    padding: 80px 24px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;
}

.contact-cta-container h2 {
    font-size: clamp(36px, 5vw, 55px);

    line-height: 1.1;

    margin: 14px 0;
}

.contact-cta-container p {
    max-width: 550px;

    color: #CBD5E1;

    line-height: 1.7;

    margin: 0;
}

.contact-cta-container .secondary-button {
    color: white;

    background: transparent;

    border-color: rgba(255,255,255,.3);
}

.contact-cta-container .secondary-button:hover {
    border-color: white;

    color: white;
}


/* =========================================
   CONTACT MOBILE
========================================= */

@media (max-width: 950px) {

    .contact-hero-container {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .contact-hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-hero-content .hero-actions {
        justify-content: center;
    }

    .contact-options-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .contact-form-layout {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .contact-form-info {
        text-align: center;
    }

    .contact-form-info > p {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-info-list {
        max-width: 450px;

        margin-left: auto;
        margin-right: auto;

        text-align: left;
    }

    .contact-cta-container {
        flex-direction: column;

        text-align: center;
    }

    .contact-cta-container p {
        margin-left: auto;
        margin-right: auto;
    }
}


@media (max-width: 600px) {

    .contact-hero {
        padding-top: 60px;
    }

    .contact-logo-card {
        width: 290px;
    }

    .contact-logo-card img {
        width: 155px;
        height: 155px;
    }

    .contact-options-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 25px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .contact-emergency-container {
        align-items: flex-start;
    }
}

/* =========================================
SERVICES HERO
========================================= */

.services-hero {
position: relative;


overflow: hidden;

background:
    radial-gradient(
        circle at 85% 40%,
        rgba(11, 61, 145, .12),
        transparent 32%
    ),
    linear-gradient(
        135deg,
        #F7F9FC,
        #FFFFFF
    );

padding: 85px 24px 80px;


}

.services-hero-container {
max-width: 1200px;


margin: auto;

display: grid;

grid-template-columns: 1.05fr .95fr;

align-items: center;

gap: 70px;


}

.services-hero-content h1 {
font-size: clamp(44px, 6vw, 68px);


line-height: 1.06;

letter-spacing: -2.5px;

margin: 0;

max-width: 680px;


}

.services-hero-content h1 span {
display: block;


color: var(--primary);


}

.services-hero-content p {
max-width: 600px;


margin: 25px 0;

color: var(--muted);

font-size: 18px;

line-height: 1.75;


}

/* =========================================
SERVICES VISUAL
========================================= */

.services-hero-visual {
position: relative;


min-height: 390px;

display: flex;

align-items: center;

justify-content: center;


}

.services-glow {
position: absolute;


width: 330px;
height: 330px;

border-radius: 50%;

background: rgba(11, 61, 145, .10);

filter: blur(8px);


}

.services-visual-card {
position: relative;


width: 350px;

padding: 38px 34px;

border-radius: 28px;

background: rgba(255,255,255,.9);

border: 1px solid rgba(255,255,255,.95);

box-shadow:
    0 30px 70px rgba(11,61,145,.14);

text-align: center;


}

.services-visual-icon {
width: 82px;
height: 82px;


margin: 0 auto 20px;

display: flex;

align-items: center;
justify-content: center;

border-radius: 24px;

background: #EAF0FA;

font-size: 40px;


}

.services-visual-card strong {
display: block;


font-size: 24px;

letter-spacing: .5px;


}

.services-visual-card > span {
display: block;


margin-top: 7px;

color: var(--muted);

font-size: 13px;


}

.visual-mini-grid {
display: grid;


grid-template-columns: repeat(4, 1fr);

gap: 10px;

margin-top: 30px;


}

.visual-mini-grid div {
padding: 12px 5px;


border: 1px solid var(--border);

border-radius: 13px;

background: #fff;


}

.visual-mini-grid span {
display: block;


font-size: 20px;

margin-bottom: 5px;


}

.visual-mini-grid small {
color: var(--muted);


font-size: 10px;

font-weight: 600;


}

/* =========================================
SERVICES SECTION
========================================= */

.services-section {
background: white;
}

.services-heading {
max-width: 700px;
}

.services-heading .section-description {
margin: 0;


max-width: 650px;


}

/* =========================================
SERVICE CARDS
========================================= */

.services-grid {
display: grid;


grid-template-columns:
    repeat(2, 1fr);

gap: 20px;

margin-top: 50px;


}

.service-card {
position: relative;


display: flex;

gap: 22px;

padding: 28px;

border: 1px solid var(--border);

border-radius: 20px;

background: white;

transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;

overflow: hidden;


}

.service-card::after {
content: "";


position: absolute;

width: 90px;
height: 90px;

right: -40px;
bottom: -40px;

border-radius: 50%;

background: rgba(11,61,145,.035);

transition: .25s ease;


}

.service-card:hover {
transform: translateY(-5px);


border-color: #C7D4EA;

box-shadow:
    0 18px 45px rgba(0,0,0,.07);


}

.service-card:hover::after {
transform: scale(1.5);
}

.service-icon {
flex: 0 0 62px;


width: 62px;
height: 62px;

display: flex;

align-items: center;
justify-content: center;

border-radius: 17px;

background: #EEF3FB;

font-size: 29px;


}

.service-card-content {
position: relative;


z-index: 1;


}

.service-label {
display: block;


margin-bottom: 5px;

color: var(--primary);

font-size: 10px;

font-weight: 800;

letter-spacing: 1.4px;


}

.service-card h3 {
margin: 0 0 8px;


font-size: 20px;

letter-spacing: -.2px;


}

.service-card p {
margin: 0;


color: var(--muted);

font-size: 14px;

line-height: 1.65;


}

.service-link {
display: inline-flex;


align-items: center;

gap: 7px;

margin-top: 17px;

color: var(--primary);

font-size: 13px;

font-weight: 700;


}

.service-link span {
transition: transform .2s ease;
}

.service-card:hover .service-link span {
transform: translateX(4px);
}

/* =========================================
VALUE SECTION
========================================= */

.services-value-section {
background: var(--background);
}

.value-container {
display: grid;


grid-template-columns: 1fr 1fr;

align-items: center;

gap: 80px;


}

.value-content h2 {
max-width: 580px;
}

.value-content p {
max-width: 560px;


color: var(--muted);

line-height: 1.75;

margin-top: 20px;


}

.value-points {
display: flex;


flex-direction: column;

gap: 18px;


}

.value-point {
display: flex;


align-items: flex-start;

gap: 16px;

padding: 20px;

background: white;

border: 1px solid var(--border);

border-radius: 16px;


}

.value-point-icon {
flex: 0 0 36px;


width: 36px;
height: 36px;

display: flex;

align-items: center;
justify-content: center;

border-radius: 50%;

background: #EAF0FA;

color: var(--primary);

font-weight: 900;


}

.value-point strong {
display: block;


margin-bottom: 4px;

font-size: 15px;


}

.value-point span {
display: block;


color: var(--muted);

font-size: 13px;

line-height: 1.5;


}

/* =========================================
DOWNLOAD CTA
========================================= */

.services-download-section {
background: var(--primary-dark);


color: white;


}

.services-download-container {
max-width: 1200px;


margin: auto;

padding: 90px 24px;

display: grid;

grid-template-columns: 1fr 1fr;

align-items: center;

gap: 60px;


}

.services-download-container h2 {
max-width: 600px;


margin: 15px 0;

font-size: clamp(38px, 5vw, 55px);

line-height: 1.08;

letter-spacing: -1.5px;


}

.services-download-container p {
max-width: 560px;


color: #CBD5E1;

line-height: 1.7;


}

.services-download-container .secondary-button {
background: rgba(255,255,255,.06);


border-color: rgba(255,255,255,.25);

color: white;


}

.services-download-container .secondary-button:hover {
background: white;


color: var(--primary);


}

.services-download-logo {
display: flex;


justify-content: center;


}

.services-download-logo img {
width: 270px;


max-width: 75%;

filter:
    drop-shadow(
        0 25px 45px rgba(0,0,0,.35)
    );


}

/* =========================================
MOBILE
========================================= */

@media (max-width: 850px) {


.services-hero {
    padding-top: 60px;
}

.services-hero-container {
    grid-template-columns: 1fr;

    text-align: center;

    gap: 45px;
}

.services-hero-content p {
    margin-left: auto;
    margin-right: auto;
}

.services-hero-content .hero-actions {
    justify-content: center;
}

.services-hero-visual {
    min-height: 330px;
}

.services-grid {
    grid-template-columns: 1fr;
}

.value-container {
    grid-template-columns: 1fr;

    gap: 45px;
}

.services-download-container {
    grid-template-columns: 1fr;

    text-align: center;
}

.services-download-container p {
    margin-left: auto;
    margin-right: auto;
}

.services-download-container .hero-actions {
    justify-content: center;
}


}

@media (max-width: 550px) {


.services-hero-content h1 {
    font-size: 42px;

    letter-spacing: -1.5px;
}

.services-visual-card {
    width: 290px;

    padding: 30px 22px;
}

.services-glow {
    width: 280px;
    height: 280px;
}

.service-card {
    flex-direction: column;

    padding: 24px;
}

.service-icon {
    flex-basis: 58px;

    width: 58px;
    height: 58px;
}

.visual-mini-grid {
    gap: 6px;
}

.services-download-logo img {
    width: 220px;
}


}
css
/* =========================================
   ABOUT PAGE
========================================= */

.about-hero {
    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(11,61,145,.13),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #F7F9FC,
            #FFFFFF
        );

    padding: 90px 24px 100px;
}

.about-hero-container {
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: 1.05fr .95fr;

    align-items: center;

    gap: 70px;
}

.about-hero-content h1 {
    font-size: clamp(44px, 6vw, 70px);

    line-height: 1.05;

    letter-spacing: -2px;

    margin: 0;

    max-width: 720px;
}

.about-hero-content h1 span {
    display: block;

    color: var(--primary);
}

.about-hero-content > p {
    max-width: 600px;

    margin: 25px 0;

    color: var(--muted);

    font-size: 19px;

    line-height: 1.7;
}


/* HERO VISUAL */

.about-hero-visual {
    position: relative;

    min-height: 420px;

    display: flex;

    align-items: center;

    justify-content: center;
}

.about-glow {
    position: absolute;

    width: 340px;
    height: 340px;

    border-radius: 50%;

    background: rgba(11,61,145,.10);

    filter: blur(6px);
}

.about-logo-card {
    position: relative;

    width: 350px;

    padding: 42px 30px;

    border-radius: 28px;

    background: rgba(255,255,255,.88);

    border: 1px solid rgba(255,255,255,.95);

    box-shadow:
        0 30px 80px rgba(11,61,145,.15);

    text-align: center;

    z-index: 2;
}

.about-logo-card img {
    width: 190px;
    height: 190px;

    object-fit: contain;
}

.about-logo-card div {
    display: flex;

    flex-direction: column;

    gap: 6px;

    margin-top: 15px;
}

.about-logo-card strong {
    font-size: 22px;

    letter-spacing: 1px;
}

.about-logo-card span {
    color: var(--muted);

    font-size: 12px;
}


/* STORY */

.about-story-section {
    background: white;
}

.about-story-grid {
    display: grid;

    grid-template-columns: 1.15fr .85fr;

    gap: 90px;

    align-items: center;
}

.about-story-content h2 {
    font-size: clamp(34px, 4vw, 48px);

    line-height: 1.1;

    letter-spacing: -1px;

    margin: 14px 0 25px;
}

.about-story-content p {
    max-width: 650px;

    color: var(--muted);

    line-height: 1.75;

    margin: 0 0 18px;
}

.about-story-highlight {
    padding: 40px;

    border-radius: 24px;

    background: var(--background);

    border: 1px solid var(--border);

    box-shadow:
        0 15px 40px rgba(0,0,0,.04);
}

.about-highlight-icon {
    width: 60px;
    height: 60px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: #EAF0FA;

    font-size: 28px;

    margin-bottom: 25px;
}

.about-story-highlight h3 {
    font-size: 28px;

    line-height: 1.2;

    margin: 12px 0 15px;
}

.about-story-highlight p {
    color: var(--muted);

    line-height: 1.7;

    margin: 0;
}


/* MISSION */

.about-mission-section {
    background: var(--background);
}

.about-centered-heading {
    max-width: 720px;

    margin: auto;

    text-align: center;
}

.about-centered-heading h2 {
    font-size: clamp(34px, 4vw, 48px);

    line-height: 1.1;

    letter-spacing: -1px;

    margin: 14px 0 18px;
}

.about-centered-heading p {
    color: var(--muted);

    line-height: 1.7;

    margin: auto;
}

.about-values-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;

    margin-top: 55px;
}

.about-value-card {
    background: white;

    padding: 30px;

    border: 1px solid var(--border);

    border-radius: 20px;

    transition: .25s;
}

.about-value-card:hover {
    transform: translateY(-5px);

    border-color: #C8D5EB;

    box-shadow:
        0 15px 40px rgba(0,0,0,.06);
}

.about-value-icon {
    width: 54px;
    height: 54px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: #EAF0FA;

    font-size: 25px;

    margin-bottom: 22px;
}

.about-value-card h3 {
    margin: 0 0 10px;

    font-size: 19px;
}

.about-value-card p {
    margin: 0;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.65;
}


/* FUTURE */

.about-future-section {
    background: white;
}

.about-future-container {
    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 80px;
}

.about-future-content h2 {
    font-size: clamp(36px, 4vw, 50px);

    line-height: 1.1;

    letter-spacing: -1px;

    margin: 14px 0 20px;
}

.about-future-content p {
    max-width: 560px;

    color: var(--muted);

    line-height: 1.7;

    margin-bottom: 16px;
}

.about-future-content .text-button {
    display: inline-block;

    margin-top: 8px;
}


/* FUTURE VISUAL */

.about-future-visual {
    position: relative;

    min-height: 380px;

    display: flex;

    align-items: center;

    justify-content: center;
}

.future-circle {
    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(11,61,145,.12);
}

.future-circle-one {
    width: 280px;
    height: 280px;
}

.future-circle-two {
    width: 390px;
    height: 390px;

    border-color: rgba(11,61,145,.06);
}

.future-logo {
    position: relative;

    width: 210px;
    height: 210px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: white;

    box-shadow:
        0 25px 60px rgba(11,61,145,.12);

    z-index: 2;
}

.future-logo img {
    width: 155px;
    height: 155px;

    object-fit: contain;
}


/* CTA */

.about-cta-section {
    background: var(--primary-dark);

    color: white;
}

.about-cta-container {
    max-width: 1200px;

    margin: auto;

    padding: 75px 24px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;
}

.about-cta-container h2 {
    font-size: clamp(34px, 4vw, 48px);

    line-height: 1.1;

    margin: 14px 0;
}

.about-cta-container p {
    max-width: 550px;

    color: #CBD5E1;

    line-height: 1.7;

    margin: 0;
}

.about-cta-container .secondary-button {
    color: white;

    background: transparent;

    border-color: rgba(255,255,255,.3);
}

.about-cta-container .secondary-button:hover {
    border-color: white;

    color: white;
}


/* =========================================
   ABOUT MOBILE
========================================= */

@media (max-width: 900px) {

    .about-hero-container {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .about-hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .about-hero-content .hero-actions {
        justify-content: center;
    }

    .about-story-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .about-values-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .about-future-container {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .about-future-content {
        text-align: center;
    }

    .about-future-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .about-cta-container {
        flex-direction: column;

        text-align: center;
    }

    .about-cta-container p {
        margin-left: auto;
        margin-right: auto;
    }
}


@media (max-width: 600px) {

    .about-hero {
        padding-top: 60px;
    }

    .about-logo-card {
        width: 290px;
    }

    .about-logo-card img {
        width: 160px;
        height: 160px;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .about-story-highlight {
        padding: 30px;
    }

    .about-future-visual {
        min-height: 300px;
    }

    .future-circle-one {
        width: 220px;
        height: 220px;
    }

    .future-circle-two {
        width: 300px;
        height: 300px;
    }

    .future-logo {
        width: 165px;
        height: 165px;
    }

    .future-logo img {
        width: 120px;
        height: 120px;
    }
}

css
/* =========================================
   COMMUNITY PAGE
========================================= */

.community-hero {
    background:
        radial-gradient(
            circle at 80% 35%,
            rgba(11,61,145,.14),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #F7F9FC,
            #FFFFFF
        );

    padding: 90px 24px 100px;
}

.community-hero-container {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: 1.05fr .95fr;

    align-items: center;

    gap: 70px;
}

.community-hero-content h1 {
    font-size: clamp(44px, 6vw, 70px);

    line-height: 1.05;

    letter-spacing: -2px;

    margin: 0;

    max-width: 700px;
}

.community-hero-content h1 span {
    display: block;

    color: var(--primary);
}

.community-hero-content > p {
    max-width: 600px;

    margin: 25px 0;

    color: var(--muted);

    font-size: 19px;

    line-height: 1.7;
}


/* COMMUNITY VISUAL */

.community-hero-visual {
    position: relative;

    min-height: 430px;

    display: flex;

    align-items: center;

    justify-content: center;
}

.community-community-card {
    position: relative;

    width: 390px;

    padding: 28px;

    background: rgba(255,255,255,.9);

    border: 1px solid rgba(255,255,255,.95);

    border-radius: 24px;

    box-shadow:
        0 30px 80px rgba(11,61,145,.15);

    z-index: 2;
}

.community-card-header {
    display: flex;

    align-items: center;

    gap: 13px;

    padding-bottom: 22px;

    border-bottom: 1px solid var(--border);
}

.community-avatar {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--primary);

    color: white;

    font-size: 14px;

    font-weight: 800;
}

.community-card-header div:last-child {
    display: flex;

    flex-direction: column;

    gap: 3px;
}

.community-card-header strong {
    font-size: 15px;
}

.community-card-header span {
    color: var(--muted);

    font-size: 12px;
}

.community-post {
    padding: 25px 0;
}

.community-post-title {
    font-size: 20px;

    font-weight: 800;

    margin-bottom: 10px;
}

.community-post p {
    color: var(--muted);

    line-height: 1.6;

    font-size: 14px;

    margin: 0;
}

.community-post-actions {
    display: flex;

    gap: 18px;

    padding-top: 18px;

    border-top: 1px solid var(--border);

    color: var(--muted);

    font-size: 12px;

    font-weight: 600;
}

.community-orbit {
    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(11,61,145,.12);
}

.community-orbit-one {
    width: 390px;
    height: 390px;
}

.community-orbit-two {
    width: 500px;
    height: 500px;

    border-color: rgba(11,61,145,.06);
}


/* INTRO */

.community-intro {
    background: white;

    text-align: center;
}

.community-intro-heading {
    max-width: 760px;

    margin: auto;
}

.community-feature-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;

    margin-top: 55px;

    text-align: left;
}

.community-feature-card {
    position: relative;

    padding: 30px;

    min-height: 260px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 20px;

    transition: .25s;

    overflow: hidden;
}

.community-feature-card:hover {
    transform: translateY(-5px);

    border-color: #C8D5EB;

    box-shadow:
        0 15px 40px rgba(0,0,0,.06);
}

.community-feature-number {
    position: absolute;

    top: 20px;
    right: 22px;

    color: #D8E1F0;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1px;
}

.community-feature-icon {
    font-size: 30px;

    margin-bottom: 22px;
}

.community-feature-card h3 {
    margin: 0 0 10px;

    font-size: 20px;
}

.community-feature-card p {
    margin: 0;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.65;
}


/* VALUES */

.community-values {
    background: var(--background);
}

.community-values-container {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    align-items: center;
}

.community-values-content h2 {
    font-size: clamp(34px, 4vw, 48px);

    line-height: 1.1;

    letter-spacing: -1px;

    margin: 14px 0 18px;
}

.community-values-content p {
    max-width: 540px;

    color: var(--muted);

    line-height: 1.7;

    margin-bottom: 25px;
}

.community-values-list {
    display: flex;

    flex-direction: column;

    gap: 16px;
}

.community-value {
    display: flex;

    align-items: flex-start;

    gap: 16px;

    padding: 20px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 16px;
}

.community-value-icon {
    width: 34px;
    height: 34px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #EAF0FA;

    color: var(--primary);

    font-weight: 800;
}

.community-value div:last-child {
    display: flex;

    flex-direction: column;

    gap: 5px;
}

.community-value strong {
    font-size: 15px;
}

.community-value span {
    color: var(--muted);

    font-size: 13px;

    line-height: 1.5;
}


/* APP CTA */

.community-app-section {
    background: var(--primary-dark);

    color: white;
}

.community-app-container {
    max-width: 1200px;

    margin: auto;

    padding: 90px 24px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 60px;
}

.community-app-content h2 {
    font-size: clamp(38px, 5vw, 56px);

    line-height: 1.08;

    letter-spacing: -1px;

    margin: 14px 0 18px;
}

.community-app-content p {
    max-width: 550px;

    color: #CBD5E1;

    line-height: 1.7;

    margin-bottom: 28px;
}

.community-app-content .secondary-button {
    color: white;

    background: transparent;

    border-color: rgba(255,255,255,.3);
}

.community-app-content .secondary-button:hover {
    border-color: white;

    color: white;
}

.community-app-logo {
    position: relative;

    min-height: 330px;

    display: flex;

    align-items: center;

    justify-content: center;
}

.community-app-logo img {
    position: relative;

    width: 260px;

    max-width: 75%;

    z-index: 2;

    filter:
        drop-shadow(
            0 25px 50px rgba(0,0,0,.35)
        );
}

.community-app-glow {
    position: absolute;

    width: 260px;
    height: 260px;

    border-radius: 50%;

    background: rgba(255,255,255,.08);

    filter: blur(8px);
}


/* MOBILE */

@media (max-width: 900px) {

    .community-hero-container {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .community-hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .community-hero-content .hero-actions {
        justify-content: center;
    }

    .community-feature-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .community-values-container {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .community-app-container {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .community-app-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .community-app-content .hero-actions {
        justify-content: center;
    }
}


@media (max-width: 600px) {

    .community-hero {
        padding-top: 60px;
    }

    .community-community-card {
        width: 100%;

        max-width: 350px;
    }

    .community-orbit-one {
        width: 300px;
        height: 300px;
    }

    .community-orbit-two {
        width: 380px;
        height: 380px;
    }

    .community-feature-grid {
        grid-template-columns: 1fr;
    }

    .community-post-actions {
        flex-wrap: wrap;
    }

    .community-app-logo {
        min-height: 260px;
    }

    .community-app-logo img {
        width: 210px;
    }
}
css
/* =========================================
   ABOUT PAGE
========================================= */

.about-hero {
    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(11,61,145,.13),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #F7F9FC,
            #FFFFFF
        );

    padding: 90px 24px 100px;
}

.about-hero-container {
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: 1.05fr .95fr;

    align-items: center;

    gap: 70px;
}

.about-hero-content h1 {
    font-size: clamp(44px, 6vw, 70px);

    line-height: 1.05;

    letter-spacing: -2px;

    margin: 0;

    max-width: 720px;
}

.about-hero-content h1 span {
    display: block;

    color: var(--primary);
}

.about-hero-content > p {
    max-width: 600px;

    margin: 25px 0;

    color: var(--muted);

    font-size: 19px;

    line-height: 1.7;
}


/* HERO VISUAL */

.about-hero-visual {
    position: relative;

    min-height: 420px;

    display: flex;

    align-items: center;

    justify-content: center;
}

.about-glow {
    position: absolute;

    width: 340px;
    height: 340px;

    border-radius: 50%;

    background: rgba(11,61,145,.10);

    filter: blur(6px);
}

.about-logo-card {
    position: relative;

    width: 350px;

    padding: 42px 30px;

    border-radius: 28px;

    background: rgba(255,255,255,.88);

    border: 1px solid rgba(255,255,255,.95);

    box-shadow:
        0 30px 80px rgba(11,61,145,.15);

    text-align: center;

    z-index: 2;
}

.about-logo-card img {
    width: 190px;
    height: 190px;

    object-fit: contain;
}

.about-logo-card div {
    display: flex;

    flex-direction: column;

    gap: 6px;

    margin-top: 15px;
}

.about-logo-card strong {
    font-size: 22px;

    letter-spacing: 1px;
}

.about-logo-card span {
    color: var(--muted);

    font-size: 12px;
}


/* STORY */

.about-story-section {
    background: white;
}

.about-story-grid {
    display: grid;

    grid-template-columns: 1.15fr .85fr;

    gap: 90px;

    align-items: center;
}

.about-story-content h2 {
    font-size: clamp(34px, 4vw, 48px);

    line-height: 1.1;

    letter-spacing: -1px;

    margin: 14px 0 25px;
}

.about-story-content p {
    max-width: 650px;

    color: var(--muted);

    line-height: 1.75;

    margin: 0 0 18px;
}

.about-story-highlight {
    padding: 40px;

    border-radius: 24px;

    background: var(--background);

    border: 1px solid var(--border);

    box-shadow:
        0 15px 40px rgba(0,0,0,.04);
}

.about-highlight-icon {
    width: 60px;
    height: 60px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: #EAF0FA;

    font-size: 28px;

    margin-bottom: 25px;
}

.about-story-highlight h3 {
    font-size: 28px;

    line-height: 1.2;

    margin: 12px 0 15px;
}

.about-story-highlight p {
    color: var(--muted);

    line-height: 1.7;

    margin: 0;
}


/* MISSION */

.about-mission-section {
    background: var(--background);
}

.about-centered-heading {
    max-width: 720px;

    margin: auto;

    text-align: center;
}

.about-centered-heading h2 {
    font-size: clamp(34px, 4vw, 48px);

    line-height: 1.1;

    letter-spacing: -1px;

    margin: 14px 0 18px;
}

.about-centered-heading p {
    color: var(--muted);

    line-height: 1.7;

    margin: auto;
}

.about-values-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;

    margin-top: 55px;
}

.about-value-card {
    background: white;

    padding: 30px;

    border: 1px solid var(--border);

    border-radius: 20px;

    transition: .25s;
}

.about-value-card:hover {
    transform: translateY(-5px);

    border-color: #C8D5EB;

    box-shadow:
        0 15px 40px rgba(0,0,0,.06);
}

.about-value-icon {
    width: 54px;
    height: 54px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: #EAF0FA;

    font-size: 25px;

    margin-bottom: 22px;
}

.about-value-card h3 {
    margin: 0 0 10px;

    font-size: 19px;
}

.about-value-card p {
    margin: 0;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.65;
}


/* FUTURE */

.about-future-section {
    background: white;
}

.about-future-container {
    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 80px;
}

.about-future-content h2 {
    font-size: clamp(36px, 4vw, 50px);

    line-height: 1.1;

    letter-spacing: -1px;

    margin: 14px 0 20px;
}

.about-future-content p {
    max-width: 560px;

    color: var(--muted);

    line-height: 1.7;

    margin-bottom: 16px;
}

.about-future-content .text-button {
    display: inline-block;

    margin-top: 8px;
}


/* FUTURE VISUAL */

.about-future-visual {
    position: relative;

    min-height: 380px;

    display: flex;

    align-items: center;

    justify-content: center;
}

.future-circle {
    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(11,61,145,.12);
}

.future-circle-one {
    width: 280px;
    height: 280px;
}

.future-circle-two {
    width: 390px;
    height: 390px;

    border-color: rgba(11,61,145,.06);
}

.future-logo {
    position: relative;

    width: 210px;
    height: 210px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: white;

    box-shadow:
        0 25px 60px rgba(11,61,145,.12);

    z-index: 2;
}

.future-logo img {
    width: 155px;
    height: 155px;

    object-fit: contain;
}


/* CTA */

.about-cta-section {
    background: var(--primary-dark);

    color: white;
}

.about-cta-container {
    max-width: 1200px;

    margin: auto;

    padding: 75px 24px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;
}

.about-cta-container h2 {
    font-size: clamp(34px, 4vw, 48px);

    line-height: 1.1;

    margin: 14px 0;
}

.about-cta-container p {
    max-width: 550px;

    color: #CBD5E1;

    line-height: 1.7;

    margin: 0;
}

.about-cta-container .secondary-button {
    color: white;

    background: transparent;

    border-color: rgba(255,255,255,.3);
}

.about-cta-container .secondary-button:hover {
    border-color: white;

    color: white;
}


/* =========================================
   ABOUT MOBILE
========================================= */

@media (max-width: 900px) {

    .about-hero-container {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .about-hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .about-hero-content .hero-actions {
        justify-content: center;
    }

    .about-story-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .about-values-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .about-future-container {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .about-future-content {
        text-align: center;
    }

    .about-future-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .about-cta-container {
        flex-direction: column;

        text-align: center;
    }

    .about-cta-container p {
        margin-left: auto;
        margin-right: auto;
    }
}


@media (max-width: 600px) {

    .about-hero {
        padding-top: 60px;
    }

    .about-logo-card {
        width: 290px;
    }

    .about-logo-card img {
        width: 160px;
        height: 160px;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .about-story-highlight {
        padding: 30px;
    }

    .about-future-visual {
        min-height: 300px;
    }

    .future-circle-one {
        width: 220px;
        height: 220px;
    }

    .future-circle-two {
        width: 300px;
        height: 300px;
    }

    .future-logo {
        width: 165px;
        height: 165px;
    }

    .future-logo img {
        width: 120px;
        height: 120px;
    }
}
/* =========================================
   MOBILE NAVIGATION
========================================= */

.mobile-menu-button {
    display: none;

    width: 44px;
    height: 44px;

    padding: 0;

    border: 1px solid var(--border);

    border-radius: 10px;

    background: white;

    cursor: pointer;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 5px;
}

.mobile-menu-button span {
    width: 20px;
    height: 2px;

    background: var(--text);

    border-radius: 2px;
}


/* MOBILE MENU */

.mobile-nav {
    display: none;

    padding: 8px 20px 20px;

    background: rgba(255,255,255,.98);

    border-top: 1px solid rgba(0,0,0,.05);

    box-shadow:
        0 15px 30px rgba(0,0,0,.08);

    flex-direction: column;
}

.mobile-nav a {
    padding: 15px 4px;

    font-size: 15px;

    font-weight: 600;

    color: #4B5563;

    border-bottom: 1px solid var(--border);
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-nav a:hover {
    color: var(--primary);
}

.mobile-download-button {
    margin-top: 12px;

    padding: 13px 18px !important;

    border-radius: 10px;

    background: var(--primary);

    color: white !important;

    text-align: center;
}


/* =========================================
   MOBILE MENU BUTTON
========================================= */

.mobile-menu-button {
    display: none;

    width: 44px;
    height: 44px;

    padding: 0;

    border: 1px solid var(--border);

    border-radius: 11px;

    background: white;

    cursor: pointer;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 5px;

    transition:
        background .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}

.mobile-menu-button:hover {
    border-color: #C8D5EB;

    box-shadow:
        0 5px 15px rgba(0,0,0,.06);
}

.mobile-menu-button span {
    display: block;

    width: 20px;
    height: 2px;

    background: var(--text);

    border-radius: 2px;

    transition:
        transform .25s ease,
        opacity .2s ease;
}


/* =========================================
   HAMBURGER → X
========================================= */

.mobile-menu-button.open span:nth-child(1) {
    transform:
        translateY(7px)
        rotate(45deg);
}

.mobile-menu-button.open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.open span:nth-child(3) {
    transform:
        translateY(-7px)
        rotate(-45deg);
}


/* =========================================
   MOBILE NAVIGATION
========================================= */

.mobile-nav-wrapper {
    display: none;

    overflow: hidden;

    background: rgba(255,255,255,.98);

    border-top: 1px solid rgba(0,0,0,.05);

    box-shadow:
        0 15px 35px rgba(0,0,0,.08);
}

.mobile-nav {
    max-width: 1200px;

    margin: auto;

    padding: 8px 20px 20px;

    display: flex;

    flex-direction: column;
}


/* NAV ITEMS */

.mobile-nav a {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 16px 4px;

    border-bottom: 1px solid var(--border);

    color: #4B5563;

    font-size: 15px;

    font-weight: 600;

    transition:
        color .2s ease,
        padding-left .2s ease;
}

.mobile-nav a:hover {
    color: var(--primary);

    padding-left: 8px;
}

.mobile-nav-arrow {
    color: #98A2B3;

    font-size: 22px;

    line-height: 1;

    transition: transform .2s ease;
}

.mobile-nav a:hover .mobile-nav-arrow {
    transform: translateX(4px);

    color: var(--primary);
}


/* =========================================
   GET THE APP
========================================= */

.mobile-download-button {
    justify-content: center !important;

    margin-top: 15px;

    padding: 14px 18px !important;

    border: none !important;

    border-radius: 10px;

    background: var(--primary);

    color: white !important;

    box-shadow:
        0 8px 20px rgba(11,61,145,.18);
}

.mobile-download-button:hover {
    padding-left: 18px !important;

    background: var(--primary-dark);

    color: white !important;
}


/* =========================================
   MOBILE HEADER
========================================= */

@media (max-width: 850px) {

    .desktop-nav {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
    }

    .mobile-nav-wrapper {
        display: block;

        max-height: 0;

        opacity: 0;

        transform: translateY(-10px);

        pointer-events: none;

        transition:
            max-height .3s ease,
            opacity .2s ease,
            transform .3s ease;
    }

    .mobile-nav-wrapper.open {
        max-height: 500px;

        opacity: 1;

        transform: translateY(0);

        pointer-events: auto;
    }

}


/* =========================================
   SMALL PHONES
========================================= */

@media (max-width: 550px) {

    .nav-container {
        padding: 12px 16px;
    }

    .brand-logo {
        width: 44px;
        height: 44px;
    }

    .brand-name {
        font-size: 16px;
    }

    .brand-tagline {
        display: none;
    }

    .mobile-menu-button {
        width: 42px;
        height: 42px;
    }

}
/* =========================================
   LEGAL PAGES
========================================= */

.legal-hero {
    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(11,61,145,.13),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #F7F9FC,
            #FFFFFF
        );

    padding: 90px 24px 80px;
}

.legal-hero-container {
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: 1.1fr .9fr;

    align-items: center;

    gap: 70px;
}

.legal-hero-content h1 {
    font-size: clamp(44px, 6vw, 68px);

    line-height: 1.05;

    letter-spacing: -2px;

    margin: 12px 0 22px;

    max-width: 700px;
}

.legal-hero-content h1 span {
    display: block;

    color: var(--primary);
}

.legal-hero-content > p {
    max-width: 650px;

    color: var(--muted);

    font-size: 18px;

    line-height: 1.75;

    margin: 0 0 25px;
}


/* META */

.legal-meta {
    display: flex;

    flex-wrap: wrap;

    gap: 10px 25px;

    color: var(--muted);

    font-size: 12px;
}

.legal-meta strong {
    color: var(--text);
}


/* HERO CARD */

.legal-hero-card {
    width: 100%;

    max-width: 360px;

    margin: auto;

    padding: 42px 35px;

    text-align: center;

    background: rgba(255,255,255,.9);

    border: 1px solid rgba(255,255,255,.95);

    border-radius: 28px;

    box-shadow:
        0 30px 80px rgba(11,61,145,.13);
}

.legal-hero-icon {
    width: 75px;
    height: 75px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: 0 auto 22px;

    border-radius: 22px;

    background: #EAF0FA;

    font-size: 34px;
}

.legal-hero-card strong {
    display: block;

    font-size: 22px;

    margin-bottom: 10px;
}

.legal-hero-card span {
    display: block;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================
   LEGAL CONTENT
========================================= */

.legal-section {
    background: white;

    padding: 90px 24px 110px;
}

.legal-layout {
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: 250px 1fr;

    gap: 70px;

    align-items: start;
}


/* SIDEBAR */

.legal-sidebar {
    position: sticky;

    top: 100px;
}

.legal-sidebar-card {
    display: flex;

    flex-direction: column;

    padding: 24px;

    border: 1px solid var(--border);

    border-radius: 18px;

    background: var(--background);
}

.legal-sidebar-card strong {
    margin-bottom: 12px;

    font-size: 14px;
}

.legal-sidebar-card a {
    padding: 8px 0;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.4;

    transition: .2s;
}

.legal-sidebar-card a:hover {
    color: var(--primary);

    padding-left: 3px;
}


/* CONTENT */

.legal-content {
    max-width: 780px;
}

.legal-introduction {
    padding-bottom: 35px;

    border-bottom: 1px solid var(--border);

    margin-bottom: 60px;
}

.legal-introduction p {
    color: var(--muted);

    font-size: 16px;

    line-height: 1.8;

    margin: 0 0 15px;
}

.legal-introduction p:last-child {
    margin-bottom: 0;
}


/* SECTIONS */

.legal-content section {
    scroll-margin-top: 100px;

    margin-bottom: 65px;
}

.legal-number {
    display: block;

    margin-bottom: 8px;

    color: var(--primary);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.legal-content h2 {
    margin: 0 0 18px;

    font-size: clamp(28px, 3vw, 38px);

    line-height: 1.15;

    letter-spacing: -.7px;
}

.legal-content h3 {
    margin: 28px 0 8px;

    font-size: 17px;
}

.legal-content p {
    color: var(--muted);

    font-size: 14px;

    line-height: 1.8;

    margin: 0 0 18px;
}

.legal-content ul {
    margin: 15px 0 22px;

    padding-left: 22px;
}

.legal-content li {
    color: var(--muted);

    font-size: 14px;

    line-height: 1.8;

    padding-left: 5px;

    margin-bottom: 7px;
}


/* NOTICE */

.legal-notice {
    margin: 28px 0;

    padding: 22px 24px;

    border-left: 4px solid var(--primary);

    border-radius: 12px;

    background: #F4F7FC;
}

.legal-notice strong {
    display: block;

    margin-bottom: 6px;

    font-size: 14px;
}

.legal-notice p {
    margin: 0;

    font-size: 13px;
}


/* CONTACT CARD */

.legal-contact-card {
    display: flex;

    flex-direction: column;

    gap: 5px;

    margin-top: 25px;

    padding: 25px;

    border: 1px solid var(--border);

    border-radius: 16px;

    background: var(--background);
}

.legal-contact-card strong {
    font-size: 17px;
}

.legal-contact-card span {
    color: var(--muted);

    font-size: 13px;
}

.legal-contact-card a {
    display: inline-block;

    margin-top: 10px;

    color: var(--primary);

    font-size: 13px;

    font-weight: 700;
}


/* FOOTER NOTE */

.legal-footer-note {
    margin-top: 20px;

    padding: 30px;

    border-radius: 18px;

    background: var(--primary-dark);

    color: white;
}

.legal-footer-note strong {
    display: block;

    margin-bottom: 8px;

    font-size: 18px;
}

.legal-footer-note p {
    margin: 0;

    color: #CBD5E1;
}


/* =========================================
   LEGAL MOBILE
========================================= */

@media (max-width: 900px) {

    .legal-hero-container {
        grid-template-columns: 1fr;

        text-align: center;

        gap: 45px;
    }

    .legal-hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .legal-meta {
        justify-content: center;
    }

    .legal-layout {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .legal-sidebar {
        position: static;
    }

    .legal-sidebar-card {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 0 20px;
    }

    .legal-sidebar-card strong {
        grid-column: 1 / -1;
    }

}


@media (max-width: 600px) {

    .legal-hero {
        padding-top: 60px;

        padding-bottom: 60px;
    }

    .legal-hero-content h1 {
        font-size: 42px;
    }

    .legal-hero-card {
        padding: 32px 25px;
    }

    .legal-section {
        padding: 60px 20px 80px;
    }

    .legal-sidebar-card {
        display: flex;
    }

    .legal-content section {
        margin-bottom: 50px;
    }

    .legal-content h2 {
        font-size: 29px;
    }

}

/* =========================================
   LEGAL PAGES
   PRIVACY + TERMS
========================================= */

.legal-page {
    background: white;
    color: var(--text);
}


/* =========================================
   LEGAL HERO
========================================= */

.legal-hero {
    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(11,61,145,.13),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #F7F9FC,
            #FFFFFF
        );

    padding: 85px 24px 75px;
}

.legal-container {
    max-width: 1100px;
    margin: auto;
}

.legal-hero h1 {
    font-size: clamp(44px, 6vw, 68px);

    line-height: 1.05;

    letter-spacing: -2.5px;

    margin: 12px 0 20px;
}

.legal-hero h1 span {
    display: block;
    color: var(--primary);
}

.legal-intro {
    max-width: 720px;

    color: var(--muted);

    font-size: 18px;

    line-height: 1.75;

    margin: 0;
}

.legal-meta {
    display: flex;

    flex-wrap: wrap;

    gap: 24px;

    margin-top: 28px;

    color: var(--muted);

    font-size: 13px;
}

.legal-meta strong {
    color: var(--text);
}


/* =========================================
   LEGAL CONTENT
========================================= */

.legal-content-section {
    background: white;
}

.legal-layout {
    display: grid;

    grid-template-columns: 230px 1fr;

    gap: 70px;

    padding-top: 80px;

    padding-bottom: 100px;

    align-items: start;
}


/* =========================================
   SIDEBAR
========================================= */

.legal-sidebar {
    position: sticky;

    top: 100px;
}

.legal-sidebar-card {
    display: flex;

    flex-direction: column;

    gap: 9px;

    padding: 24px;

    border: 1px solid var(--border);

    border-radius: 18px;

    background: var(--background);
}

.legal-sidebar-card strong {
    margin-bottom: 8px;

    font-size: 14px;
}

.legal-sidebar-card a {
    color: var(--muted);

    font-size: 12px;

    line-height: 1.4;

    transition: .2s;
}

.legal-sidebar-card a:hover {
    color: var(--primary);

    transform: translateX(2px);
}


/* =========================================
   DOCUMENT
========================================= */

.legal-document {
    max-width: 760px;
}

.legal-document section {
    scroll-margin-top: 110px;

    padding-bottom: 48px;

    margin-bottom: 48px;

    border-bottom: 1px solid var(--border);
}

.legal-document section:last-of-type {
    border-bottom: 0;

    margin-bottom: 0;
}

.legal-document h2 {
    font-size: 26px;

    line-height: 1.25;

    letter-spacing: -.5px;

    margin: 0 0 18px;
}

.legal-document p {
    color: var(--muted);

    font-size: 15px;

    line-height: 1.8;

    margin: 0 0 16px;
}

.legal-document p:last-child {
    margin-bottom: 0;
}


/* =========================================
   LISTS
========================================= */

.legal-document ul {
    margin: 15px 0 20px;

    padding-left: 22px;
}

.legal-document li {
    color: var(--muted);

    font-size: 15px;

    line-height: 1.75;

    margin-bottom: 8px;
}


/* =========================================
   CALLOUT
========================================= */

.legal-callout {
    margin-top: 25px;

    padding: 22px 24px;

    border-left: 4px solid var(--primary);

    border-radius: 0 14px 14px 0;

    background: #F5F8FD;
}

.legal-callout strong {
    display: block;

    margin-bottom: 7px;

    color: var(--text);

    font-size: 14px;
}

.legal-callout p {
    margin: 0;

    font-size: 14px;
}


/* =========================================
   WARNING
========================================= */

.legal-warning {
    display: flex;

    align-items: flex-start;

    gap: 18px;

    padding: 24px;

    border: 1px solid #F3E3B8;

    border-radius: 16px;

    background: #FFF8E8;
}

.legal-warning-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #F2C94C;

    color: #5C4300;

    font-weight: 900;

    font-size: 20px;
}

.legal-warning strong {
    display: block;

    margin-bottom: 7px;
}

.legal-warning p {
    color: #6B5A2A;

    font-size: 14px;
}


/* =========================================
   INLINE LINKS
========================================= */

.legal-inline-link {
    display: inline-block;

    margin-top: 5px;

    color: var(--primary);

    font-size: 14px;

    font-weight: 700;

    transition: .2s;
}

.legal-inline-link:hover {
    color: var(--primary-dark);

    transform: translateX(2px);
}


/* =========================================
   FINAL MESSAGE
========================================= */

.legal-final {
    margin-top: 20px;

    padding: 30px;

    border-radius: 20px;

    background: var(--background);

    border: 1px solid var(--border);

    text-align: center;
}

.legal-final strong {
    display: block;

    font-size: 18px;

    margin-bottom: 8px;
}

.legal-final p {
    margin: 0;

    font-size: 13px;
}


/* =========================================
   LEGAL MOBILE
========================================= */

@media (max-width: 850px) {

    .legal-layout {
        grid-template-columns: 1fr;

        gap: 35px;

        padding-top: 60px;
    }

    .legal-sidebar {
        position: static;
    }

    .legal-sidebar-card {
        display: grid;

        grid-template-columns: repeat(2, 1fr);

        gap: 10px 18px;
    }

    .legal-sidebar-card strong {
        grid-column: 1 / -1;
    }

    .legal-document {
        max-width: none;
    }
}


@media (max-width: 550px) {

    .legal-hero {
        padding: 60px 20px 55px;
    }

    .legal-hero h1 {
        font-size: 42px;

        letter-spacing: -1.5px;
    }

    .legal-intro {
        font-size: 16px;
    }

    .legal-meta {
        flex-direction: column;

        gap: 7px;
    }

    .legal-layout {
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 70px;
    }

    .legal-sidebar-card {
        grid-template-columns: 1fr;
    }

    .legal-sidebar-card strong {
        grid-column: auto;
    }

    .legal-document h2 {
        font-size: 23px;
    }

    .legal-document p,
    .legal-document li {
        font-size: 14px;
    }

    .legal-warning {
        padding: 20px;

        gap: 13px;
    }
}


