:root {
  color-scheme: dark;
  --bg: #050708;
  --panel: rgba(14, 18, 22, 0.84);
  --panel-strong: rgba(17, 22, 27, 0.94);
  --line: rgba(255, 255, 255, 0.1);
  --line-soft: rgba(255, 255, 255, 0.07);
  --text: #f5efe7;
  --muted: #a8b3be;
  --muted-2: #7d8a96;
  --accent: #d9a15a;
  --accent-2: #59d6c7;
  --accent-3: #f3cf87;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.46);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 14% 16%, rgba(217, 161, 90, 0.18), transparent 24%),
    radial-gradient(circle at 88% 10%, rgba(89, 214, 199, 0.16), transparent 24%),
    radial-gradient(circle at 78% 84%, rgba(243, 207, 135, 0.1), transparent 26%),
    linear-gradient(180deg, #050708 0%, #080b0d 44%, #040506 100%);
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.1;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

.orb {
  position: fixed;
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.22;
  z-index: 0;
  pointer-events: none;
}

.orb-left {
  left: -16vw;
  top: -10vw;
  background: rgba(217, 161, 90, 0.95);
}

.orb-right {
  right: -16vw;
  bottom: -14vw;
  background: rgba(89, 214, 199, 0.85);
}

.site-header,
.page,
.site-footer,
.mobile-cta {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 22px 0 10px;
}

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

.brand-mark {
  width: 54px;
  height: 54px;
  position: relative;
  display: grid;
  place-items: end center;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    linear-gradient(145deg, rgba(23, 30, 37, 0.96), rgba(10, 13, 17, 0.95));
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.brand-roof,
.brand-roof::before,
.brand-roof::after {
  position: absolute;
  width: 18px;
  height: 18px;
  border-top: 4px solid var(--text);
  border-left: 4px solid var(--text);
  transform: rotate(45deg);
}

.brand-roof {
  top: 8px;
  left: 17px;
}

.brand-roof::before,
.brand-roof::after {
  content: "";
  top: -1px;
}

.brand-roof::before {
  left: -16px;
}

.brand-roof::after {
  left: 16px;
}

.brand-pill {
  position: relative;
  bottom: 7px;
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 0.95rem;
}

.brand-copy strong,
.brand-copy small {
  display: block;
}

.brand-copy strong,
.site-nav a,
.header-cta,
.eyebrow,
.section-head h2,
.feature-card span,
.benefit-card span,
.step-card span,
.service-group h4,
.quote-summary h3,
.site-footer strong {
  font-family: Fraunces, Georgia, serif;
}

.brand-copy strong {
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.brand-copy small,
.section-head p,
.lead,
.hero-trust,
.stat span,
.contact-list span,
.contact-list a,
.feature-panel p,
.check-list,
.form-note span,
.summary-label,
.preview-box p,
.step-card p,
.site-footer p,
.footer-links a,
.service-group p,
.service-chip,
.benefit-card p,
.quote-summary p {
  color: var(--muted);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.header-cta:hover,
.header-cta:focus-visible,
.btn:hover,
.btn:focus-visible,
.mobile-cta-link:hover,
.mobile-cta-link:focus-visible {
  transform: translateY(-1px);
}

.header-cta,
.btn,
.mobile-cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.header-cta {
  background: linear-gradient(135deg, rgba(89, 214, 199, 0.95), rgba(217, 161, 90, 0.95));
  color: #091015;
  font-weight: 800;
}

.page {
  padding: 18px 0 56px;
}

.panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 20px;
  align-items: stretch;
  padding: 18px 0 28px;
}

.hero-copy {
  padding: 34px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(130deg, rgba(5, 7, 8, 0.88), rgba(8, 11, 13, 0.72)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(89, 214, 199, 0.12), transparent 24%),
    linear-gradient(90deg, rgba(5, 7, 8, 0.08), rgba(5, 7, 8, 0.28));
  pointer-events: none;
}

.hero-copy > * {
  position: relative;
  z-index: 1;
}

.hero-copy .eyebrow {
  background: rgba(5, 7, 8, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 12px;
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.74rem;
  color: var(--accent-3);
}

.hero h1,
.section-head h2 {
  margin: 0;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 6vw, 6.3rem);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

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

.lead {
  max-width: 58ch;
  margin: 18px 0 0;
  font-size: 1.08rem;
  line-height: 1.72;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

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

.btn {
  font-weight: 800;
}

.btn-primary {
  background: linear-gradient(135deg, rgba(89, 214, 199, 0.96), rgba(217, 161, 90, 0.92));
  color: #091015;
  box-shadow: 0 16px 34px rgba(89, 214, 199, 0.18);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.btn-wide {
  width: 100%;
}

.hero-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
}

.hero-trust li,
.contact-badges span,
.service-chip {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-panel {
  padding: 22px;
  overflow: hidden;
}

.profile-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
  margin-bottom: 18px;
}

.profile-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.logo-emblem {
  width: 92px;
  aspect-ratio: 1;
  position: relative;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.06), transparent 22%),
    linear-gradient(180deg, rgba(25, 31, 38, 1), rgba(10, 13, 18, 1));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.roof,
.pillar {
  position: absolute;
  background: var(--text);
}

.roof {
  width: 34px;
  height: 6px;
  top: 22px;
  left: 50%;
  transform-origin: center;
  border-radius: 999px;
}

.roof-left {
  transform: translateX(-19px) rotate(-45deg);
}

.roof-right {
  transform: translateX(-15px) rotate(45deg);
}

.pillar {
  bottom: 17px;
  width: 9px;
  border-radius: 999px;
}

.pillar-left {
  left: 24px;
  height: 30px;
}

.pillar-center {
  left: 42px;
  height: 42px;
}

.pillar-right {
  left: 60px;
  height: 24px;
}

.profile-logo strong {
  display: block;
  font-size: 1.1rem;
}

.profile-logo span {
  color: var(--muted);
  font-size: 0.94rem;
}

.status-pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(89, 214, 199, 0.12);
  border: 1px solid rgba(89, 214, 199, 0.22);
  color: #b7fff4;
  white-space: nowrap;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stat {
  padding: 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat strong {
  display: block;
  font-size: 1.1rem;
  color: var(--text);
}

.stat span {
  display: block;
  margin-top: 4px;
  font-size: 0.92rem;
}

.contact-list {
  display: grid;
  gap: 12px;
  padding: 18px;
  margin-top: 14px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-label,
.summary-label {
  display: block;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: var(--muted-2);
}

.contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.section {
  padding: 26px 0 10px;
}

.section-head {
  max-width: 820px;
  margin-bottom: 18px;
}

.section-head p:last-child {
  margin-bottom: 0;
  line-height: 1.7;
}

.benefit-grid,
.services-layout,
.quote-layout,
.steps,
.review-grid,
.faq-grid {
  display: grid;
  gap: 16px;
}

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

.benefit-card {
  padding: 22px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.benefit-card span,
.step-card span {
  display: inline-flex;
  margin-bottom: 14px;
  font-size: 0.84rem;
  letter-spacing: 0.14em;
  color: #f1d2a2;
}

.benefit-card h3,
.step-card h3,
.service-group h4,
.quote-summary h3 {
  margin: 0 0 8px;
  line-height: 1.08;
  color: var(--text);
}

.benefit-card h3 {
  font-size: 1.5rem;
}

.benefit-card p,
.step-card p,
.service-group p,
.review-card p,
.faq-item p {
  margin: 0;
  line-height: 1.7;
}

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

.review-strip strong {
  display: block;
  margin-top: 4px;
  font-family: Fraunces, Georgia, serif;
  font-size: 1.1rem;
}

.review-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.review-points span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.services-layout {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
}

.feature-panel,
.quote-form,
.quote-summary,
.step-card {
  padding: 22px;
}

.feature-panel h3 {
  margin: 0 0 8px;
  font-size: 1.45rem;
}

.service-groups {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.service-group {
  padding: 18px;
}

.service-group-head {
  margin-bottom: 14px;
}

.service-group-head p {
  margin: 4px 0 0;
}

.service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.feature-panel-alt {
  background:
    linear-gradient(180deg, rgba(89, 214, 199, 0.08), rgba(255, 255, 255, 0.03)),
    var(--panel-strong);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  line-height: 1.6;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-2);
  font-weight: 800;
}

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

.step-card {
  min-height: 100%;
}

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

.review-card {
  padding: 22px;
}

.review-card p {
  font-size: 1.03rem;
}

.review-card strong {
  display: block;
  margin-top: 18px;
  color: var(--text);
  font-family: Fraunces, Georgia, serif;
}

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

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

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px;
  font-family: Fraunces, Georgia, serif;
  font-size: 1.18rem;
  color: var(--text);
}

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

.faq-item p {
  padding: 0 22px 22px;
}

.quote-layout {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: start;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-grid label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 600;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(4, 6, 7, 0.48);
  color: var(--text);
  padding: 14px 15px;
  outline: none;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: #728497;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: rgba(89, 214, 199, 0.5);
  box-shadow: 0 0 0 4px rgba(89, 214, 199, 0.08);
}

.span-2 {
  grid-column: span 2;
}

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-top: 18px;
}

.form-note strong {
  display: block;
  margin-bottom: 6px;
  font-family: Fraunces, Georgia, serif;
}

.quote-summary {
  background:
    linear-gradient(180deg, rgba(217, 161, 90, 0.06), rgba(255, 255, 255, 0.03)),
    var(--panel-strong);
}

.quote-summary-head {
  margin-bottom: 16px;
}

.summary-box,
.preview-box {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.summary-box {
  display: grid;
  gap: 14px;
}

.summary-box strong {
  display: block;
}

.preview-box {
  margin-top: 14px;
}

.preview-box p {
  margin: 0;
  line-height: 1.7;
  white-space: pre-wrap;
}

.quick-links {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 26px 0 34px;
}

.site-footer p {
  margin: 8px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.mobile-cta {
  display: none;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(89, 214, 199, 0.7);
  outline-offset: 3px;
}

@media (max-width: 1040px) {
  .site-header,
  .hero,
  .benefit-grid,
  .services-layout,
  .quote-layout,
  .steps,
  .review-grid,
  .faq-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-header {
    justify-items: start;
  }

  .site-nav {
    justify-content: start;
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 760px) {
  .site-header,
  .page,
  .site-footer,
  .mobile-cta {
    width: min(100% - 20px, 1160px);
  }

  .hero-copy,
  .contact-panel,
  .benefit-card,
  .feature-panel,
  .quote-form,
  .quote-summary,
  .step-card,
  .service-group {
    border-radius: 28px;
  }

  .hero-copy {
    padding: 24px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.5rem, 12vw, 4.2rem);
  }

  .stat-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .span-2 {
    grid-column: auto;
  }

  .form-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav {
    gap: 10px;
  }

  .review-strip {
    flex-direction: column;
    align-items: start;
  }

  .profile-top {
    flex-direction: column;
  }

  .logo-emblem {
    width: 78px;
  }

  .mobile-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    position: sticky;
    bottom: 14px;
    padding: 0 0 14px;
    opacity: 0;
    transform: translateY(18px);
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.28s ease;
  }

  .mobile-cta.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-cta-link {
    background: linear-gradient(135deg, rgba(89, 214, 199, 0.95), rgba(217, 161, 90, 0.95));
    color: #091015;
    font-weight: 800;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
  }

  .mobile-cta-link-alt {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.1);
  }
}
