:root {
  --bg: #0f121a;
  --bg-deep: #141926;
  --surface: rgba(21, 26, 37, 0.72);
  --surface-strong: #171d2a;
  --text: #f3f2ee;
  --text-soft: #b8bdc9;
  --brand: #ff4e2f;
  --brand-strong: #db2f3c;
  --accent: #ffb13d;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.42);

  --font-body: "Outfit", "Trebuchet MS", sans-serif;
  --font-head: "Syne", "Verdana", sans-serif;
  --font-mono: "IBM Plex Mono", "Courier New", monospace;

  --radius-xs: 0.6rem;
  --radius-sm: 0.9rem;
  --radius-md: 1.3rem;
  --radius-lg: 1.8rem;

  --container: min(1160px, 92vw);
}

body[data-theme="light"] {
  --bg: #f7f4ef;
  --bg-deep: #ece6de;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: #ffffff;
  --text: #161821;
  --text-soft: #555a67;
  --line: rgba(22, 24, 33, 0.12);
  --shadow: 0 18px 50px rgba(22, 24, 33, 0.16);
}

* {
  box-sizing: border-box;
  min-width: 0;
}

html {
  font-size: clamp(15px, 0.35vw + 14px, 18px);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: radial-gradient(circle at 9% 12%, rgba(255, 78, 47, 0.2), transparent 36%),
    radial-gradient(circle at 84% 6%, rgba(255, 177, 61, 0.24), transparent 28%),
    linear-gradient(155deg, var(--bg) 0%, var(--bg-deep) 100%);
  color: var(--text);
  line-height: 1.55;
  letter-spacing: 0.015em;
  overflow-x: clip;
  text-wrap: pretty;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 999;
  background: var(--surface-strong);
  color: var(--text);
  padding: 0.65rem 1rem;
  border-radius: var(--radius-xs);
  border: 1px solid var(--line);
}

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: clamp(2.8rem, 5vw, 6rem) 0;
}

.ambient {
  position: fixed;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.45;
  pointer-events: none;
  z-index: -1;
}

.ambient-one {
  width: 20rem;
  height: 20rem;
  top: 5%;
  right: -4rem;
  background: rgba(255, 71, 87, 0.4);
}

.ambient-two {
  width: 16rem;
  height: 16rem;
  bottom: -4rem;
  left: -3rem;
  background: rgba(255, 177, 61, 0.45);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(12px);
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-head);
}

.brand-mark {
  width: clamp(2.4rem, 4vw, 3rem);
  height: clamp(2.4rem, 4vw, 3rem);
  display: block;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid color-mix(in srgb, var(--brand) 38%, var(--line));
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
}

.brand-text small {
  margin-top: 0.3rem;
  font-size: 0.72rem;
  color: var(--text-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 2.2vw, 1.5rem);
  font-weight: 500;
}

.nav a {
  color: var(--text-soft);
}

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

.nav-cta {
  background: var(--brand);
  color: #fff !important;
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  color: var(--text);
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  font: inherit;
  font-size: 0.84rem;
  cursor: pointer;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.2rem;
  background: var(--surface-strong);
}

.lang-btn {
  border: 1px solid transparent;
  background: transparent;
  color: var(--text-soft);
  border-radius: 999px;
  min-width: 2.3rem;
  padding: 0.24rem 0.55rem;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.lang-btn.is-active {
  color: #fff;
  background: linear-gradient(130deg, var(--brand), var(--brand-strong));
  border-color: transparent;
}

.lang-btn:not(.is-active):hover,
.lang-btn:not(.is-active):focus-visible {
  color: var(--text);
  border-color: color-mix(in srgb, var(--brand) 35%, var(--line));
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  border-color: color-mix(in srgb, var(--brand) 40%, var(--line));
}

.theme-icon {
  width: 0.95rem;
  height: 0.95rem;
  display: block;
}

body[data-theme="dark"] .theme-icon {
  filter: invert(1);
}

body[data-theme="dark"] .theme-icon-dark {
  display: none;
}

body[data-theme="light"] .theme-icon-light {
  display: none;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  color: var(--text);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
}

.hero-grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3.2rem);
  grid-template-columns: 1.4fr 1fr;
  align-items: stretch;
}

.eyebrow {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  color: var(--brand-strong);
  margin: 0 0 0.85rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-head);
  line-height: 1.08;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2rem, 6vw, 4rem);
  max-width: 21ch;
}

h2 {
  font-size: clamp(1.5rem, 4.2vw, 2.7rem);
}

h3 {
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
}

.hero-copy {
  margin: 1rem 0 1.5rem;
  color: var(--text-soft);
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.82rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(130deg, var(--brand), var(--brand-strong));
  color: #fff;
  box-shadow: 0 14px 30px rgba(219, 47, 60, 0.32);
}

.btn-secondary {
  background: var(--surface-strong);
  border-color: var(--line);
  color: var(--text);
}

.btn-block {
  width: 100%;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trust-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.72rem;
  font-size: 0.82rem;
  color: var(--text-soft);
  background: var(--surface);
}

.hero-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.1rem, 3vw, 1.7rem);
  background: linear-gradient(160deg, color-mix(in srgb, var(--surface) 90%, transparent), var(--surface-strong));
  box-shadow: var(--shadow);
  display: grid;
  align-content: start;
  gap: 1rem;
}

.hero-panel h2 {
  font-size: clamp(1.25rem, 3vw, 1.8rem);
}

.panel-stat {
  padding: 0.9rem;
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--surface-strong) 88%, transparent);
  border: 1px solid var(--line);
}

.panel-stat strong {
  display: block;
  font-size: clamp(1.2rem, 3.5vw, 2.2rem);
  color: var(--brand-strong);
}

.panel-stat span {
  color: var(--text-soft);
}

.text-link {
  color: var(--brand-strong);
  font-weight: 600;
}

.external-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.external-link img {
  display: block;
}

body[data-theme="dark"] .external-link img {
  filter: invert(1);
}

.section-head {
  max-width: 40rem;
  margin-bottom: 1.5rem;
}

.proof h2 {
  margin-bottom: 1.2rem;
}

.proof-grid,
.services-grid,
.pricing-grid,
.faq-grid {
  display: grid;
  gap: 1rem;
}

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

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

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

.card,
.service-card,
.price-card,
.timeline li,
.faq-grid details,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  backdrop-filter: blur(6px);
}

.card,
.service-card,
.price-card,
.timeline li,
.faq-grid details {
  padding: 1rem;
}

.card p,
.service-card p,
.price-card ul,
.timeline p,
.faq-grid p {
  margin: 0.6rem 0 0;
  color: var(--text-soft);
}

.price-card {
  position: relative;
}

.price-card .tag {
  margin: 0.5rem 0 0;
  color: var(--text-soft);
}

.price {
  margin: 1rem 0;
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  color: var(--brand-strong);
}

.price span {
  color: var(--text-soft);
  font-size: 0.95rem;
  font-family: var(--font-body);
}

.price-card ul {
  padding: 0 0 0 1rem;
  margin-bottom: 1rem;
}

.price-card li {
  margin: 0.5rem 0;
}

.price-variation-note {
  margin: 1rem 0 0;
  color: var(--text-soft);
}

.featured {
  border-color: color-mix(in srgb, var(--brand-strong) 52%, var(--line));
  transform: translateY(-0.45rem);
  box-shadow: var(--shadow);
}

.badge {
  position: absolute;
  top: -0.7rem;
  right: 0.9rem;
  margin: 0;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-family: var(--font-mono);
  background: linear-gradient(120deg, var(--brand), var(--accent));
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.faq-grid details summary {
  cursor: pointer;
  font-weight: 600;
}

.faq-grid details[open] {
  border-color: color-mix(in srgb, var(--brand) 40%, var(--line));
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.2rem;
  align-items: start;
}

.contact-form {
  padding: 1rem;
  display: grid;
  gap: 0.5rem;
}

.contact-form label {
  font-size: 0.86rem;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  color: var(--text);
  border-radius: var(--radius-xs);
  padding: 0.7rem;
  font: inherit;
}

.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--brand) 62%, white);
  outline-offset: 2px;
}

.form-note {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.84rem;
  min-height: 1.2rem;
}

#contact-submit-btn[disabled] {
  opacity: 0.78;
  cursor: wait;
}

.social-links {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  color: var(--text-soft);
  background: var(--surface);
}

.social-links a:hover,
.social-links a:focus-visible {
  color: var(--text);
  border-color: color-mix(in srgb, var(--brand) 40%, var(--line));
}

.contact-phone {
  margin: 0.9rem 0 0;
  color: var(--text-soft);
  font-family: var(--font-mono);
  font-size: 0.84rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1rem 0 2rem;
  color: var(--text-soft);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.7rem;
}

.footer-main {
  max-width: 34rem;
}

.footer-phone {
  margin: 0.35rem 0 0;
  font-family: var(--font-mono);
  font-size: 0.82rem;
}

.footer-note {
  margin: 0.45rem 0 0;
  color: var(--text-soft);
  font-size: 0.84rem;
}

.footer-external-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.footer-external-links a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.42rem 0.7rem;
  color: var(--text-soft);
  background: var(--surface);
}

.footer-external-links a:hover,
.footer-external-links a:focus-visible {
  color: var(--text);
  border-color: color-mix(in srgb, var(--brand) 40%, var(--line));
}

.footer-rights {
  margin-top: 1rem;
  font-size: 0.85rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .contact-grid,
  .proof-grid,
  .pricing-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .featured {
    transform: none;
  }

  .footer-external-links {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    top: 4rem;
    right: 4vw;
    left: 4vw;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface-strong);
    box-shadow: var(--shadow);
    display: grid;
    padding: 0.8rem;
    gap: 0.65rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: all 0.25s ease;
  }

  .nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-cta {
    text-align: center;
  }

  .lang-switch {
    width: fit-content;
  }
}

@media (max-width: 260px) {
  .hero-actions,
  .footer-grid,
  .trust-list {
    display: grid;
  }

  .btn {
    border-radius: var(--radius-xs);
  }

  .brand-text small {
    letter-spacing: 0.03em;
  }
}
