/** Shopify CDN: Minification failed

Line 444:12 Expected identifier but found "\"\""
Line 1759:0 Unexpected "}"

**/

:root{
  --bg:#071224;
  --card:#101938;
  --card-hover:#162447;
  --text:#F5F8FF;
  --muted:#B9C6E5;
  --blue:#1EA0FF;
  --purple:#B100FF;
  --radius:24px;
}

*{box-sizing:border-box}

body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:Inter,Arial,sans-serif;
}

.mfc-container{
  width:min(1200px,92%);
  margin:0 auto;
}

.eyebrow{
  color:var(--blue);
  font-size:.85rem;
  font-weight:700;
  letter-spacing:.15em;
  text-transform:uppercase;
}

/* ===========================
   HERO
=========================== */

.mfc-hero{
    position:relative;
    overflow:hidden;
    padding:150px 0 100px;
    text-align:center;
    background:#071224;
    isolation:isolate;
}
.mfc-hero::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        180deg,
        rgba(255,255,255,.02),
        transparent 30%,
        rgba(0,0,0,.25)
    );
    pointer-events:none;
    z-index:1;
}
/* Animated background glow */

.hero-glow{
    position:absolute;
    width:1100px;
    height:1100px;
    left:50%;
    top:-250px;
    transform:translateX(-50%);
    background:radial-gradient(circle,
        rgba(30,160,255,.22) 0%,
        rgba(177,0,255,.16) 35%,
        transparent 72%);
    filter:blur(60px);
    animation:heroFloat 10s ease-in-out infinite;
    z-index:0;
}

/* Grid background */

.hero-grid{
    position:absolute;
    inset:0;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size:60px 60px;
    mask-image:linear-gradient(to bottom,
        rgba(0,0,0,.9),
        rgba(0,0,0,.2),
        transparent);
    opacity:.6;
    z-index:0;
}

.mfc-hero .mfc-container{
    position:relative;
    z-index:2;
}

.mfc-hero h1{
    font-size:clamp(58px,7vw,88px);
    line-height:1;
    margin:25px 0;
    font-weight:800;
    letter-spacing:-2px;
}

.mfc-hero h1 span{
    background:linear-gradient(90deg,#1EA0FF,#B100FF);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero-text{
    max-width:760px;
    margin:0 auto 45px;
    color:#C8D3F0;
    font-size:22px;
    line-height:1.9;
}

.hero-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:20px 48px;
    border-radius:18px;
    background:linear-gradient(90deg,#1EA0FF,#B100FF);
    color:#fff;
    text-decoration:none;
    font-weight:700;
    font-size:18px;
    transition:.35s;
    box-shadow:0 12px 35px rgba(30,160,255,.22);
}

.hero-button:hover{
    transform:translateY(-5px);
    box-shadow:
        0 15px 45px rgba(30,160,255,.30),
        0 0 50px rgba(177,0,255,.18);
}

.hero-trust{
    margin-top:45px;
    display:flex;
    justify-content:center;
    gap:35px;
    flex-wrap:wrap;
}

.hero-trust span{
    color:#BFD2F6;
    font-size:15px;
    font-weight:600;
}

@keyframes heroFloat{

    0%{
        transform:translateX(-50%) translateY(0px);
    }

    50%{
        transform:translateX(-50%) translateY(30px);
    }

    100%{
        transform:translateX(-50%) translateY(0px);
    }

}

@media(max-width:768px){

    .mfc-hero{
        padding:120px 0 90px;
    }

    .mfc-hero h1{
        font-size:52px;
    }

    .hero-text{
        font-size:18px;
    }

    .hero-trust{
        gap:18px;
        flex-direction:column;
    }

}

.services{
  padding:120px 0;
}

.services-layout{
  display:grid;
  grid-template-columns:320px 1fr;
  gap:60px;
}

.services h2{
  font-size:44px;
  margin:12px 0 18px;
}

.section-subtitle{
  color:var(--muted);
  line-height:1.8;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(300px,1fr));
  gap:30px;
}

.service-card{
  position:relative;
  background:var(--card);
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius);
  padding:42px;
  overflow:hidden;
  transition:.3s;
}

.service-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at top left,rgba(30,160,255,.12),transparent 45%);
  opacity:0;
  transition:.3s;
}

.service-card>*{position:relative;z-index:2}

.service-card:hover{
  transform:translateY(-8px);
  border-color:var(--blue);
  box-shadow:0 18px 50px rgba(30,160,255,.18);
}

.service-card:hover::before{opacity:1}

.service-icon{
    width:96px;
    height:96px;
    margin-bottom:32px;
    display:flex;
    align-items:center;
    justify-content:flex-start;
    flex-shrink:0;
}

.service-icon img{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
}

.service-card h3{
  font-size:30px;
  margin:0 0 16px;
}

.service-card p{
  color:var(--muted);
  line-height:1.8;
}

.why{
  padding:120px 0;
}

.why-grid{
  display:grid;
  grid-template-columns:1.3fr .7fr;
  gap:50px;
  align-items:start;
}

.why-box{
  background:var(--card);
  border-radius:var(--radius);
  padding:40px;
  border:1px solid rgba(255,255,255,.08);
}

.why-box ul{
  margin:0;
  padding-left:20px;
}

.why-box li{
  margin:16px 0;
  color:var(--muted);
}

@media(max-width:990px){
  .services-layout,
  .why-grid{
    grid-template-columns:1fr;
  }

  .service-grid{
    grid-template-columns:1fr;
  }

  .mfc-hero{
    padding:90px 0;
  }

  .service-card{
    padding:32px;
  }
}
/* ===========================
   HEADER
=========================== */

.shopify-section-header{
    position:absolute;
    width:100%;
    top:0;
    left:0;
    z-index:1000;
}

.header-wrapper{
    background:rgba(7,18,36,.45) !important;
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(255,255,255,.08) !important;
    transition:all .3s ease;
}

.shopify-section-header-sticky .header-wrapper{
    background:rgba(7,18,36,.85) !important;
    border-bottom:1px solid rgba(255,255,255,.08) !important;
}

.header{
    min-height:72px !important;
}

.header__heading-logo{
    max-height:40px !important;
    width:auto;
}

.header__menu-item{
    font-weight:600;
    color:#ffffff !important;
    transition:color .25s ease;
}

.header__menu-item:hover{
    color:#1EA0FF !important;
}
/* ===========================
   MFC HEADER
=========================== */

.header-wrapper{
    background:rgba(7,18,36,.45) !important;
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(255,255,255,.06) !important;
    transition:all .35s ease;
}

.shopify-section-header-sticky .header-wrapper{
    background:rgba(7,18,36,.82) !important;
}

.header{
    min-height:68px !important;
    padding-top:0 !important;
    padding-bottom:0 !important;
}

.header__heading-logo{
    max-height:42px !important;
    width:auto;
}

.header__menu-item{
    color:#ffffff !important;
    font-weight:600;
    letter-spacing:.2px;
    transition:.25s;
}

.header__menu-item:hover{
    color:#1EA0FF !important;
}

.header__active-menu-item{
    color:#1EA0FF !important;
}
/* ===========================
   HOW IT WORKS
=========================== */

.process{
    padding:130px 0;
    background:#08102D;
}

.process .section-heading{
    text-align:center;
    max-width:760px;
    margin:0 auto 60px;
}

.process-grid{

    display:grid;

    grid-template-columns:repeat(3, minmax(0,1fr));

    gap:30px;

    max-width:1100px;

    margin:0 auto;

    position:relative;

}

    content:"";

    position:absolute;

    top:30px;

    left:calc(16.66% + 30px);

    right:calc(16.66% + 30px);

    height:2px;

    background:linear-gradient(
        90deg,
        #1EA0FF,
        #B100FF
    );

    opacity:.18;

    z-index:1;

}

.process-card{
    position:relative;
    background:#101938;
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    padding:40px 32px;
    transition:.35s;
    overflow:hidden;
    z-index:2;
    
}

@media(max-width:990px){

.process-grid::before{
    display:none;
}

}

.process-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:radial-gradient(circle at top left,
        rgba(30,160,255,.12),
        transparent 45%);
    opacity:0;
    transition:.35s;
}

.process-card:hover{
    transform:translateY(-8px);
    border-color:#1EA0FF;
    box-shadow:0 20px 60px rgba(30,160,255,.18);
}

.process-card:hover::before{
    opacity:1;
}

.process-card > *{
    position:relative;
    z-index:2;
    
}

.process-number{

    width:60px;
    height:60px;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        #1EA0FF,
        #B100FF
    );

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:22px;
    font-weight:700;

    margin-bottom:32px;

    color:white;

}

.process-card h3{

    font-size:30px;

    margin-bottom:20px;

}

.process-card p{

    color:#C8D3F0;

    line-height:1.9;

}

.process-note{

    margin-top:70px;

    text-align:center;

    color:#C8D3F0;

    font-size:18px;

}

.process-note strong{

    color:white;

}

@media(max-width:990px){

    .process-grid{

        grid-template-columns:1fr;

    }

}

/* ===========================
   PRICING
=========================== */

.pricing{
    padding:140px 0;
    background:#08102D;
}

.pricing .section-heading{
    text-align:center;
    max-width:760px;
    margin:0 auto 80px;
}

.pricing-card{

    position:relative;

    max-width:820px;

    margin:0 auto;

    background:#101938;

    border:1px solid rgba(255,255,255,.08);

    border-radius:28px;

    padding:60px;

    text-align:center;

    overflow:hidden;

    transition:.35s;

}

.pricing-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:
        radial-gradient(circle at top,
        rgba(30,160,255,.14),
        transparent 60%);

    opacity:0;

    transition:.35s;

}

.pricing-card:hover{

    transform:translateY(-8px);

    border-color:#1EA0FF;

    box-shadow:0 25px 70px rgba(30,160,255,.18);

}

.pricing-card:hover::before{

    opacity:1;

}

.pricing-card>*{

    position:relative;

    z-index:2;

}

.pricing-badge{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:12px 22px;

    border-radius:999px;

    background:linear-gradient(90deg,#1EA0FF,#B100FF);

    color:#fff;

    font-size:13px;

    font-weight:700;

    letter-spacing:1.4px;

    text-transform:uppercase;

    box-shadow:0 10px 25px rgba(30,160,255,.20);

    margin-bottom:34px;

}

.pricing-card h3{

    font-size:44px;

    margin-bottom:24px;

}

.price{

    margin-bottom:20px;

}

.currency{

    font-size:34px;

    vertical-align:top;

    color:#C8D3F0;

}

.amount{

    font-size:96px;

    font-weight:800;

    line-height:1;

    color:white;

}

.period{

    font-size:28px;

    color:#C8D3F0;

}

.pricing-description{

    color:#C8D3F0;

    max-width:560px;

    margin:0 auto 45px;

    line-height:1.8;

}

.pricing-list{

    list-style:none;

    padding:0;

    margin:0 0 45px;

    text-align:left;

    max-width:520px;

    margin-left:auto;

    margin-right:auto;

}

.pricing-list li{

    padding:12px 0;

    border-bottom:1px solid rgba(255,255,255,.06);

    color:white;

    font-size:17px;

}

.pricing-list li:last-child{

    border-bottom:none;

}

.pricing .hero-button{

    margin-top:10px;

    display:inline-flex;

}

.pricing-note{

    margin-top:40px;

    padding-top:35px;

    border-top:1px solid rgba(255,255,255,.08);

    color:#AAB7D5;

    line-height:1.8;

    font-size:15px;

}

.pricing-note strong{

    color:white;

}

@media(max-width:768px){

    .pricing-card{

        padding:40px 30px;

    }

    .amount{

        font-size:62px;

    }

    .pricing-card h3{

        font-size:32px;

    }

}

/* ===========================
   FAQ
=========================== */

.faq{
    padding:140px 0;
    background:#071224;
}

.faq .section-heading{
    text-align:center;
    max-width:760px;
    margin:0 auto 80px;
}

.faq-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.faq-card{

    position:relative;

    background:#101938;

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    padding:40px;

    transition:.35s;

    overflow:hidden;

    min-height:190px;
display:flex;
flex-direction:column;
justify-content:flex-start;

}

.faq-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:radial-gradient(
        circle at top left,
        rgba(30,160,255,.12),
        transparent 45%
    );

    opacity:0;

    transition:.35s;

}

.faq-card:hover{

    transform:translateY(-8px);

    border-color:#1EA0FF;

    box-shadow:0 18px 55px rgba(30,160,255,.16);

}

.faq-card:hover::before{

    opacity:1;

}

.faq-card>*{

    position:relative;

    z-index:2;

}

.faq-card h3{

    font-size:28px;

    margin-bottom:18px;

}

.faq-card p{

    color:#C8D3F0;

    line-height:1.9;

}

@media(max-width:990px){

    .faq-grid{

        grid-template-columns:1fr;

    }

}

/* ===========================
   FINAL CTA
=========================== */

.final-cta{

    padding:160px 0;

    text-align:center;

    background:
        radial-gradient(
            circle at top,
            rgba(30,160,255,.12),
            transparent 45%
        ),
        #071224;

}

.final-cta .mfc-container{

    max-width:900px;

}

.final-cta h2{

    font-size:clamp(48px,6vw,72px);

    line-height:1.1;

    margin:20px 0 30px;

}

.final-text{

    max-width:700px;

    margin:0 auto 45px;

    color:#C8D3F0;

    line-height:1.9;

    font-size:20px;

}

.final-cta .hero-button{

    padding:22px 54px;

    font-size:18px;

}

/* ===========================
   MFC CUSTOM FOOTER
=========================== */

.mfc-footer{

    position:relative;

    background:#050B1D;

    padding:120px 0 60px;

    overflow:hidden;

    border-top:1px solid rgba(255,255,255,.06);

}

.mfc-footer::before{

    content:"";

    position:absolute;

    inset:0;

    background:
        radial-gradient(
            circle at top,
            rgba(30,160,255,.10),
            transparent 55%
        );

    pointer-events:none;

}

.mfc-footer .mfc-container{

    position:relative;

    z-index:2;

    max-width:1200px;

    margin:0 auto;

    text-align:center;

}

.footer-logo{

    margin-bottom:35px;

}

.footer-logo img{

    width:300px;

    max-width:80%;

    height:auto;

    display:block;

    margin:0 auto;

}

.footer-tagline{

    color:#ffffff;

    font-size:28px;

    font-weight:700;

    line-height:1.5;

    margin-bottom:70px;

}

.footer-nav{

    display:flex;

    justify-content:center;

    gap:50px;

    flex-wrap:wrap;

    margin-bottom:70px;

}

.footer-nav a{

    color:#C8D3F0;

    text-decoration:none;

    font-size:16px;

    font-weight:600;

    transition:.3s;

    position:relative;

}

.footer-nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:linear-gradient(
        90deg,
        #1EA0FF,
        #B100FF
    );

    transition:.3s;

}

.footer-nav a:hover{

    color:#ffffff;

}

.footer-nav a:hover::after{

    width:100%;

}

.footer-divider{

    width:100%;

    max-width:900px;

    height:1px;

    margin:0 auto 45px;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(30,160,255,.35),
        rgba(177,0,255,.35),
        transparent
    );

}

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    color:#8F9CB8;

    font-size:15px;

    flex-wrap:wrap;

}

.footer-bottom div{

    flex:1;

}

.footer-bottom div:first-child{

    text-align:left;

}

.footer-bottom div:last-child{

    text-align:right;

}

@media(max-width:768px){

    .mfc-footer{

        padding:90px 0 50px;

    }

    .footer-logo img{

        width:260px;

    }

    .footer-tagline{

        font-size:28px;

        margin-bottom:50px;

    }

    .footer-nav{

        flex-direction:column;

        gap:70px;

        margin-bottom:50px;

    }

    .footer-bottom{

        flex-direction:column;

        text-align:center;

    }

    .footer-bottom div{

        text-align:center !important;

    }

}

/* ---------- CUSTOM FOOTER ---------- */

.mfc-footer{
    background:#071325;
    padding:90px 20px 45px;
    text-align:center;
}

.footer-logo{
    width:220px;
    margin:0 auto 35px;
    display:block;
}

.footer-tagline{
    color:#fff;
    font-size:42px;
    font-weight:700;
    line-height:1.25;
    margin-bottom:55px;
}

.footer-nav{
    display:flex;
    justify-content:center;
    gap:42px;
    flex-wrap:wrap;
    margin-bottom:55px;
}

.footer-nav a{
    color:#ffffff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.footer-nav a:hover{
    color:#3EA6FF;
}

.footer-divider{
    width:100%;
    max-width:900px;
    height:1px;
    background:rgba(255,255,255,.12);
    margin:0 auto 35px;
}

.footer-bottom{
    max-width:1100px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    color:#8DA3C2;
    font-size:14px;
}

@media(max-width:768px){

.footer-tagline{
    font-size:30px;
}

.footer-bottom{
    flex-direction:column;
    gap:15px;
    text-align:center;
}

.footer-nav{
    gap:22px;
}

.footer-logo{
    width:250px;
}

}

.final-cta{
    padding-bottom:0 !important;
    margin-bottom:0 !important;
}

.mfc-footer{
    margin-top:0 !important;
}

/* ===== FOOTER IMPROVEMENTS ===== */

.final-cta{
    padding-bottom:40px !important;
}

.mfc-footer{
    margin-top:0;
    padding-top:35px;
}

.footer-logo{
    width:350px;
    display:block;
    margin:0 auto 35px;
    transition:.3s ease;
}

.footer-logo:hover{
    transform:scale(1.03);
}

.footer-tagline{
    font-size:36px;
    line-height:1.2;
    margin:0 auto 45px;
    color:#fff;
}

.footer-nav{
    display:flex;
    justify-content:center;
    gap:42px;
    flex-wrap:wrap;
    margin-bottom:45px;
}

.footer-nav a{
    color:#fff;
    text-decoration:none;
    font-size:17px;
    font-weight:600;
    transition:.25s ease;
}

.footer-nav a:hover{
    color:#3EA6FF;
    transform:translateY(-2px);
}

.footer-divider{
    width:100%;
    max-width:900px;
    margin:0 auto 35px;
    height:1px;
    background:rgba(255,255,255,.18);
}

.footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    color:#8DA3C2;
    font-size:14px;
    max-width:1100px;
    margin:0 auto;
}

@media(max-width:768px){

.footer-logo{
    width:170px;
}

.footer-tagline{
    font-size:30px;
}

.footer-nav{
    gap:20px;
}

.footer-bottom{
    flex-direction:column;
    gap:15px;
    text-align:center;
}

}

/* ==========================================================
   SERVICES PAGE
========================================================== */

.services-hero{
    padding:160px 0 120px;
}

.trust-bar{
    background:#091728;
    border-top:1px solid rgba(255,255,255,.08);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.trust-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:25px;
    padding:35px 0;
}

.trust-item{

    color:#fff;

    text-align:center;

    font-weight:600;

    font-size:15px;

}

.trust-item span{

    display:block;

    font-size:24px;

    color:#3EA6FF;

    margin-bottom:12px;

}






/* ==========================================================
WHY MFC
========================================================== */

.why-mfc{

    padding:120px 0;

}

.why-grid{

    display:grid;

    grid-template-columns:1.2fr .8fr;

    gap:80px;

    align-items:center;

}

.why-left h2{

    font-size:52px;

    line-height:1.1;

    margin:20px 0 35px;

}

.why-left p{

    color:#9BA8B8;

    line-height:1.9;

    margin-bottom:24px;

    font-size:18px;

}

.why-right{

    display:flex;

    flex-direction:column;

    gap:30px;

}

.why-card{

    background:#0E2037;

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:45px;

    transition:.3s;

}

.why-card:hover{

    transform:translateY(-8px);

}

.why-number{

    font-size:58px;

    font-weight:800;

    color:#4DA8FF;

    margin-bottom:20px;

}

.why-card h3{

    color:#fff;

    margin-bottom:15px;

}

.why-card p{

    color:#9BA8B8;

    line-height:1.8;

}






/* ==========================================================
EVERYTHING INCLUDED
========================================================== */

.services-included{

    padding:120px 0;

    background:#071325;

}

.included-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:40px;

    margin-top:70px;

}

.check-item{

    display:flex;

    align-items:center;

    gap:18px;

    background:#0D1D32;

    padding:22px 28px;

    border-radius:14px;

    margin-bottom:18px;

    border:1px solid rgba(255,255,255,.05);

    transition:.3s;

}

.check-item:hover{

    transform:translateX(8px);

    border-color:#3EA6FF;

}

.check-item span{

    color:#3EA6FF;

    font-size:24px;

    font-weight:bold;

}

.check-item{

    color:#fff;

    font-size:18px;

}

/* ==========================================================
OUR PROCESS
========================================================== */

.our-process{
    padding:120px 0;
}

.process-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:70px;

}

@media (max-width:768px){

    .process-grid{

        grid-template-columns:1fr;

        gap:20px;

        margin-top:40px;

    }

}

@media (max-width:768px){

    .process-grid{

        grid-template-columns:1fr;

        gap:20px;

        margin-top:40px;

    }

    .process-card{

        padding:28px;

    }

}

.process-card{

    padding:26px 20px;

}

.process-card h3{

    font-size:20px;

    line-height:1.2;

}

.process-card p{

    font-size:15px;

    line-height:1.6;

}

.process-number{

    width:50px;
    height:50px;
    font-size:20px;
    margin-bottom:18px;

}

}

.process-card{

    background:#0E2037;

    border-radius:22px;

    padding:40px;

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

    position:relative;

    overflow:hidden;

}

@media (max-width:768px){

    .process-card{

        padding:24px;

    }

    .process-card h3{

        font-size:24px;

        line-height:1.2;

        margin-bottom:14px;

    }

    .process-card p{

        font-size:16px;

        line-height:1.6;

    }

    .process-number{

        width:52px;

        height:52px;

        font-size:20px;

        margin-bottom:18px;

    }

}

.process-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(135deg,
    rgba(62,166,255,.08),
    rgba(122,92,255,.08));
    opacity:0;
    transition:.35s;
}

.process-card:hover::before{
    opacity:1;
}

.process-card:hover{
    border-color:#3EA6FF;
    box-shadow:0 12px 35px rgba(62,166,255,.15);
}

.process-number{
    width:64px;
    height:64px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    font-weight:700;
    color:#fff;
    margin-bottom:25px;
    background:linear-gradient(135deg,#3EA6FF,#7A5CFF);
}

.process-card h3{
    color:#fff;
    margin-bottom:18px;
    font-size:24px;
}

.process-card p{
    color:#9BA8B8;
    line-height:1.8;
}

/* ==========================================================
WHAT WE CONFIGURE
========================================================== */

.what-we-configure{
    padding:120px 0;
    background:#071325;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    margin-top:70px;
}

@media (max-width:768px){

    .service-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .service-card{
        padding:26px;
    }

    .service-card h3{
        font-size:26px;
    }

    .service-card p{
        font-size:16px;
    }

}

.service-card{
    background:#0E2037;
    border-radius:22px;
    padding:45px;
    border:1px solid rgba(255,255,255,.08);
    transition:.35s;
}

.service-card:hover{
    transform:translateY(-10px);
    border-color:#3EA6FF;
    box-shadow:0 20px 60px rgba(62,166,255,.12);
}

.service-icon{
    width:72px;
    height:72px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:18px;
    margin-bottom:30px;
    font-size:34px;
    background:linear-gradient(135deg,#3EA6FF,#7A5CFF);
}

.service-card h3{
    color:#fff;
    margin-bottom:18px;
    font-size:24px;
}

.service-card p{
    color:#9BA8B8;
    line-height:1.8;
    font-size:17px;
}

/* ==========================================================
SECTION HEADINGS
========================================================== */

.section-heading{
    max-width:760px;
    margin:0 auto 60px;
    text-align:center;
}

.section-heading h2{
    font-size:54px;
    line-height:1.1;
    margin:18px 0;
    color:#fff;
}

.section-subtitle{
    color:#9BA8B8;
    font-size:20px;
    line-height:1.8;
    max-width:760px;
    margin:0 auto;
}

/* ==========================================================
GLOBAL SPACING
========================================================== */

.services-page-section section{
    position:relative;
}

.services-page-section section:nth-child(even){
    background:#08182C;
}

/* ==========================================================
AFFORDABLE TO RUN
========================================================== */

.affordable-section{

    padding:140px 0;

    background:linear-gradient(180deg,#071325,#091C32);

}

.affordable-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:70px;

}

.affordable-card{

    background:#0F223B;

    border-radius:24px;

    padding:50px 40px;

    text-align:center;

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

}

.affordable-card:hover{

    transform:translateY(-10px);

    border-color:#3EA6FF;

    box-shadow:0 20px 60px rgba(62,166,255,.15);

}

.affordable-icon{

    width:90px;

    height:90px;

    margin:0 auto 30px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:42px;

    border-radius:22px;

    background:linear-gradient(135deg,#3EA6FF,#7A5CFF);

}

.affordable-card h3{

    color:#fff;

    font-size:26px;

    margin-bottom:18px;

}

.affordable-card p{

    color:#9BA8B8;

    line-height:1.8;

}

.affordable-note{

    margin-top:70px;

    background:#102641;

    border-left:5px solid #3EA6FF;

    border-radius:18px;

    padding:35px 40px;

}

.affordable-note p{

    color:#D8E6F5;

    font-size:18px;

    line-height:1.9;

}

/* ==========================================================
DOCUMENTATION
========================================================== */

.documentation-section{

    padding:140px 0;

}

.documentation-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

    margin-top:70px;

}

.documentation-card{

    background:#0E2037;

    border-radius:18px;

    padding:28px;

    border:1px solid rgba(255,255,255,.08);

    color:#fff;

    font-weight:600;

    display:flex;

    align-items:center;

    gap:15px;

    transition:.3s;

}

.documentation-card:hover{

    transform:translateX(8px);

    border-color:#3EA6FF;

}

.documentation-card span{

    color:#3EA6FF;

    font-size:26px;

}

.documentation-message{

    margin-top:80px;

    text-align:center;

    max-width:900px;

    margin-left:auto;

    margin-right:auto;

}

.documentation-message h3{

    color:#fff;

    font-size:42px;

    margin-bottom:25px;

}

.documentation-message p{

    color:#9BA8B8;

    font-size:19px;

    line-height:1.9;

}

/* ==========================================================
WHY BUSINESSES CHOOSE MFC
========================================================== */

.choose-mfc{

    padding:140px 0;

    background:#08182C;

}

.choose-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:70px;

}

@media (max-width:768px){

    .choose-grid{

        grid-template-columns:1fr;

        gap:20px;

    }

    .choose-card{

        padding:30px 24px;

    }

    .choose-icon{

        font-size:42px;

        margin-bottom:18px;

    }

    .choose-card h3{

        font-size:24px;

    }

    .choose-card p{

        font-size:16px;

        line-height:1.6;

    }

}

.choose-card{

    background:#10233D;

    border-radius:24px;

    padding:45px;

    border:1px solid rgba(255,255,255,.08);

    text-align:center;

    transition:.35s;

}

.choose-card:hover{

    transform:translateY(-10px);

}

.choose-icon{

    font-size:54px;

    margin-bottom:25px;

}

.choose-card h3{

    color:#fff;

    margin-bottom:18px;

}

.choose-card p{

    color:#9BA8B8;

    line-height:1.8;

}

/* ==========================================================
NOT INCLUDED
========================================================== */

.not-included{

    padding:140px 0;

}

.not-included .service-card{

    background:#0B1A2E;

}

.hero-subheading {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.3;
}

.hero-text {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
}

