:root {
  --ink: #f3f6f4;
  --muted: #a8b2b0;
  --line: rgba(255, 255, 255, 0.12);
  --paper: #050707;
  --surface: #0d1111;
  --field: #151b1b;
  --accent: #d0aa5f;
  --accent-dark: #d0aa5f;
  --gold: #d0aa5f;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 72% 8%, rgba(208, 170, 95, 0.08), transparent 28%),
    linear-gradient(180deg, #080b0b 0%, var(--paper) 46%, #020303 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px;
  width: min(var(--max-width), calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  padding: 10px 0;
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-size: 0.88rem;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 650;
}

.nav a {
  position: relative;
  transition: color 160ms ease;
}

.nav a:hover,
.nav a.active,
.nav a[aria-current="page"] {
  color: var(--accent);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav a.active::after,
.nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.language-toggle {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  width: 84px;
  min-height: 38px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--surface);
  cursor: pointer;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  cursor: pointer;
  place-items: center;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle span + span {
  margin-top: 4px;
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.toggle-option {
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.toggle-option.active {
  color: #080b0b;
  background: var(--accent-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.72fr);
  align-items: center;
  gap: clamp(34px, 6vw, 88px);
  width: min(var(--max-width), calc(100% - 40px));
  min-height: calc(100vh - 132px);
  margin: 0 auto;
  padding: 58px 0 86px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.1rem, 7.2vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.25rem;
  letter-spacing: 0;
}

.hero-text {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
}

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

.button,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
}

.button.primary,
.contact-form button {
  color: #080b0b;
  background: var(--accent-dark);
}

.button.secondary {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
}

.hero-mark {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
}

.hero-mark img {
  width: min(82%, 420px);
  height: auto;
  filter: drop-shadow(0 20px 28px rgba(0, 0, 0, 0.5));
}

.trust-band,
.section,
.split-section,
.contact-section,
.site-footer {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-band div {
  padding: 26px 24px;
  border-right: 1px solid var(--line);
}

.trust-band div:last-child {
  border-right: 0;
}

.trust-band span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.trust-band strong {
  display: block;
  max-width: 300px;
  font-size: 1.02rem;
  line-height: 1.35;
}

.section {
  padding: 112px 0 84px;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.38fr 1fr;
  gap: 40px;
  margin-bottom: 46px;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(240px, 0.5fr);
  align-items: center;
  gap: clamp(34px, 6vw, 88px);
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  padding: 78px 0 64px;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 860px;
  font-size: clamp(3rem, 6.4vw, 6rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.page-hero img {
  width: min(78%, 340px);
  justify-self: center;
  filter: drop-shadow(0 20px 28px rgba(0, 0, 0, 0.5));
}

.service-options {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 96px;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.option-card {
  display: grid;
  align-content: start;
  min-height: 360px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
}

.option-card h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.55rem);
}

.option-card p {
  margin: 18px 0 0;
  color: var(--muted);
}

.option-card ul {
  display: grid;
  gap: 10px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.option-card li {
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-weight: 700;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  min-height: 300px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
}

.card-number {
  display: block;
  margin-bottom: 62px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 900;
}

.service-card p {
  margin: 18px 0 0;
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: clamp(36px, 6vw, 88px);
  padding: 92px 0;
  border-top: 1px solid var(--line);
}

.process-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.process-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.process-item span {
  color: var(--accent);
  font-weight: 850;
}

.process-item p {
  margin: 0;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(34px, 6vw, 88px);
  padding: 112px 0 88px;
}

.contact-section p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.contact-details p {
  display: grid;
  gap: 3px;
  margin: 0;
  color: var(--ink);
}

.contact-details span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-details strong {
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--field);
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  background: #101616;
}

.contact-links {
  display: grid;
  align-content: start;
  gap: 18px;
}

.messaging-actions {
  display: grid;
  gap: 12px;
}

.message-button,
.social-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 1px solid var(--line);
  font-weight: 850;
}

.message-button {
  min-height: 52px;
  gap: 10px;
  padding: 0 18px;
}

.message-button.whatsapp {
  min-height: 60px;
  color: #080b0b;
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 18px 38px rgba(208, 170, 95, 0.18);
}

.message-button.telegram {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
}

.social-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-actions a {
  width: 46px;
  height: 46px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.035);
}

.social-icon {
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  font-size: 1.16rem;
  line-height: 1;
  letter-spacing: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(180px, auto) minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 24px 0 36px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer span:first-child {
  color: var(--ink);
  font-weight: 850;
}

.copyright {
  justify-self: end;
  white-space: nowrap;
}

@media (max-width: 767px), (orientation: portrait) and (max-width: 1024px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 10px;
  }

  .menu-toggle {
    display: grid;
  }

  .nav {
    display: none;
    grid-column: 1 / -1;
    justify-content: start;
    order: 3;
    width: 100%;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    overflow: visible;
  }

  .site-header.menu-open .nav {
    display: grid;
  }

  .nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    border-radius: 6px;
  }

  .nav a::after {
    display: none;
  }

  .nav a.active,
  .nav a[aria-current="page"] {
    background: rgba(208, 170, 95, 0.1);
  }

  .hero,
  .page-hero,
  .section-heading,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 36px;
    gap: 14px;
  }

  .hero-copy {
    order: 2;
  }

  .page-hero > div {
    order: 2;
  }

  .hero-mark {
    order: 1;
    aspect-ratio: auto;
    max-width: 440px;
    width: 100%;
    margin: 0 auto -12px;
  }

  .hero-mark img {
    width: min(96%, 390px);
  }

  .page-hero img {
    order: 1;
    width: min(82%, 340px);
    margin-bottom: -10px;
  }

  .trust-band,
  .service-grid,
  .option-grid {
    grid-template-columns: 1fr;
  }

  .trust-band div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-band div:last-child {
    border-bottom: 0;
  }

}

@media (min-width: 768px) and (orientation: landscape) {
  .menu-toggle {
    display: none;
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero,
  .page-hero,
  .trust-band,
  .section,
  .split-section,
  .service-options,
  .contact-section,
  .site-footer {
    width: min(100% - 28px, var(--max-width));
  }

  .brand span {
    display: none;
  }

  .nav {
    font-size: 0.86rem;
  }

  h1 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .process-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-form {
    padding: 20px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .copyright {
    justify-self: start;
    white-space: normal;
  }
}
