:root {
  --black: #0a0a0a;
  --yellow: #f7d400;
  --yellow-soft: #fbe35e;
  --cream: #fff8d6;
  --gray: #232323;
  --line: rgba(10, 10, 10, 0.15);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--black);
  background: #080808;
  line-height: 1.6;
  overflow-x: hidden;
}

.background-media {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(247, 212, 0, 0.18), transparent 34%),
    radial-gradient(circle at bottom left, rgba(251, 227, 94, 0.12), transparent 30%),
    linear-gradient(160deg, #151515 0%, #080808 58%, #000000 100%);
}

.background-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(247, 212, 0, 0.4),
    rgba(10, 10, 10, 0.7)
  );
}

.page {
  position: relative;
  z-index: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 90vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
}

.nav {
  display: flex;
  gap: 24px;
  font-size: 0.9rem;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.lang-btn {
  border: none;
  background: transparent;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--gray);
  cursor: pointer;
}

.lang-btn.is-active {
  background: var(--black);
  color: var(--yellow);
}

.hero {
  padding: 90px 0 70px;
}

.info-page {
  padding: 90px 0 110px;
}

.info-layout {
  display: grid;
  gap: 22px;
  max-width: 780px;
  padding: 38px;
  border-radius: 28px;
  background: rgba(255, 248, 214, 0.94);
  border: 1px solid rgba(10, 10, 10, 0.12);
  box-shadow: var(--shadow);
}

.info-layout .lead {
  max-width: none;
  color: var(--gray);
}

.info-highlight {
  display: grid;
  gap: 10px;
  padding: 24px;
  border-radius: 22px;
  background: rgba(247, 212, 0, 0.18);
  border: 1px solid rgba(10, 10, 10, 0.1);
}

.info-highlight h2 {
  font-size: clamp(1.4rem, 2vw + 1rem, 2rem);
  line-height: 1.15;
}

.info-highlight p {
  color: var(--gray);
}

.info-highlight strong {
  color: var(--black);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-copy {
  color: #fff;
  min-width: 0;
}

.hero-copy .eyebrow,
.hero-copy .lead {
  color: #fff;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--gray);
}

h1 {
  font-size: clamp(2.2rem, 3vw + 1.2rem, 3.6rem);
  line-height: 1.1;
  margin: 16px 0 20px;
  overflow-wrap: anywhere;
}

.lead {
  font-size: 1.1rem;
  max-width: 520px;
  color: var(--gray);
}

.hero-actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: var(--black);
  color: var(--yellow);
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid var(--black);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn.ghost {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--black);
}

.btn.ghost.hero-info-btn {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.8);
}

.hero-card {
  background: var(--yellow);
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
  min-width: 0;
}

.info-block {
  display: grid;
  gap: 6px;
  font-size: 0.95rem;
}

.info-block a,
.footer-grid a,
.form-hint strong {
  overflow-wrap: anywhere;
}

.label {
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head p {
  color: var(--gray);
  max-width: 420px;
}

.services {
  padding: 70px 0;
  background: rgba(255, 248, 214, 0.92);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.alignment-promo {
  padding: 28px 0 10px;
}

.alignment-card {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, 0.9fr);
  gap: 24px;
  padding: 32px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 248, 214, 0.96), rgba(247, 212, 0, 0.92));
  border: 1px solid rgba(10, 10, 10, 0.12);
  box-shadow: var(--shadow);
}

.alignment-copy {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.alignment-copy h2 {
  font-size: clamp(1.8rem, 2.4vw + 1rem, 3rem);
  line-height: 1.05;
  max-width: 12ch;
  overflow-wrap: anywhere;
}

.alignment-question {
  font-size: 1.2rem;
  font-weight: 700;
  max-width: 36ch;
}

.alignment-text {
  max-width: 62ch;
  color: var(--gray);
}

.alignment-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.alignment-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 600;
}

.alignment-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
}

.alignment-price-panel {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 26px;
  border-radius: 22px;
  background: var(--black);
  color: var(--yellow);
  min-width: 0;
}

.alignment-price {
  display: block;
  font-size: clamp(2rem, 2vw + 1rem, 3rem);
  font-weight: 700;
  line-height: 1;
}

.alignment-note {
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

.alignment-cta-text {
  font-size: 1rem;
  color: var(--cream);
}

.alignment-price-panel .btn {
  justify-self: start;
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

.service-card {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--line);
  display: grid;
  gap: 12px;
  min-width: 0;
}

.service-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.price {
  font-weight: 700;
  color: var(--black);
}

.features {
  padding: 70px 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
  align-items: center;
}

.feature-panel {
  background: var(--black);
  color: var(--yellow);
  padding: 28px;
  border-radius: 20px;
  min-width: 0;
}

.feature-panel .btn {
  margin-top: 18px;
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

.features ul {
  margin-top: 16px;
  display: grid;
  gap: 10px;
  padding-left: 18px;
}

.booking {
  padding: 70px 0 90px;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.field {
  display: grid;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
select,
textarea {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 0.95rem;
  font-family: inherit;
  background: #fffaf0;
}

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.form-hint {
  font-size: 0.85rem;
  color: var(--gray);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 40px 0 50px;
  background: rgba(255, 254, 246, 0.95);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  font-size: 0.95rem;
  color: var(--gray);
}

.fab-call {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(10, 10, 10, 0.2);
  z-index: 20;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: fab-rotate 6s linear infinite;
}

.fab-call::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(247, 212, 0, 0.55);
  animation: fab-pulse 2.6s ease-in-out infinite;
}

.fab-call svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.fab-call:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 22px 36px rgba(0, 0, 0, 0.3);
}

.fab-call:hover svg {
  transform: rotate(12deg);
  transition: transform 0.25s ease;
}

@keyframes fab-rotate {
  0% {
    transform: rotate(0deg);
  }
  70% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes fab-pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.2;
  }
  70% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(1120px, calc(100vw - 32px));
  }

  .nav {
    display: none;
  }

  .header-inner {
    gap: 12px;
  }

  .logo {
    max-width: 220px;
    line-height: 1.3;
  }

  .header-actions {
    gap: 10px;
  }

  .lang-switcher {
    flex-shrink: 0;
  }

  .alignment-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .alignment-price-panel {
    padding: 22px;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding: 44px 0 56px;
  }

  .info-page {
    padding: 44px 0 64px;
  }

  .info-layout {
    padding: 24px;
  }

  .info-highlight {
    padding: 20px;
  }

  .hero-grid {
    gap: 24px;
  }

  h1 {
    font-size: clamp(1.9rem, 7vw, 2.6rem);
    line-height: 1.15;
    margin: 12px 0 16px;
  }

  .eyebrow {
    letter-spacing: 0.16em;
  }

  .lead {
    font-size: 1rem;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-card {
    padding: 22px;
    gap: 14px;
  }

  .alignment-copy h2 {
    max-width: none;
    font-size: clamp(1.55rem, 7.2vw, 2.2rem);
    line-height: 1.12;
  }

  .alignment-question {
    font-size: 1.05rem;
  }

  .booking,
  .services,
  .features {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .booking-form {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .feature-panel,
  .service-card {
    padding: 22px;
  }

  .form-actions .btn,
  .feature-panel .btn,
  .alignment-price-panel .btn {
    width: 100%;
    justify-self: stretch;
  }

  .fab-call {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
    animation: none;
  }

  .fab-call::after {
    inset: -4px;
  }

}
