:root {
  color-scheme: dark;
  --bg: #071421;
  --surface: #0f1d34;
  --surface-alt: #12253a;
  --surface-soft: rgba(18, 37, 58, 0.72);
  --surface-glass: rgba(14, 26, 44, 0.78);
  --border: rgba(255, 255, 255, 0.08);
  --text: #eef4ff;
  --muted: #a7b7d4;
  --brand: #4a8cf6;
  --brand-dark: #1d4ec8;
  --brand-soft: #79a5f7;
  --accent: #51d0ff;
  --success: #34d399;
  --shadow: 0 28px 96px rgba(1, 12, 29, 0.26);
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.18);
  --radius: 28px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

.hidden {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top, rgba(74, 140, 246, 0.18), transparent 26%),
    radial-gradient(circle at 86% 18%, rgba(81, 208, 255, 0.12), transparent 16%),
    linear-gradient(180deg, #071421 0%, #040914 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 20% 10%, rgba(74, 140, 246, 0.12), transparent 20%),
    radial-gradient(circle at 80% 80%, rgba(79, 206, 255, 0.08), transparent 18%);
  pointer-events: none;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

button:hover,
a:hover {
  transform: translateY(-1px);
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(7, 20, 33, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2.2rem 0;
  min-height: 120px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-logo {
  height: 72px;
  width: auto;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a:hover {
  color: var(--text);
}

.mobile-nav-toggle {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0.5rem;
}

#translateBtn {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.hero {
  padding: 6rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.78rem;
  margin-bottom: 1rem;
}

.hero-copy h1,
.section-header h2,
.cta h2 {
  margin: 0;
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  text-shadow: 0 20px 50px rgba(23, 54, 111, 0.15);
}

.hero-copy p {
  max-width: 45rem;
  margin: 1.5rem 0 2rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.solution-widget {
  margin-top: 1.75rem;
  padding: 1.5rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(1, 12, 29, 0.12);
}

.solution-widget button {
  min-width: 170px;
}

.solution-form {
  margin-top: 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field-group {
  display: grid;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: var(--text);
}

.field-group span {
  font-weight: 600;
}

.field-group input,
.field-group textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 1rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  outline: none;
}

.field-group input::placeholder,
.field-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.field-group textarea {
  min-height: 130px;
  resize: vertical;
}

.hero-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.25rem;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.8rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  box-shadow: var(--shadow-soft);
}

.btn-primary {
  background: linear-gradient(135deg, #4b88f6 0%, #3d73da 55%, #1d4ec8 100%);
  color: #fff;
  box-shadow: 0 18px 40px rgba(35, 87, 166, 0.25);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.hero-visual {
  position: relative;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.hero-visual::before {
  width: 180px;
  height: 180px;
  top: -30px;
  right: 0;
  background: rgba(74, 140, 246, 0.16);
}

.hero-visual::after {
  width: 120px;
  height: 120px;
  bottom: -20px;
  left: 12%;
  background: rgba(81, 208, 255, 0.1);
}

.visual-panel {
  padding: 2.2rem;
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(180deg, rgba(14, 26, 44, 0.94), rgba(9, 20, 39, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.visual-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.visual-label {
  color: var(--brand-soft);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
}

.badge {
  display: inline-flex;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: rgba(74, 140, 246, 0.14);
  color: var(--brand);
  font-size: 0.85rem;
  font-weight: 700;
}

.stats-grid {
  display: grid;
  gap: 1rem;
}

.stat-card {
  padding: 1.4rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-value {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
}

.stat-text {
  margin: 0.6rem 0 0;
  color: var(--muted);
}

.stats-source {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}

.stats-source a {
  color: var(--brand-soft);
  transition: color 200ms ease;
}

.stats-source a:hover {
  color: var(--brand);
}

.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header p {
  margin: 1rem auto 0;
  max-width: 44rem;
  color: var(--muted);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}

.about-content {
  display: grid;
  gap: 1rem;
  max-width: 100%;
}

.about-content .about-copy,
.about-content .about-location,
.about-content .about-multilingual {
  max-width: 100%;
}

.about-map iframe {
  border-radius: 24px;
  margin-top: 0;
  min-height: 520px;
}

.cards-grid,
.stats-grid {
  max-width: 1040px;
  margin: 0 auto;
}

.brand-icons {
  margin-top: 1.5rem;
}

.brand-icons p {
  margin: 0 0 0.5rem;
  font-weight: 600;
}

.icons-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.tool-icon {
  height: 55px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: brightness(1.1) contrast(1.2);
  transition: filter 200ms ease, transform 200ms ease;
  mix-blend-mode: screen;
}

.tool-icon:hover {
  filter: brightness(1.3) contrast(1.3);
  transform: scale(1.1);
}

.icons-list span {
  background: rgba(255, 255, 255, 0.08);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.about-map iframe {
  border-radius: 24px;
  margin-top: 0;
}

.cards-grid,
.steps-grid,
.results-grid {
  display: grid;
  gap: 1.5rem;
}

.cards-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card,
.step-card,
.metric-card {
  border-radius: 32px;
  padding: 2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 20px 40px rgba(1, 12, 29, 0.18);
  backdrop-filter: blur(12px);
}

.feature-card h3,
.step-card h3 {
  margin-top: 0;
  margin-bottom: 0.9rem;
}

.process .steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card {
  display: grid;
  gap: 1rem;
}

.step-number {
  width: fit-content;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(74, 140, 246, 0.14);
  color: var(--brand);
  font-weight: 700;
}

.results-grid {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}

.results-copy h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.result-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.result-pill-group span {
  display: inline-flex;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 0.95rem;
}

.metrics-panel {
  display: grid;
  gap: 1rem;
}

.metric-card {
  text-align: center;
}

.metric-value {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 800;
}

.metric-label {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.cta {
  padding: 4rem 0;
}

.cta-panel {
  padding: 2.5rem;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(17, 40, 73, 0.95), rgba(9, 20, 40, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-panel h2 {
  max-width: 38rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.contact-copy {
  display: grid;
  gap: 1rem;
}

.form-card {
  padding: 2rem;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(1, 12, 29, 0.12);
}

.contact-grid .form-grid {
  grid-template-columns: 1fr 1fr;
}

.contact-grid .field-group {
  margin-bottom: 1rem;
}

.contact-grid button {
  width: fit-content;
}

.site-footer {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
}

@media (max-width: 920px) {
  .hero-grid,
  .results-grid,
  .cards-grid,
  .process .steps-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 4.5rem;
  }
}

@media (max-width: 720px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .site-nav {
    position: absolute;
    inset: 5.5rem 1rem auto auto;
    flex-direction: column;
    width: calc(100% - 2rem);
    padding: 1.5rem;
    border-radius: 24px;
    background: rgba(7, 20, 33, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-nav-toggle {
    display: inline-flex;
  }

  .site-nav a {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }
}
