  :root {
    --navy: #1a2744;
    --navy-dark: #0f1a30;
    --navy-mid: #243358;
    --steel: #4a5e7a;
    --silver: #8a96a8;
    --silver-light: #c5cdd8;
    --white: #f8f9fb;
    --pure-white: #ffffff;
    --accent: #3a5ba0;
    --accent-light: #5879c0;
    --gold: #b8a060;
    --bg-light: #f0f3f8;

    --font-display: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Manrope', sans-serif;
  }

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

  html { scroll-behavior: smooth; }

body {
  background: var(--navy-dark);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  background-image: linear-gradient(180deg, rgba(255,255,255,.015), rgba(255,255,255,0));
  font-size: clamp(0.95rem, 0.35vw + 0.86rem, 1.05rem);
}

  /* ── NAV ── */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.2rem 5%;
  background: rgba(15,26,48,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(197,205,216,0.16);
    transition: all .3s;
  }
  .nav-logo {
    display: flex; align-items: center; gap: .85rem; text-decoration: none;
    background: rgba(255,255,255,.14);
    border-radius: 8px;
    padding: .35rem .6rem;
  }
  .nav-logo-icon {
    width: 124px;
    height: 54px;
    object-fit: contain;
  }
  .nav-logo-text {
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.2vw + .7rem, 1.28rem);
    font-weight: 600;
    letter-spacing: .04em;
    color: var(--white);
    line-height: 1.1;
  }
  .nav-logo-text span { color: var(--silver-light); font-weight: 300; font-size: .78rem; display: block; letter-spacing: .12em; }
  nav ul { list-style: none; display: flex; gap: 2.4rem; }
  nav ul a {
    color: var(--silver-light); text-decoration: none; font-size: .82rem;
    letter-spacing: .09em; text-transform: uppercase; font-weight: 400;
    transition: color .25s, transform .25s;
    position: relative;
    display: inline-block;
  }
  nav ul a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: var(--accent-light);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
  }
  nav ul a:hover {
    color: var(--white);
    transform: translateY(-1px);
  }
  nav ul a:hover::after {
    transform: scaleX(1);
  }
  .nav-cta {
    background: var(--accent); color: var(--white) !important;
    padding: .5rem 1.3rem; border-radius: 2px;
    transition: background .25s !important;
  }
  .nav-cta:hover { background: var(--accent-light) !important; }

  /* ── HERO ── */
  #hero {
    min-height: 100vh;
    display: grid; grid-template-columns: 1fr 1fr; align-items: center;
    padding: 0 5%; padding-top: 80px;
    position: relative; overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #1e3060 100%);
  }
  .hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 75% 40%, rgba(58,91,160,.22) 0%, transparent 65%);
  }
  .hero-grid-lines {
    position: absolute; inset: 0; z-index: 0;
    background-image:
      linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 60px 60px;
  }
  .hero-content { position: relative; z-index: 1; padding-right: 3rem; }
  .hero-badge {
    display: inline-block;
    background: rgba(58,91,160,.18);
    border: 1px solid rgba(58,91,160,.45);
    color: var(--accent-light);
    font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
    padding: .38rem 1rem; border-radius: 2px;
    margin-bottom: 1.8rem;
    animation: fadeUp .8s ease both;
  }
  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 5vw, 4.1rem);
    font-weight: 600;
    line-height: 1.08;
    color: var(--pure-white);
    margin-bottom: 1.5rem;
    animation: fadeUp .8s .1s ease both;
    position: relative;
    display: inline-block;
  }
  .hero-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-light) 35%, var(--accent) 65%, transparent 100%);
    background-size: 220% 100%;
    animation: heroTitleGlow 3.2s ease-in-out infinite;
    opacity: .9;
  }
  .hero-title em { color: var(--accent-light); font-style: normal; }
  .hero-subtitle {
    font-size: 1rem; color: var(--silver-light); max-width: 480px;
    margin-bottom: 2.5rem; line-height: 1.8;
    animation: fadeUp .8s .2s ease both;
  }
  .hero-btns { display: flex; gap: 1rem; animation: fadeUp .8s .3s ease both; }
  .btn-primary {
    background: var(--accent); color: #fff;
    padding: .85rem 2rem; border-radius: 2px;
    text-decoration: none; font-size: .85rem;
    letter-spacing: .06em; text-transform: uppercase; font-weight: 500;
    transition: background .25s, transform .2s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--accent-light); transform: translateY(-2px); }
  .btn-outline {
    border: 1px solid rgba(197,205,216,.35); color: var(--silver-light);
    padding: .85rem 2rem; border-radius: 2px;
    text-decoration: none; font-size: .85rem;
    letter-spacing: .06em; text-transform: uppercase; font-weight: 400;
    transition: border-color .25s, color .25s, transform .2s;
    display: inline-block;
  }
  .btn-outline:hover { border-color: var(--silver-light); color: #fff; transform: translateY(-2px); }

  .hero-visual {
    position: relative; z-index: 1;
    display: flex; align-items: center; justify-content: center;
    animation: fadeIn 1.2s .4s ease both;
  }
  .hero-card-stack { position: relative; width: 380px; height: 420px; }
  .hero-card {
    position: absolute; border-radius: 6px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(8px);
    padding: 2rem;
  }
  .hero-card:nth-child(1) { width: 300px; height: 180px; top: 20px; right: 0; transform: rotate(3deg); }
  .hero-card:nth-child(2) { width: 320px; height: 200px; top: 100px; left: 0; z-index: 2; }
  .hero-card:nth-child(3) { width: 280px; height: 160px; bottom: 20px; right: 10px; transform: rotate(-2deg); }
  .hc-label { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-light); margin-bottom: .5rem; }
  .hc-title { font-family: var(--font-display); font-size: clamp(1.15rem, 1.4vw, 1.35rem); color: #fff; font-weight: 700; }
  .hc-desc { font-size: .78rem; color: var(--silver); margin-top: .5rem; }
  .hc-line { width: 40px; height: 2px; background: var(--accent); margin-top: .8rem; }

  /* ── STATS BAR ── */
.stats-bar {
  background: rgba(255,255,255,.025);
  border-top: 1px solid rgba(197,205,216,.18);
  border-bottom: 1px solid rgba(197,205,216,.18);
    padding: 2.2rem 5%;
    display: flex; gap: 0;
    overflow: hidden;
  }
  .stat-item {
    flex: 1; text-align: center;
    padding: 0 1.5rem;
    border-right: 1px solid rgba(255,255,255,.06);
  }
  .stat-item:last-child { border-right: none; }
  .stat-num {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 2.6rem); font-weight: 700;
    color: var(--accent-light);
  }
  .stat-label { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--silver); margin-top: .2rem; }

  /* ── SECTIONS ── */
  section { padding: 6rem 5%; }
  .section-tag {
    font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
    color: var(--accent-light); margin-bottom: .8rem;
  }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(1.65rem, 3.2vw, 2.8rem);
    font-weight: 600; color: var(--pure-white); line-height: 1.15;
    margin-bottom: 1.2rem;
  }
  .section-desc { color: var(--silver-light); max-width: 560px; font-size: .95rem; }
  .divider { width: 48px; height: 2px; background: var(--accent); margin: 1.2rem 0; }

  /* ── ABOUT ── */
  #about {
    background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 100%);
  }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
  .about-img-area { position: relative; }
  .about-img-box {
    background: linear-gradient(135deg, var(--navy-mid), var(--accent) 60%, #2a4a90);
    border-radius: 4px; height: 420px;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
  }
  .about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.85) contrast(1.05);
  }
  .about-img-box::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
  }
  .about-badge-float {
    position: absolute; bottom: -20px; right: -20px;
    background: var(--navy-dark);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 4px; padding: 1.2rem 1.5rem;
    min-width: 170px;
  }
  .about-badge-float .num { font-family: var(--font-display); font-size: 2rem; color: var(--accent-light); }
  .about-badge-float .txt { font-size: .75rem; color: var(--silver); letter-spacing: .06em; }
  .about-text p { color: var(--silver-light); margin-bottom: 1.2rem; font-size: .95rem; }
  .about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
  .pillar {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 4px; padding: 1.2rem 1.4rem;
  }
  .pillar h4 { font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-light); margin-bottom: .3rem; }
  .pillar p { font-size: .82rem; color: var(--silver); line-height: 1.6; }

  /* ── SERVICES ── */
  #services { background: var(--navy-dark); }
  .services-header { max-width: 600px; margin-bottom: 3.5rem; }
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; background: rgba(255,255,255,.05); }
.service-card {
  background: #121f3a;
  padding: 2.5rem 2rem;
    transition: background .3s;
    cursor: default;
    position: relative; overflow: hidden;
  }
  .service-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: transparent;
    transition: background .3s;
}
.service-card:hover { background: rgba(58,91,160,.12); }
  .service-card:hover::before { background: var(--accent); }
  .service-num {
    font-family: var(--font-display); font-size: 2.8rem; font-weight: 600;
    color: rgba(58,91,160,.2); line-height: 1; margin-bottom: 1.2rem;
  }
  .service-icon { font-size: 1.8rem; margin-bottom: 1rem; }
  .service-card h3 {
    font-family: var(--font-display); font-size: 1.35rem;
    color: var(--pure-white); margin-bottom: .8rem;
  }
  .service-card p { font-size: .85rem; color: var(--silver); line-height: 1.75; }

  /* ── MISSION / VISION / PHILOSOPHY ── */
  #mvp {
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
  }
  .mvp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.mvp-card {
  border-top: 2px solid var(--accent);
  padding: 2.5rem 2rem;
  background: rgba(255,255,255,.035);
    border-radius: 0 0 4px 4px;
    transition: transform .3s;
  }
  .mvp-card:hover { transform: translateY(-4px); }
  .mvp-card .mvp-label {
    font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
    color: var(--accent-light); margin-bottom: 1rem;
  }
  .mvp-card h3 { font-family: var(--font-display); font-size: clamp(1.35rem, 2vw, 1.6rem); color: #fff; margin-bottom: 1rem; }
  .mvp-card p { font-size: .88rem; color: var(--silver-light); line-height: 1.8; }

  /* ── WHY US ── */
  #why { background: var(--navy-dark); }
  .why-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: center; }
  .why-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.5rem; }
  .why-item { display: flex; gap: 1.2rem; align-items: flex-start; }
  .why-dot {
    width: 10px; height: 10px; border-radius: 50%; background: var(--accent);
    margin-top: .45rem; flex-shrink: 0;
  }
  .why-item h4 { font-size: .9rem; font-weight: 500; color: #fff; margin-bottom: .3rem; }
  .why-item p { font-size: .84rem; color: var(--silver); line-height: 1.7; }
  .why-visual {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  }
.why-box {
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(197,205,216,.16);
    border-radius: 4px; padding: 2rem 1.5rem;
    text-align: center;
    transition: border-color .3s;
  }
  .why-box:hover { border-color: var(--accent); }
  .why-box .big { font-family: var(--font-display); font-size: 2.6rem; color: var(--accent-light); }
  .why-box .lbl { font-size: .75rem; color: var(--silver); letter-spacing: .08em; text-transform: uppercase; margin-top: .3rem; }

  /* ── CONTACT ── */
  #contact {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  }
  .contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; }
  .contact-info { display: flex; flex-direction: column; gap: 2rem; margin-top: 2.5rem; }
  .ci-item { display: flex; gap: 1.2rem; align-items: flex-start; }
  .ci-icon {
    width: 44px; height: 44px; background: rgba(58,91,160,.18);
    border: 1px solid rgba(58,91,160,.35);
    border-radius: 4px; display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; flex-shrink: 0;
  }
  .ci-label { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--silver); margin-bottom: .3rem; }
  .ci-val { font-size: .9rem; color: var(--silver-light); }
  .ci-val a { color: var(--accent-light); text-decoration: none; }
  .ci-val a:hover { text-decoration: underline; }

  /* FORM */
.contact-form { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07); border-radius: 6px; padding: 2.5rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
  .form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
  .form-group label { font-size: .75rem; letter-spacing: .09em; text-transform: uppercase; color: var(--silver); }
.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(15,26,48,.75);
    border: 1px solid rgba(197,205,216,.2);
    border-radius: 3px;
    color: var(--white);
    padding: .75rem 1rem;
    font-family: var(--font-body); font-size: .88rem;
    outline: none; transition: border-color .25s;
    width: 100%;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus { border-color: var(--accent); }
  .form-group select option { background: var(--navy-dark); }
  .form-group textarea { resize: vertical; min-height: 120px; }
  .form-submit {
    width: 100%; background: var(--accent);
    color: #fff; border: none; cursor: pointer;
    padding: .9rem; font-family: var(--font-body);
    font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 500;
    border-radius: 3px; transition: background .25s, transform .2s;
  }
  .form-submit:hover { background: var(--accent-light); transform: translateY(-1px); }
  .form-msg { display: none; margin-top: 1rem; color: #7ecb8f; font-size: .85rem; text-align: center; }

  /* ── FOOTER ── */
footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(197,205,216,.18);
  padding: 3rem 5%; 
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
}
  .footer-logo {
    font-family: var(--font-display); font-size: 1.1rem; color: var(--silver-light);
    letter-spacing: .04em;
  }
  .footer-logo span { display: block; font-size: .7rem; letter-spacing: .12em; color: var(--silver); font-family: var(--font-body); }
  .footer-links { display: flex; gap: 2rem; }
  .footer-links a { color: var(--silver); font-size: .78rem; text-decoration: none; letter-spacing: .06em; text-transform: uppercase; transition: color .2s; }
  .footer-links a:hover { color: var(--white); }
  .footer-copy { color: var(--silver); font-size: .75rem; }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  @keyframes heroTitleGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  /* ── HAMBURGER MOBILE ── */
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--silver-light); transition: .3s; }

  /* ── SCROLL REVEAL ── */
  .reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
  }
  .reveal.visible { opacity: 1; transform: none; }

  /* ── MAP ── */
  .map-area { margin-top: 2rem; border-radius: 6px; overflow: hidden; border: 1px solid rgba(255,255,255,.08); }
  .map-area iframe { display: block; }

  @media (max-width: 900px) {
    nav ul, nav .nav-cta { display: none; }
    .hamburger { display: flex; }
    #hero { grid-template-columns: 1fr; padding-top: 100px; }
    .hero-visual { display: none; }
    .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .mvp-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .about-img-area { display: none; }
  }
  @media (max-width: 580px) {
    .services-grid { grid-template-columns: 1fr; }
    .why-visual { grid-template-columns: 1fr 1fr; }
    .stats-bar { flex-wrap: wrap; }
    .stat-item { flex: 0 0 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); }
  }
