:root {
  --bg: #07111f;
  --bg-soft: #0d1a2b;
  --panel: rgba(10, 23, 39, 0.72);
  --panel-border: rgba(255, 255, 255, 0.12);
  --text: #f8fbff;
  --muted: #e1e8f0;
  --primary: #d6a043;
  --primary-deep: #8e5b0c;
  --accent: #f6d27c;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --radius-sm: 16px;
  --max-width: 1180px;
  --focus: #fff2b8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(214, 160, 67, 0.18), transparent 32%),
    radial-gradient(circle at top right, rgba(246, 210, 124, 0.18), transparent 28%),
    linear-gradient(180deg, #05070c 0%, #0a0e15 42%, #111722 100%);
  min-height: 100vh;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex='-1']:focus {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

h1,
h2,
h3,
strong,
summary {
  color: var(--text);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 999;
  padding: 12px 16px;
  border-radius: 12px;
  background: #ffffff;
  color: #111722;
  font-weight: 700;
}

.skip-link:focus {
  top: 16px;
}

.site-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding-bottom: 72px;
}

.section {
  padding: 56px 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(5, 7, 12, 0.96), rgba(5, 7, 12, 0.72));
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

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

.brand-logo {
  width: 66px;
  height: 66px;
  object-fit: contain;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.brand-name,
.brand-subtitle {
  display: block;
}

.brand-name {
  font-size: 0.98rem;
  font-weight: 700;
}

.brand-subtitle {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.85rem;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.language-button {
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  font: inherit;
  font-weight: 700;
  color: var(--text);
  background: transparent;
  cursor: pointer;
}

.language-button.is-active {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #1b1203;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav a {
  color: var(--muted);
  font-weight: 600;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
  min-height: calc(100vh - 120px);
}

.eyebrow {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.82rem;
}

.hero h1,
.section-heading h2,
.split-section h2,
.about-card h2,
.contact-card h2 {
  margin: 10px 0 16px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  max-width: 12ch;
}

.hero-text {
  max-width: 60ch;
  font-size: 1.08rem;
}

.hero-actions,
.review-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin: 28px 0 24px;
}

.review-actions {
  margin-bottom: 26px;
}

.contact-actions {
  margin-top: 8px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  color: #1b1203;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 20px 40px rgba(214, 160, 67, 0.22);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

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

.hero-highlights li,
.stat-card,
.service-card,
.testimonial-card,
.mini-panel,
.faq-list details {
  border: 1px solid var(--panel-border);
  background: var(--panel);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.hero-highlights li {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--text);
}

.hero-card,
.about-card,
.contact-card {
  position: relative;
}

.glass-card,
.about-card,
.contact-card {
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--panel-border);
  background: linear-gradient(180deg, rgba(24, 18, 10, 0.42), rgba(12, 16, 24, 0.96));
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-info-card {
  text-align: center;
}

.hero-logo {
  width: min(100%, 280px);
  height: auto;
  display: block;
  margin: 0 auto 18px;
  border-radius: 22px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
}

.card-label {
  margin: 0 0 8px;
  color: var(--accent);
  font-weight: 700;
}

.contact-mini-list p,
.contact-grid p,
.accessibility-note {
  margin: 8px 0 0;
}

.stats-strip,
.service-grid,
.testimonial-grid,
.contact-grid,
.accessibility-grid {
  display: grid;
  gap: 18px;
}

.stats-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card,
.service-card,
.testimonial-card,
.mini-panel {
  padding: 22px;
  border-radius: 20px;
}

.stat-card span,
.mini-panel span {
  display: block;
  color: var(--text);
  margin-top: 8px;
}

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

.section-heading-tight {
  margin-bottom: 22px;
}

.section-heading h2,
.split-section h2,
.about-card h2,
.contact-card h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

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

.service-card h3,
.feature-list h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.feature-list {
  display: grid;
  gap: 18px;
}

.feature-list article {
  padding: 0 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.about-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.about-points {
  display: grid;
  gap: 16px;
}

.testimonial-grid,
.accessibility-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
  margin: 0;
}

.testimonial-card footer {
  margin-top: 18px;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 20px 22px;
  border-radius: 18px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details p {
  margin-bottom: 0;
}

.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 24px 0;
  font-style: normal;
}

.contact-button {
  width: fit-content;
}

.accessibility-card {
  display: grid;
  gap: 16px;
}

.accessibility-note {
  color: var(--text);
}

@media (max-width: 1080px) {
  .topbar {
    flex-wrap: wrap;
  }

  .nav {
    width: 100%;
    justify-content: flex-end;
  }
}

@media (max-width: 960px) {
  .hero,
  .split-section,
  .about-card,
  .service-grid,
  .testimonial-grid,
  .stats-strip,
  .accessibility-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 24px;
  }

  .topbar-actions {
    margin-left: auto;
  }

  .nav {
    position: absolute;
    top: 106px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 22px;
    background: rgba(7, 9, 14, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  .nav.is-open {
    display: flex;
  }

  .menu-toggle {
    display: inline-block;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .section {
    padding: 42px 0;
  }

  .brand {
    align-items: flex-start;
  }

  .brand-logo {
    width: 54px;
    height: 54px;
  }

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

  .topbar-actions {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .glass-card,
  .about-card,
  .contact-card,
  .service-card,
  .stat-card,
  .testimonial-card,
  .mini-panel,
  .faq-list details {
    padding: 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
