:root {
  --bg: #f6f4f1;
  --text: #131313;
  --muted: #4e4e52;
  --gold-1: #b27a2f;
  --gold-2: #e5be78;
  --card: #fffdf9;
  --line: #d8c4a0;
  --shadow: 0 22px 55px rgba(33, 23, 12, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background:
    radial-gradient(circle at 14% 10%, rgba(243, 214, 156, 0.2), rgba(243, 214, 156, 0) 40%),
    radial-gradient(circle at 90% 90%, rgba(189, 120, 23, 0.14), rgba(189, 120, 23, 0) 38%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

.background-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
  animation: glowDrift 16s ease-in-out infinite;
}

.glow-left {
  top: -100px;
  left: -120px;
  width: 340px;
  height: 340px;
  background: rgba(223, 189, 116, 0.25);
}

.glow-right {
  bottom: -130px;
  right: -150px;
  width: 420px;
  height: 420px;
  background: rgba(176, 118, 36, 0.18);
  animation-delay: -6s;
}

.header,
.hero,
.section,
.footer {
  width: min(1200px, calc(100% - 40px));
  margin-inline: auto;
}

.header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
  padding: 24px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: inherit;
  text-decoration: none;
}

.shield {
  width: 30px;
  height: 34px;
  background: linear-gradient(145deg, #f6cf7a, #b88113);
  clip-path: polygon(50% 0%, 90% 16%, 82% 72%, 50% 100%, 18% 72%, 10% 16%);
  box-shadow: inset 0 1px 5px rgba(255, 255, 255, 0.35), 0 10px 22px rgba(0, 0, 0, 0.16);
}

.nav {
  display: flex;
  gap: 24px;
  margin-left: auto;
}

.nav-link {
  font-size: 0.92rem;
  text-decoration: none;
  color: #3b2e1c;
  letter-spacing: 0.03em;
  font-weight: 600;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-1), var(--gold-2));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.lang-switch {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: #6a5130;
}

.lang-select {
  border: 1px solid rgba(128, 93, 45, 0.3);
  border-radius: 999px;
  background: #fffaf0;
  color: #3b2b18;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 10px;
  cursor: pointer;
}

.icon-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(105, 78, 40, 0.26);
  color: #2f2518;
  text-decoration: none;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  background: rgba(255, 250, 240, 0.72);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.icon-link svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.icon-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(83, 57, 25, 0.15);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 560px);
  gap: clamp(18px, 2.4vw, 30px);
  align-items: center;
  padding: 28px 0 40px;
}

.tagline {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  background: #efe3cd;
  color: #825b26;
}

h1 {
  margin: 12px 0 0;
  font-size: clamp(2.4rem, 4.5vw, 4.25rem);
  line-height: 1.02;
  max-width: 18ch;
  letter-spacing: -0.02em;
}

.hero-description {
  margin: 20px 0 0;
  font-size: 1.05rem;
  max-width: 34ch;
  color: #342b22;
}

.stats-row {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.stat-card {
  background: linear-gradient(180deg, rgba(255, 251, 243, 0.94), rgba(252, 246, 234, 0.9));
  border: 1px solid rgba(220, 190, 138, 0.7);
  border-radius: 14px;
  padding: 14px 14px 12px;
  backdrop-filter: blur(6px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    115deg,
    rgba(182, 121, 35, 0.2),
    rgba(238, 201, 136, 0.82),
    rgba(182, 121, 35, 0.2)
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.55;
  animation: borderGlow 4.2s ease-in-out infinite;
  pointer-events: none;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.stat-card h3 {
  margin: 0;
  font-size: 1rem;
}

.stat-card p {
  margin: 8px 0 0;
  color: #554739;
  font-size: 0.9rem;
}

.cta-group {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  border: none;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  border-radius: 12px;
  padding: 15px 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-gold {
  color: #211506;
  background: linear-gradient(132deg, #a96f26 0%, #c79248 45%, #efcd8b 100%);
  box-shadow: 0 14px 30px rgba(169, 111, 38, 0.34);
}

.btn-gold::after {
  content: "";
  position: absolute;
  inset: -120% auto -120% -36%;
  width: 34%;
  background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.55) 48%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(16deg);
  animation: buttonShine 4.6s ease-in-out infinite;
}

.btn-outline {
  color: #3c2c17;
  border: 2px solid #7f5314;
  background: #fffaf0;
  animation: borderGlow 4.8s ease-in-out infinite;
}

.full-width {
  width: 100%;
}

.hero-visual {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 1 / 1;
  min-height: 0;
  display: grid;
  place-items: center;
  perspective: 1100px;
  isolation: isolate;
  justify-self: end;
}

.parallax-item {
  translate: var(--move-x, 0px) var(--move-y, 0px);
  will-change: translate;
  transition: translate 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.globe {
  width: min(82%, 470px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(201, 163, 105, 0.44);
  background: radial-gradient(circle at 34% 28%, #47433d 0%, #1c1a17 58%, #0b0b0b 100%);
  box-shadow:
    inset -34px -26px 78px rgba(0, 0, 0, 0.56),
    0 24px 50px rgba(30, 20, 10, 0.28),
    0 0 0 1px rgba(207, 162, 97, 0.24);
  position: relative;
  overflow: hidden;
  z-index: 4;
  animation: float 12s ease-in-out infinite;
  transform-style: preserve-3d;
}

.globe::before {
  content: "";
  position: absolute;
  inset: 1.4%;
  border-radius: 50%;
  border: none;
  background:
    conic-gradient(
      from 0deg,
      rgba(236, 188, 110, 0) 0deg,
      rgba(236, 188, 110, 0.5) 42deg,
      rgba(236, 188, 110, 0.04) 90deg,
      rgba(236, 188, 110, 0) 160deg,
      rgba(236, 188, 110, 0.34) 235deg,
      rgba(236, 188, 110, 0) 360deg
    );
  -webkit-mask: radial-gradient(circle, transparent 83.8%, #000 84.5%);
  mask: radial-gradient(circle, transparent 83.8%, #000 84.5%);
  animation: borderSweep 7s linear infinite;
}

.globe::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 26%, rgba(255, 245, 225, 0.26), rgba(255, 255, 255, 0) 35%),
    radial-gradient(circle at 77% 62%, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0) 44%);
  pointer-events: none;
  animation: globeGloss 8s ease-in-out infinite;
}

.globe .globe-texture.glow::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    linear-gradient(
      112deg,
      rgba(255, 222, 168, 0) 22%,
      rgba(255, 222, 168, 0.3) 42%,
      rgba(255, 205, 131, 0.42) 51%,
      rgba(255, 222, 168, 0.26) 58%,
      rgba(255, 222, 168, 0) 76%
    );
  mix-blend-mode: screen;
  opacity: 0.5;
  transform: translateX(-36%) rotate(-4deg);
  animation: globeShimmer 9.5s ease-in-out infinite;
}

.globe-texture {
  position: absolute;
  inset: 2.2%;
  border-radius: 50%;
  z-index: 2;
  background:
    url("https://upload.wikimedia.org/wikipedia/commons/8/80/World_map_-_low_resolution.svg")
      repeat-x 0 50% / auto 106%;
  opacity: 1;
  filter: sepia(1) hue-rotate(344deg) saturate(2.2) brightness(0.74) contrast(1.2);
  animation: globeTurn 30s linear infinite;
}

.globe-texture.glow {
  inset: 1.2%;
  z-index: 3;
  opacity: 0.38;
  filter: sepia(1) hue-rotate(345deg) saturate(2.5) brightness(0.9) blur(1.8px);
  mix-blend-mode: screen;
  animation: globeTurn 30s linear infinite, glowPulse 4.6s ease-in-out infinite;
}

.globe-relief {
  position: absolute;
  inset: 2.2%;
  border-radius: 50%;
  z-index: 4;
  pointer-events: none;
  background:
    url("https://upload.wikimedia.org/wikipedia/commons/8/80/World_map_-_low_resolution.svg")
      repeat-x 0 50% / auto 106%;
  opacity: 0.62;
  filter:
    sepia(1)
    hue-rotate(343deg)
    saturate(1.9)
    brightness(1.06)
    contrast(1.28)
    drop-shadow(0.8px 0.8px 0 rgba(246, 200, 122, 0.34))
    drop-shadow(1.6px 1.6px 0 rgba(121, 75, 22, 0.24))
    drop-shadow(2.2px 2.2px 5px rgba(0, 0, 0, 0.3));
  mix-blend-mode: screen;
  transform: translateZ(2px);
  animation: globeTurn 30s linear infinite, reliefPulse 7.5s ease-in-out infinite;
}

.globe-grid {
  display: none;
}

.invoice-card {
  position: absolute;
  right: 4%;
  top: 28%;
  width: 165px;
  padding: 14px 12px;
  border-radius: 10px;
  background: linear-gradient(165deg, #fffefb 5%, #f6efdf 100%);
  border: 1px solid rgba(216, 176, 112, 0.58);
  box-shadow: 0 16px 26px rgba(38, 26, 12, 0.28);
  transform: rotate(-9deg);
  z-index: 8;
  animation: invoiceFloat 5.8s ease-in-out infinite;
}

.invoice-title {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: #c38a2f;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.invoice-line {
  display: block;
  width: 100%;
  height: 5px;
  margin-bottom: 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(191, 134, 54, 0.28), rgba(191, 134, 54, 0.62));
}

.invoice-line.short {
  width: 68%;
}

.globe-web {
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  border: 1px solid rgba(244, 197, 105, 0.12);
  animation: webSpin 22s linear infinite;
}

.globe-web,
.signal {
  display: none;
}

.web-b {
  inset: 22%;
  animation-duration: 26s;
  animation-direction: reverse;
}

.web-c {
  inset: 30%;
  animation-duration: 18s;
}

.signal {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffd585;
  box-shadow: 0 0 14px rgba(255, 214, 129, 0.85);
  animation: pulse 3.4s ease-in-out infinite;
}

.signal-a {
  top: 31%;
  left: 36%;
}

.signal-b {
  top: 53%;
  left: 58%;
  animation-delay: 0.6s;
}

.signal-c {
  top: 45%;
  left: 73%;
  animation-delay: 1.1s;
}

.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(192, 131, 53, 0.42);
  transform-style: preserve-3d;
  animation: orbitSpin 36s linear infinite;
  box-shadow: 0 0 18px rgba(202, 143, 66, 0.16);
}

.orbit-1 {
  width: 116%;
  height: 66%;
  rotate: -14deg;
  animation-duration: 46s;
}

.orbit-2 {
  width: 126%;
  height: 56%;
  rotate: 14deg;
  animation-duration: 52s;
  animation-direction: reverse;
}

.orbit-3 {
  width: 132%;
  height: 102%;
  rotate: 65deg;
  animation-duration: 40s;
}

.network {
  position: absolute;
  transform-origin: center;
  opacity: 0.46;
}

.network::before,
.network::after {
  content: "";
  position: absolute;
}

.network::before {
  width: 300px;
  height: 2px;
  background: linear-gradient(90deg, rgba(214, 145, 64, 0), rgba(214, 148, 59, 1), rgba(214, 145, 64, 0));
  top: 0;
  left: 0;
  animation: linePulse 2.8s ease-in-out infinite;
}

.network::after {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f8c568;
  box-shadow: 0 0 18px rgba(255, 193, 86, 0.92);
  top: -3.5px;
  left: 52%;
  animation: signalMove 2.6s linear infinite;
}

.network-1 {
  top: 48%;
  left: 11%;
  rotate: -20deg;
  animation: netDrift 11s ease-in-out infinite;
}

.network-2 {
  top: 57%;
  left: 23%;
  rotate: 19deg;
  animation: netDrift 13s ease-in-out infinite reverse;
}

.network-3 {
  top: 34%;
  left: 28%;
  rotate: 62deg;
  animation: netDrift 10s ease-in-out infinite;
}

.coin {
  position: absolute;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #7c560f;
  font-weight: 800;
  background: radial-gradient(circle at 30% 20%, #f6ddad, #c98a34 58%, #8b5515);
  box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.48), 0 8px 20px rgba(137, 85, 21, 0.46);
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(146, 91, 17, 0.38);
}

.coin-eur {
  top: 10%;
  right: 4%;
  animation: coin 8s ease-in-out infinite;
}

.coin-usd {
  left: 3%;
  top: 51%;
  animation: coin 9.2s ease-in-out infinite reverse;
}

.coin-cny {
  left: 20%;
  bottom: 6%;
  animation: coin 8.6s ease-in-out infinite;
}

.coin-rub {
  right: 8%;
  bottom: 5%;
  animation: coin 9.6s ease-in-out infinite reverse;
}

.invoice-orbit {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: orbitSpin 16s linear infinite;
}

.orbit-front {
  z-index: 7;
}

.orbit-back {
  z-index: 2;
}

.invoice-orbit-a {
  width: 640px;
  height: 360px;
  rotate: -10deg;
  animation-duration: 13s;
}

.invoice-orbit-b {
  width: 600px;
  height: 430px;
  rotate: 28deg;
  animation-duration: 17s;
  animation-direction: reverse;
}

.invoice-orbit-c {
  width: 690px;
  height: 520px;
  rotate: 63deg;
  animation-duration: 20s;
}

.invoice-chip {
  position: absolute;
  left: 50%;
  top: -14px;
  transform: translateX(-50%);
  padding: 8px 12px;
  border-radius: 9px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #b1731f;
  background: linear-gradient(165deg, #fffefc, #efe7d7);
  border: 1px solid #dbbe8f;
  box-shadow: 0 8px 18px rgba(53, 34, 13, 0.24);
}

.invoice-orbit::after {
  content: "INVOICE";
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%) rotate(180deg);
  padding: 8px 12px;
  border-radius: 9px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #b1731f;
  background: linear-gradient(165deg, #fffefc, #efe7d7);
  border: 1px solid #dbbe8f;
  box-shadow: 0 8px 18px rgba(53, 34, 13, 0.24);
}

.orbit-back .invoice-chip,
.orbit-back::after {
  opacity: 0.62;
  filter: blur(0.3px);
}

.orbit-front .invoice-chip,
.orbit-front::after {
  opacity: 1;
}

.section {
  padding: 52px 0 16px;
}

h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  margin: 0 0 16px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.price-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.price-card.featured {
  transform: translateY(-6px);
  border-color: #cb8f2e;
  background: linear-gradient(180deg, #fff7e7, #fffefb);
}

.price-value {
  font-size: 1.4rem;
  margin: 8px 0 10px;
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  background: #fffaf0;
  border-radius: 12px;
  border: 1px solid var(--line);
  padding: 14px 16px;
}

summary {
  cursor: pointer;
  font-weight: 600;
}

details p {
  margin: 10px 0 0;
  color: var(--muted);
}

.feedback {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 20px;
  align-items: start;
}

form {
  background: #fffaf1;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

form::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    140deg,
    rgba(181, 123, 41, 0.2),
    rgba(237, 196, 123, 0.82),
    rgba(181, 123, 41, 0.2)
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.6;
  animation: borderGlow 5s ease-in-out infinite;
  pointer-events: none;
}

.field {
  margin-bottom: 12px;
}

.contact-methods {
  margin: 0 0 12px;
  padding: 10px 12px 8px;
  border: 1.5px solid #d9d7d1;
  border-radius: 10px;
  background: #fcfcfc;
}

.contact-methods legend {
  padding: 0 6px;
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.contact-option {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border: 1px solid #d5d4cf;
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 600;
  cursor: pointer;
  background: #fff;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.contact-option:hover {
  transform: translateY(-1px);
  border-color: #c79a53;
}

.contact-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-option input:checked + span {
  color: #8b5e22;
  font-weight: 700;
}

.contact-option:has(input:checked) {
  background: linear-gradient(145deg, #fff9ec, #f7ecda);
  border-color: #c79248;
}

.field-hint {
  display: block;
  margin-top: 5px;
  color: #7b7265;
  font-size: 0.8rem;
}

.date-time-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -2px 0 14px;
}

.quick-chip {
  border: 1px solid #d4c5ab;
  background: #fff9ef;
  color: #6d4a1e;
  border-radius: 999px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 12px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.quick-chip:hover {
  transform: translateY(-1px);
  border-color: #c79248;
}

.quick-chip.active {
  background: linear-gradient(145deg, #f9e9ca, #efd6a9);
  border-color: #c1842f;
  color: #55350f;
}

.flatpickr-calendar {
  border: 1px solid #d8bd8a;
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(45, 29, 10, 0.2);
  background: #fff9ee;
}

.flatpickr-months .flatpickr-month,
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
  color: #5d3c16;
  fill: #5d3c16;
}

.flatpickr-weekdays {
  background: #f6e9d0;
}

span.flatpickr-weekday {
  color: #7a5522;
  font-weight: 600;
}

.flatpickr-day {
  color: #2f261b;
  border-radius: 8px;
}

.flatpickr-day.today {
  border-color: #c98a34;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover {
  background: linear-gradient(135deg, #af7428, #d6a357);
  border-color: #8c581b;
  color: #fff8ec;
}

.flatpickr-day:hover {
  background: #f4e2c3;
}

.flatpickr-time input:hover,
.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time input:focus,
.flatpickr-time .flatpickr-am-pm:focus {
  background: #f2dfbe;
}

label {
  display: block;
  margin-bottom: 7px;
  font-weight: 600;
  font-size: 0.95rem;
}

input,
textarea {
  width: 100%;
  border: 1.5px solid #d9d7d1;
  border-radius: 10px;
  padding: 12px 13px;
  font: inherit;
  background: #fcfcfc;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #c49030;
  box-shadow: 0 0 0 4px rgba(196, 144, 48, 0.12);
}

.consent {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 6px 0 10px;
}

.consent input {
  width: 18px;
  height: 18px;
}

.error-text {
  min-height: 17px;
  color: #bf1d1d;
  font-size: 0.82rem;
  display: block;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 38px 0 46px;
  color: #5d4422;
  font-weight: 500;
}

.footer a {
  color: inherit;
  text-decoration: none;
}

.consult-modal {
  border: none;
  padding: 0;
  border-radius: 14px;
  width: min(460px, calc(100vw - 24px));
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}

.consult-modal::backdrop {
  background: rgba(17, 14, 10, 0.45);
  backdrop-filter: blur(3px);
}

.consult-modal-content {
  padding: 20px;
  border-radius: 14px;
  margin: 0;
}

.modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 22px;
  background: #111317;
  color: #fff;
  border-radius: 10px;
  padding: 12px 14px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.section-animate {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.section-animate.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(-2deg);
  }
}

@keyframes glowDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.9;
  }
  50% {
    transform: translate3d(18px, -14px, 0) scale(1.06);
    opacity: 1;
  }
}

@keyframes coin {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-11px) scale(1.07);
  }
}

@keyframes globeTurn {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 220% 50%;
  }
}

@keyframes glowPulse {
  0% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.52;
  }
  100% {
    opacity: 0.3;
  }
}

@keyframes globeShimmer {
  0% {
    opacity: 0.18;
    transform: translateX(-46%) rotate(-6deg);
  }
  50% {
    opacity: 0.58;
    transform: translateX(24%) rotate(6deg);
  }
  100% {
    opacity: 0.18;
    transform: translateX(-46%) rotate(-6deg);
  }
}

@keyframes reliefPulse {
  0%,
  100% {
    opacity: 0.52;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes accentRing {
  from {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.015);
  }
  to {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes globeGloss {
  0%,
  100% {
    opacity: 0.95;
    transform: translateX(0);
  }
  50% {
    opacity: 1;
    transform: translateX(-8px);
  }
}

@keyframes invoiceFloat {
  0%,
  100% {
    transform: rotate(-9deg) translateY(0);
  }
  50% {
    transform: rotate(-6deg) translateY(-8px);
  }
}

@keyframes globeBreath {
  0%,
  100% {
    transform: scale(1.01);
  }
  50% {
    transform: scale(1.03);
  }
}

@keyframes globeTextureSpin {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}


@keyframes continentGlow {
  0%,
  100% {
    transform: translateY(0) scale(1);
    filter: saturate(1.08) brightness(1);
  }
  50% {
    transform: translateY(-1px) scale(1.012);
    filter: saturate(1.2) brightness(1.07);
  }
}

@keyframes mapShift {
  0% {
    transform: translateX(-5%) rotate(0deg);
  }
  50% {
    transform: translateX(5%) rotate(2deg);
  }
  100% {
    transform: translateX(-5%) rotate(0deg);
  }
}

@keyframes webSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(0.75);
    opacity: 0.65;
  }
  50% {
    transform: scale(1.3);
    opacity: 1;
  }
}

@keyframes orbitSpin {
  from {
    transform: rotateZ(0deg);
  }
  to {
    transform: rotateZ(360deg);
  }
}

@keyframes buttonShine {
  0%,
  65%,
  100% {
    transform: translateX(-185%) rotate(16deg);
  }
  82% {
    transform: translateX(340%) rotate(16deg);
  }
}

@keyframes netDrift {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.03);
  }
}

@keyframes linePulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

@keyframes borderSweep {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes borderGlow {
  0%,
  100% {
    opacity: 0.45;
    filter: brightness(0.95);
  }
  50% {
    opacity: 0.86;
    filter: brightness(1.08);
  }
}

@keyframes signalMove {
  from {
    transform: translateX(-90px);
    opacity: 0.2;
  }
  to {
    transform: translateX(90px);
    opacity: 1;
  }
}

@keyframes flyOne {
  0%,
  100% {
    transform: translate(0, 0) rotate(-7deg);
  }
  50% {
    transform: translate(26px, -18px) rotate(6deg);
  }
}

@keyframes flyTwo {
  0%,
  100% {
    transform: translate(0, 0) rotate(9deg);
  }
  50% {
    transform: translate(-34px, -22px) rotate(-5deg);
  }
}

@keyframes flyThree {
  0%,
  100% {
    transform: translate(0, 0) rotate(4deg);
  }
  50% {
    transform: translate(18px, -30px) rotate(-8deg);
  }
}

@media (max-width: 1260px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 500px);
  }

  .hero-visual {
    width: min(100%, 500px);
  }
}

@media (max-width: 1020px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .hero-visual {
    justify-self: center;
    width: min(92vw, 520px);
    aspect-ratio: 1 / 1;
  }

  .globe {
    width: min(80%, 430px);
  }

  .coin {
    width: 52px;
    height: 52px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .feedback {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 760px) {
  .header {
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
  }

  .nav {
    margin-left: 0;
    gap: 16px;
    flex-wrap: wrap;
  }

  .invoice-card {
    width: 140px;
    top: 30%;
    right: 7%;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .cta-group {
    flex-direction: column;
  }

  .contact-method-grid,
  .date-time-row {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    width: min(96vw, 440px);
    aspect-ratio: 1 / 1;
  }

  .globe {
    width: min(78%, 340px);
  }

  .orbit-1 {
    width: 118%;
    height: 68%;
  }

  .orbit-2 {
    width: 128%;
    height: 58%;
  }

  .orbit-3 {
    width: 135%;
    height: 104%;
  }

  .coin {
    width: 46px;
    height: 46px;
    font-size: 1rem;
  }

  .coin-eur {
    top: 8%;
    right: 4%;
  }

  .coin-usd {
    left: 2%;
    top: 50%;
  }

  .coin-cny {
    left: 16%;
    bottom: 5%;
  }

  .coin-rub {
    right: 5%;
    bottom: 4%;
  }
}
