@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap');

:root {
  --bg: #07131a;
  --bg-deep: #051017;
  --bg-soft: #0d232d;
  --panel: rgba(12, 33, 42, 0.82);
  --panel-strong: #14333f;
  --panel-alt: rgba(17, 41, 51, 0.92);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 138, 61, 0.24);
  --text: #edf4f6;
  --muted: #9cb0b8;
  --brand: #ff8a3d;
  --brand-strong: #ef6f15;
  --accent: #5ed8c9;
  --accent-deep: #0b6a66;
  --success: #74d94c;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: min(1180px, calc(100vw - 32px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 18%, rgba(94, 216, 201, 0.12), transparent 30%),
    radial-gradient(circle at 88% 10%, rgba(255, 138, 61, 0.16), transparent 34%),
    radial-gradient(circle at 50% 100%, rgba(94, 216, 201, 0.08), transparent 36%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  min-height: 100vh;
  line-height: 1.6;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.28;
  pointer-events: none;
  z-index: -1;
}

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

img {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-shell {
  overflow: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(5, 16, 23, 0.78);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--bg-deep);
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand) 0%, #ffc35d 100%);
  box-shadow: 0 12px 24px rgba(255, 138, 61, 0.28);
}

.brand-text strong {
  color: var(--brand);
}

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

.site-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current='page'] {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  align-items: center;
  justify-content: center;
}

.mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  position: relative;
}

.mobile-toggle span::before,
.mobile-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.mobile-toggle span::before {
  top: -6px;
}

.mobile-toggle span::after {
  top: 6px;
}

.mobile-menu {
  display: none;
  width: var(--container);
  margin: 0 auto 14px;
  padding: 14px;
  background: rgba(10, 25, 32, 0.95);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.mobile-menu.open {
  display: grid;
  gap: 10px;
}

.mobile-menu a {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.02);
}

.mobile-menu a:last-child {
  color: var(--text);
}

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

.hero {
  padding: 64px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.hero-panel {
  background: linear-gradient(180deg, rgba(15, 36, 46, 0.88) 0%, rgba(9, 24, 31, 0.96) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.hero-copy::before {
  content: '';
  position: absolute;
  inset: auto auto -100px -60px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(94, 216, 201, 0.16) 0%, transparent 66%);
  pointer-events: none;
}

.hero-panel {
  padding: 28px;
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 138, 61, 0.34);
  background: rgba(255, 138, 61, 0.12);
  color: #ffd7bc;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 8px rgba(255, 138, 61, 0.08);
}

.hero h1,
.page-title,
.section h2,
.banner h2,
.thank-you-card h1 {
  margin: 18px 0 14px;
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

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

.hero h1 span,
.section h2 span,
.banner h2 span,
.page-title span {
  color: var(--brand);
}

.hero p {
  margin: 0;
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions,
.stack-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn,
.btn-ghost,
.btn-alt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 16px;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn {
  background: linear-gradient(135deg, var(--brand) 0%, #ffb15c 100%);
  color: var(--bg-deep);
  box-shadow: 0 14px 28px rgba(255, 138, 61, 0.2);
}

.btn:hover,
.btn-ghost:hover,
.btn-alt:hover {
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.btn-alt {
  background: rgba(94, 216, 201, 0.12);
  border: 1px solid rgba(94, 216, 201, 0.3);
  color: #d7fff9;
}

.hero-metrics {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.metric {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.metric strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.1rem;
  color: var(--text);
}

.metric span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-panel h3,
.card h3,
.mini-card h3,
.contact-block h3,
.faq-item h3 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.03em;
}

.panel-tag {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(94, 216, 201, 0.12);
  color: #baf7f1;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.signal-list,
.service-points,
.simple-list,
.mini-list,
.footer-links,
.crumbs,
.detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.signal-list {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.signal-list li,
.service-points li,
.mini-list li,
.detail-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--muted);
}

.signal-list li::before,
.service-points li::before,
.mini-list li::before,
.detail-list li::before {
  content: '';
  width: 10px;
  height: 10px;
  margin-top: 0.46rem;
  border-radius: 50%;
  flex: none;
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
}

.panel-grid {
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.mini-card {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.mini-card p,
.card p,
.contact-block p,
.section-copy,
.subtle,
.footer-note {
  color: var(--muted);
}

.brand-strip {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.brand-chip,
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
}

.section {
  padding: 34px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.section-head h2,
.page-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-head p,
.page-intro {
  max-width: 60ch;
  margin: 0;
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.card,
.info-card,
.contact-block,
.faq-item,
.cta-strip {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(13, 34, 42, 0.92) 0%, rgba(8, 20, 26, 0.96) 100%);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.card {
  position: relative;
  overflow: hidden;
}

.card::after {
  content: '';
  position: absolute;
  inset: auto -10% -60% auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 138, 61, 0.12), transparent 70%);
  pointer-events: none;
}

.card-icon,
.step-number {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--bg-deep);
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent) 0%, #d1fff7 100%);
  margin-bottom: 16px;
}

.card h3,
.info-card h3,
.contact-block h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.service-points {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.banner {
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(135deg, rgba(255, 138, 61, 0.16) 0%, rgba(94, 216, 201, 0.1) 100%),
    rgba(10, 24, 30, 0.92);
  box-shadow: var(--shadow);
}

.banner p {
  max-width: 65ch;
  color: #d3e0e6;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 20px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.step {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.step p {
  margin-bottom: 0;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.area-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(11, 31, 39, 0.92) 0%, rgba(7, 17, 23, 0.96) 100%);
}

.area-card h3 {
  margin: 0 0 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
}

.area-card p {
  color: var(--muted);
  margin-top: 0;
}

.area-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: #ffd3b8;
  font-weight: 700;
}

.breadcrumbs {
  padding-top: 28px;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.crumbs li:not(:last-child)::after {
  content: '/';
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.32);
}

.page-hero {
  padding: 28px 0 16px;
}

.page-frame,
.lead-box {
  background: linear-gradient(180deg, rgba(12, 33, 42, 0.92) 0%, rgba(6, 18, 23, 0.97) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.page-frame {
  padding: 34px;
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 360px);
  gap: 22px;
}

.page-intro {
  margin-bottom: 26px;
}

.content-stack {
  display: grid;
  gap: 18px;
}

.detail-box {
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.detail-box h2,
.detail-box h3 {
  margin-top: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
}

.detail-box p:last-child {
  margin-bottom: 0;
}

.lead-box {
  padding: 24px;
  align-self: start;
  position: sticky;
  top: 92px;
}

.lead-box h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.lead-box p {
  margin-top: 0;
  color: var(--muted);
}

.lead-form {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #c7d5db;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 14px 15px;
  outline: none;
  resize: vertical;
}

.field textarea {
  min-height: 120px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(255, 138, 61, 0.62);
  box-shadow: 0 0 0 4px rgba(255, 138, 61, 0.12);
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.helper {
  font-size: 0.88rem;
  color: var(--muted);
}

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

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  border: 0;
  background: none;
  color: var(--text);
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
}

.faq-trigger span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.12rem;
}

.faq-icon {
  width: 32px;
  height: 32px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--brand);
  transition: transform 0.2s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer-inner {
  padding: 0 24px 22px;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.contact-block strong {
  color: var(--text);
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer {
  padding: 34px 0 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.8fr));
  gap: 20px;
}

.footer-brand {
  max-width: 48ch;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--text);
}

.footer-bottom {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.sticky-bar {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  display: grid;
  gap: 10px;
}

.sticky-bar a {
  min-width: 56px;
  min-height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.sticky-call {
  padding: 0 18px;
  width: auto;
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand) 0%, #ffb15c 100%);
  color: var(--bg-deep);
}

.sticky-wa {
  background: linear-gradient(135deg, #29d063 0%, #85f474 100%);
  color: #03280b;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.thank-you-wrap {
  min-height: calc(100vh - 120px);
  display: grid;
  place-items: center;
  padding: 30px 0 60px;
}

.thank-you-card {
  width: min(740px, calc(100vw - 32px));
  padding: 42px;
  border-radius: 32px;
  text-align: center;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(12, 33, 42, 0.92) 0%, rgba(7, 17, 23, 0.97) 100%);
  box-shadow: var(--shadow);
}

.thank-you-card p {
  color: var(--muted);
  max-width: 50ch;
  margin: 0 auto 24px;
}

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

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

@media (max-width: 1100px) {
  .cards,
  .area-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .contact-grid,
  .footer-grid,
  .split,
  .page-grid {
    grid-template-columns: 1fr;
  }

  .lead-box {
    position: static;
  }
}

@media (max-width: 860px) {
  .site-nav,
  .header-actions .desktop-only {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }

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

  .hero-copy,
  .hero-panel,
  .page-frame,
  .thank-you-card {
    padding: 28px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.3rem, 13vw, 3.8rem);
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .cta-strip,
  .footer-bottom,
  .section-head,
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .cards,
  .cards.two-up,
  .area-grid,
  .steps,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero,
  .section {
    padding: 26px 0;
  }

  .btn,
  .btn-ghost,
  .btn-alt {
    width: 100%;
  }

  .hero-actions,
  .stack-actions {
    flex-direction: column;
  }

  .sticky-bar {
    right: 12px;
    bottom: 12px;
  }
}
