:root {
  --navy: #0a1628;
  --navy-mid: #0f3070;
  --navy-soft: #1a3a6b;
  --teal: #2dd4bf;
  --teal-dark: #0d9488;
  --gold: #c9a227;
  --text: #1e293b;
  --muted: #64748b;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 60px rgba(10, 22, 40, 0.18);
  --radius: 16px;
  --max: 1200px;
  --header: 78px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 12px;
}

.section {
  padding: 108px 0;
}

.section-dark {
  background: var(--navy);
  color: #fff;
}

.section-soft {
  background: #f4f7fb;
}

.section-title {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-lead {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 52px;
}

.section-dark .section-lead {
  color: rgba(255, 255, 255, 0.72);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  height: var(--header);
  z-index: 1000;
  transition: 0.25s ease;
}

.site-header.scrolled {
  background: rgba(10, 22, 40, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  min-width: 0;
}

.logo-img {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.logo-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.logo-divider {
  width: 2px;
  height: 34px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  flex-shrink: 0;
}

.logo-wordmark {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1;
}

.logo-name {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: #ffffff;
  -webkit-text-stroke: 0.3px rgba(255, 255, 255, 0.35);
}

.logo-sub {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  color: #ffffff;
  opacity: 0.92;
}

.logo-tag {
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 3px;
  font-weight: 400;
}

.brand-copy span {
  display: block;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.62);
  max-width: 280px;
  line-height: 1.35;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-logo .logo-name { font-size: 0.82rem; letter-spacing: 0.06em; line-height: 1.35; }
.footer-logo .logo-sub { font-size: 0.78rem; }
.footer-logo .logo-tag { color: rgba(255, 255, 255, 0.5); }

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav > li { position: relative; }

.nav > li > a,
.nav > li > button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: 8px;
}

.nav > li > a:hover,
.nav > li > button:hover,
.nav > li > a.active {
  color: var(--teal);
  background: rgba(255, 255, 255, 0.05);
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 280px;
  padding: 10px;
  border-radius: 14px;
  background: rgba(10, 22, 40, 0.98);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s ease;
}

.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 11px 14px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.86rem;
}

.dropdown a:hover {
  background: rgba(45, 212, 191, 0.12);
  color: var(--teal);
}

.nav-cta > a {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: var(--navy) !important;
  font-weight: 700;
  border-radius: 999px;
  padding: 10px 18px !important;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  color: #fff;
  font-size: 1.2rem;
}

/* Hero */
.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: #0a1628 center/cover no-repeat;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 22, 40, 0.55) 0%, rgba(10, 22, 40, 0.25) 38%, rgba(10, 22, 40, 0.88) 100%),
    linear-gradient(90deg, rgba(10, 22, 40, 0.75) 0%, rgba(10, 22, 40, 0.2) 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--header) + 80px) 0 88px;
}

.hero-brand {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 28px;
}

.hero-logo {
  width: 110px;
  height: 110px;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.45);
  flex-shrink: 0;
}

.hero-fullname {
  font-size: clamp(1.25rem, 2.8vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.25;
  margin-bottom: 6px;
}

.hero-location {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.hero .tagline {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  max-width: 720px;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  transition: 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: var(--navy);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(13, 148, 136, 0.35); }

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}

.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
  max-width: 900px;
}

.hero-stat {
  padding: 18px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.hero-stat strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.hero-stat span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.68);
}

/* Split panels */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.split.reverse .split-media { order: 2; }
.split.reverse .split-copy { order: 1; }

.media-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
  aspect-ratio: 4 / 3;
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 22, 40, 0.35));
}

.split-copy h3 {
  font-size: 1.7rem;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.split-copy p {
  color: var(--muted);
  margin-bottom: 14px;
}

.feature-list li {
  position: relative;
  padding: 10px 0 10px 18px;
  border-bottom: 1px solid #e8edf3;
  color: #334155;
  font-size: 0.95rem;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal-dark);
}

/* Business grid */
.biz-intro {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 56px;
}

.biz-pill {
  padding: 16px 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e2e8f0;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy-mid);
  transition: 0.2s ease;
}

.biz-pill:hover {
  border-color: var(--teal-dark);
  color: var(--teal-dark);
  transform: translateY(-2px);
}

.biz-block {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 72px;
}

.biz-block:nth-child(even) .biz-media { order: 2; }
.biz-block:nth-child(even) .biz-copy { order: 1; }

.biz-copy h3 {
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.biz-copy p { color: var(--muted); margin-bottom: 12px; }

.biz-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e8f8f5;
  color: var(--teal-dark);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Partners */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.partner-card {
  min-height: 140px;
  padding: 28px 22px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 0.2s ease;
}

.partner-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.partner-card strong {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.partner-card span {
  font-size: 0.88rem;
  color: var(--muted);
}

/* Projects */
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.project-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.project-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.project-body { padding: 22px; }

.project-body .tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-dark);
}

.project-body h3 {
  margin: 8px 0;
  font-size: 1.08rem;
  color: var(--navy);
}

.project-body p {
  font-size: 0.92rem;
  color: var(--muted);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.contact-panel,
.contact-card {
  border-radius: var(--radius);
  padding: 32px;
}

.contact-panel {
  background: linear-gradient(160deg, var(--navy), var(--navy-mid));
  color: #fff;
}

.contact-panel p,
.contact-panel a {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 10px;
  display: block;
}

.contact-panel a:hover { color: var(--teal); }

.contact-card {
  background: #fff;
  border: 1px solid #e2e8f0;
}

.contact-card h3 { color: var(--navy); margin-bottom: 14px; }
.contact-card p { color: var(--muted); margin-bottom: 8px; }

/* Footer */
.site-footer {
  background: #060f1d;
  color: rgba(255, 255, 255, 0.7);
  padding: 52px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}

.footer-grid h4 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 0.92rem;
}

.footer-grid a {
  display: block;
  margin-bottom: 8px;
  font-size: 0.88rem;
}

.footer-grid a:hover { color: var(--teal); }

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.84rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-stats,
  .biz-intro,
  .partner-grid,
  .project-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .biz-block,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .biz-block:nth-child(even) .biz-media,
  .biz-block:nth-child(even) .biz-copy,
  .split.reverse .split-media,
  .split.reverse .split-copy {
    order: unset;
  }
}

@media (max-width: 768px) {
  .menu-toggle { display: inline-grid; place-items: center; }

  .nav {
    position: fixed;
    top: var(--header);
    right: 0;
    width: min(340px, 100%);
    height: calc(100vh - var(--header));
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    gap: 4px;
    background: rgba(10, 22, 40, 0.98);
    transform: translateX(100%);
    transition: 0.25s ease;
    overflow-y: auto;
  }

  .nav.open { transform: translateX(0); }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    background: rgba(255, 255, 255, 0.04);
    margin-top: 4px;
    display: none;
  }

  .has-dropdown.open .dropdown { display: block; }

  .hero-stats,
  .biz-intro,
  .partner-grid,
  .project-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .brand-copy,
  .logo-tag { display: none; }
  .logo-img { width: 42px; height: 42px; }
  .hero-brand { flex-direction: column; align-items: flex-start; gap: 14px; }
  .hero-logo { width: 80px; height: 80px; }
}
