
    :root{
      --primary:#57A7EC;
      --primary-dark:#2E8DDA;
      --blue-deep:#071569;
      --dark:#07142f;
      --dark-2:#020918;
      --white:#ffffff;
      --light:#FAFCFF;
      --light-blue:#EAF7FF;
      --text-light:rgba(255,255,255,.82);
      --text-dark:#5F6B78;
      --border-light:rgba(255,255,255,.14);
      --shadow:0 25px 70px rgba(0,0,0,.22);
    }
/* ==========================
   Fixed Social Sidebar
========================== */

.social-sidebar{
    position:fixed;
    top:50%;
    right:25px;
    transform:translateY(-50%);
    display:flex;
    flex-direction:column;
    gap:15px;
    z-index:9999;
}

.social-sidebar a{
    width:52px;
    height:52px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#fff;
    background:#57a7ec;
    backdrop-filter:blur(10px);
    font-size:22px;
    transition:.35s ease;
    box-shadow:0 12px 35px rgba(0,0,0,.18);
}

.social-sidebar a:hover{
    transform:translateX(-8px) scale(1.1);
    background:#000;
}

.social-sidebar .fa-linkedin-in{
    color:#ffffff;
}

.social-sidebar .fa-instagram{
    color:#ffffff;
}

.social-sidebar .fa-whatsapp{
    color:#ffffff;
}

/* Mobile */

@media(max-width:768px){

.social-sidebar{
    right:15px;
    gap:12px;
}

.social-sidebar a{
    width:46px;
    height:46px;
    font-size:19px;
}

}
    *{
      margin:0;
      padding:0;
      box-sizing:border-box;
    }

    html{
      scroll-behavior:smooth;
    }

    body{
      font-family:'Inter',Arial,sans-serif;
      background:var(--dark);
      color:var(--white);
      overflow-x:hidden;
    }
    .core-icon{
    font-size: 42px;
    color: #1e90ff;
    margin-bottom: 20px;
    transition: .35s ease;
}

.core-card:hover .core-icon{
    transform: translateY(-6px) scale(1.08);
    color:#0077ff;
}

    a{
      text-decoration:none;
      color:inherit;
    }

    img{
      max-width:100%;
      display:block;
    }

    /* =========================
       HEADER
    ========================= */

    .premium-header{
      position:fixed;
      top:18px;
      left:50%;
      transform:translateX(-50%);
      width:min(96%,1500px);
      height:104px;
      min-height:104px;
      z-index:99999;
      display:grid;
      grid-template-columns:430px 1fr 190px;
      align-items:center;
      gap:22px;
      padding:10px 28px;
      border-radius:26px;
      background:rgb(245 249 255 / 92%);
      border:1px solid rgba(7,20,47,.08);
      backdrop-filter:blur(22px);
      -webkit-backdrop-filter:blur(22px);
      box-shadow:0 20px 55px rgba(0,0,0,.16), inset 0 1px 0 rgba(255,255,255,.65);
    }

    .logo{
      display:flex;
      align-items:center;
      justify-content:flex-start;
      width:100%;
      height:100%;
      overflow:visible;
    }

    .header-logo{
      display:block;
      width:auto;
      height:82px;
      max-width:410px;
      object-fit:contain;
      object-position:left center;
    }

    .center-nav{
      display:flex;
      justify-content:center;
      align-items:center;
      gap:30px;
    }

    .center-nav a{
      color:#07142f;
      font-size:18px;
      font-weight:800;
      letter-spacing:.1px;
      white-space:nowrap;
      transition:.3s ease;
    }

    .center-nav a:hover,
    .center-nav a.active{
      color:var(--primary);
    }

    .header-cta{
      justify-self:end;
      padding:17px 26px;
      border-radius:60px;
      background:linear-gradient(135deg,var(--primary),var(--primary-dark));
      color:#fff;
      font-size:19px;
      font-weight:900;
      box-shadow:0 16px 35px rgba(87,167,236,.28);
      white-space:nowrap;
      transition:.35s ease;
    }

    .header-cta:hover{
      transform:translateY(-3px);
    }

    .menu-toggle{
      display:none;
      width:48px;
      height:48px;
      border:0;
      border-radius:16px;
      background:linear-gradient(135deg,var(--primary),var(--primary-dark));
      cursor:pointer;
      align-items:center;
      justify-content:center;
      flex-direction:column;
      gap:6px;
    }

    .menu-toggle span{
      width:23px;
      height:2px;
      background:#fff;
      border-radius:20px;
      transition:.3s ease;
    }

    .menu-toggle.active span:nth-child(1){
      transform:translateY(8px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2){
      opacity:0;
    }

    .menu-toggle.active span:nth-child(3){
      transform:translateY(-8px) rotate(-45deg);
    }

    /* =========================
       HERO
    ========================= */

   .f8-hero{
      min-height:114vh;
      position:relative;
      overflow:hidden;
      padding:150px 7% 28px;
      color:#fff;
      background:
        radial-gradient(circle at 15% 18%,rgba(255,255,255,.22),transparent 18%),
        radial-gradient(circle at 85% 25%,rgba(87,167,236,.32),transparent 22%),
        linear-gradient(135deg,#061b55 0%,#0b3a75 45%,#07142f 100%);
    }

    .f8-hero::before{
      content:"";
      position:absolute;
      inset:0;
      background-image:
        linear-gradient(rgba(255,255,255,.10) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.10) 1px,transparent 1px);
      background-size:72px 72px;
      opacity:.24;
      animation:gridMove 18s linear infinite;
    }

    .f8-hero::after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(to bottom,rgba(0,0,0,.08),rgba(0,0,0,.38));
    }

    .hero-content{
      position:relative;
      z-index:10;
      min-height:65vh;
      display:grid;
      place-items:center;
      text-align:center;
    }

    .watermark{
      position:absolute;
      font-size:clamp(58px,13vw,180px);
      font-weight:900;
      letter-spacing:-6px;
      color:rgba(255,255,255,.18);
      text-shadow:0 30px 70px rgba(0,0,0,.18);
      animation:pulseZoom 5s ease-in-out infinite;
      white-space:nowrap;
    }

    .hero-content h2{
      position:relative;
      z-index:2;
      font-size:clamp(38px,6vw,76px);
      font-weight:900;
      line-height:1;
      text-shadow:0 20px 45px rgba(0,0,0,.22);
    }

    #changingText{
      display:inline-block;
      transition:.35s ease;
      font-size: 38px;
    }

    .floating-card{
      position:absolute;
      z-index:8;
      display:flex;
      align-items:center;
      gap:10px;
      padding:12px 18px;
      color:#fff;
      font-size:18px;
      font-weight:900;
      letter-spacing:1.5px;
      text-transform:uppercase;
      background:rgba(255,255,255,.10);
      border:1px solid rgba(255,255,255,.20);
      border-radius:100px;
      backdrop-filter:blur(18px);
      animation:softFloat 5s ease-in-out infinite;
    }

    .floating-card span{
      width:9px;
      height:9px;
      border-radius:50%;
      background:var(--primary);
    }

    .card-1{top:32%;left:14%;}
    .card-2{top:34%;right:14%;animation-delay:.7s;}
    .card-3{top:55%;left:8%;animation-delay:1.2s;}
    .card-4{top:68%;right:9%;animation-delay:1.8s;}

    /* =========================
       SERVICE PANELS
    ========================= */

    .planning-panels{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      overflow:hidden;
      background:var(--dark);
    }

    .planning-panel{
      min-height:260px;
      padding:54px 38px;
      color:#fff;
      position:relative;
      overflow:hidden;
    }

    .planning-panel::after{
      content:"";
      position:absolute;
      right:-20%;
      bottom:-30%;
      width:180px;
      height:180px;
      border-radius:50%;
      background:rgba(255,255,255,.14);
      filter:blur(2px);
    }

    .panel-one{background:linear-gradient(135deg,#63B7F2,#2E8DDA);}
    .panel-two{background:linear-gradient(135deg,#4AA4E8,#247BC7);}
    .panel-three{background:linear-gradient(135deg,#3797DC,#176DAF);}
    .panel-four{background:linear-gradient(135deg,#2589D2,#0D5F9C);}

    .planning-panel h3{
        font-size: clamp(24px, 1vw, 38px);
      line-height:1.15;
      font-family:Georgia,serif;
      margin-bottom:24px;
    }

    .panel-line{
      width:42px;
      height:3px;
      background:rgba(255,255,255,.65);
      margin-bottom:62px;
      border-radius:20px;
    }

    .planning-panel p{
      font-size:16px;
      line-height:1.75;
      color:rgba(255,255,255,.90);
      margin-bottom:30px;
    }

    .planning-panel a{
      font-size:15px;
      font-weight:900;
      cursor:pointer;
    }

    /* =========================
       SECTION MASKS
    ========================= */

    .dark-mask,
    .light-mask{
      position:relative;
      overflow:hidden;
    }

    .dark-mask{
      background:var(--dark);
      color:#fff;
    }

    .dark-mask::before{
      content:"";
      position:absolute;
      inset:0;
      z-index:0;
      pointer-events:none;
      background:
        radial-gradient(circle at 0% 25%,rgba(87,167,236,.18) 0%,rgba(87,167,236,.08) 30%,transparent 70%),
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
      background-size:cover,56px 56px,56px 56px;
    }

    .light-mask{
      background:linear-gradient(135deg,#ffffff 0%,#EAF7FF 100%);
      color:var(--dark);
    }

    .light-mask::before{
      content:"";
      position:absolute;
      inset:0;
      z-index:0;
      pointer-events:none;
      background:
        radial-gradient(circle at 0% 25%,rgba(87,167,236,.30) 0%,rgba(87,167,236,.13) 30%,transparent 70%),
        radial-gradient(circle at 100% 95%,rgba(180,220,245,.35) 0%,transparent 50%),
        linear-gradient(rgba(7,20,47,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(7,20,47,.035) 1px, transparent 1px);
      background-size:cover,cover,56px 56px,56px 56px;
    }

    .dark-mask > *,
    .light-mask > *{
      position:relative;
      z-index:2;
    }

    .section-tag,
    .story-tag,
    .why-title span,
    .cta-box span{
      display:inline-block;
      color:var(--primary);
      font-size:20px;
      font-weight:900;
      letter-spacing:3px;
      text-transform:uppercase;
      margin-bottom:22px;
    }

    .beyond-section h2,
    .you-factor-content h2,
    .why-title h2,
    .cta-box h2{
      font-family:Georgia,serif;
      line-height:1.08;
      font-weight:700;
    }

    /* =========================
       ABOUT
    ========================= */

    .beyond-section{
      width:100%;
      padding:100px 7%;
    }

    .beyond-section h2{
      font-size:42px;
      margin-bottom:28px;
      color:#fff;
    }

    .content-line{
      width:90px;
      height:4px;
      background:var(--primary);
      margin-bottom:40px;
      border-radius:20px;
    }

    .beyond-text p{
      width:100%;
      font-size:21px;
      line-height:1.85;
      color:var(--text-light);
      margin-bottom:26px;
    }

    .highlight-text{
      font-size:23px!important;
      color:#fff!important;
      font-weight:800;
    }

    /* =========================
       CORE VALUES - BEST RESPONSIVE
    ========================= */

    .core-values-modern{
      position:relative;
      overflow:hidden;
      background:linear-gradient(135deg,#ffffff 0%,#eaf7ff 100%);
      isolation:isolate;
    }

    .core-values-modern::before{
      content:"";
      position:absolute;
      inset:0;
      z-index:0;
      pointer-events:none;
      background:
        radial-gradient(circle at 0% 18%, rgba(87,167,236,.26) 0%, rgba(87,167,236,.10) 32%, transparent 68%),
        radial-gradient(circle at 100% 95%, rgba(87,167,236,.20) 0%, transparent 48%),
        linear-gradient(rgba(7,20,47,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(7,20,47,.04) 1px, transparent 1px);
      background-size:cover,cover,60px 60px,60px 60px;
    }

    .core-values-modern::after{
      content:"";
      position:absolute;
      right:-150px;
      top:170px;
      width:460px;
      height:460px;
      border-radius:50%;
      z-index:0;
      pointer-events:none;
      background:radial-gradient(circle, rgba(87,167,236,.22), transparent 70%);
      filter:blur(35px);
      animation:coreFloat 10s ease-in-out infinite;
    }

    .core-sticky-wrap{
      position:relative;
      z-index:2;
      padding:0 7% 80px;
    }

    .core-curve{
      position:relative;
      z-index:2;
      height:250px;
      width:120%;
      margin-left:-10%;
      background:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,.28), transparent 28%),
        linear-gradient(135deg,#57A7EC,#2E8DDA);
      border-radius:0 0 50% 50%;
      display:flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      box-shadow:0 24px 60px rgba(37,99,235,.22);
    }

    .core-heading{
      text-align:center;
      margin-top:-20px;
    }

    .core-heading h2{
      font-family:Georgia,serif;
      color:#fff;
      font-size:clamp(38px,5vw,56px);
      font-weight:900;
      line-height:.95;
      letter-spacing:-1px;
    }

    .core-cards{
      position:relative;
      z-index:5;
      margin-top:-42px;
      display:grid;
      grid-template-columns:repeat(6,minmax(0,1fr));
      gap:28px;
      align-items:stretch;
    }

    .core-card{
      text-align:center;
      position:relative;
      min-width:0;
      transition:opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1);
    }

    .core-card.show:hover{
      transform:translateY(-10px) scale(1);
    }

    .core-card::after{
      content:"";
      position:absolute;
      top:58px;
      right:-28px;
      width:28px;
      height:4px;
      background:#1d9bf0;
    }

    .core-card:last-child::after{
      display:none;
    }

    .core-badge{
      width:108px;
      height:108px;
      margin:0 auto -30px;
      border-radius:50%;
      background:linear-gradient(135deg,#328fdc,#3491dc);
      border:8px solid rgba(255,255,255,.6);
      box-shadow:0 18px 35px rgba(0,0,0,.25);
      display:grid;
      place-items:center;
      color:#fff;
      font-size:48px;
      font-weight:900;
      position:relative;
      z-index:4;
    }

    .core-badge::after{
      content:"";
      position:absolute;
      bottom:-28px;
      left:50%;
      transform:translateX(-50%);
      width:22px;
      height:38px;
      background:inherit;
      clip-path:polygon(50% 100%,0 0,100% 0);
    }

    .core-body{
      height:100%;
      min-height:250px;
      padding:75px 18px 28px;
      border-radius:70px 70px 0 0;
      background:linear-gradient(180deg,#f4f8fc,#ffffff);
      box-shadow:0 20px 35px rgba(0,0,0,.10);
      border:1px solid rgba(255,255,255,.55);
      display:flex;
      flex-direction:column;
      align-items:center;
    }

    .core-icon{
      font-size:42px;
      color:#168fe4;
      margin-bottom:18px;
      font-weight:800;
      transition:.35s ease;
    }

    .core-card:hover .core-icon{
      transform:translateY(-6px) scale(1.08);
      color:#0077ff;
    }

    .core-body h3{
      font-size:20px;
      color:#168fe4;
      font-weight:900;
      margin-bottom:14px;
    }

    .core-body p{
      font-size:12px;
      line-height:1.6;
      color:#526174;
      text-transform:uppercase;
    }

    @keyframes coreFloat{
      0%,100%{transform:translateY(0);}
      50%{transform:translateY(-40px);}
    }

    @media(min-width:1201px){
      .core-values-modern{
        height:320vh;
        overflow:visible;
      }

      .core-sticky-wrap{
        position:sticky;
        top:0;
        height:100vh;
        overflow:hidden;
      }

      .core-card{
        opacity:0;
        transform:translateY(180px) scale(.9);
      }

      .core-card.show{
        opacity:1;
        transform:translateY(0) scale(1);
      }
    }

    @media(max-width:1200px){
      .core-values-modern{
        height:auto;
        padding-bottom:80px;
        overflow:hidden;
      }

      .core-sticky-wrap{
        position:relative;
        height:auto;
        overflow:visible;
        padding:0 6% 50px;
      }

      .core-cards{
        grid-template-columns:repeat(3,minmax(0,1fr));
        gap:60px 28px;
      }

      .core-card{
        opacity:1;
        transform:none;
      }

      .core-card::after{
        display:none;
      }
    }

    @media(max-width:900px){
      .core-curve{
        height:220px;
        width:130%;
        margin-left:-15%;
      }

      .core-cards{
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:58px 24px;
      }
    }

    @media(max-width:640px){
      .core-values-modern{
        padding-bottom:55px;
      }

      .core-sticky-wrap{
        padding:0 22px 38px;
      }

      .core-curve{
        height:210px;
        width:150%;
        margin-left:-25%;
        border-radius:0 0 45% 45%;
      }

      .core-cards{
        grid-template-columns:1fr;
        gap:52px;
        margin-top:-25px;
      }

      .core-card{
        max-width:420px;
        width:100%;
        margin:0 auto;
      }

      .core-body{
        min-height:220px;
        border-radius:70px 70px 24px 24px;
      }
    }

    @media(max-width:380px){
      .core-sticky-wrap{
        padding-left:16px;
        padding-right:16px;
      }

      .core-badge{
        width:100px;
        height:100px;
      }
    }

    /* =========================
       YOU FACTOR
    ========================= */

    .you-factor-section{
      padding:95px 7%;
    }

    .you-factor-content{
      width:100%;
      margin-bottom:50px;
      text-align:center;
    }

    .you-factor-content h2{
      font-size:clamp(40px,5vw,56px);
      margin-bottom:18px;
      color:var(--light);
    }

    .you-factor-content h3{
      font-size:clamp(24px,3vw,29px);
      color:#fff;
      margin-bottom:30px;
    }

    .story-highlight{
      max-width:900px;
      margin:0 auto 32px;
      font-size:19px;
      line-height:1.75;
      color:var(--light);
      border-left:5px solid var(--primary);
      padding-left:24px;
      text-align:left;
    }

    .story-points{
      display:grid;
      gap:16px;
    }

    .story-points p{
      padding:22px 26px;
      border-radius:22px;
      background:rgba(255,255,255,.84);
      border:1px solid rgba(7,20,47,.10);
      color:var(--text-dark);
      font-size:18px;
      line-height:1.7;
      box-shadow:0 14px 36px rgba(0,0,0,.06);
      text-align:left;
    }

    .you-factor-images{
      width:100%;
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:24px;
    }

    .image-card{
      position:relative;
      width:100%;
      height:350px;
      overflow:hidden;
      border-radius:28px;
      box-shadow:0 26px 60px rgba(0,0,0,.14);
      background:#10244a;
    }

    .image-card img{
      width:100%;
      height:100%;
      object-fit:cover;
      transition:1s ease;
    }

    .image-card:hover img{
      transform:scale(1.07);
    }

    /* =========================
       WHY FACTOR
    ========================= */

    .why-factor-premium{
      padding:90px 7%;
    }

    .why-title{
      text-align:center;
      margin-bottom:60px;
    }

    .why-title h2{
      font-size:clamp(38px,5vw,45px);
      color:var(--dark);
    }

    .why-timeline{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:24px;
    }

    .why-item{
      padding:30px;
      border-radius:26px;
      background:rgba(255,255,255,.84);
      border:1px solid rgba(7,20,47,.10);
      box-shadow:0 18px 45px rgba(0,0,0,.065);
    }

    .why-number{
      width:64px;
      height:64px;
      border-radius:50%;
      display:flex;
      align-items:center;
      justify-content:center;
      background:linear-gradient(135deg,var(--primary),var(--primary-dark));
      color:#fff;
      font-size:24px;
      font-weight:900;
      margin-bottom:22px;
    }

    .why-item h3{
      color:var(--dark);
      font-size:23px;
      margin-bottom:14px;
    }

    .why-item p{
      color:var(--text-dark);
      line-height:1.75;
      font-size:16px;
    }

    /* =========================
       CTA
    ========================= */

    .cta-section{
      padding:95px 7%;
      text-align:center;
    }

    .cta-box{
      width:100%;
      padding:80px 36px;
      border-radius:36px;
      background:rgba(255,255,255,.86);
      border:1px solid rgba(7,20,47,.10);
      box-shadow:0 25px 70px rgba(0,0,0,.08);
    }

    .cta-box h2{
      font-size:clamp(38px,5vw,45px);
      margin:22px 0;
      color:var(--dark);
    }

    .cta-box p{
      color:var(--text-dark);
      line-height:1.75;
      font-size:20px;
    }

    .cta-box a{
      display:inline-block;
      margin-top:36px;
      background:linear-gradient(135deg,var(--primary),var(--primary-dark));
      color:#fff;
      padding:15px 32px;
      border-radius:50px;
      font-size:17px;
      font-weight:800;
      box-shadow:0 18px 40px rgba(87,167,236,.28);
      cursor:pointer;
    }

    /* =========================
       PREMIUM FACTOR 8 FOOTER
    ========================= */

    .f8-footer{
      position:relative;
      background:linear-gradient(135deg,#020716,#071a3d 55%,#0b2f63);
      color:#fff;
      padding:140px 6% 30px;
      overflow:hidden;
    }

    .f8-footer-wave{
      position:absolute;
      top:0;
      left:0;
      width:100%;
      height:110px;
      background:#ffffff;
      clip-path:ellipse(75% 100% at 50% 0%);
    }

    .f8-footer::before{
      content:"";
      position:absolute;
      right:-150px;
      top:120px;
      width:420px;
      height:420px;
      background:radial-gradient(circle,rgba(87,167,236,.35),transparent 70%);
      filter:blur(25px);
    }

    .f8-footer-inner{
      position:relative;
      z-index:2;
      display:grid;
      grid-template-columns:1.4fr 1fr 1fr 1.2fr;
      gap:30px;
    }

    .f8-footer-card{
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.12);
      border-radius:26px;
      padding:35px;
      min-height:300px;
      backdrop-filter:blur(12px);
      box-shadow:0 25px 60px rgba(0,0,0,.25);
    }

    .f8-logo{
      width:320px;
      height:auto;
      max-width:100%;
      object-fit:contain;
      margin-bottom:25px;
    }

    .f8-footer-card h3{
      color:#fff;
      font-size:26px;
      font-weight:800;
      margin-bottom:25px;
    }

    .f8-footer-card h4{
      color:#fff;
      font-size:17px;
      font-weight:700;
      margin-bottom:8px;
    }

    .f8-footer-card p,
    .f8-footer-card a{
      color:#b9c3d6;
      font-size:16px;
      line-height:1.8;
      text-decoration:none;
    }

    .f8-footer-card a{
      display:block;
      margin-bottom:12px;
      transition:.3s;
    }

    .f8-footer-card a:hover{
      color:#57A7EC;
      transform:translateX(5px);
    }

    .f8-socials{
      display:flex;
      gap:14px;
      margin-top:25px;
    }

    .f8-socials a{
      width:52px;
      height:52px;
      border-radius:15px;
      background:rgba(255,255,255,.10);
      display:flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      font-size:18px;
      transition:.3s;
      margin-bottom:0;
    }

    .f8-socials a:hover{
      background:#57A7EC;
      color:#fff;
      transform:translateY(-4px);
    }

    .f8-location-row{
      display:flex;
      gap:16px;
      margin-bottom:22px;
    }

    .f8-icon{
      width:52px;
      height:52px;
      min-width:52px;
      border-radius:15px;
      background:linear-gradient(135deg,#57A7EC,#2E8DDA);
      display:flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      box-shadow:0 10px 30px rgba(87,167,236,.35);
    }

    .f8-footer-bottom{
      position:relative;
      z-index:2;
      margin-top:45px;
      padding-top:25px;
      border-top:1px solid rgba(255,255,255,.10);
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:20px;
    }

    .f8-footer-bottom p{
      color:#aeb8c8;
      font-size:15px;
      margin:0;
    }

    /* =========================
       ANIMATIONS
    ========================= */

    [data-animate]{
      opacity:0;
      filter:blur(14px);
      transition:opacity 1s cubic-bezier(.16,1,.3,1),transform 1s cubic-bezier(.16,1,.3,1),filter 1s cubic-bezier(.16,1,.3,1);
      will-change:transform,opacity,filter;
    }

    [data-animate="fade-up"]{transform:translateY(80px) scale(.96);}
    [data-animate="fade-down"]{transform:translateY(-80px) scale(.96);}
    [data-animate="fade-left"]{transform:translateX(90px) scale(.96);}
    [data-animate="fade-right"]{transform:translateX(-90px) scale(.96);}
    [data-animate="zoom-in"]{transform:scale(.86);}
    [data-animate="flip-up"]{transform:perspective(900px) rotateX(18deg) translateY(70px);transform-origin:bottom;}

    [data-animate].animate-show{
      opacity:1;
      filter:blur(0);
      transform:translate(0,0) scale(1) rotateX(0);
    }

    [data-delay="1"]{transition-delay:.12s;}
    [data-delay="2"]{transition-delay:.24s;}
    [data-delay="3"]{transition-delay:.36s;}
    [data-delay="4"]{transition-delay:.48s;}

    .planning-panel,
    .why-item,
    .image-card,
    .cta-box{
      transition:transform .45s ease, box-shadow .45s ease;
    }

    .planning-panel:hover,
    .why-item:hover,
    .image-card:hover,
    .cta-box:hover{
      transform:translateY(-10px);
    }

    @keyframes gridMove{
      from{background-position:0 0;}
      to{background-position:144px 144px;}
    }

    @keyframes pulseZoom{
      0%,100%{transform:scale(1);opacity:.8;}
      50%{transform:scale(1.04);opacity:.55;}
    }

    @keyframes softFloat{
      0%,100%{transform:translateY(0);}
      50%{transform:translateY(-18px);}
    }

    /* =========================
       RESPONSIVE
    ========================= */

    @media(max-width:1240px){
      .premium-header{
        grid-template-columns:340px 1fr 170px;
        height:94px;
        min-height:94px;
        padding:10px 22px;
      }

      .header-logo{
        height:76px;
        max-width:330px;
      }

      .center-nav{
        gap:20px;
      }

      .center-nav a{
        font-size:13px;
      }

      .header-cta{
        padding:13px 18px;
      }
    }

    @media(max-width:1200px){
      .core-values-modern{
        height:auto;
        padding-bottom:80px;
      }

      .core-sticky-wrap{
        position:relative;
        height:auto;
        overflow:visible;
      }

      .core-cards{
        grid-template-columns:repeat(3,1fr);
        row-gap:60px;
      }

      .core-card{
        opacity:1;
        transform:none;
      }

      .core-card::after{
        display:none;
      }

      .f8-footer-inner{
        grid-template-columns:repeat(2,1fr);
      }
    }

    @media(max-width:1180px){
      .planning-panels,
      .why-timeline{
        grid-template-columns:repeat(2,1fr);
      }
    }

    @media(max-width:980px){
      .premium-header{
        grid-template-columns:1fr auto;
        height:86px;
        min-height:86px;
        top:14px;
        padding:9px 16px;
        border-radius:22px;
      }

      .header-logo{
        height:70px;
        max-width:300px;
      }

      .header-cta{
        display:none;
      }

      .menu-toggle{
        display:flex;
        justify-self:end;
      }

      .center-nav{
        position:absolute;
        top:98px;
        left:0;
        width:100%;
        display:flex;
        flex-direction:column;
        align-items:flex-start;
        justify-content:flex-start;
        gap:16px;
        padding:24px;
        background:rgba(7,20,47,.98);
        border:1px solid rgba(255,255,255,.12);
        border-radius:22px;
        box-shadow:0 25px 60px rgba(0,0,0,.35);
        opacity:0;
        visibility:hidden;
        transform:translateY(-12px);
        transition:.35s ease;
      }

      .center-nav.active{
        opacity:1;
        visibility:visible;
        transform:translateY(0);
      }

      .center-nav a{
        color:#fff;
        font-size:15px;
        width:100%;
        padding:7px 0;
      }

      .floating-card{
        display:none;
      }

      .you-factor-images{
        grid-template-columns:1fr;
      }

      .image-card{
        height:320px;
      }
    }

    @media(max-width:768px){
      .core-curve{
        height:210px;
      }

      .core-cards{
        grid-template-columns:1fr;
        margin-top:-25px;
      }

      .core-body{
        min-height:220px;
      }

      .f8-footer{
        padding:120px 20px 25px;
      }

      .f8-footer-inner{
        grid-template-columns:1fr;
      }

      .f8-footer-bottom{
        flex-direction:column;
        gap:12px;
        text-align:center;
      }

      .f8-logo{
        width:250px;
      }
    }

    @media(max-width:640px){
      .planning-panels,
      .why-timeline{
        grid-template-columns:1fr;
      }

      .f8-hero{
        padding:115px 22px 40px;
        min-height:82vh;
      }

      .hero-content h2{
        font-size:38px;
      }

      .watermark{
        font-size:58px;
        letter-spacing:-2px;
      }

      .beyond-section,
      .you-factor-section,
      .why-factor-premium,
      .cta-section{
        padding-left:22px;
        padding-right:22px;
      }

      .beyond-section,
      .you-factor-section,
      .why-factor-premium,
      .cta-section{
        padding-top:70px;
        padding-bottom:70px;
      }

      .beyond-section h2,
      .you-factor-content h2,
      .why-title h2,
      .cta-box h2{
        font-size:36px;
      }

      .beyond-text p,
      .story-highlight,
      .cta-box p{
        font-size:17px;
      }

      .highlight-text{
        font-size:20px!important;
      }

      .image-card{
        height:260px;
      }
    }

    @media(max-width:560px){
      .premium-header{
        width:min(94%,1500px);
        height:74px;
        min-height:74px;
        padding:8px 12px;
      }

      .header-logo{
        height:58px;
        max-width:230px;
      }

      .center-nav{
        top:86px;
      }

      .menu-toggle{
        width:44px;
        height:44px;
      }
    }
    .hero-changing-box{
  position:relative;
  z-index:3;
  max-width:1050px;
  margin:0 auto;
  text-align:center;
  transition:.35s ease;
}

.hero-changing-box h2{
  font-size:clamp(34px,5vw,72px);
  font-weight:900;
  line-height:1.05;
  margin-bottom:22px;
  color:#fff;
}

.hero-changing-box p{
  max-width:1000px;
  margin:0 auto;
  font-size:clamp(17px,2vw,24px);
  line-height:1.6;
  color:rgba(255,255,255,.86);
  font-weight:500;
}
@media(prefers-reduced-motion:reduce){
      *{
        animation:none!important;
        transition:none!important;
        scroll-behavior:auto!important;
      }

      [data-animate]{
        opacity:1!important;
        filter:none!important;
        transform:none!important;
      }
    }
    .factor-title-wrap{
    position:relative;
    text-align:center;
    
    overflow:hidden;
}

.factor-bg-text{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    font-size:clamp(90px,18vw,220px);
    font-weight:900;
    line-height:1;
    letter-spacing:-10px;
    color:rgba(255,255,255,.05);
    white-space:nowrap;
    pointer-events:none;
    user-select:none;
    text-transform:uppercase;
}

.factor-main-content{
    position:relative;
    z-index:2;
}

.factor-tag{
    display:inline-block;
    margin-bottom:18px;
    color:#57A7EC;
    font-size:13px;
    font-weight:900;
    letter-spacing:4px;
    text-transform:uppercase;
}

.factor-main-content h2{
    font-size:clamp(42px,5vw,32px);
    line-height:1.05;
    color:#ffffff;
    font-weight:900;
    margin-bottom:25px;
}

.factor-line{
    width:100px;
    height:4px;
    margin:0 auto 25px;
    border-radius:50px;
    background:linear-gradient(
      90deg,
      transparent,
      #57A7EC,
      transparent
    );
}

.factor-main-content p{
    max-width:800px;
    margin:0 auto;
    font-size:20px;
    line-height:1.8;
    color:rgba(255,255,255,.82);
}
/* =========================
   HEADER DROPDOWN
========================= */

.nav-dropdown{
    position:relative;
}

.dropdown-btn{
    display:flex;
    align-items:center;
    gap:8px;
}

.dropdown-btn i{
    font-size:11px;
    transition:.3s ease;
}

.dropdown-menu{
    position:absolute;
    top:150%;
    left:50%;
    transform:translateX(-50%);
    min-width:240px;

    background:#ffffff;
    border-radius:18px;
    padding:12px;

    border:1px solid rgba(7,20,47,.08);

    box-shadow:
    0 25px 60px rgba(0,0,0,.12);

    opacity:0;
    visibility:hidden;
    transform:translateX(-50%) translateY(15px);

    transition:.35s ease;
}

.dropdown-menu a{
    display:block;
    padding:14px 18px;
    border-radius:12px;
    color:#07142f !important;
    font-size:14px !important;
    font-weight:700 !important;
}

.dropdown-menu a:hover{
    background:#EAF7FF;
    color:#57A7EC !important;
}

.nav-dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateX(-50%) translateY(0);
}

.nav-dropdown:hover .dropdown-btn i{
    transform:rotate(180deg);
}
  

/* =========================
   FINAL RESPONSIVE SAFEGUARDS
========================= */
@media(max-width:980px){
  .nav-dropdown{
    width:100%;
  }

  .dropdown-btn{
    width:100%;
    justify-content:space-between;
  }

  .dropdown-menu{
    position:static;
    width:100%;
    min-width:0;
    margin-top:8px;
    padding:8px;
    border-radius:14px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
    box-shadow:none;
    opacity:1;
    visibility:visible;
    transform:none;
    display:none;
  }

  .nav-dropdown.active .dropdown-menu{
    display:block;
  }

  .dropdown-menu a{
    color:#fff !important;
  }

  .dropdown-menu a:hover{
    background:rgba(255,255,255,.10);
    color:#57A7EC !important;
  }
}

@media(max-width:640px){
  .core-cards{
    grid-template-columns:1fr !important;
  }

  .core-card::after{
    display:none !important;
  }
}
/* mission css start from here */
.mv-split-section{
  min-height:100vh;
  padding:140px 7%;
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:80px;
  background:#f6f9fd;
  font-family:'Inter',sans-serif;
  position:relative;
  overflow:hidden;
}

.mv-split-section::before{
  content:"";
  position:absolute;
  width:520px;
  height:520px;
  border-radius:50%;
  background:rgba(57,158,232,.12);
  left:-180px;
  top:-160px;
}

.mv-split-section::after{
  content:"FACTOR 8";
  position:absolute;
  right:-40px;
  bottom:20px;
  font-size:140px;
  font-weight:900;
  color:rgba(7,20,47,.035);
  letter-spacing:-7px;
}

.mv-split-left{
  position:sticky;
  top:140px;
  align-self:start;
  z-index:2;
}

.mv-label{
  display:inline-block;
  margin-bottom:24px;
  color:#399ee8;
  font-size:13px;
  font-weight:900;
  letter-spacing:4px;
  text-transform:uppercase;
}

.mv-split-left h2{
  margin:0 0 28px;
  font-size:clamp(58px,7vw,96px);
  line-height:.9;
  color:#07142f;
  font-weight:900;
  letter-spacing:-5px;
}

.mv-split-left p{
  max-width:430px;
  color:#5c6678;
  font-size:19px;
  line-height:1.75;
}

.mv-split-right{
  position:relative;
  z-index:2;
  display:flex;
  flex-direction:column;
  gap:34px;
}

.mv-line{
  position:absolute;
  left:38px;
  top:20px;
  bottom:20px;
  width:2px;
  background:linear-gradient(#399ee8,rgba(57,158,232,.15));
}

.mv-timeline-card{
  position:relative;
  display:grid;
  grid-template-columns:80px 1fr;
  gap:26px;
  padding:38px;
  border-radius:32px;
  background:#ffffff;
  box-shadow:0 25px 70px rgba(7,20,47,.08);
  border:1px solid rgba(57,158,232,.14);
  transition:.35s ease;
}

.mv-timeline-card:hover{
  transform:translateX(-10px);
  box-shadow:0 35px 90px rgba(7,20,47,.14);
}

.mv-dot{
  width:76px;
  height:76px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#399ee8;
  color:#fff;
  font-weight:900;
  box-shadow:0 15px 35px rgba(57,158,232,.35);
  z-index:2;
}

.mv-timeline-card span{
  display:block;
  margin-bottom:14px;
  color:#399ee8;
  font-size:12px;
  font-weight:900;
  letter-spacing:4px;
  text-transform:uppercase;
}

.mv-timeline-card h3{
  margin:0 0 18px;
  color:#07142f;
  font-size:28px;
  line-height:1.3;
  letter-spacing:-1px;
}

.mv-timeline-card p{
  margin:0;
  color:#5c6678;
  font-size:16px;
  line-height:1.8;
}

.mv-timeline-card.accent{
  background:#07142f;
}

.mv-timeline-card.accent h3,
.mv-timeline-card.accent p{
  color:#fff;
}

.mv-timeline-card.accent p{
  color:rgba(255,255,255,.72);
}

@media(max-width:900px){
  .mv-split-section{
    grid-template-columns:1fr;
    gap:45px;
    padding:100px 6%;
  }

  .mv-split-left{
    position:relative;
    top:auto;
  }
}

@media(max-width:560px){
  .mv-split-section{
    padding:80px 22px;
  }

  .mv-split-left h2{
    font-size:48px;
  }

  .mv-timeline-card{
    grid-template-columns:1fr;
    padding:28px 24px;
  }

  .mv-line{
    display:none;
  }

  .mv-timeline-card h3{
    font-size:23px;
  }
}
/* founder messager start from here */
.founder-impact-page{
  position:relative;
  padding:150px 7% 80px;
  background:linear-gradient(135deg,#f7fbff,#ffffff 45%,#edf6ff);
  overflow:hidden;
  font-family:'Inter',sans-serif;
}

.founder-impact-bg{
  position:absolute;
  right:-50px;
  top:80px;
  font-size:clamp(80px,15vw,200px);
  font-weight:900;
  letter-spacing:-10px;
  color:rgba(7,20,47,.035);
  pointer-events:none;
}

.founder-head{
  position:relative;
  z-index:2;
  max-width:950px;
  margin:0 auto 35px;
  text-align:center;
}

.founder-head span{
  display:block;
  color:#399ee8;
  font-size:12px;
  font-weight:900;
  letter-spacing:5px;
  text-transform:uppercase;
  margin-bottom:18px;
}

.founder-head h1{
  margin:0 0 18px;
  color:#07142f;
  font-size:clamp(42px,6vw,78px);
  line-height:.95;
  letter-spacing:-3px;
  text-transform:uppercase;
}

.founder-head p{
  margin:0;
  color:#5d6678;
  font-size:18px;
  line-height:1.7;
}

.founder-impact-grid{
  position:relative;
  z-index:2;
  max-width:1250px;
  margin:auto;
  display:grid;
  grid-template-columns:1.2fr .9fr .9fr;
  gap:22px;
}

.founder-quote-card,
.founder-text-card,
.founder-sign-card{
  border-radius:30px;
  padding:32px;
  box-shadow:0 22px 65px rgba(7,20,47,.08);
  border:1px solid rgba(57,158,232,.16);
}

.founder-quote-card{
  grid-column:span 2;
  background:linear-gradient(135deg,#399ee8,#07142f);
  color:#fff;
}

.founder-quote-card i{
  font-size:34px;
  margin-bottom:20px;
}

.founder-quote-card h2{
  margin:0;
  font-size:clamp(26px,3vw,25px);
  line-height:1.25;
  letter-spacing:-1px;
}

.founder-text-card{
  background:#fff;
}

.founder-text-card h3{
  margin:0 0 14px;
  color:#07142f;
  font-size:24px;
}

.founder-text-card p{
  margin:0;
  color:#5d6678;
  font-size:16px;
  line-height:1.7;
}

.founder-sign-card{
  grid-column:span 2;
  background:#07142f;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:25px;
}

.founder-sign-card p{
  margin:0;
  font-size:28px;
  font-weight:900;
}

.founder-sign-card span{
  color:#57A7EC;
  font-size:13px;
  font-weight:900;
  letter-spacing:3px;
  text-transform:uppercase;
}

@media(max-width:1000px){
  .founder-impact-grid{
    grid-template-columns:1fr 1fr;
  }

  .founder-quote-card,
  .founder-sign-card{
    grid-column:span 2;
  }
}

@media(max-width:620px){
  .founder-impact-page{
    padding:125px 20px 60px;
  }

  .founder-head{
    text-align:left;
  }

  .founder-impact-grid{
    grid-template-columns:1fr;
  }

  .founder-quote-card,
  .founder-sign-card{
    grid-column:span 1;
  }

  .founder-quote-card,
  .founder-text-card,
  .founder-sign-card{
    padding:26px 22px;
    border-radius:24px;
  }

  .founder-sign-card{
    flex-direction:column;
    align-items:flex-start;
  }

  .founder-sign-card p{
    font-size:24px;
  }
}