* {
  box-sizing: border-box;
}

:root {
  --bg: #050816;
  --bg-soft: #091429;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --border: rgba(255, 255, 255, 0.16);
  --text: #f7fbff;
  --muted: #b6c3d7;
  --blue: #2364ff;
  --cyan: #33e6ff;
  --red: #ff4747;
  --gold: #ffc857;
  --green: #28d17c;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 12% -10%, rgba(35, 100, 255, 0.34), transparent 28%),
    radial-gradient(circle at 86% 4%, rgba(51, 230, 255, 0.16), transparent 22%),
    linear-gradient(180deg, #050816 0%, #071326 48%, #030611 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 8, 22, 0.86);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
}

.nav {
  max-width: 1240px;
  min-height: 78px;
  margin: 0 auto;
  padding: 8px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.site-logo {
  width: 188px;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 16px rgba(35, 100, 255, 0.28));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-weight: 750;
  font-size: 0.94rem;
}

.nav-links a:hover {
  color: white;
}

.nav-cta {
  color: white !important;
  padding: 10px 15px;
  border: 1px solid rgba(51, 230, 255, 0.28);
  border-radius: 999px;
  background: rgba(51, 230, 255, 0.08);
}

.lang-btn,
.mobile-menu {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border-radius: 999px;
  padding: 10px 13px;
  cursor: pointer;
  font-weight: 900;
}

.mobile-menu {
  display: none;
}

.hero,
.section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 94px 22px;
}

.hero {
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
}

.hero-inner {
  width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 42px;
  align-items: center;
}

.eyebrow,
.card-topline {
  margin: 0 0 16px;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 950;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 920px;
  margin-bottom: 26px;
  font-size: clamp(3.4rem, 8vw, 7.6rem);
  line-height: 0.88;
  letter-spacing: -0.085em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.066em;
}

h3 {
  font-size: 1.28rem;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.hero-text,
.section-heading p,
.metric-card p,
.service-card p,
.urgency-points p,
.bridge-grid p,
.bio-card p,
.timeline p,
.reference-card p,
.contact-box p,
.site-footer p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 760px;
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 15px 24px;
  font-weight: 950;
  cursor: pointer;
}

.primary {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 18px 50px rgba(35, 100, 255, 0.36);
}

.secondary {
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border);
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.proof-strip span {
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.9rem;
  font-weight: 780;
}

.hero-card {
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 34px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.055)),
    radial-gradient(circle at 96% 0%, rgba(255, 71, 71, 0.15), transparent 34%);
  box-shadow: var(--shadow);
}

.hero-card-number {
  margin: 10px 0 16px;
  font-size: clamp(5rem, 10vw, 9rem);
  line-height: 0.88;
  letter-spacing: -0.08em;
  font-weight: 950;
  background: linear-gradient(135deg, white, var(--cyan));
  -webkit-background-clip: text;
  color: transparent;
}

.hero-card-text {
  font-size: 1.05rem;
}

.source-pill {
  display: inline-flex;
  margin-top: 20px;
  padding: 10px 13px;
  border-radius: 999px;
  border: 1px solid rgba(51, 230, 255, 0.28);
  color: var(--cyan);
  background: rgba(51, 230, 255, 0.08);
  font-weight: 850;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 38px;
}

.market-grid,
.services-grid,
.reference-grid,
.timeline,
.bridge-grid {
  display: grid;
  gap: 18px;
}

.market-grid {
  grid-template-columns: repeat(4, 1fr);
}

.metric-card,
.service-card,
.reference-card,
.timeline > div,
.bridge-grid > article {
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--panel);
  padding: 28px;
}

.metric-label {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.76rem;
  font-weight: 950;
}

.metric-card strong {
  display: block;
  margin-bottom: 16px;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 0.9;
  letter-spacing: -0.075em;
  background: linear-gradient(135deg, white, var(--cyan));
  -webkit-background-clip: text;
  color: transparent;
}

.metric-card a,
.urgency-points a,
.bridge-grid a,
.reference-card span {
  color: var(--cyan);
  font-weight: 850;
}

.dark {
  max-width: none;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at 20% 10%, rgba(51, 230, 255, 0.13), transparent 24%),
    radial-gradient(circle at 90% 80%, rgba(35, 100, 255, 0.18), transparent 22%),
    #030611;
}

.urgency-layout {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 22px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
}

.urgency-points {
  display: grid;
  gap: 16px;
}

.urgency-points > div {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.07);
}

.services-grid {
  grid-template-columns: repeat(4, 1fr);
}

.service-card span,
.timeline span {
  color: var(--cyan);
  font-weight: 950;
}

.service-card {
  min-height: 280px;
}

.service-card:nth-child(1) {
  background: linear-gradient(145deg, rgba(35, 100, 255, 0.26), rgba(255, 255, 255, 0.075));
}

.bridge {
  padding-top: 64px;
}

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

.country-code {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 18px;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--red));
  font-weight: 950;
  letter-spacing: 0.04em;
}

.bio-section {
  padding-top: 40px;
}

.bio-card {
  display: grid;
  grid-template-columns: 0.36fr 1fr;
  gap: 36px;
  align-items: stretch;
  padding: 38px;
  border: 1px solid var(--border);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(35, 100, 255, 0.24), rgba(51, 230, 255, 0.08)),
    rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow);
}

.bio-kicker {
  display: grid;
  place-items: center;
  min-height: 240px;
  border-radius: 28px;
  color: white;
  background:
    radial-gradient(circle at 35% 30%, rgba(51, 230, 255, 0.35), transparent 34%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.05));
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 950;
  letter-spacing: -0.08em;
}

.method {
  padding-top: 40px;
}

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

.references {
  padding-top: 40px;
}

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

.reference-card {
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.reference-card:hover {
  transform: translateY(-5px);
  border-color: rgba(51, 230, 255, 0.42);
  background: var(--panel-strong);
}

.reference-card span {
  display: inline-block;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.76rem;
}

.contact-box {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  padding: 38px;
  border: 1px solid var(--border);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(35, 100, 255, 0.28), rgba(51, 230, 255, 0.08)),
    rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 14px;
}

input,
textarea {
  width: 100%;
  padding: 16px 17px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font: inherit;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: rgba(51, 230, 255, 0.65);
}

input::placeholder,
textarea::placeholder {
  color: #c7d2e5;
}

.website-field {
  display: none;
}

.form-note {
  margin: 0;
  font-size: 0.92rem;
}

#success-message {
  display: none;
  margin-top: 24px;
  padding: 16px 18px;
  border: 1px solid rgba(40, 209, 124, 0.36);
  border-radius: 18px;
  color: #dcffec;
  background: rgba(40, 209, 124, 0.12);
}

#success-message strong,
#success-message span {
  display: block;
}

.site-footer {
  max-width: 1240px;
  margin: 0 auto;
  padding: 32px 22px 48px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.footer-logo {
  width: 150px;
  height: auto;
  display: block;
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: start;
}

.footer-links a {
  color: var(--muted);
}

@media (max-width: 1080px) {
  .market-grid,
  .services-grid,
  .reference-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-inner,
  .urgency-layout,
  .bio-card,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 820px) {
  .mobile-menu {
    display: inline-flex;
  }

  .site-logo {
    width: 158px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 82px;
    left: 18px;
    right: 18px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: rgba(5, 8, 22, 0.98);
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links.open {
    display: flex;
  }

  .market-grid,
  .services-grid,
  .reference-grid,
  .timeline,
  .bridge-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 5.5rem);
  }

  .hero,
  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .bio-kicker {
    min-height: 170px;
  }

  .site-footer {
    flex-direction: column;
  }
}
