
:root {
  --navy: #0b1118;
  --navy-2: #121d28;
  --blue: #0a4d8c;
  --blue-2: #1476c9;
  --steel: #556170;
  --light: #f3f6f9;
  --line: #dce3ea;
  --white: #ffffff;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--navy);
  line-height: 1.65;
  background: var(--white);
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 20px; top: 20px; background: white; padding: 10px; z-index: 1000; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(9, 15, 22, .95);
  border-bottom: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
}
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand img { width: 208px; height: 58px; object-fit: cover; object-position: center 54%; }
.site-nav { display: flex; align-items: center; gap: 27px; }
.site-nav a { color: white; text-decoration: none; font-size: .91rem; font-weight: 700; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: #98d0ff; }
.menu-toggle { display: none; color: white; background: transparent; border: 0; font-size: 1.7rem; cursor: pointer; }
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 24px;
  background: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 3px;
  color: white !important;
  text-decoration: none;
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  cursor: pointer;
}
.btn:hover { background: var(--blue-2); border-color: var(--blue-2); }
.btn-small { min-height: 42px; padding: 0 17px; }
.btn-outline { background: transparent; border-color: rgba(255,255,255,.8); }
.btn-outline:hover { background: white; color: var(--navy) !important; border-color: white; }
.hero {
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  background: url("assets/hero.webp") center / cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,10,15,.89), rgba(5,10,15,.58) 58%, rgba(5,10,15,.18));
}
.hero-content { position: relative; color: white; padding: 95px 0; }
.eyebrow {
  margin: 0 0 14px;
  color: #9dd0ff;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .77rem;
  font-weight: 800;
}
.eyebrow.dark { color: var(--blue); }
h1, h2, h3 {
  font-family: "League Spartan", Inter, Arial, sans-serif;
  line-height: 1.05;
  letter-spacing: -.025em;
  margin-top: 0;
}
h1 { font-size: clamp(3.3rem, 7vw, 6.4rem); max-width: 900px; margin-bottom: 24px; }
h2 { font-size: clamp(2.25rem, 4.5vw, 4rem); margin-bottom: 20px; }
h3 { font-size: 1.45rem; margin-bottom: 11px; }
.hero-copy { max-width: 730px; font-size: 1.15rem; color: #e5ebf1; margin-bottom: 32px; }
.button-row { display: flex; gap: 14px; flex-wrap: wrap; }
.trust-strip { background: var(--navy); color: white; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 28px 24px; border-right: 1px solid rgba(255,255,255,.13); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; font-family: "League Spartan"; font-size: 1.12rem; margin-bottom: 4px; }
.trust-item span { color: #bfc9d2; font-size: .86rem; }
.section { padding: 100px 0; }
.section-light { background: var(--light); }
.section-dark { background: var(--navy-2); color: white; }
.section-heading { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: end; margin-bottom: 48px; }
.section-heading p { margin: 0; color: var(--steel); font-size: 1.04rem; }
.section-dark .section-heading p { color: #c5ced7; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  padding: 31px;
  border: 1px solid var(--line);
  background: white;
  min-height: 260px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 18px 46px rgba(20,35,50,.1); }
.card-number { color: var(--blue); font-family: "League Spartan"; font-weight: 800; margin-bottom: 38px; }
.card p { color: var(--steel); margin-bottom: 0; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 76px; align-items: center; }
.photo-panel {
  min-height: 570px;
  background: url("assets/hero.webp") 73% center / cover no-repeat;
}
.copy p { color: var(--steel); font-size: 1.02rem; }
.check-list { padding: 0; margin: 28px 0 0; list-style: none; }
.check-list li { padding: 12px 0 12px 30px; border-bottom: 1px solid rgba(255,255,255,.13); position: relative; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: #8ac8ff; font-weight: 800; }
.tag-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.tag { padding: 18px 20px; background: var(--light); border-left: 4px solid var(--blue); font-weight: 700; }
.cta { background: var(--blue); color: white; padding: 74px 0; }
.cta-grid { display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.cta h2 { margin-bottom: 8px; }
.cta p { margin: 0; color: #d9ecfb; }
.page-hero {
  padding: 110px 0 90px;
  background: linear-gradient(rgba(6,12,18,.82), rgba(6,12,18,.82)), url("assets/hero.webp") center / cover;
  color: white;
}
.page-hero h1 { font-size: clamp(3rem, 6vw, 5.3rem); margin-bottom: 16px; }
.page-hero p { max-width: 750px; color: #dfe7ee; font-size: 1.1rem; }
.content-narrow { max-width: 830px; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 42px; }
.value { padding: 28px; background: var(--light); border-top: 4px solid var(--blue); }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 75px; }
.contact-details { display: grid; gap: 18px; margin-top: 34px; }
.contact-details p { margin: 0; }
.contact-details a { text-decoration: none; color: var(--blue); font-weight: 700; }
.form {
  padding: 34px;
  background: var(--light);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form label { font-size: .85rem; font-weight: 800; }
.form input, .form select, .form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  border: 1px solid #c7d0d9;
  background: white;
  font: inherit;
}
.form .full { grid-column: 1 / -1; }
.form-note { grid-column: 1 / -1; color: #697480; font-size: .8rem; margin: 0; }
.hidden { display: none; }
.site-footer { background: #070b10; color: #bec8d1; padding: 42px 0; }
.footer-grid { display: flex; justify-content: space-between; gap: 45px; }
.footer-grid strong { color: white; letter-spacing: .06em; }
.footer-grid p { margin: 4px 0; font-size: .87rem; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-nav a { text-decoration: none; }
.notice {
  padding: 14px 18px;
  background: #fff6d9;
  border: 1px solid #ead38d;
  color: #5f4a00;
  margin-bottom: 24px;
}
@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    padding: 24px;
    background: var(--navy);
    flex-direction: column;
    align-items: stretch;
  }
  .site-nav.open { display: flex; }
  .site-nav a { text-align: center; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.13); }
  .section-heading, .split, .contact-grid { grid-template-columns: 1fr; gap: 42px; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .tag-grid { grid-template-columns: 1fr 1fr; }
  .cta-grid { display: block; }
  .cta .btn { margin-top: 24px; }
}
@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .nav-wrap { min-height: 74px; }
  .site-nav { top: 74px; }
  .brand img { width: 165px; height: 50px; }
  .hero { min-height: 680px; background-position: 61% center; }
  .hero::before { background: rgba(5,10,15,.73); }
  h1 { font-size: 3.2rem; }
  .hero-copy { font-size: 1rem; }
  .button-row .btn { width: 100%; }
  .trust-grid, .card-grid, .tag-grid, .values-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.13); }
  .section { padding: 76px 0; }
  .photo-panel { min-height: 390px; }
  .form { grid-template-columns: 1fr; padding: 23px; }
  .form label { grid-column: 1 / -1; }
  .footer-grid { display: block; }
  .footer-nav { margin-top: 20px; }
}


/* Version 3 upgrades */
.hero-content { animation: hero-rise .85s ease-out both; }
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 9px 13px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,.27);
  background: rgba(9,15,22,.44);
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: .76rem;
  font-weight: 800;
}
.hero-badge::before {
  content: "";
  width: 8px; height: 8px; border-radius: 50%;
  background: #66baff;
  box-shadow: 0 0 0 5px rgba(102,186,255,.16);
}
.service-icon { width: 54px; height: 54px; margin-bottom: 26px; }
.card { position: relative; overflow: hidden; }
.card::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 4px; width: 0;
  background: var(--blue);
  transition: width .25s ease;
}
.card:hover::after { width: 100%; }
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.why-card {
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.035);
}
.why-card .num {
  color: #91ceff;
  font-family: "League Spartan";
  font-weight: 800;
  font-size: 1.7rem;
  margin-bottom: 18px;
}
.why-card h3 { color: white; }
.why-card p { color: #bec9d3; margin-bottom: 0; }
.project-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 20px; }
.project-feature {
  min-height: 470px;
  position: relative;
  background: linear-gradient(rgba(6,11,17,.2), rgba(6,11,17,.78)), url("assets/hero.webp") center/cover;
}
.project-side { display: grid; gap: 20px; }
.project-tile {
  min-height: 225px;
  position: relative;
  background: linear-gradient(rgba(6,11,17,.22), rgba(6,11,17,.82)), url("assets/hero.webp") center/cover;
}
.project-tile:nth-child(2) { background-position: 73% center; }
.project-caption {
  position: absolute;
  left: 25px; right: 25px; bottom: 22px;
  color: white;
}
.project-caption small {
  display: block;
  color: #9dd0ff;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 800;
}
.project-caption h3 { margin: 6px 0 0; }
.capability-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 35px;
  border: 1px solid var(--line);
  background: var(--light);
}
.form-status {
  grid-column: 1/-1;
  padding: 12px 14px;
  background: #eaf4fc;
  border-left: 4px solid var(--blue);
  font-size: .86rem;
}
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
  .project-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .why-grid { grid-template-columns: 1fr; }
  .capability-box { grid-template-columns: 1fr; }
}


/* Version 4 refinements */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.process-card {
  padding: 28px 24px;
  background: white;
  border: 1px solid var(--line);
}
.process-card span {
  display: block;
  color: var(--blue);
  font-family: "League Spartan";
  font-size: 1.65rem;
  font-weight: 800;
  margin-bottom: 18px;
}
.process-card p { color: var(--steel); margin-bottom: 0; }

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.audience-item {
  padding: 20px;
  background: var(--navy);
  color: white;
  border-left: 4px solid var(--blue-2);
  font-weight: 800;
}

.faq-list details {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary {
  cursor: pointer;
  font-family: "League Spartan";
  font-weight: 700;
  font-size: 1.3rem;
  list-style: none;
  padding-right: 34px;
  position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  color: var(--blue);
}
.faq-list details[open] summary::after { content: "–"; }
.faq-list p { color: var(--steel); }

.mobile-action-bar {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width: 900px) {
  .process-grid { grid-template-columns: 1fr 1fr; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  body { padding-bottom: 64px; }
  .process-grid, .audience-grid { grid-template-columns: 1fr; }
  .mobile-action-bar {
    position: fixed;
    z-index: 100;
    left: 0; right: 0; bottom: 0;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    min-height: 64px;
    box-shadow: 0 -8px 24px rgba(0,0,0,.18);
  }
  .mobile-action-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-size: .78rem;
    font-weight: 800;
    color: white;
    background: var(--navy);
  }
  .mobile-action-bar a:last-child { background: var(--blue); }
}

.contact-intro{padding:16px 18px;margin:24px 0 30px;background:#edf5fb;border-left:4px solid var(--blue);color:#334155}


/* Portfolio Update v2 */
.services-showcase {
  background: #f7f9fb;
}
.service-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}
.service-photo-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dce3ea;
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(15, 30, 45, .09);
}
.service-photo-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
}
.service-photo-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}
.service-photo-content h3 {
  margin-bottom: 12px;
  overflow-wrap: anywhere;
}
.service-photo-content p {
  color: var(--steel);
  margin: 0 0 22px;
}
.service-photo-content a {
  margin-top: auto;
  color: var(--blue);
  text-decoration: none;
  font-weight: 800;
}
.service-photo-content a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .service-photo-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .service-photo-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .service-photo-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
  }
  .service-photo-content {
    padding: 26px;
  }
}
