:root{
    --navy-950:#071229;
    --navy-900:#0a1830;
    --navy-800:#0e2144;
    --navy-700:#13315f;
    --orange:#f7941e;
    --orange-dark:#e2790a;
    --white:#ffffff;
    --ink:#0f1c34;
    --gray-600:#5b6478;
    --gray-100:#f4f6fa;
    --line:#e7eaf1;
    --radius-lg:18px;
    --radius-md:12px;
    --radius-pill:999px;
    --shadow-card:0 20px 45px -20px rgba(10,24,48,0.35);
  }

  *{margin:0;padding:0;box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    font-family:'Inter',sans-serif;
    color:var(--ink);
    background:var(--white);
    -webkit-font-smoothing:antialiased;
  }
  h1,h2,h3,.brand-name{font-family:'Poppins',sans-serif;}
  a{text-decoration:none;color:inherit;}
  ul{list-style:none;}
  img{max-width:100%;display:block;}
  .container{
    width:100%;
    max-width:1240px;
    margin:0 auto;
    padding:0 32px;
  }
  .eyebrow{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-size:12.5px;
    font-weight:700;
    letter-spacing:.06em;
    padding:8px 16px;
    border-radius:var(--radius-pill);
  }
  .eyebrow-dot{width:6px;height:6px;border-radius:50%;background:var(--orange);flex-shrink:0;}

  /* ===== NAVBAR ===== */
header{
    position:fixed;
    top:0;left:0;right:0;
    z-index:50;
    background:transparent;
    transition:background .3s ease, box-shadow .3s ease;
  }
  header.scrolled{
    background:rgba(7,18,41,0.92);
    backdrop-filter:blur(10px);
    box-shadow:0 8px 24px -12px rgba(0,0,0,0.5);
  }
  header.scrolled .nav-inner{
    padding-top:18px;
    padding-bottom:18px;
  }

  .nav-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:26px 32px;
  }
  .brand{
    display:flex;
    align-items:center;
    gap:12px;
  }
  .brand-icon{
    width:42px;height:42px;
    border-radius:12px;
    background:linear-gradient(145deg,#1a3a72,#0c1f42);
    display:flex;align-items:center;justify-content:center;
    box-shadow:0 6px 16px -4px rgba(0,0,0,0.4);
    flex-shrink:0;
  }
  .brand-icon svg{width:22px;height:22px;}
  .brand-text{line-height:1.15;}
  .brand-name{color:#fff;font-size:17px;font-weight:700;}
  .brand-sub{color:#9fb0cc;font-size:10.5px;font-weight:600;letter-spacing:.08em;}

  .nav-links{
    display:flex;
    align-items:center;
    gap:34px;
  }
  .nav-links a{
    color:#e6ebf5;
    font-size:14.5px;
    font-weight:500;
    padding-bottom:8px;
    position:relative;
    transition:color .2s ease;
  }
  .nav-links a:hover{color:#fff;}
  .nav-links a.active{color:#fff;font-weight:600;}
  .nav-links a.active::after{
    content:"";
    position:absolute;
    left:0;right:0;bottom:0;
    height:2px;
    background:var(--orange);
    border-radius:2px;
  }

  .btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-weight:600;
    font-size:14.5px;
    padding:13px 24px;
    border-radius:var(--radius-pill);
    border:none;
    cursor:pointer;
    transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
    white-space:nowrap;
  }
  .btn:hover{transform:translateY(-2px);}
  .btn svg{width:15px;height:15px;transition:transform .2s ease;}
  .btn:hover svg{transform:translateX(3px);}

  .btn-primary{
    background:linear-gradient(135deg,#1c4faa,#0d2a5c);
    color:#fff;
    box-shadow:0 10px 24px -8px rgba(20,60,140,0.6);
  }
  .btn-white{
    background:#fff;
    color:var(--navy-900);
    box-shadow:0 10px 24px -10px rgba(0,0,0,0.35);
  }
  .btn-dark{
    background:rgba(255,255,255,0.08);
    color:#fff;
    border:1px solid rgba(255,255,255,0.35);
    backdrop-filter:blur(6px);
  }
  .btn-dark:hover{background:rgba(255,255,255,0.16);}

  .nav-toggle{
    display:none;
    flex-direction:column;
    gap:5px;
    background:none;
    border:none;
    cursor:pointer;
    padding:6px;
  }
  .nav-toggle span{
    width:24px;height:2px;background:#fff;border-radius:2px;
  }

  /* ===== HERO ===== */
  .hero{
    position:relative;
    min-height:820px;
    display:flex;
    align-items:center;
    color:#fff;
    overflow:hidden;
    background:
      linear-gradient(100deg, rgba(6,14,32,0.94) 0%, rgba(7,17,38,0.88) 32%, rgba(8,22,46,0.55) 60%, rgba(8,22,46,0.35) 100%),
      radial-gradient(ellipse at 75% 30%, #14315f 0%, transparent 55%),
      linear-gradient(160deg,#050d1f 0%, #0a1830 45%, #0c2040 100%);
    background-size:cover;
    background-position:center;
  }
  /* Swap the URL below for the supplied banner photo */
  .hero.has-bg-image{
    background-image:
      linear-gradient(100deg, rgba(5,12,28,0.92) 0%, rgba(6,15,32,0.82) 30%, rgba(7,18,38,0.45) 62%, rgba(7,18,38,0.25) 100%),
      var(--hero-photo);
  }
  .hero-content{
    position:relative;
    z-index:2;
    padding:190px 0 0;
    width:100%;
  }
  .hero-badge{
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.18);
    color:#dfe6f5;
    backdrop-filter:blur(6px);
    margin-bottom:26px;
  }
  .hero h1{
    font-size:64px;
    font-weight:800;
    line-height:1.08;
    letter-spacing:-0.01em;
    max-width:820px;
  }
  .hero h1 .accent{color:var(--orange);}
  .hero p.lead{
    margin-top:24px;
    font-size:18px;
    line-height:1.65;
    color:#c4cee2;
    max-width:600px;
    font-weight:400;
  }
  .hero-actions{
    display:flex;
    gap:16px;
    margin-top:38px;
  }

  .hero-stats{
    position:relative;
    z-index:2;
    margin-top:90px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
    padding-bottom:0;
  }
  .stat-card{
    display:flex;
    align-items:center;
    gap:14px;
    background:rgba(12,24,50,0.55);
    border:1px solid rgba(255,255,255,0.14);
    backdrop-filter:blur(10px);
    padding:20px 22px;
    border-radius:var(--radius-md);
  }
  .stat-icon{
    width:42px;height:42px;
    border-radius:10px;
    background:rgba(247,148,30,0.16);
    display:flex;align-items:center;justify-content:center;
    flex-shrink:0;
  }
  .stat-icon svg{width:20px;height:20px;color:var(--orange);}
  .stat-card span{font-size:15px;font-weight:600;color:#fff;}

  /* ===== ABOUT ===== */
  .about{
    padding:120px 0;
    background:#fff;
  }
  .about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:74px;
    align-items:center;
  }
  .about-media{position:relative;}
  .about-media img{
    border-radius:var(--radius-lg);
    box-shadow:var(--shadow-card);
    width:100%;
    height:440px;
    object-fit:cover;
  }
  .about-float-card{
    position:absolute;
    bottom:-28px;
    right:-24px;
    background:#fff;
    border-radius:var(--radius-md);
    box-shadow:0 18px 40px -14px rgba(10,24,48,0.3);
    padding:16px 22px;
    display:flex;
    align-items:center;
    gap:14px;
    max-width:280px;
  }
  .about-float-card .icon-box{
    width:46px;height:46px;
    border-radius:10px;
    background:var(--navy-900);
    display:flex;align-items:center;justify-content:center;
    flex-shrink:0;
  }
  .about-float-card .icon-box svg{width:22px;height:22px;color:#fff;}
  .about-float-card strong{font-size:14.5px;display:block;color:var(--ink);}
  .about-float-card span{font-size:12.5px;color:var(--gray-600);}

  .about-eyebrow{
    background:#fdeee0;
    color:var(--orange-dark);
  }
  .about h2{
    font-size:38px;
    font-weight:700;
    line-height:1.25;
    margin-top:18px;
    color:var(--ink);
  }
  .about h2 .accent{color:var(--orange);}
  .about p.body-text{
    margin-top:20px;
    font-size:15.5px;
    line-height:1.75;
    color:var(--gray-600);
    max-width:520px;
  }
  .about-checks{
    margin-top:34px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px 22px;
  }
  .check-item{
    display:flex;
    align-items:flex-start;
    gap:12px;
  }
  .check-item .tick{
    width:26px;height:26px;
    border-radius:50%;
    border:1.5px solid #cfe0ff;
    display:flex;align-items:center;justify-content:center;
    flex-shrink:0;
    margin-top:1px;
  }
  .check-item .tick svg{width:13px;height:13px;color:#1c4faa;}
  .check-item p{
    font-size:14.5px;
    font-weight:600;
    color:var(--ink);
    line-height:1.4;
  }

  /* ===== VISION / MISSION ===== */
  .vm{
    background:linear-gradient(120deg,#0a1c40 0%, #0d275a 55%, #123877 100%);
    padding:90px 0;
    position:relative;
    overflow:hidden;
  }
  .vm::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:
      linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
    background-size:44px 44px;
    pointer-events:none;
  }
  .vm-grid{
    position:relative;
    z-index:1;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
  }
  .vm-col-right{
    text-align:right;
    border-left:1px solid rgba(255,255,255,0.14);
    padding-left:70px;
  }
  .vm-col-left{padding-right:0;}
  .vm-eyebrow{
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.18);
    color:#ffc27a;
  }
  .vm-col-right .vm-eyebrow{
    flex-direction:row-reverse;
  }
  .vm h3{
    font-size:34px;
    font-weight:800;
    letter-spacing:.02em;
    color:#fff;
    margin-top:20px;
  }
  .vm-underline{
    display:flex;
    gap:6px;
    margin-top:16px;
  }
  .vm-col-right .vm-underline{justify-content:flex-end;}
  .vm-underline span{height:3px;border-radius:2px;}
  .vm-underline .bar-1{width:34px;background:#fff;}
  .vm-underline .bar-2{width:60px;background:var(--orange);}
  .vm-col-right .bar-1{order:2;}
  .vm-col-right .bar-2{order:1;}
  .vm p{
    margin-top:22px;
    font-size:15.5px;
    line-height:1.8;
    color:#c3cee6;
    max-width:460px;
  }
  .vm-col-right p{margin-left:auto;}

  /* ===== SERVICES ===== */
  .services{
    padding:120px 0;
    background:var(--gray-100);
  }
  .services-head{
    text-align:center;
    max-width:700px;
    margin:0 auto 64px;
  }
  .services-eyebrow{
    background:#e7edfb;
    color:#1c4faa;
  }
  .services-head h2{
    font-size:38px;
    font-weight:700;
    line-height:1.25;
    color:var(--ink);
    margin-top:18px;
  }
  .services-head p{
    margin-top:18px;
    font-size:15.5px;
    line-height:1.7;
    color:var(--gray-600);
  }
  .services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
  }
  .service-card{
    background:#fff;
    border:1px solid var(--line);
    border-radius:var(--radius-lg);
    padding:34px 30px 38px;
    transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  }
  .service-card:hover{
    transform:translateY(-6px);
    box-shadow:var(--shadow-card);
    border-color:transparent;
  }
  .service-icon{
    width:56px;height:56px;
    border-radius:14px;
    background:linear-gradient(150deg,#173d78,#0a1d40);
    display:flex;align-items:center;justify-content:center;
    margin-bottom:26px;
    box-shadow:0 10px 20px -8px rgba(15,40,90,0.45);
  }
  .service-icon svg{width:24px;height:24px;color:#fff;}
  .service-card h3{
    font-size:19px;
    font-weight:700;
    color:var(--ink);
    margin-bottom:10px;
  }
  .service-card p{
    font-size:14.5px;
    line-height:1.65;
    color:var(--gray-600);
  }

  /* ===== INDUSTRIES ===== */
  .industries{
    padding:120px 0;
    background:#fff;
  }
  .industries-grid{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
  }
  .industry-card{
    flex:1 1 150px;
    max-width:160px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:var(--radius-lg);
    padding:30px 18px;
    text-align:center;
    transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  }
  .industry-card:hover{
    transform:translateY(-6px);
    box-shadow:var(--shadow-card);
    border-color:transparent;
  }
  .industry-icon{
    width:56px;height:56px;
    border-radius:50%;
    background:#e7edfb;
    display:flex;align-items:center;justify-content:center;
    margin:0 auto 18px;
  }
  .industry-icon svg{width:24px;height:24px;color:#1c4faa;}
  .industry-card h3{
    font-size:15px;
    font-weight:700;
    color:var(--ink);
  }

  /* ===== WHY US ===== */
  .why-us{
    padding:120px 0;
    background:#fff;
  }
  .why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
  }
  .why-card{
    background:#fff;
    border:1px solid var(--line);
    border-radius:var(--radius-lg);
    padding:34px 30px 38px;
    transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  }
  .why-card:hover{
    transform:translateY(-6px);
    box-shadow:var(--shadow-card);
    border-color:transparent;
  }
  .why-card-top{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:26px;
  }
  .why-card .service-icon{margin-bottom:0;}
  .why-num{
    font-size:14px;
    font-weight:700;
    color:var(--orange);
  }
  .why-card h3{
    font-size:19px;
    font-weight:700;
    color:var(--ink);
    margin-bottom:10px;
  }
  .why-card p{
    font-size:14.5px;
    line-height:1.65;
    color:var(--gray-600);
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width:960px){
    .nav-links{display:none;}
    .nav-toggle{display:flex;}
    .hero h1{font-size:44px;}
    .hero-stats{grid-template-columns:1fr 1fr;}
    .about-grid{grid-template-columns:1fr;gap:60px;}
    .about-media img{height:340px;}
    .services-grid{grid-template-columns:1fr 1fr;}
    .services-head h2{font-size:32px;}
    .industry-card{flex:1 1 140px;}
    .why-grid{grid-template-columns:1fr 1fr;}
    .vm-grid{grid-template-columns:1fr;gap:56px;}
    .vm-col-right{text-align:left;border-left:none;padding-left:0;border-top:1px solid rgba(255,255,255,0.14);padding-top:56px;}
    .vm-col-right .vm-eyebrow{flex-direction:row;}
    .vm-col-right .vm-underline{justify-content:flex-start;}
    .vm-col-right .bar-1{order:1;}
    .vm-col-right .bar-2{order:2;}
    .vm-col-right p{margin-left:0;}
  }
  @media (max-width:640px){
    .container{padding:0 20px;}
    .hero-content{padding-top:150px;}
    .hero h1{font-size:34px;}
    .hero p.lead{font-size:16px;}
    .hero-actions{flex-direction:column;}
    .hero-actions .btn{width:100%;justify-content:center;}
    .about-checks{grid-template-columns:1fr;}
    .about h2{font-size:28px;}
    .services-grid{grid-template-columns:1fr;}
    .services-head h2{font-size:26px;}
    .industry-card{flex:1 1 100px;padding:22px 12px;}
    .industry-icon{width:48px;height:48px;margin-bottom:14px;}
    .why-grid{grid-template-columns:1fr;}
    .vm h3{font-size:26px;}
    .about-float-card{position:static;margin-top:16px;max-width:100%;}
  }

  /* ===== CAPABILITIES ===== */
  .capabilities{
    background:linear-gradient(120deg,#0a1c40 0%, #0d275a 55%, #123877 100%);
    padding:110px 0;
    position:relative;
    overflow:hidden;
  }
  .capabilities::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:
      linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
    background-size:44px 44px;
    pointer-events:none;
  }
  .cap-head{
    position:relative;
    z-index:1;
    text-align:center;
    max-width:680px;
    margin:0 auto 56px;
  }
  .cap-head h2{
    font-size:38px;
    font-weight:700;
    line-height:1.25;
    color:#fff;
    margin-top:18px;
  }
  .cap-head p{
    margin-top:18px;
    font-size:15.5px;
    line-height:1.7;
    color:#c3cee6;
  }
  .cap-pills{
    position:relative;
    z-index:1;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:14px;
  }
  .cap-pill{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.16);
    backdrop-filter:blur(6px);
    padding:12px 22px 12px 12px;
    border-radius:var(--radius-pill);
    color:#fff;
    font-size:14.5px;
    font-weight:600;
    transition:transform .2s ease, background .2s ease, border-color .2s ease;
  }
  .cap-pill:hover{
    transform:translateY(-3px);
    background:rgba(255,255,255,0.1);
    border-color:rgba(247,148,30,0.5);
  }
  .cap-pill-icon{
    width:30px;height:30px;
    border-radius:50%;
    background:rgba(247,148,30,0.18);
    display:flex;align-items:center;justify-content:center;
    flex-shrink:0;
  }
  .cap-pill-icon svg{width:15px;height:15px;color:var(--orange);}

  @media (max-width:640px){
    .cap-head h2{font-size:26px;}
    .cap-pills{gap:10px;}
    .cap-pill{padding:10px 16px 10px 10px;font-size:13.5px;}
  }

  /* ===== PROCESS ===== */
  .process{
    padding:120px 0;
    background:#fff;
  }
  .process-steps{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:0;
  }
  .process-step{
    position:relative;
    text-align:center;
    padding:0 20px;
  }
  .process-step::before{
    content:"";
    position:absolute;
    top:38px;
    left:-50%;
    width:100%;
    height:2px;
    background:linear-gradient(90deg, var(--orange), #1c4faa);
    z-index:0;
  }
  .process-step:first-child::before{content:none;}
  .step-circle-wrap{
    position:relative;
    width:76px;
    height:76px;
    margin:0 auto 22px;
  }
  .step-circle{
    width:76px;height:76px;
    border-radius:50%;
    background:linear-gradient(150deg,#173d78,#0a1d40);
    display:flex;align-items:center;justify-content:center;
    box-shadow:0 14px 28px -10px rgba(15,40,90,0.5);
    position:relative;
    z-index:1;
  }
  .step-circle svg{width:30px;height:30px;color:#fff;}
  .step-num{
    position:absolute;
    bottom:-2px;
    right:-2px;
    width:26px;height:26px;
    border-radius:50%;
    background:var(--orange);
    color:#fff;
    font-size:12.5px;
    font-weight:700;
    display:flex;align-items:center;justify-content:center;
    border:3px solid #fff;
    z-index:2;
  }
  .process-step h3{
    font-size:18px;
    font-weight:700;
    color:var(--ink);
    margin-bottom:10px;
  }
  .process-step p{
    font-size:14.5px;
    line-height:1.6;
    color:var(--gray-600);
    max-width:230px;
    margin:0 auto;
  }

  @media (max-width:960px){
    .process-steps{grid-template-columns:1fr 1fr;row-gap:56px;}
    .process-step::before{content:none;}
  }
  @media (max-width:640px){
    .process-steps{grid-template-columns:1fr;}
  }

  /* ===== CLIENTS ===== */
  .clients{
    padding:120px 0;
    background:var(--gray-100);
  }
  .clients-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
  }
  .client-card{
    background:#fff;
    border:1px solid var(--line);
    border-radius:var(--radius-lg);
    min-height:110px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:24px 20px;
    transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  }
  .client-card:hover{
    transform:translateY(-6px);
    box-shadow:var(--shadow-card);
    border-color:transparent;
  }
  .client-card span{
    font-family:'Poppins',sans-serif;
    font-size:16px;
    font-weight:700;
    color:var(--ink);
    line-height:1.4;
  }

  @media (max-width:960px){
    .clients-grid{grid-template-columns:1fr 1fr;}
  }
  @media (max-width:640px){
    .clients-grid{grid-template-columns:1fr;}
  }

  /* ===== CTA BANNER ===== */
  .cta-band{
    padding:0 0 120px;
    background:var(--gray-100);
  }
  .cta-card{
    background:linear-gradient(115deg,#081b3f 0%, #123877 55%, #1c4faa 100%);
    border-radius:var(--radius-lg);
    padding:56px 64px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    flex-wrap:wrap;
    box-shadow:var(--shadow-card);
  }
  .cta-text h2{
    font-size:32px;
    font-weight:800;
    line-height:1.3;
    color:#fff;
    max-width:600px;
  }
  .cta-text h2 .accent{color:var(--orange);}
  .cta-text p{
    margin-top:16px;
    font-size:15.5px;
    line-height:1.6;
    color:#c3cee6;
    max-width:520px;
  }
  .cta-card .btn-white{flex-shrink:0;}

  @media (max-width:768px){
    .cta-card{padding:40px 32px;}
    .cta-text h2{font-size:26px;}
  }

  /* ===== CONTACT ===== */
  .contact-section{
    padding:120px 0;
    background:#fff;
  }
  .contact-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
  }
  .contact-card{
    background:#fff;
    border:1px solid var(--line);
    border-radius:var(--radius-lg);
    padding:34px 30px 38px;
    transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  }
  .contact-card:hover{
    transform:translateY(-6px);
    box-shadow:var(--shadow-card);
    border-color:transparent;
  }
  .contact-icon{
    width:56px;height:56px;
    border-radius:14px;
    background:linear-gradient(150deg,#173d78,#0a1d40);
    display:flex;align-items:center;justify-content:center;
    margin-bottom:26px;
    box-shadow:0 10px 20px -8px rgba(15,40,90,0.45);
  }
  .contact-icon svg{width:24px;height:24px;color:#fff;}
  .contact-card .contact-label{
    display:block;
    font-size:12.5px;
    font-weight:700;
    letter-spacing:.06em;
    color:var(--orange-dark);
    margin-bottom:10px;
  }
  .contact-card p{
    font-size:16px;
    font-weight:600;
    color:var(--ink);
    line-height:1.5;
  }

  @media (max-width:768px){
    .contact-grid{grid-template-columns:1fr;}
  }

  /* ===== FOOTER ===== */
  footer{
    background:var(--navy-950);
    padding:90px 0 0;
    position:relative;
  }
  .footer-grid{
    display:grid;
    grid-template-columns:1.6fr 1fr 1fr;
    gap:40px;
    padding-bottom:60px;
  }
  .footer-brand{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:24px;
  }
  .footer-brand .brand-icon{
    width:52px;height:52px;
    border-radius:14px;
  }
  .footer-brand .brand-icon svg{width:26px;height:26px;}
  .footer-brand-text strong{
    display:block;
    font-family:'Poppins',sans-serif;
    font-size:19px;
    font-weight:700;
    color:#fff;
  }
  .footer-brand-text span{
    display:block;
    font-size:11.5px;
    font-weight:600;
    letter-spacing:.08em;
    color:#8a97b3;
    margin-top:3px;
  }
  .footer-col p.footer-desc{
    font-size:14.5px;
    line-height:1.7;
    color:#9aa5c0;
    max-width:420px;
  }
  .footer-social{
    display:flex;
    gap:12px;
    margin-top:26px;
  }
  .footer-social a{
    width:40px;height:40px;
    border-radius:50%;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.12);
    display:flex;align-items:center;justify-content:center;
    transition:background .2s ease, transform .2s ease;
  }
  .footer-social a:hover{
    background:rgba(247,148,30,0.16);
    transform:translateY(-2px);
  }
  .footer-social a svg{width:16px;height:16px;color:#e6ebf5;}

  .footer-heading{
    font-size:12.5px;
    font-weight:700;
    letter-spacing:.06em;
    color:var(--orange);
    margin-bottom:22px;
  }
  .footer-links{display:flex;flex-direction:column;gap:14px;}
  .footer-links a{
    font-size:14.5px;
    color:#c4cee2;
    transition:color .2s ease;
  }
  .footer-links a:hover{color:#fff;}

  .footer-contact{display:flex;flex-direction:column;gap:16px;}
  .footer-contact-item{
    display:flex;
    align-items:flex-start;
    gap:12px;
    font-size:14.5px;
    color:#c4cee2;
    line-height:1.5;
  }
  .footer-contact-item svg{
    width:17px;height:17px;
    color:#8a97b3;
    flex-shrink:0;
    margin-top:2px;
  }

  .footer-bottom{
    border-top:1px solid rgba(255,255,255,0.08);
    padding:26px 0;
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:12px;
  }
  .footer-bottom p{
    font-size:13.5px;
    color:#7c88a4;
  }
  .footer-bottom .tagline{
    font-weight:600;
    color:#c4cee2;
  }

  .back-to-top{
    position:fixed;
    bottom:32px;
    right:32px;
    width:52px;height:52px;
    border-radius:50%;
    background:linear-gradient(135deg,#1c4faa,#0d2a5c);
    box-shadow:0 12px 28px -8px rgba(20,60,140,0.7);
    display:flex;align-items:center;justify-content:center;
    border:none;
    cursor:pointer;
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:opacity .25s ease, transform .25s ease, visibility .25s ease;
    z-index:60;
  }
  .back-to-top.visible{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
  }
  .back-to-top svg{width:20px;height:20px;color:#fff;}

  @media (max-width:960px){
    .footer-grid{grid-template-columns:1fr 1fr;}
    .footer-grid .footer-col:first-child{grid-column:1 / -1;}
  }
  @media (max-width:640px){
    .footer-grid{grid-template-columns:1fr;}
    .footer-bottom{flex-direction:column;align-items:flex-start;}
  }
  .hero-photo-wrap{
  position:relative;
  width:100%;
  height:100%;
}
.hero-photo-wrap img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.hero-photo-wrap::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    100deg,
    rgba(5,12,28,0.92) 0%,
    rgba(6,15,32,0.82) 30%,
    rgba(7,18,38,0.45) 62%,
    rgba(7,18,38,0.25) 100%
  );
  pointer-events:none;
}
.hero{ position:relative; }
.hero-photo-wrap{
  position:absolute;
  inset:0;
  z-index:0;
}
.hero .container{
  position:relative;
  z-index:2;
}