/* =========================================================
   MY-GUARDS
   MODULE 1 - HEADER / NAVIGATION
   ========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #243b5a;
    background: #ffffff;
}

a {
    text-decoration: none;
}

/* =========================================================
   HEADER
   ========================================================= */

.mg-header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e8edf3;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.mg-header-container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;

    min-height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* =========================================================
   LOGO
   ========================================================= */

.mg-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mg-logo-mark {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #243b5a;
    color: #ffffff;

    border-radius: 8px;

    font-size: 20px;
    font-weight: 800;
}

.mg-logo-text {
    color: #243b5a;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
}

.mg-logo-text span {
    color: #d99a00;
}

/* =========================================================
   DESKTOP NAVIGATION
   ========================================================= */

.mg-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.mg-nav a {
    color: #243b5a;
    font-size: 15px;
    font-weight: 600;

    padding: 10px 0;

    transition: 0.2s ease;
}

.mg-nav a:hover {
    color: #d99a00;
}

/* =========================================================
   HEADER QUOTE BUTTON
   ========================================================= */

.mg-header-quote {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 18px;

    background: #d99a00;
    color: #ffffff !important;

    border-radius: 6px;

    font-size: 14px !important;
    font-weight: 700 !important;

    transition: 0.2s ease;
}

.mg-header-quote:hover {
    background: #b98000;
    color: #ffffff !important;
}

/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.mg-menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    border: 1px solid #d9e1ea;
    border-radius: 6px;

    background: #ffffff;

    cursor: pointer;
}

.mg-menu-toggle span {
    display: block;

    width: 22px;
    height: 2px;

    margin: 5px auto;

    background: #243b5a;
}

/* =========================================================
   MODULE 1 TEST AREA
   ========================================================= */

.mg-module-test {
    min-height: 420px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 60px 20px;

    background: #f7f9fc;
}

.mg-module-test-inner {
    max-width: 750px;
}

.mg-section-label {
    display: inline-block;

    margin-bottom: 12px;

    color: #d99a00;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.mg-module-test h1 {
    margin: 0 0 18px;

    color: #243b5a;

    font-size: 46px;
    line-height: 1.15;
}

.mg-module-test p {
    margin: 0 auto;

    max-width: 650px;

    color: #667085;

    font-size: 17px;
    line-height: 1.7;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .mg-nav {
        gap: 16px;
    }

    .mg-nav a {
        font-size: 14px;
    }

    .mg-header-quote {
        padding: 10px 14px;
    }
}

@media (max-width: 768px) {

    .mg-header-container {
        min-height: 70px;
    }

    .mg-nav {
        display: none;
    }

    .mg-menu-toggle {
        display: block;
    }

    .mg-logo-text {
        font-size: 19px;
    }

    .mg-logo-mark {
        width: 38px;
        height: 38px;
    }

    .mg-module-test h1 {
        font-size: 34px;
    }

    .mg-module-test p {
        font-size: 16px;
    }
}

/* =========================================================
   MODULE 2
   HERO SECTION
   ========================================================= */

.mg-hero {
    position: relative;

    min-height: 650px;

    background:
        radial-gradient(
            circle at 85% 25%,
            rgba(217, 154, 0, 0.10),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #f7f9fc 0%,
            #ffffff 55%,
            #eef3f8 100%
        );

    overflow: hidden;
}

.mg-hero::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -160px;
    bottom: -180px;

    border: 1px solid rgba(36, 59, 90, 0.08);

    border-radius: 50%;
}

.mg-hero-container {
    width: 92%;
    max-width: 1200px;

    min-height: 650px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(360px, 0.95fr);

    gap: 70px;

    align-items: center;
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.mg-hero-content {
    position: relative;

    z-index: 2;
}

.mg-hero-content .mg-section-label {
    margin-bottom: 18px;
}

.mg-hero h1 {
    margin: 0 0 24px;

    color: #243b5a;

    font-size: clamp(42px, 5vw, 68px);

    line-height: 1.08;

    letter-spacing: -1.5px;

    font-weight: 800;
}

.mg-hero h1 span {
    color: #d99a00;
}

.mg-hero-description {
    max-width: 650px;

    margin: 0 0 32px;

    color: #667085;

    font-size: 18px;

    line-height: 1.7;
}


/* =========================================================
   HERO BUTTONS
   ========================================================= */

.mg-hero-buttons {
    display: flex;

    align-items: center;

    gap: 14px;

    flex-wrap: wrap;

    margin-bottom: 42px;
}

.mg-hero-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 50px;

    padding: 0 21px;

    border-radius: 6px;

    font-size: 14px;

    font-weight: 700;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.mg-hero-button:hover {
    transform: translateY(-2px);
}

.mg-hero-button-primary {
    background: #d99a00;

    color: #ffffff;
}

.mg-hero-button-primary:hover {
    background: #b98000;

    color: #ffffff;
}

.mg-hero-button-secondary {
    background: #ffffff;

    color: #243b5a;

    border: 1px solid #ccd6e2;
}

.mg-hero-button-secondary:hover {
    border-color: #243b5a;

    color: #243b5a;
}


/* =========================================================
   HERO TRUST POINTS
   ========================================================= */

.mg-hero-trust {
    display: flex;

    flex-wrap: wrap;

    gap: 24px;
}

.mg-trust-item {
    display: flex;

    align-items: center;

    gap: 10px;
}

.mg-trust-icon {
    width: 38px;
    height: 38px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #243b5a;

    color: #ffffff;

    border-radius: 50%;

    font-size: 14px;
}

.mg-trust-item strong,
.mg-trust-item span {
    display: block;
}

.mg-trust-item strong {
    color: #243b5a;

    font-size: 13px;

    font-weight: 700;
}

.mg-trust-item span {
    margin-top: 3px;

    color: #7a8699;

    font-size: 11px;
}


/* =========================================================
   HERO RIGHT VISUAL
   ========================================================= */

.mg-hero-visual {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    min-height: 500px;
}

.mg-hero-visual::before {
    content: "";

    position: absolute;

    width: 430px;
    height: 430px;

    background: rgba(36, 59, 90, 0.055);

    border-radius: 50%;
}


/* =========================================================
   HERO CARD
   ========================================================= */

.mg-hero-card {
    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 430px;

    padding: 38px;

    background: #243b5a;

    border-radius: 18px;

    box-shadow:
        0 25px 60px rgba(36, 59, 90, 0.20);
}

.mg-hero-card-top {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 28px;
}

.mg-hero-card-icon {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #d99a00;

    color: #ffffff;

    border-radius: 10px;

    font-size: 20px;
}

.mg-hero-card-top span {
    color: #ffffff;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;
}

.mg-hero-card h2 {
    margin: 0 0 18px;

    color: #ffffff;

    font-size: 36px;

    line-height: 1.15;

    font-weight: 800;
}

.mg-hero-card h2 span {
    color: #d99a00;
}

.mg-hero-card p {
    margin: 0;

    color: rgba(255, 255, 255, 0.76);

    font-size: 15px;

    line-height: 1.7;
}

.mg-hero-card-line {
    height: 1px;

    margin: 25px 0;

    background: rgba(255, 255, 255, 0.14);
}

.mg-hero-card-feature {
    display: flex;

    align-items: center;

    gap: 11px;

    margin-bottom: 14px;
}

.mg-hero-card-feature i {
    color: #d99a00;

    font-size: 13px;
}

.mg-hero-card-feature span {
    color: rgba(255, 255, 255, 0.88);

    font-size: 13px;
}

.mg-hero-card-button {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-top: 28px;

    padding: 14px 16px;

    background: #ffffff;

    color: #243b5a;

    border-radius: 6px;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 0.3px;

    transition: 0.2s ease;
}

.mg-hero-card-button:hover {
    background: #d99a00;

    color: #ffffff;
}


/* =========================================================
   MODULE 2 RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {

    .mg-hero-container {
        grid-template-columns: 1fr;

        gap: 40px;

        padding-top: 70px;
        padding-bottom: 70px;
    }

    .mg-hero-content {
        text-align: center;
    }

    .mg-hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .mg-hero-buttons {
        justify-content: center;
    }

    .mg-hero-trust {
        justify-content: center;
    }

    .mg-hero-visual {
        min-height: auto;
    }
}


@media (max-width: 768px) {

    .mg-hero {
        min-height: auto;
    }

    .mg-hero-container {
        width: 90%;

        padding-top: 55px;
        padding-bottom: 55px;
    }

    .mg-hero h1 {
        font-size: 42px;

        letter-spacing: -0.8px;
    }

    .mg-hero-description {
        font-size: 16px;
    }

    .mg-hero-trust {
        display: grid;

        grid-template-columns: 1fr;

        justify-items: start;

        max-width: 280px;

        margin: 0 auto;
    }

    .mg-hero-card {
        padding: 30px 25px;
    }

    .mg-hero-card h2 {
        font-size: 30px;
    }

    .mg-hero-visual::before {
        width: 330px;
        height: 330px;
    }
}


@media (max-width: 480px) {

    .mg-hero h1 {
        font-size: 36px;
    }

    .mg-hero-buttons {
        flex-direction: column;

        width: 100%;
    }

    .mg-hero-button {
        width: 100%;
    }

    .mg-hero-card {
        padding: 25px 20px;
    }
}


/* =========================================================
   MODULE 5
   ABOUT / WHY CHOOSE US
   ========================================================= */

.mg-about {
    padding: 110px 0 90px;
    background: #f7f9fc;
}

.mg-about-container {
    width: min(1320px, 92%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;

    align-items: center;
}


/* LEFT CONTENT */

.mg-about-content .mg-section-label {
    display: inline-block;

    margin-bottom: 18px;

    color: #e6a400;

    font-size: 14px;
    font-weight: 800;

    letter-spacing: 3px;
    text-transform: uppercase;
}

.mg-about-content h2 {
    margin: 0 0 25px;

    color: #263f63;

    font-size: clamp(40px, 5vw, 62px);
    line-height: 1.08;
    font-weight: 800;
}

.mg-about-content h2 span {
    display: block;
    color: #e6a400;
}

.mg-about-content p {
    margin: 0 0 18px;

    color: #59708e;

    font-size: 17px;
    line-height: 1.75;
}

.mg-about-content .mg-about-lead {
    font-size: 19px;
    line-height: 1.7;
}


/* BUTTON */

.mg-about-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-top: 15px;

    padding: 16px 24px;

    background: #e6a400;
    color: #ffffff;

    border-radius: 8px;

    font-size: 14px;
    font-weight: 800;

    text-decoration: none;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.mg-about-button:hover {
    background: #c98f00;
    transform: translateY(-2px);
}


/* RIGHT FEATURES */

.mg-about-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.mg-about-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;

    padding: 25px;

    background: #ffffff;

    border: 1px solid #dfe6ef;
    border-radius: 14px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.mg-about-feature:hover {
    transform: translateX(5px);

    border-color: #e6a400;

    box-shadow:
        0 12px 30px rgba(38, 63, 99, 0.08);
}


/* FEATURE ICON */

.mg-about-icon {
    flex: 0 0 54px;

    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #263f63;
    color: #ffffff;

    border-radius: 12px;

    font-size: 20px;
}

.mg-about-feature h3 {
    margin: 0 0 7px;

    color: #263f63;

    font-size: 20px;
    font-weight: 800;
}

.mg-about-feature p {
    margin: 0;

    color: #59708e;

    font-size: 15px;
    line-height: 1.6;
}


/* TRUST STRIP */

.mg-about-trust {
    width: min(1320px, 92%);

    margin: 70px auto 0;
    padding: 28px 35px;

    display: flex;
    align-items: center;
    justify-content: space-around;

    background: #263f63;

    border-radius: 16px;
}

.mg-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}

.mg-trust-item strong {
    color: #ffffff;

    font-size: 18px;
    font-weight: 800;
}

.mg-trust-item span {
    margin-top: 5px;

    color: #dce6f3;

    font-size: 14px;
}

.mg-trust-divider {
    width: 1px;
    height: 45px;

    background: #526987;
}


/* =========================================================
   MODULE 5 RESPONSIVE
   ========================================================= */

@media (max-width: 950px) {

    .mg-about-container {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .mg-about-content {
        max-width: 800px;
    }

}


@media (max-width: 700px) {

    .mg-about {
        padding: 80px 0 70px;
    }

    .mg-about-container {
        width: 90%;
    }

    .mg-about-feature {
        padding: 20px;
    }

    .mg-about-trust {
        width: 90%;

        flex-direction: column;

        gap: 22px;

        padding: 28px 20px;
    }

    .mg-trust-divider {
        width: 80px;
        height: 1px;
    }

    .mg-about-button {
        width: 100%;

        justify-content: center;
    }

}
/* =========================================================
   MODULE 6
   SECURITY PLANS
   ========================================================= */

.mg-plans {
    padding: 110px 0 100px;
    background: #ffffff;
}

.mg-plans-container {
    width: min(1320px, 92%);
    margin: 0 auto;
}


/* SECTION HEADER */

.mg-plans-header {
    max-width: 850px;
    margin: 0 auto 65px;

    text-align: center;
}

.mg-plans-header .mg-section-label {
    display: inline-block;

    margin-bottom: 18px;

    color: #e6a400;

    font-size: 14px;
    font-weight: 800;

    letter-spacing: 3px;
    text-transform: uppercase;
}

.mg-plans-header h2 {
    margin: 0 0 22px;

    color: #263f63;

    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.08;
    font-weight: 800;
}

.mg-plans-header h2 span {
    display: block;
    color: #e6a400;
}

.mg-plans-header p {
    max-width: 760px;

    margin: 0 auto;

    color: #59708e;

    font-size: 18px;
    line-height: 1.7;
}


/* PLANS GRID */

.mg-plans-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 28px;

    align-items: stretch;
}


/* PLAN CARD */

.mg-plan-card {
    position: relative;

    display: flex;
    flex-direction: column;

    padding: 38px 34px 34px;

    background: #f7f9fc;

    border: 1px solid #dfe6ef;

    border-radius: 16px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.mg-plan-card:hover {
    transform: translateY(-6px);

    border-color: #e6a400;

    box-shadow:
        0 18px 45px rgba(38, 63, 99, 0.12);
}


/* PLAN NUMBER */

.mg-plan-number {
    position: absolute;

    top: 25px;
    right: 30px;

    color: #dfe6ef;

    font-size: 42px;
    font-weight: 800;

    line-height: 1;
}


/* PLAN ICON */

.mg-plan-icon {
    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 28px;

    background: #263f63;
    color: #ffffff;

    border-radius: 13px;

    font-size: 23px;
}


/* PLAN LABEL */

.mg-plan-label {
    margin-bottom: 8px;

    color: #e6a400;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 2px;
}


/* PLAN TITLE */

.mg-plan-card h3 {
    margin: 0 0 15px;

    color: #263f63;

    font-size: 28px;
    line-height: 1.2;
    font-weight: 800;
}


/* DESCRIPTION */

.mg-plan-description {
    min-height: 82px;

    margin: 0;

    color: #59708e;

    font-size: 16px;
    line-height: 1.65;
}


/* DIVIDER */

.mg-plan-divider {
    width: 100%;
    height: 1px;

    margin: 25px 0;

    background: #d8e0ea;
}


/* FEATURES */

.mg-plan-card ul {
    display: flex;
    flex-direction: column;

    gap: 15px;

    margin: 0 0 30px;
    padding: 0;

    list-style: none;
}

.mg-plan-card li {
    display: flex;
    align-items: flex-start;

    gap: 11px;

    color: #263f63;

    font-size: 15px;
    font-weight: 600;

    line-height: 1.5;
}

.mg-plan-card li i {
    flex: 0 0 auto;

    margin-top: 3px;

    color: #e6a400;

    font-size: 14px;
}


/* PLAN BUTTON */

.mg-plan-button {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    margin-top: auto;

    padding: 15px 20px;

    background: #ffffff;

    border: 1px solid #ccd7e5;

    border-radius: 8px;

    color: #263f63;

    font-size: 14px;
    font-weight: 800;

    text-decoration: none;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.mg-plan-button:hover {
    background: #e6a400;

    border-color: #e6a400;

    color: #ffffff;
}


/* FEATURED PLAN */

.mg-plan-featured {
    background: #263f63;

    border-color: #263f63;

    transform: translateY(-10px);

    box-shadow:
        0 18px 45px rgba(38, 63, 99, 0.16);
}

.mg-plan-featured:hover {
    transform: translateY(-16px);

    border-color: #e6a400;
}

.mg-plan-featured .mg-plan-number {
    color: rgba(255, 255, 255, 0.08);
}

.mg-plan-featured .mg-plan-icon {
    background: #e6a400;
}

.mg-plan-featured h3 {
    color: #ffffff;
}

.mg-plan-featured .mg-plan-description {
    color: #dce6f3;
}

.mg-plan-featured .mg-plan-divider {
    background: #526987;
}

.mg-plan-featured li {
    color: #ffffff;
}

.mg-plan-featured .mg-plan-button {
    background: #e6a400;

    border-color: #e6a400;

    color: #ffffff;
}

.mg-plan-featured .mg-plan-button:hover {
    background: #ffffff;

    border-color: #ffffff;

    color: #263f63;
}


/* RECOMMENDED BADGE */

.mg-plan-badge {
    position: absolute;

    top: -13px;
    left: 50%;

    transform: translateX(-50%);

    padding: 7px 16px;

    background: #e6a400;
    color: #ffffff;

    border-radius: 30px;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.5px;

    white-space: nowrap;
}


/* BOTTOM NOTE */

.mg-plans-note {
    display: flex;
    align-items: flex-start;

    gap: 14px;

    max-width: 950px;

    margin: 55px auto 0;
    padding: 20px 24px;

    background: #f7f9fc;

    border: 1px solid #dfe6ef;

    border-radius: 10px;
}

.mg-plans-note i {
    flex: 0 0 auto;

    margin-top: 4px;

    color: #e6a400;

    font-size: 18px;
}

.mg-plans-note p {
    margin: 0;

    color: #59708e;

    font-size: 14px;
    line-height: 1.65;
}


/* =========================================================
   MODULE 6 RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {

    .mg-plans-grid {
        grid-template-columns: 1fr;
    }

    .mg-plan-featured {
        transform: none;
    }

    .mg-plan-featured:hover {
        transform: translateY(-6px);
    }

}


@media (max-width: 700px) {

    .mg-plans {
        padding: 80px 0 70px;
    }

    .mg-plans-container {
        width: 90%;
    }

    .mg-plans-header {
        margin-bottom: 50px;
    }

    .mg-plan-card {
        padding: 32px 24px 26px;
    }

    .mg-plan-card h3 {
        font-size: 25px;
    }

    .mg-plan-description {
        min-height: auto;
    }

    .mg-plans-note {
        padding: 18px;
    }

}
/* =========================================================
   MODULE 7 - CONTACT / SECURITY ASSESSMENT
   ========================================================= */

.mg-contact {
    width: 100%;
    padding: 110px 0 110px;
    background: #f7f9fc;
}

.mg-contact-container {
    width: 92%;
    max-width: 1320px;
    margin: 0 auto;
}


/* =========================
   HEADER
   ========================= */

.mg-contact-header {
    max-width: 850px;
    margin: 0 auto 65px;
    text-align: center;
}

.mg-contact-header .mg-section-label {
    display: block;
    margin-bottom: 18px;

    color: #e6a400;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.mg-contact-header h2 {
    margin: 0 0 22px;

    color: #263f63;
    font-size: 58px;
    line-height: 1.1;
    font-weight: 800;
}

.mg-contact-header h2 span {
    display: block;
    color: #e6a400;
}

.mg-contact-header p {
    max-width: 780px;
    margin: 0 auto;

    color: #59708e;
    font-size: 18px;
    line-height: 1.7;
}


/* =========================
   MAIN GRID
   ========================= */

.mg-contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;

    align-items: start;
}


/* =========================
   LEFT CONTENT
   ========================= */

.mg-contact-info {
    padding-top: 10px;
}

.mg-contact-small-label {
    display: block;
    margin-bottom: 14px;

    color: #e6a400;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.mg-contact-intro h3 {
    margin: 0 0 20px;

    color: #263f63;

    font-size: 40px;
    line-height: 1.15;
    font-weight: 800;
}

.mg-contact-intro p {
    margin: 0 0 35px;

    color: #59708e;

    font-size: 17px;
    line-height: 1.75;
}


/* =========================
   INFO CARDS
   ========================= */

.mg-contact-info-card {
    display: flex;
    align-items: flex-start;

    gap: 18px;

    margin-bottom: 18px;
    padding: 23px;

    background: #ffffff;

    border: 1px solid #dfe6ef;
    border-radius: 12px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.mg-contact-info-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(38, 63, 99, 0.08);
}

.mg-contact-info-icon {
    flex: 0 0 auto;

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #263f63;
    color: #ffffff;

    border-radius: 10px;

    font-size: 18px;
}

.mg-contact-info-card h4 {
    margin: 2px 0 7px;

    color: #263f63;

    font-size: 17px;
    line-height: 1.3;
    font-weight: 800;
}

.mg-contact-info-card p {
    margin: 0;

    color: #59708e;

    font-size: 14px;
    line-height: 1.6;
}


/* =========================
   FORM WRAPPER
   ========================= */

.mg-contact-form-wrapper {
    padding: 42px;

    background: #263f63;

    border-radius: 16px;

    box-shadow:
        0 20px 50px rgba(38, 63, 99, 0.14);
}

.mg-contact-form-header {
    margin-bottom: 30px;
}

.mg-contact-form-header span {
    display: block;
    margin-bottom: 10px;

    color: #e6a400;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.mg-contact-form-header h3 {
    margin: 0 0 12px;

    color: #ffffff;

    font-size: 32px;
    line-height: 1.2;
    font-weight: 800;
}

.mg-contact-form-header p {
    margin: 0;

    color: #dce6f3;

    font-size: 15px;
    line-height: 1.6;
}


/* =========================
   FORM
   ========================= */

.mg-contact-form {
    width: 100%;
}

.mg-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.mg-form-group {
    margin-bottom: 19px;
}

.mg-form-group label {
    display: block;

    margin-bottom: 8px;

    color: #ffffff;

    font-size: 13px;
    line-height: 1.4;
    font-weight: 700;
}

.mg-form-group input,
.mg-form-group select,
.mg-form-group textarea {
    display: block;

    width: 100%;

    box-sizing: border-box;

    padding: 14px 15px;

    background: #ffffff;

    border: 1px solid #d6dfeb;
    border-radius: 7px;

    color: #263f63;

    font-family: inherit;
    font-size: 14px;
    line-height: 1.5;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.mg-form-group input::placeholder,
.mg-form-group textarea::placeholder {
    color: #8a9aae;
}

.mg-form-group input:focus,
.mg-form-group select:focus,
.mg-form-group textarea:focus {
    border-color: #e6a400;

    box-shadow:
        0 0 0 3px rgba(230, 164, 0, 0.15);
}

.mg-form-group textarea {
    min-height: 125px;
    resize: vertical;
}


/* =========================
   SUBMIT BUTTON
   ========================= */

.mg-contact-submit {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    width: 100%;

    margin-top: 7px;
    padding: 16px 22px;

    background: #e6a400;
    border: 1px solid #e6a400;
    border-radius: 8px;

    color: #ffffff;

    font-family: inherit;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 800;

    cursor: pointer;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.mg-contact-submit:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #263f63;

    transform: translateY(-2px);
}


/* =========================
   FORM NOTE
   ========================= */

.mg-form-note {
    display: flex;
    align-items: flex-start;

    gap: 9px;

    margin: 17px 0 0;

    color: #cbd8e8;

    font-size: 12px;
    line-height: 1.55;
}

.mg-form-note i {
    flex: 0 0 auto;

    margin-top: 2px;

    color: #e6a400;
}


/* =========================================================
   MODULE 7 - TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .mg-contact-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .mg-contact-info {
        padding-top: 0;
    }

}


/* =========================================================
   MODULE 7 - MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .mg-contact {
        padding: 80px 0;
    }

    .mg-contact-container {
        width: 90%;
    }

    .mg-contact-header {
        margin-bottom: 45px;
    }

    .mg-contact-header h2 {
        font-size: 42px;
    }

    .mg-contact-header p {
        font-size: 16px;
    }

    .mg-contact-intro h3 {
        font-size: 32px;
    }

    .mg-contact-form-wrapper {
        padding: 28px 22px;
    }

    .mg-contact-form-header h3 {
        font-size: 27px;
    }

    .mg-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .mg-contact-info-card {
        padding: 19px;
    }

}

/* =========================================================
   MODULE 8
   FOOTER
   ========================================================= */

.mg-footer {
    background: #263f63;
    color: #ffffff;
    margin-top: 0;
    position: relative;
}

.mg-footer-container {
    width: min(1280px, calc(100% - 80px));
    margin: 0 auto;
    padding: 75px 0 65px;

    display: grid;
    grid-template-columns: 1.5fr 1fr 1.3fr 1.2fr;
    gap: 55px;
}


/* =========================================================
   FOOTER BRAND
   ========================================================= */

.mg-footer-brand {
    max-width: 390px;
}

.mg-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    text-decoration: none;
    margin-bottom: 24px;
}

.mg-footer-logo-mark {
    width: 46px;
    height: 46px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;
    color: #263f63;

    border-radius: 8px;

    font-size: 19px;
    font-weight: 800;
    letter-spacing: -1px;
}

.mg-footer-logo-text {
    color: #ffffff;

    font-size: 25px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.mg-footer-logo-text strong {
    color: #e6a400;
}

.mg-footer-brand p {
    margin: 0 0 28px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   FOOTER CTA
   ========================================================= */

.mg-footer-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    padding: 14px 20px;

    background: #e6a400;
    color: #ffffff;

    border-radius: 7px;

    text-decoration: none;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.3px;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.mg-footer-cta:hover {
    background: #f0ae00;
    transform: translateY(-2px);
}

.mg-footer-cta i {
    font-size: 12px;
}


/* =========================================================
   FOOTER COLUMNS
   ========================================================= */

.mg-footer-column h3 {
    margin: 0 0 23px;

    color: #ffffff;

    font-size: 16px;
    font-weight: 800;
}

.mg-footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mg-footer-column li {
    margin-bottom: 13px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 14px;
    line-height: 1.6;
}

.mg-footer-column a {
    color: rgba(255, 255, 255, 0.78);

    text-decoration: none;

    transition:
        color 0.2s ease,
        padding-left 0.2s ease;
}

.mg-footer-column a:hover {
    color: #e6a400;
    padding-left: 4px;
}


/* =========================================================
   COVERAGE ICONS
   ========================================================= */

.mg-footer-icon {
    width: 27px;
    height: 27px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-right: 8px;

    color: #e6a400;

    vertical-align: middle;
}

.mg-footer-icon i {
    font-size: 14px;
}


/* =========================================================
   FOOTER BOTTOM
   ========================================================= */

.mg-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.mg-footer-bottom-container {
    width: min(1280px, calc(100% - 80px));
    margin: 0 auto;

    min-height: 75px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.mg-footer-bottom p {
    margin: 0;

    color: rgba(255, 255, 255, 0.65);

    font-size: 13px;
}

.mg-footer-legal {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mg-footer-legal a {
    color: rgba(255, 255, 255, 0.65);

    text-decoration: none;

    font-size: 13px;

    transition: color 0.2s ease;
}

.mg-footer-legal a:hover {
    color: #e6a400;
}

.mg-footer-legal span {
    color: rgba(255, 255, 255, 0.35);
}


/* =========================================================
   MODULE 8 — TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .mg-footer-container {
        grid-template-columns: 1.4fr 1fr;
        gap: 45px;
    }

    .mg-footer-brand {
        max-width: 100%;
    }

}


/* =========================================================
   MODULE 8 — MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .mg-footer-container {
        width: calc(100% - 40px);

        padding: 55px 0 45px;

        grid-template-columns: 1fr;

        gap: 38px;
    }

    .mg-footer-brand {
        max-width: 100%;
    }

    .mg-footer-logo-text {
        font-size: 23px;
    }

    .mg-footer-column h3 {
        margin-bottom: 16px;
    }

    .mg-footer-column li {
        margin-bottom: 11px;
    }

    .mg-footer-bottom-container {
        width: calc(100% - 40px);

        min-height: auto;

        padding: 22px 0;

        flex-direction: column;

        align-items: flex-start;

        gap: 14px;
    }

    .mg-footer-legal {
        flex-wrap: wrap;
    }

}


/* =========================================================
   MODULE 8 — SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .mg-footer-container {
        width: calc(100% - 30px);
    }

    .mg-footer-bottom-container {
        width: calc(100% - 30px);
    }

    .mg-footer-logo-mark {
        width: 42px;
        height: 42px;
    }

    .mg-footer-logo-text {
        font-size: 21px;
    }

    .mg-footer-brand p {
        font-size: 14px;
    }

    .mg-footer-cta {
        width: 100%;
    }

}

/* =========================================================
   MODULE 9
   FORM SUCCESS MESSAGE
   ========================================================= */

 .mg-form-success {
    width: calc(100% - 40px);
    max-width: 1340px;

    margin: 28px auto 0;

    padding: 18px 24px;

    box-sizing: border-box;

    display: flex;
    align-items: center;

    gap: 16px;

    background: #ffffff;

    border: 1px solid #dce4ee;

    border-left: 5px solid #e6a400;

    border-radius: 10px;

    box-shadow: 0 8px 25px rgba(38, 63, 99, 0.08);

    color: #263f63;

    position: relative;

    z-index: 2;
}


/* SUCCESS ICON */

.mg-success-icon {
    width: 42px;
    height: 42px;

    min-width: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #e6a400;

    color: #ffffff;

    border-radius: 50%;

    font-size: 19px;
}


/* SUCCESS TEXT */

.mg-success-content {
    display: flex;

    flex-direction: column;

    gap: 4px;
}


.mg-success-content strong {
    display: block;

    margin: 0;

    color: #263f63;

    font-size: 16px;

    font-weight: 800;

    line-height: 1.4;
}


.mg-success-content span {
    display: block;

    color: #58708f;

    font-size: 14px;

    line-height: 1.5;
}


/* MOBILE */

@media (max-width: 700px) {

    .mg-form-success {

        width: calc(100% - 30px);

        margin-top: 20px;

        padding: 16px;

        align-items: flex-start;

    }


    .mg-success-icon {

        width: 38px;

        height: 38px;

        min-width: 38px;

        font-size: 17px;

    }


    .mg-success-content strong {

        font-size: 15px;

    }


    .mg-success-content span {

        font-size: 13px;

    }

}

/* =========================================================
   MODULE 9 - HONEYPOT SPAM PROTECTION
   Keep honeypot field hidden from real visitors
   ========================================================= */

.mg-honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.mg-honeypot input,
.mg-honeypot label {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}



 
 