:root {
  --container: 1280px;
  --bg: #2d3238;
  --bg-deep: #262b31;
  --bg-soft: #353b43;
  --panel: rgba(255,255,255,0.075);
  --panel-2: rgba(255,255,255,0.11);
  --line: rgba(255,255,255,0.1);
  --text: #f5f8fb;
  --muted: #c9d3de;
  --orange: #f28d2b;
  --orange-strong: #ffa131;
  --blue: #4b86d7;
  --blue-soft: #8bbcff;
  --shadow: 0 18px 60px rgba(0,0,0,.18);
  --radius: 28px;
  --radius-sm: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgba(75,134,215,.18), transparent 20%),
    radial-gradient(circle at 88% 12%, rgba(242,141,43,.12), transparent 20%),
    linear-gradient(180deg, #3a4048 0%, #31363d 28%, #2c3138 60%, #282d33 100%);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p { line-height: 1.75; }
.container {
  width: min(calc(100% - 56px), var(--container));
  margin: 0 auto;
}
.page-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .38;
  z-index: -1;
  pointer-events: none;
}
.page-glow-1 { top: 80px; left: -120px; background: rgba(75,134,215,.30); }
.page-glow-2 { top: 320px; right: -140px; background: rgba(242,141,43,.22); }

.glass {
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.04));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(47,53,61,.74);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-wrap {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}
.brand-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 126px;
  height: 74px;
  padding: 8px 12px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 16px 34px rgba(0,0,0,.16);
}
.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.brand-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.brand-text strong {
  font-size: 1.05rem;
  letter-spacing: .06em;
}
.brand-text small {
  color: var(--muted);
  font-size: .84rem;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #edf3fa;
}
.site-nav a {
  opacity: .88;
  transition: opacity .2s ease, color .2s ease;
}
.site-nav a:hover { opacity: 1; color: #fff; }
.menu-toggle {
  display: none;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: #fff;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 1.1rem;
}

.hero {
  padding: 72px 0 42px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0,1.05fr) minmax(440px,.95fr);
  gap: 44px;
  align-items: center;
}
.hero-badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
  font-weight: 700;
  background: rgba(75,134,215,.14);
  color: #ddecff;
  border: 1px solid rgba(139,188,255,.2);
  box-shadow: 0 8px 24px rgba(22,27,34,.12);
}
.hero h1,
.section-heading h2 {
  margin: 0 0 18px;
  line-height: 1.04;
  letter-spacing: -.035em;
}
.hero h1 { max-width: 11ch; }
.hero-title-main {
  display: block;
  font-size: clamp(2.8rem, 5vw, 4.9rem);
}
.hero-title-sub {
  display: block;
  margin-top: 10px;
  font-size: clamp(1.12rem, 2vw, 1.42rem);
  line-height: 1.32;
  color: #e9eef5;
  font-weight: 600;
  max-width: 28ch;
}
.hero-copy > p { color: var(--muted); max-width: 66ch; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 18px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform .18s ease, border-color .18s ease, filter .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #121212;
  background: linear-gradient(135deg, var(--orange), var(--orange-strong));
  box-shadow: 0 14px 34px rgba(242,141,43,.28);
}
.btn-secondary {
  background: rgba(255,255,255,.045);
  border-color: rgba(139,188,255,.22);
  color: #eff5fd;
}
.hero-metrics {
  list-style: none;
  margin: 28px 0 14px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}
.hero-metrics li,
.pill-grid span,
.mini-card,
.trust-strip-inner span,
.contact-list div {
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.055));
  border: 1px solid rgba(255,255,255,.11);
  box-shadow: 0 16px 40px rgba(0,0,0,.12), inset 0 1px 0 rgba(255,255,255,.05);
}
.hero-metrics li {
  border-radius: 26px;
  padding: 18px 18px 16px;
}
.hero-metrics strong {
  display: block;
  margin-bottom: 7px;
  font-size: 1.08rem;
}
.hero-metrics span,
.hero-references,
.about-copy p,
.info-card p,
.project-card p,
.contact-copy p,
.contact-list span,
.footer-wrap,
.trust-copy p { color: var(--muted); }

.hero-logo-card {
  min-height: 600px;
  padding: 22px;
  border-radius: 34px;
}
.hero-logo-stage {
  height: 100%;
  min-height: 556px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  background:
    radial-gradient(circle at 18% 18%, rgba(75,134,215,.16), transparent 28%),
    radial-gradient(circle at 82% 16%, rgba(242,141,43,.13), transparent 24%),
    linear-gradient(145deg, rgba(61,68,78,.95), rgba(51,57,66,.92));
  border: 1px solid rgba(255,255,255,.08);
}
.hero-logo-panel {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
}
.hero-logo-main {
  width: 100%;
  max-width: 520px;
  max-height: 460px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 22px 48px rgba(0,0,0,.16));
}
.hero-card-overlay {
  position: absolute;
  inset: auto 20px 20px 20px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-card-overlay span {
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(60,66,76,.72);
  border: 1px solid rgba(255,255,255,.11);
  backdrop-filter: blur(10px);
}

.trust-strip { padding-bottom: 12px; }
.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  text-align: center;
}
.trust-strip-inner span {
  border-radius: 999px;
  padding: 15px 12px;
}

.section { padding: 88px 0; }
.section-dark {
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  border-top: 1px solid rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.section-grid,
.why-grid { display: grid; gap: 28px; }
.section-heading { max-width: 860px; }
.section-heading h2 { font-size: clamp(2rem, 3.9vw, 3.15rem); }
.about-grid {
  grid-template-columns: .92fr 1.08fr;
  align-items: start;
}
.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.pill-grid span,
.mini-card {
  padding: 15px 18px;
  border-radius: 999px;
}
.cards-grid { display: grid; gap: 22px; }
.services-grid,
.projects-grid,
.why-cards { grid-template-columns: repeat(3, minmax(0,1fr)); }
.services-grid { margin-top: 28px; }
.info-card,
.project-card,
.contact-form,
.trust-box,
.reference-card {
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: var(--shadow);
}
.info-card,
.project-card,
.contact-form,
.trust-box { border-radius: 28px; }
.info-card {
  padding: 26px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.info-card:hover,
.project-card:hover,
.reference-card:hover {
  transform: translateY(-4px);
  border-color: rgba(242,141,43,.22);
  box-shadow: 0 22px 62px rgba(0,0,0,.18);
}
.info-card h3,
.project-card h3,
.trust-copy h3 { margin-top: 0; }
.section-heading-inline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}
.text-link {
  color: #ffd7a8;
  font-weight: 700;
}
.projects-grid {
  display: grid;
  gap: 22px;
  margin-top: 32px;
}
.project-card { overflow: hidden; }
.project-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.project-body { padding: 22px; }
.project-tag {
  display: inline-flex;
  padding: 8px 12px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(242,141,43,.12);
  border: 1px solid rgba(242,141,43,.18);
  color: #ffd2a6;
  font-size: .9rem;
  font-weight: 700;
}
.project-location { margin-top: -2px; }

.reference-gallery {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.reference-card {
  position: relative;
  grid-column: span 4;
  min-height: 260px;
  border-radius: 28px;
  overflow: hidden;
}
.reference-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reference-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,22,28,0) 35%, rgba(18,22,28,.10) 100%);
}
.reference-card:nth-child(1),
.reference-card:nth-child(7) {
  grid-column: span 8;
  min-height: 360px;
}

.trust-box {
  margin-top: 28px;
  padding: 30px;
  display: grid;
  grid-template-columns: 1.16fr .84fr;
  gap: 28px;
}
.trust-copy ul {
  margin: 0 0 18px;
  padding-left: 20px;
  color: #dce8f5;
}
.trust-medal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}
.trust-medal img {
  width: min(100%, 280px);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.12);
  object-fit: cover;
}

.contact-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 28px;
  align-items: start;
}
.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}
.contact-list div {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-radius: 22px;
}
.contact-form {
  padding: 26px;
  display: grid;
  gap: 16px;
}
.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(38,44,51,.88);
  color: white;
  padding: 14px 16px;
  font: inherit;
}
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer {
  background: rgba(34,39,45,.78);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 28px 0 42px;
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .trust-box,
  .services-grid,
  .projects-grid,
  .why-cards,
  .trust-strip-inner {
    grid-template-columns: 1fr;
  }
  .hero h1 { max-width: none; }
  .hero-grid { gap: 28px; }
  .reference-gallery { grid-template-columns: repeat(2, 1fr); }
  .reference-card,
  .reference-card:nth-child(1),
  .reference-card:nth-child(7) {
    grid-column: auto;
    min-height: 280px;
  }
}

@media (max-width: 860px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .menu-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(49,55,63,.96);
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 20px 40px rgba(0,0,0,.2);
  }
  .site-nav.open { display: flex; }
  .brand-text small { display: none; }
  .hero { padding-top: 40px; }
  .hero-metrics { grid-template-columns: 1fr; }
  .section-heading-inline { display: grid; gap: 12px; }
  .hero-logo-card { min-height: auto; }
  .hero-logo-stage { min-height: 420px; }
  .hero-logo-panel { min-height: 380px; padding: 24px; }
}
