:root {
  --bg: #071522;
  --bg-deep: #04101a;
  --surface: rgba(8, 30, 48, 0.78);
  --surface-strong: rgba(10, 37, 58, 0.94);
  --line: rgba(152, 188, 214, 0.22);
  --text: #eff7ff;
  --muted: #a7bfd3;
  --accent: #36c4b7;
  --accent-strong: #1f9d95;
  --accent-warm: #f1b46a;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max-width: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(54, 196, 183, 0.16), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(241, 180, 106, 0.18), transparent 20%),
    linear-gradient(180deg, #0b2234 0%, var(--bg) 42%, var(--bg-deep) 100%);
  font-family: "Manrope", sans-serif;
}

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

img {
  max-width: 100%;
}

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 92%);
}

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(5, 18, 30, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-row,
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header-row {
  padding: 18px 0;
}

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

.brand > span:last-child {
  min-width: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: "Outfit", sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0.02em;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 56px;
  aspect-ratio: 369 / 469;
  padding: 6px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(155deg, rgba(54, 196, 183, 0.18), rgba(255, 255, 255, 0.04));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 18px 40px rgba(0, 0, 0, 0.18);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  gap: 26px;
}

.main-nav a {
  color: var(--muted);
  transition: color 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switch {
  display: inline-flex;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.lang-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 999px;
  font: inherit;
  cursor: pointer;
}

.lang-btn.is-active {
  background: rgba(54, 196, 183, 0.14);
  color: #fff;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.header-cta {
  border: 1px solid var(--line);
}

.button:hover,
.button:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #03202a;
  background: linear-gradient(135deg, var(--accent), #8ce6db);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.hero {
  padding: 90px 0 54px;
}

.hero-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: center;
}

.hero-copy,
.hero-panel,
.section-heading,
.info-card,
.process-card,
.contact-copy,
.form-shell {
  animation: rise 680ms ease both;
}

.eyebrow,
.section-kicker,
.panel-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--accent-warm);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero h1,
.section-heading h2,
.contact-copy h2,
.panel-card h2 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  line-height: 1.02;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 7vw, 5.6rem);
}

.hero-text,
.section-heading p,
.contact-copy p,
.panel-card p,
.info-card p,
.process-card p,
.trust-strip p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 64ch;
  margin: 22px 0 0;
  font-size: 1.08rem;
}

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

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.hero-badges li {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: #d4e6f5;
}

.hero-panel {
  position: relative;
}

.logo-showcase {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.logo-frame {
  width: min(100%, 320px);
  aspect-ratio: 369 / 469;
  display: grid;
  place-items: center;
  padding: 18px;
  border-radius: 32px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top, rgba(54, 196, 183, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(9, 33, 51, 0.86));
  box-shadow: var(--shadow);
}

.logo-frame img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.panel-card,
.stat-card,
.info-card,
.process-card,
.form-shell {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.panel-card {
  padding: 30px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(155deg, rgba(54, 196, 183, 0.14), rgba(255, 255, 255, 0.03)),
    var(--surface-strong);
}

.panel-card h2 {
  max-width: 14ch;
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.panel-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.stat-card {
  padding: 18px;
  border-radius: var(--radius-md);
}

.stat-card span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
}

.stat-card strong {
  display: block;
  margin-top: 16px;
  line-height: 1.35;
  font-size: 1rem;
}

.section {
  padding: 54px 0;
}

.section-trust {
  padding-top: 0;
}

.trust-strip {
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
}

.trust-strip p {
  margin: 0;
  font-size: 1.05rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2,
.contact-copy h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.card-grid,
.process-grid {
  display: grid;
  gap: 18px;
}

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

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

.info-card,
.process-card {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.info-card h3,
.process-card h3 {
  margin: 0 0 14px;
  font-family: "Outfit", sans-serif;
  font-size: 1.45rem;
}

.process-card span {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 22px;
  border-radius: 15px;
  background: rgba(54, 196, 183, 0.12);
  color: var(--accent);
  font-weight: 800;
}

.section-process {
  position: relative;
}

.section-process::after {
  content: "";
  position: absolute;
  inset: auto 0 0 auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(54, 196, 183, 0.12), transparent 65%);
  filter: blur(12px);
  pointer-events: none;
}

.contact-details {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}

.contact-details article {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-details span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 800;
}

.contact-details a {
  line-height: 1.7;
}

.form-shell {
  padding: 28px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(9, 33, 51, 0.88));
}

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

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

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

.contact-form span {
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 15px 16px;
  font: inherit;
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(215, 230, 241, 0.45);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(54, 196, 183, 0.52);
  background: rgba(255, 255, 255, 0.06);
}

.form-submit {
  width: 100%;
  margin-top: 6px;
  border: 0;
  cursor: pointer;
}

.form-submit[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  min-height: 1.5em;
  margin: 4px 2px 0;
  color: var(--muted);
}

.form-status.is-success {
  color: #89f0ca;
}

.form-status.is-error {
  color: #ffaca1;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.site-footer {
  padding: 18px 0 32px;
}

.footer-row {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .header-row,
  .footer-row,
  .main-nav,
  .header-actions {
    flex-wrap: wrap;
  }

  .hero-grid,
  .contact-grid,
  .card-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .panel-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 52px;
  }

  .header-row {
    justify-content: center;
  }

  .main-nav,
  .header-actions {
    justify-content: center;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .hero h1 {
    max-width: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-shell,
  .info-card,
  .process-card,
  .panel-card {
    padding: 22px;
  }

  .container {
    width: min(calc(100% - 28px), var(--max-width));
  }
}
