:root {
  --bg: #0f1720;
  --bg-soft: #16212d;
  --surface: #ffffff;
  --surface-soft: #f3f6f9;
  --text: #13202c;
  --muted: #5a6a78;
  --primary: #f59e0b;
  --primary-dark: #d97706;
  --line: #dce4ea;
  --success: #1d8f5f;
  --shadow: 0 18px 45px rgba(8, 20, 32, 0.12);
  --radius: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: var(--surface-soft);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 0 0;
  background:
    linear-gradient(180deg, rgba(7, 12, 18, 0.78) 0%, rgba(7, 12, 18, 0.34) 100%);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.topbar-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 98px;
  padding: 14px 22px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(20, 30, 42, 0.94), rgba(13, 20, 30, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow:
    0 22px 48px rgba(5, 12, 19, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
  min-width: 0;
  flex: 1 1 auto;
}

.brand-text {
  min-width: 0;
}

.brand strong {
  display: block;
  color: #FF6A00;
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.05;
}

.brand small {
  display: block;
  color: #ffffff;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
  margin-top: 6px;
}

.brand-logo {
  width: 78px;
  height: 78px;
  object-fit: contain;
  display: block;
  border-radius: 22px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  box-shadow:
    0 16px 30px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  flex-shrink: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.nav a {
  color: #edf2f7;
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav a:hover,
.nav a.active {
  background: rgba(255, 106, 0, 0.18);
  color: #fff;
  transform: translateY(-1px);
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 6px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lang-switch a {
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.lang-switch a:hover,
.lang-switch a.active {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  border-radius: 14px;
  padding: 0;
  font-size: 1.1rem;
}

.desktop-cta {
  padding-inline: 22px;
  box-shadow: 0 14px 28px rgba(255, 106, 0, 0.22);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #fbbf24);
  color: #111827;
}

.btn-secondary {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
}

.btn-light {
  background: #fff;
  color: var(--bg);
}

.hero,
.page-hero {
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.2), transparent 0 35%),
    linear-gradient(135deg, #0f1720, #182635 55%, #203142);
  color: #fff;
}

.hero {
  padding: 44px 0 64px;
}

.page-hero {
  padding: 62px 0 36px;
}

.page-hero.compact h1 {
  margin-bottom: 10px;
}

.hero-grid,
.split-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.contact-grid {
  align-items: stretch;
}

.hero h1,
.page-hero h1,
.section h2 {
  line-height: 1.15;
}

.hero h1 {
  font-size: clamp(2.2rem, 3vw, 3.5rem);
  margin: 0 0 14px;
}

.lead {
  font-size: 1.05rem;
  color: #d8e1e8;
  max-width: 680px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  font-weight: 800;
  font-size: 0.78rem;
  margin-bottom: 10px;
}

.hero-actions,
.center-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.trust-list,
.check-list,
.process-list,
.contact-list,
.footer ul {
  padding-left: 18px;
}

.hero-card,
.card,
.info-panel {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  color: var(--text);
  padding: 26px;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.hero-card-badge {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.14);
  color: #a45d00;
  font-weight: 700;
  margin-bottom: 12px;
}

.hero-card-logo {
  display: flex;
  justify-content: center;
  margin: 4px 0 18px;
}

.hero-card-logo img {
  width: min(100%, 248px);
  height: auto;
  display: block;
  object-fit: contain;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.stats-grid div {
  background: var(--surface-soft);
  border-radius: 12px;
  padding: 14px;
  text-align: center;
}

.stats-grid strong {
  display: block;
  font-size: 1.1rem;
}

.section {
  padding: 64px 0;
}

.section-dark {
  background: #0f1720;
  color: #fff;
}

.section-dark .info-panel,
.section-dark .card {
  color: var(--text);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.card-grid {
  display: grid;
  gap: 20px;
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.card-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.card,
.info-panel {
  padding: 24px;
  border: 1px solid var(--line);
}

.contact-grid .card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-grid .contact-list {
  margin: 0;
}

.contact-logo-showcase {
  margin-top: 22px;
  padding: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top center, rgba(255, 179, 71, 0.22), transparent 0 52%),
    linear-gradient(180deg, rgba(18, 27, 39, 0.04), rgba(18, 27, 39, 0.02));
  border: 1px solid rgba(245, 158, 11, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 18px 30px rgba(13, 23, 33, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 230px;
}

.contact-logo-showcase img {
  width: min(100%, 280px);
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 20px 24px rgba(16, 24, 40, 0.2));
}

.contact-grid .quote-form {
  flex: 1 1 auto;
}

.card-large h2 {
  margin-top: 0;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.showcase-grid.large {
  grid-template-columns: repeat(3, 1fr);
}

.showcase-card {
  min-height: 180px;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  color: #fff;
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.6)),
    linear-gradient(135deg, #34495e, #111827 60%, #f59e0b);
  box-shadow: var(--shadow);
}

.showcase-card span {
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  background: #fff;
  border-radius: 14px;
  padding: 16px 18px;
  border: 1px solid var(--line);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.cta-band {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #111827;
  padding: 34px 0;
}

.cta-band-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.quote-form {
  display: grid;
  gap: 14px;
}

.quote-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
}

.form-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.mobile-call-cta {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 70;
  display: none;
  align-items: center;
  justify-content: center;
  min-width: min(100% - 32px, 320px);
  padding: 14px 22px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 126, 28, 0.98), rgba(255, 190, 42, 0.96));
  color: #111827;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow:
    0 18px 34px rgba(255, 106, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transform: translate(-50%, 20px) scale(0.94);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.mobile-call-cta::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(17, 24, 39, 0.82);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}

.mobile-call-cta-label {
  white-space: nowrap;
}

.mobile-call-cta.is-visible {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
  pointer-events: auto;
}

.footer {
  background: #0d141d;
  color: #dbe5ee;
  padding: 36px 0 18px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 20px;
}

.footer h3,
.footer h4 {
  color: #fff;
}

.footer-bottom {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
}

.desktop-cta {
  white-space: nowrap;
}

@media (max-width: 900px) {
  .hero-grid,
  .split-grid,
  .contact-grid,
  .card-grid.three,
  .card-grid.two,
  .showcase-grid,
  .showcase-grid.large,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .topbar-inner {
    flex-wrap: wrap;
    justify-content: space-between;
    min-height: 0;
    padding: 12px 16px;
    row-gap: 10px;
    border-radius: 22px;
  }

  .brand {
    flex: 1 1 calc(100% - 180px);
    max-width: calc(100% - 180px);
    gap: 12px;
  }

  .brand-logo {
    width: 58px;
    height: 58px;
    border-radius: 16px;
  }

  .brand strong {
    font-size: 0.98rem;
  }

  .brand small {
    font-size: 0.64rem;
  }

  .nav-toggle {
    display: inline-flex;
    order: 2;
    margin-left: 0;
  }

  .desktop-cta {
    display: none;
  }

  .mobile-call-cta {
    display: inline-flex;
    gap: 12px;
  }

  .hero-card-logo img {
    width: min(100%, 220px);
  }

  .lang-switch {
    order: 3;
    margin-left: auto;
    width: auto;
    justify-content: flex-end;
    background: transparent;
    border: none;
    padding: 0;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 18px;
    background: rgba(12, 19, 29, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 34px rgba(4, 10, 16, 0.34);
  }

  .nav.is-open {
    display: flex;
  }

  .cta-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 34px;
  }

  .topbar-inner {
    gap: 8px;
    padding-inline: 14px;
  }

  .brand {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .brand-logo {
    width: 52px;
    height: 52px;
    border-radius: 15px;
  }

  .brand strong {
    font-size: 0.84rem;
    line-height: 1.08;
  }

  .brand small {
    display: none;
  }

  .mobile-call-cta {
    min-width: calc(100% - 24px);
    bottom: 14px;
    padding: 13px 18px;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
  }

  .contact-logo-showcase {
    min-height: 0;
    padding: 16px;
  }

  .contact-logo-showcase img {
    width: min(100%, 230px);
  }

  .hero-card-logo {
    margin-bottom: 16px;
  }

  .hero-card-logo img {
    width: min(100%, 192px);
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }
}
