/* =========================================================
   OFFICE TECH CARE
   Premium Global Styles
   ========================================================= */

:root {
    --primary: #155eef;
    --primary-dark: #0f4dcc;
    --primary-soft: #eef4ff;

    --navy: #10233f;
    --dark: #172033;
    --text: #26364d;
    --muted: #68778d;

    --white: #ffffff;
    --surface: #f7f9fc;
    --surface-blue: #f3f7ff;

    --border: #e4e9f1;
    --success: #16845b;
    --success-soft: #eaf8f2;

    --shadow-sm: 0 4px 16px rgba(16, 35, 63, 0.06);
    --shadow-md: 0 12px 35px rgba(16, 35, 63, 0.10);
    --shadow-lg: 0 24px 65px rgba(16, 35, 63, 0.14);

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --container: 1180px;

    --transition: 0.25s ease;
}


/* =========================================================
   RESET
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    font-family: "DM Sans", Arial, sans-serif;

    color: var(--text);
    background: var(--white);

    line-height: 1.65;
    font-size: 16px;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.skip-link {
    position: fixed;
    top: -100px;
    left: 20px;

    z-index: 9999;

    padding: 12px 18px;

    color: var(--white);
    background: var(--navy);

    border-radius: 8px;
}

.skip-link:focus {
    top: 20px;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.container {
    width: min(100% - 40px, var(--container));
    margin-inline: auto;
}


/* =========================================================
   TYPOGRAPHY
   ========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;

    font-family: "Manrope", Arial, sans-serif;

    color: var(--navy);

    line-height: 1.2;

    letter-spacing: -0.025em;
}

h1 {
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 800;
}

h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
}

h3 {
    font-size: 24px;
    font-weight: 700;
}

p {
    margin: 0 0 16px;
}

.text-muted {
    color: var(--muted);
}

.text-center {
    text-align: center;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 50px;

    padding: 13px 21px;

    border: 1px solid transparent;
    border-radius: 12px;

    font-family: "DM Sans", Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition),
        border-color var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: var(--white);
    background: var(--primary);

    box-shadow: 0 9px 22px rgba(21, 94, 239, 0.20);
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 13px 28px rgba(21, 94, 239, 0.26);
}

.btn-secondary {
    color: var(--navy);
    background: var(--white);

    border-color: var(--border);

    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    border-color: #cbd6e6;
    box-shadow: var(--shadow-md);
}

.btn-dark {
    color: var(--white);
    background: var(--navy);
}

.btn-dark:hover {
    background: #0b1a30;
}

.btn-arrow {
    font-size: 18px;
    line-height: 1;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;

    z-index: 1000;

    background: rgba(255, 255, 255, 0.96);

    border-bottom: 1px solid rgba(228, 233, 241, 0.85);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.header-inner {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 28px;
}


/* BRAND */

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;

    flex-shrink: 0;
}

.brand-mark {
    width: 43px;
    height: 43px;

    display: grid;
    place-items: center;

    border-radius: 13px;

    color: var(--white);

    background: linear-gradient(
        135deg,
        #155eef,
        #477df4
    );

    box-shadow:
        0 9px 22px rgba(21, 94, 239, 0.20);
}

.brand-mark-icon {
    font-family: "Manrope", Arial, sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-name {
    font-family: "Manrope", Arial, sans-serif;

    color: var(--navy);

    font-size: 17px;
    font-weight: 800;
}

.brand-tagline {
    margin-top: 3px;

    color: var(--muted);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.02em;
}


/* DESKTOP NAVIGATION */

.main-navigation {
    display: flex;
    align-items: center;
    gap: 25px;
}

.main-navigation a {
    position: relative;

    color: #506078;

    font-size: 14px;
    font-weight: 600;

    transition: color var(--transition);
}

.main-navigation a::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: -8px;

    height: 2px;

    background: var(--primary);

    transform: scaleX(0);
    transform-origin: center;

    transition: transform var(--transition);
}

.main-navigation a:hover {
    color: var(--primary);
}

.main-navigation a:hover::after {
    transform: scaleX(1);
}


/* HEADER ACTIONS */

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-contact-link {
    color: var(--navy);

    font-size: 14px;
    font-weight: 700;

    transition: color var(--transition);
}

.header-contact-link:hover {
    color: var(--primary);
}

.btn-header {
    min-height: 45px;
    padding: 10px 17px;
}


/* MOBILE MENU */

.mobile-menu-toggle {
    display: none;

    width: 45px;
    height: 45px;

    padding: 10px;

    border: 1px solid var(--border);
    border-radius: 11px;

    background: var(--white);
}

.mobile-menu-toggle span {
    display: block;

    width: 22px;
    height: 2px;

    margin: 5px auto;

    background: var(--navy);

    border-radius: 3px;
}

.mobile-navigation {
    display: none;
}


/* =========================================================
   SECTION SYSTEM
   ========================================================= */

.section {
    padding: 96px 0;
}

.section-sm {
    padding: 68px 0;
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 52px;

    text-align: center;
}

.section-heading .eyebrow {
    margin-bottom: 13px;
}

.section-heading h2 {
    margin-bottom: 17px;
}

.section-heading p {
    max-width: 650px;
    margin-inline: auto;

    color: var(--muted);
    font-size: 17px;
}


/* =========================================================
   EYEBROW / BADGES
   ========================================================= */

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 7px 12px;

    border: 1px solid #d9e5fb;
    border-radius: 999px;

    color: var(--primary);

    background: var(--primary-soft);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.eyebrow-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--primary);
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;

    overflow: hidden;

    padding: 95px 0 100px;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(21, 94, 239, 0.09),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7faff 100%
        );
}

.hero::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -190px;
    top: -160px;

    border: 1px solid rgba(21, 94, 239, 0.10);

    border-radius: 50%;
}

.hero-grid {
    position: relative;

    display: grid;

    grid-template-columns: 1.08fr 0.92fr;

    align-items: center;

    gap: 70px;
}

.hero-content {
    max-width: 680px;
}

.hero-content .eyebrow {
    margin-bottom: 23px;
}

.hero-content h1 {
    margin-bottom: 23px;
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-description {
    max-width: 620px;

    margin-bottom: 30px;

    color: var(--muted);

    font-size: 18px;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 13px;

    margin-bottom: 27px;
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 9px;

    color: var(--muted);

    font-size: 13px;
    font-weight: 600;
}

.hero-note-icon {
    display: grid;
    place-items: center;

    width: 21px;
    height: 21px;

    color: var(--success);

    background: var(--success-soft);

    border-radius: 50%;

    font-size: 12px;
    font-weight: 800;
}


/* HERO VISUAL */

.hero-visual {
    position: relative;
}

.hero-card {
    position: relative;

    padding: 30px;

    border: 1px solid rgba(220, 228, 240, 0.95);
    border-radius: var(--radius-xl);

    background: rgba(255, 255, 255, 0.94);

    box-shadow: var(--shadow-lg);

    overflow: hidden;
}

.hero-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 5px;

    background: linear-gradient(
        90deg,
        #155eef,
        #7ca1fa
    );
}

.hero-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 27px;
}

.hero-card-title {
    font-family: "Manrope", Arial, sans-serif;

    color: var(--navy);

    font-size: 18px;
    font-weight: 800;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 7px 10px;

    color: var(--success);

    background: var(--success-soft);

    border-radius: 999px;

    font-size: 11px;
    font-weight: 800;
}

.status-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--success);
}

.support-list {
    display: grid;
    gap: 11px;
}

.support-list-item {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 13px;

    border: 1px solid var(--border);
    border-radius: 13px;

    background: #fbfcfe;
}

.support-icon {
    width: 39px;
    height: 39px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    color: var(--primary);

    background: var(--primary-soft);

    border-radius: 10px;

    font-size: 15px;
    font-weight: 800;
}

.support-list-item strong {
    display: block;

    color: var(--navy);

    font-size: 13px;
}

.support-list-item span {
    display: block;

    color: var(--muted);

    font-size: 11px;
}

.floating-badge {
    position: absolute;

    right: -25px;
    bottom: 35px;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 13px 15px;

    border: 1px solid var(--border);
    border-radius: 14px;

    background: var(--white);

    box-shadow: var(--shadow-md);
}

.floating-badge-icon {
    width: 32px;
    height: 32px;

    display: grid;
    place-items: center;

    color: var(--success);

    background: var(--success-soft);

    border-radius: 9px;

    font-weight: 800;
}

.floating-badge strong {
    display: block;

    color: var(--navy);

    font-size: 12px;
}

.floating-badge span {
    color: var(--muted);

    font-size: 10px;
}


/* =========================================================
   TRUST STRIP
   ========================================================= */

.trust-strip {
    padding: 23px 0;

    border-bottom: 1px solid var(--border);

    background: var(--white);
}

.trust-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 0;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;

    padding: 10px 18px;

    border-right: 1px solid var(--border);
}

.trust-item:last-child {
    border-right: 0;
}

.trust-icon {
    width: 35px;
    height: 35px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    color: var(--primary);

    background: var(--primary-soft);

    border-radius: 9px;

    font-size: 13px;
    font-weight: 800;
}

.trust-item strong {
    display: block;

    color: var(--navy);

    font-size: 12px;
}

.trust-item span {
    display: block;

    color: var(--muted);

    font-size: 10px;
}


/* =========================================================
   SERVICE CARDS
   ========================================================= */

.services-section {
    background: var(--white);
}

.service-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

.service-card {
    position: relative;

    padding: 26px 23px;

    border: 1px solid var(--border);
    border-radius: var(--radius-md);

    background: var(--white);

    box-shadow: var(--shadow-sm);

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);

    border-color: #d3def0;

    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    margin-bottom: 20px;

    color: var(--primary);

    background: var(--primary-soft);

    border-radius: 13px;

    font-size: 18px;
    font-weight: 800;
}

.service-card h3 {
    margin-bottom: 10px;

    font-size: 19px;
}

.service-card p {
    margin-bottom: 17px;

    color: var(--muted);

    font-size: 13px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: var(--primary);

    font-size: 13px;
    font-weight: 800;
}

.service-link:hover {
    gap: 10px;
}


/* =========================================================
   FEATURE / SPLIT SECTION
   ========================================================= */

.split-section {
    background: var(--surface);
}

.split-grid {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    align-items: center;

    gap: 75px;
}

.feature-visual {
    position: relative;

    min-height: 410px;

    display: grid;
    place-items: center;

    padding: 30px;

    border-radius: var(--radius-xl);

    background:
        radial-gradient(
            circle at 30% 20%,
            rgba(21, 94, 239, 0.13),
            transparent 38%
        ),
        #edf3fd;

    overflow: hidden;
}

.feature-panel {
    width: min(100%, 390px);

    padding: 26px;

    border: 1px solid rgba(255,255,255,0.9);
    border-radius: 20px;

    background: rgba(255,255,255,0.94);

    box-shadow: var(--shadow-lg);
}

.feature-panel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 25px;
}

.feature-panel-top strong {
    color: var(--navy);

    font-family: "Manrope", Arial, sans-serif;
}

.feature-panel-lines {
    display: grid;
    gap: 13px;
}

.feature-panel-line {
    height: 10px;

    border-radius: 20px;

    background: #e9eef6;
}

.feature-panel-line:nth-child(1) {
    width: 88%;
}

.feature-panel-line:nth-child(2) {
    width: 68%;
}

.feature-panel-line:nth-child(3) {
    width: 78%;
}

.feature-panel-line:nth-child(4) {
    width: 54%;
}

.feature-content .eyebrow {
    margin-bottom: 17px;
}

.feature-content h2 {
    margin-bottom: 18px;
}

.feature-content > p {
    margin-bottom: 25px;

    color: var(--muted);
}

.check-list {
    display: grid;
    gap: 13px;

    margin-bottom: 28px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 11px;

    color: var(--text);

    font-size: 14px;
}

.check-icon {
    width: 21px;
    height: 21px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    color: var(--success);

    background: var(--success-soft);

    border-radius: 50%;

    font-size: 11px;
    font-weight: 800;
}


/* =========================================================
   PROCESS / HOW IT WORKS
   ========================================================= */

.process-section {
    background: var(--white);
}

.process-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.process-card {
    position: relative;

    padding: 28px 23px;

    border: 1px solid var(--border);
    border-radius: var(--radius-md);

    background: var(--white);

    box-shadow: var(--shadow-sm);
}

.process-number {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    margin-bottom: 20px;

    color: var(--primary);

    background: var(--primary-soft);

    border-radius: 11px;

    font-family: "Manrope", Arial, sans-serif;

    font-size: 13px;
    font-weight: 800;
}

.process-card h3 {
    margin-bottom: 9px;

    font-size: 18px;
}

.process-card p {
    margin: 0;

    color: var(--muted);

    font-size: 13px;
}


/* =========================================================
   PRICING PREVIEW
   ========================================================= */

.pricing-section {
    background: var(--surface);
}

.pricing-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.price-card {
    position: relative;

    padding: 31px 27px;

    border: 1px solid var(--border);
    border-radius: var(--radius-lg);

    background: var(--white);

    box-shadow: var(--shadow-sm);
}

.price-card.featured {
    border-color: #aac4f9;

    box-shadow: var(--shadow-md);
}

.price-badge {
    position: absolute;

    top: 20px;
    right: 20px;

    padding: 6px 9px;

    color: var(--primary);

    background: var(--primary-soft);

    border-radius: 999px;

    font-size: 10px;
    font-weight: 800;

    text-transform: uppercase;
}

.price-card h3 {
    margin-bottom: 10px;

    font-size: 20px;
}

.price-description {
    min-height: 47px;

    margin-bottom: 21px;

    color: var(--muted);

    font-size: 13px;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 3px;

    margin-bottom: 20px;
}

.price-currency {
    color: var(--navy);

    font-size: 19px;
    font-weight: 800;
}

.price-amount {
    color: var(--navy);

    font-family: "Manrope", Arial, sans-serif;

    font-size: 43px;
    font-weight: 800;

    letter-spacing: -0.04em;
}

.price-period {
    color: var(--muted);

    font-size: 12px;
}

.price-features {
    display: grid;
    gap: 11px;

    margin-bottom: 25px;
}

.price-features li {
    display: flex;
    align-items: flex-start;
    gap: 9px;

    color: var(--text);

    font-size: 13px;
}

.price-features li::before {
    content: "✓";

    color: var(--success);

    font-weight: 800;
}


/* =========================================================
   CTA SECTION
   ========================================================= */

.cta-section {
    padding: 80px 0;
}

.cta-box {
    position: relative;

    padding: 58px 65px;

    border-radius: var(--radius-xl);

    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(92, 137, 237, 0.25),
            transparent 34%
        ),
        var(--navy);

    overflow: hidden;
}

.cta-box h2 {
    max-width: 690px;

    margin-bottom: 15px;

    color: var(--white);
}

.cta-box p {
    max-width: 620px;

    margin-bottom: 25px;

    color: #bdc9da;

    font-size: 16px;
}

.cta-box .btn-secondary {
    border-color: rgba(255,255,255,0.25);
}


/* =========================================================
   FORMS
   ========================================================= */

.form-card {
    padding: 35px;

    border: 1px solid var(--border);
    border-radius: var(--radius-lg);

    background: var(--white);

    box-shadow: var(--shadow-md);
}

.form-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;

    gap: 7px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    color: var(--navy);

    font-size: 13px;
    font-weight: 700;
}

.form-control {
    width: 100%;

    padding: 13px 14px;

    border: 1px solid #d8e0eb;
    border-radius: 11px;

    outline: none;

    color: var(--text);
    background: #fff;

    transition:
        border-color var(--transition),
        box-shadow var(--transition);
}

.form-control::placeholder {
    color: #9aa7b8;
}

.form-control:focus {
    border-color: #7ea3ed;

    box-shadow: 0 0 0 4px rgba(21, 94, 239, 0.09);
}

textarea.form-control {
    min-height: 145px;

    resize: vertical;
}

select.form-control {
    appearance: auto;
}

.form-submit {
    margin-top: 22px;
}


/* =========================================================
   FAQ
   ========================================================= */

.faq-list {
    max-width: 850px;

    margin-inline: auto;

    display: grid;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 14px;

    background: var(--white);

    overflow: hidden;
}

.faq-question {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 20px;

    border: 0;

    color: var(--navy);
    background: var(--white);

    text-align: left;

    font-weight: 700;
}

.faq-plus {
    color: var(--primary);

    font-size: 21px;
}

.faq-answer {
    padding: 0 20px 20px;

    color: var(--muted);

    font-size: 14px;
}


/* =========================================================
   PAGE HERO
   ========================================================= */

.page-hero {
    padding: 75px 0;

    text-align: center;

    background:
        linear-gradient(
            180deg,
            #f5f8ff 0%,
            #ffffff 100%
        );

    border-bottom: 1px solid var(--border);
}

.page-hero h1 {
    margin-bottom: 16px;

    font-size: clamp(38px, 5vw, 56px);
}

.page-hero p {
    max-width: 680px;

    margin-inline: auto;

    color: var(--muted);

    font-size: 17px;
}


/* =========================================================
   NOTICE / COMPLIANCE
   ========================================================= */

.info-notice {
    padding: 17px 19px;

    border: 1px solid #dce6f5;
    border-radius: 13px;

    color: #506078;

    background: #f7faff;

    font-size: 13px;
}

.info-notice strong {
    color: var(--navy);
}


/* =========================================================
   CHECKOUT
   ========================================================= */

.checkout-layout {
    display: grid;

    grid-template-columns: 1.15fr 0.85fr;

    gap: 28px;

    align-items: start;
}

.checkout-summary {
    position: sticky;
    top: 105px;

    padding: 28px;

    border: 1px solid var(--border);
    border-radius: var(--radius-lg);

    background: var(--surface);

    box-shadow: var(--shadow-sm);
}

.checkout-summary h3 {
    margin-bottom: 18px;
}

.checkout-price {
    padding: 18px 0;

    margin-bottom: 18px;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.checkout-price strong {
    display: block;

    color: var(--navy);

    font-family: "Manrope", Arial, sans-serif;

    font-size: 36px;
}

.checkout-coming-soon {
    margin-top: 20px;

    padding: 17px;

    border: 1px solid #dbe6f8;
    border-radius: 12px;

    color: var(--primary);

    background: var(--primary-soft);

    text-align: center;

    font-size: 13px;
    font-weight: 700;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    padding: 72px 0 25px;

    color: #aebbd0;

    background: var(--navy);
}

.footer-main {
    display: grid;

    grid-template-columns: 1.5fr repeat(4, 1fr);

    gap: 42px;

    padding-bottom: 50px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;

    margin-bottom: 19px;

    color: var(--white);
}

.footer-logo-mark {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    color: var(--navy);

    background: var(--white);

    border-radius: 12px;

    font-family: "Manrope", Arial, sans-serif;

    font-size: 13px;
    font-weight: 800;
}

.footer-logo strong {
    display: block;

    font-family: "Manrope", Arial, sans-serif;

    font-size: 17px;
}

.footer-logo small {
    display: block;

    margin-top: 2px;

    color: #9daac0;

    font-size: 10px;
}

.footer-brand > p {
    max-width: 310px;

    margin-bottom: 19px;

    color: #9eacc1;

    font-size: 13px;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #c6d1e1;

    font-size: 11px;
}

.footer-badge-icon {
    width: 19px;
    height: 19px;

    display: grid;
    place-items: center;

    color: #8ee0bd;

    border: 1px solid rgba(142,224,189,0.3);

    border-radius: 50%;

    font-size: 10px;
    font-weight: 800;
}

.footer-column h3 {
    margin-bottom: 18px;

    color: var(--white);

    font-size: 14px;
}

.footer-column ul {
    display: grid;
    gap: 10px;
}

.footer-column li,
.footer-column a,
.footer-column p {
    color: #9eacc1;

    font-size: 12px;
}

.footer-column a {
    transition: color var(--transition);
}

.footer-column a:hover {
    color: var(--white);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
}

.footer-contact p {
    margin-top: 4px;
}

.footer-disclosure {
    padding: 22px 0;

    border-top: 1px solid rgba(255,255,255,0.09);
    border-bottom: 1px solid rgba(255,255,255,0.09);
}

.footer-disclosure strong {
    display: block;

    margin-bottom: 6px;

    color: #dce5f2;

    font-size: 12px;
}

.footer-disclosure p {
    max-width: 950px;

    margin: 0;

    color: #8998ad;

    font-size: 11px;
    line-height: 1.7;
}

.footer-bottom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 25px;

    padding-top: 24px;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 17px;
}

.footer-legal-links a {
    color: #a8b5c9;

    font-size: 11px;
}

.footer-legal-links a:hover {
    color: var(--white);
}

.footer-copyright {
    text-align: right;
}

.footer-copyright p {
    margin: 0 0 3px;

    color: #7f8ea4;

    font-size: 10px;
}


/* =========================================================
   UTILITY CLASSES
   ========================================================= */

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.hidden {
    display: none !important;
}


/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-up {
    animation: fadeUp 0.65s ease both;
}


/* =========================================================
   SELECTION
   ========================================================= */

::selection {
    color: var(--white);
    background: var(--primary);
}