:root{
  --navy:#ffffff;
  --navy-dark:#030b12;
  --blue-accent:#f2bd55;
  --light-blue-bg:#081923;
  --text-dark:#ffffff;
  --text-gray:#9eacb9;
  --green:#28a85a;
  --orange:#e8743b;
  --border-light:rgba(255,255,255,.14);
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Segoe UI',Arial,Helvetica,sans-serif;
  color:#fff;
  line-height:1.6;
  background:#06111a;
}

a{
  text-decoration:none;
  color:inherit;
}

ul{
  list-style:none;
}

img{
  max-width:100%;
  display:block;
}

.container{
  max-width:1200px;
  margin:auto;
  padding:0 24px;
}


/* ================= HEADER ================= */

header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:25px;
  padding:12px 40px;
  border-bottom:1px solid var(--border-light);
  position:sticky;
  top:0;
  background:rgba(4,14,22,.97);
  backdrop-filter:blur(12px);
  z-index:100;
}

.header-menu{
  display:contents;
}

.mobile-menu-toggle{
  display:none;
}

.logo{
  display:flex;
  align-items:center;
  gap:10px;
}

.logo img{
  height:42px;
  width:auto;
}

.logo-icon{
  width:38px;
  height:38px;
  border-radius:6px;
  background:linear-gradient(135deg,#d79d35,#f7ce75);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#07121b;
  font-weight:bold;
  font-size:18px;
}

.logo-text h1{
  font-size:16px;
  color:#fff;
  letter-spacing:.5px;
  font-weight:800;
}

.logo-text p{
  font-size:10.5px;
  color:#aebdca;
  letter-spacing:1px;
  font-weight:600;
}

.logo-text span.tag{
  font-size:8.5px;
  color:var(--blue-accent);
  letter-spacing:2px;
}

nav ul{
  display:flex;
  gap:32px;
  font-size:14px;
  font-weight:600;
  color:#dce5ed;
}

nav a{
  transition:.25s;
}

nav a:hover,
nav .active{
  color:var(--blue-accent);
}

nav .active{
  position:relative;
}

nav .active::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-18px;
  height:2px;
  background:var(--blue-accent);
}

.btn-primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  background:linear-gradient(135deg,#e8ae45,#f7ca6b);
  color:#08131c;
  padding:11px 22px;
  border-radius:8px;
  font-size:14px;
  font-weight:700;
  white-space:nowrap;
  transition:.25s;
}

.btn-primary:hover{
  background:#ffe09a;
  transform:translateY(-2px);
}

.btn-outline{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:transparent;
  color:#fff;
  border:1px solid var(--blue-accent);
  padding:10px 20px;
  border-radius:8px;
  font-size:14px;
  font-weight:600;
}

.btn-outline:hover{
  background:rgba(242,189,85,.1);
  color:var(--blue-accent);
}


/* ================= HERO ================= */

.hero{
  position:relative;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(30,120,189,.18),
      transparent 38%
    ),
    linear-gradient(
      180deg,
      #06111a 0%,
      #071722 55%,
      #081b28 100%
    );
  padding:50px 40px 40px;
  overflow:hidden;
  border-bottom:1px solid var(--border-light);
}

.hero-eyebrow{
  text-align:center;
  font-size:12px;
  letter-spacing:3px;
  color:#aebdca;
  font-weight:600;
  margin-bottom:18px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr 1.3fr 1fr;
  gap:20px;
  align-items:center;
}

.hero-img-block{
  position:relative;
  border-radius:10px;
  overflow:hidden;
  height:280px;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 15px 40px rgba(0,0,0,.35);
}

.hero-img-block::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      180deg,
      transparent 50%,
      rgba(0,0,0,.65)
    );
}

.hero-img-block img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-tag-left,
.hero-tag-right{
  position:absolute;
  bottom:14px;
  z-index:2;
  color:#fff;
  font-weight:700;
  font-size:14px;
  text-shadow:0 2px 8px #000;
  line-height:1.3;
}

.hero-tag-left{
  left:14px;
}

.hero-tag-right{
  right:14px;
  text-align:right;
}

.hero-center{
  text-align:center;
  padding:0 10px;
}

.hero-center h2{
  font-size:34px;
  color:#fff;
  font-weight:800;
  line-height:1.18;
  margin-bottom:16px;
}

.hero-center p{
  color:var(--text-gray);
  font-size:14px;
  margin-bottom:10px;
  max-width:520px;
  margin-left:auto;
  margin-right:auto;
}

.hero-center strong{
  color:#fff;
}

.hero-buttons{
  display:flex;
  gap:14px;
  justify-content:center;
  margin-top:22px;
}

.script-tag{
  position:absolute;
  top:18px;
  right:40px;
  font-family:'Brush Script MT',cursive;
  font-style:italic;
  color:var(--blue-accent);
  font-size:20px;
  text-align:right;
  line-height:1.2;
}


/* ================= GENERAL SECTIONS ================= */

.section{
  padding:70px 40px;
  background:#06111a;
}

.eyebrow{
  font-size:12.5px;
  color:var(--blue-accent);
  font-weight:700;
  letter-spacing:2px;
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:10px;
}

.eyebrow::after{
  content:"";
  flex:1;
  height:1px;
  background:var(--border-light);
  max-width:200px;
}

.section-title{
  font-size:30px;
  color:#fff;
  font-weight:800;
  margin-bottom:18px;
}

.section-header-center{
  text-align:center;
  max-width:700px;
  margin:0 auto 40px;
}

.section-header-center .eyebrow{
  justify-content:center;
}

.section-header-center .eyebrow::after{
  display:none;
}

.section-header-center p{
  color:var(--text-gray);
  font-size:14.5px;
  margin-top:10px;
}


/* ================= ABOUT ================= */

.about-grid{
  display:grid;
  grid-template-columns:1.1fr 1fr .8fr;
  gap:36px;
  margin-top:20px;
}

.about-text p{
  color:var(--text-gray);
  font-size:15px;
  margin-bottom:14px;
}

.about-text strong{
  color:#fff;
}

.btn-learn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:transparent;
  color:var(--blue-accent);
  border:1px solid var(--blue-accent);
  padding:11px 20px;
  border-radius:7px;
  font-size:14px;
  font-weight:600;
  margin-top:6px;
}

.btn-learn:hover{
  background:rgba(242,189,85,.1);
}

.vision-block{
  display:flex;
  gap:14px;
  margin-bottom:30px;
  padding-bottom:20px;
  border-bottom:1px solid var(--border-light);
}

.vision-icon{
  width:44px;
  height:44px;
  border-radius:50%;
  background:rgba(242,189,85,.1);
  border:1px solid rgba(242,189,85,.35);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  font-size:20px;
}

.vision-block h4{
  color:#fff;
  font-size:16px;
  margin-bottom:6px;
}

.vision-block p{
  color:var(--text-gray);
  font-size:14px;
}

.values-card{
  background:
    linear-gradient(
      145deg,
      #0d2230,
      #091923
    );
  border:1px solid var(--border-light);
  border-radius:10px;
  padding:26px;
  box-shadow:0 12px 30px rgba(0,0,0,.2);
}

.values-card h4{
  color:#fff;
  font-size:17px;
  margin-bottom:16px;
}

.values-card ul li{
  font-size:13.5px;
  color:var(--text-gray);
  margin-bottom:12px;
}

.values-card ul li strong{
  color:var(--blue-accent);
}


/* ================= BUSINESSES ================= */

.businesses{
  background:
    linear-gradient(
      180deg,
      #081a27 0%,
      #06131d 100%
    );
  border-top:1px solid var(--border-light);
  border-bottom:1px solid var(--border-light);
}

.biz-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.biz-card{
  background:
    linear-gradient(
      145deg,
      #0d2230,
      #091923
    );
  border:1px solid rgba(255,255,255,.14);
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 8px 25px rgba(0,0,0,.3);
  transition:.3s;
}

.biz-card:hover{
  transform:translateY(-5px);
  border-color:rgba(242,189,85,.45);
  box-shadow:0 15px 35px rgba(0,0,0,.4);
}

.biz-card img{
  width:100%;
  height:170px;
  object-fit:cover;
}

.biz-card-body{
  padding:22px;
}

.biz-icon-title{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:14px;
}

.biz-icon{
  width:42px;
  height:42px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:19px;
  color:#07131b;
  flex-shrink:0;
  background:linear-gradient(
    135deg,
    #e8ae45,
    #f7ca6b
  );
}

.biz-card-body h3{
  font-size:17px;
  color:#fff;
}

.biz-card-body .sub{
  font-size:11.5px;
  color:var(--blue-accent);
  font-weight:700;
  letter-spacing:.5px;
}

.biz-card-body > p{
  color:var(--text-gray);
  font-size:13.5px;
  margin-bottom:14px;
}

.biz-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px 14px;
  margin-bottom:16px;
}

.biz-list li{
  font-size:13px;
  color:#d5dde5;
  display:flex;
  align-items:flex-start;
  gap:6px;
}

.know-more{
  font-size:13.5px;
  font-weight:700;
  color:var(--blue-accent);
}

.know-more:hover{
  color:#ffe09a;
}


/* ================= COMPANIES ================= */

.companies-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.company-card{
  border-radius:12px;
  overflow:hidden;
  display:block;
  border:1px solid var(--border-light);
  box-shadow:0 8px 25px rgba(0,0,0,.3);
  transition:.3s;
  background:#0a1822;
}

.company-card:hover{
  transform:translateY(-5px);
  border-color:rgba(242,189,85,.45);
  box-shadow:0 15px 35px rgba(0,0,0,.45);
}

.company-card img{
  width:100%;
  height:auto;
  display:block;
}


/* ================= WHY US ================= */

.why-grid{
  display:grid;
  grid-template-columns:1.3fr .9fr;
  gap:50px;
}

.why-features{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:18px;
  margin-top:30px;
}

.why-feature-icon{
  width:46px;
  height:46px;
  border-radius:50%;
  background:rgba(242,189,85,.1);
  border:1px solid rgba(242,189,85,.35);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:19px;
  margin-bottom:12px;
  color:var(--blue-accent);
}

.why-features h5{
  font-size:13.5px;
  color:#fff;
  margin-bottom:6px;
}

.why-features p{
  font-size:12px;
  color:var(--text-gray);
}

.tagline-box{
  border-left:3px solid var(--blue-accent);
  padding-left:20px;
}

.tagline-box .eyebrow2{
  font-size:12px;
  color:var(--blue-accent);
  font-weight:700;
  letter-spacing:1.5px;
  margin-bottom:8px;
}

.tagline-box h3{
  font-size:22px;
  color:var(--blue-accent);
  font-weight:800;
  letter-spacing:1px;
  margin-bottom:14px;
}

.tagline-box p{
  font-size:13.5px;
  color:var(--text-gray);
  margin-bottom:6px;
}

.tagline-box .group-name{
  color:#fff;
  font-weight:700;
  margin-top:14px;
  font-size:14px;
}

.tagline-box .group-sub{
  color:var(--blue-accent);
  font-size:13px;
}


/* ================= FOOTER ================= */

footer{
  background:
    linear-gradient(
      180deg,
      #071722 0%,
      #030b12 100%
    );
  color:#cdd8e6;
  padding:60px 40px 0;
  border-top:1px solid var(--border-light);
}

.footer-grid{
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr 1.2fr .8fr;
  gap:30px;
  padding-bottom:40px;
}

.footer-logo{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:14px;
}

.footer-logo img{
  height:40px;
  width:auto;
}

.footer-logo-text h2{
  font-size:16px;
  color:#fff;
  font-weight:800;
  letter-spacing:.5px;
}

.footer-logo-text p{
  font-size:10px;
  color:#8fa3ba;
  letter-spacing:1px;
}

footer h4{
  color:#fff;
  font-size:14.5px;
  margin-bottom:16px;
  font-weight:700;
}

footer ul li{
  margin-bottom:10px;
  font-size:13.5px;
  color:#a9b8c9;
}

footer ul li a:hover{
  color:var(--blue-accent);
}

.contact-item{
  display:flex;
  gap:10px;
  margin-bottom:12px;
  font-size:13.5px;
  color:#a9b8c9;
  align-items:flex-start;
}

.social-icons{
  display:flex;
  gap:10px;
  margin-top:6px;
}

.social-icons a{
  width:34px;
  height:34px;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  color:#fff;
}

.social-icons a:hover{
  background:var(--blue-accent);
  color:#07131b;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.1);
  padding:18px 0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:12.5px;
  color:#8fa3ba;
}

.back-to-top{
  width:34px;
  height:34px;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
}


/* ================= RESPONSIVE ================= */

@media(max-width:1100px){

  .why-features{
    grid-template-columns:repeat(3,1fr);
  }

  .footer-grid{
    grid-template-columns:1.2fr 1fr 1fr;
  }
}


@media(max-width:991px){

  header{
    flex-wrap:nowrap;
    gap:16px;
    padding:14px 20px;
  }

  .mobile-menu-toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:42px;
    height:42px;
    margin-left:auto;
    padding:0;
    border:1px solid rgba(242,189,85,.65);
    border-radius:7px;
    background:rgba(242,189,85,.08);
    color:var(--blue-accent);
    font-size:25px;
    line-height:1;
    cursor:pointer;
    transition:background .25s, color .25s, border-color .25s;
  }

  .mobile-menu-toggle:hover,
  .mobile-menu-toggle:focus-visible{
    background:var(--blue-accent);
    border-color:var(--blue-accent);
    color:#08131c;
    outline:none;
  }

  .header-menu{
    position:absolute;
    top:100%;
    right:0;
    left:0;
    display:flex;
    flex-direction:column;
    gap:0;
    max-height:0;
    overflow:hidden;
    visibility:hidden;
    border-bottom:0 solid rgba(242,189,85,.35);
    background:rgba(4,14,22,.98);
    opacity:0;
    pointer-events:none;
    transition:max-height .3s ease, opacity .2s ease, visibility 0s linear .3s, border-width .3s ease;
  }

  header.mobile-menu-open .header-menu{
    max-height:420px;
    visibility:visible;
    border-bottom-width:1px;
    opacity:1;
    pointer-events:auto;
    transition:max-height .3s ease, opacity .2s ease, border-width .3s ease;
  }

  .header-menu nav{
    width:100%;
  }

  .header-menu nav ul{
    display:flex;
    flex-direction:column;
    gap:0;
    padding:8px 20px;
    font-size:14px;
  }

  .header-menu nav a{
    display:block;
    padding:12px 0;
  }

  .header-menu nav .active::after{
    display:none;
  }

  .header-menu .btn-primary{
    align-self:stretch;
    margin:4px 20px 20px;
    padding:11px 22px;
  }
}


@media(max-width:960px){

  .hero-grid{
    grid-template-columns:1fr;
  }

  .hero-img-block{
    height:220px;
  }

  .hero-center{
    order:-1;
  }

  .about-grid,
  .why-grid{
    grid-template-columns:1fr;
  }

  .biz-grid,
  .companies-grid{
    grid-template-columns:1fr;
  }

  .why-features{
    grid-template-columns:repeat(2,1fr);
  }

  .footer-grid{
    grid-template-columns:1fr 1fr;
  }

  .section{
    padding:50px 20px;
  }

  .hero{
    padding:40px 20px;
  }

  .script-tag{
    display:none;
  }
}


@media(max-width:600px){

  header{
    padding:10px 15px;
  }

  header .logo img{
    height:36px;
  }

  .mobile-menu-toggle{
    width:38px;
    height:38px;
    font-size:23px;
  }

  .header-menu nav ul{
    padding-right:15px;
    padding-left:15px;
  }

  .header-menu .btn-primary{
    margin-right:15px;
    margin-left:15px;
  }

  .hero-center h2{
    font-size:28px;
  }

  .hero-center p{
    font-size:13px;
  }

  .hero-buttons{
    flex-direction:column;
    align-items:center;
  }

  .hero-buttons a{
    width:100%;
    max-width:250px;
  }

  .section-title{
    font-size:25px;
  }

  .biz-list{
    grid-template-columns:1fr;
  }

  .why-features{
    grid-template-columns:1fr;
  }

  .footer-grid{
    grid-template-columns:1fr;
  }

  .footer-bottom{
    flex-direction:column;
    text-align:center;
    gap:15px;
  }
}
