:root {
  --black: #050707;
  --ink: #071111;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --border: rgba(255, 255, 255, 0.14);
  --teal-deep: #007d73;
  --teal: #00a99d;
  --gold: #f2b705;
  --white: #f5f7f7;
  --muted: #b8c4c2;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(0, 169, 157, 0.2), transparent 34rem),
    radial-gradient(circle at 88% 18%, rgba(242, 183, 5, 0.12), transparent 27rem),
    linear-gradient(145deg, #050707 0%, #071111 55%, #031615 100%);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  min-height: 100vh;
  padding-bottom: 78px;
}

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

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

a:hover {
  color: var(--gold);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 20;
  padding: 0.7rem 1rem;
  background: var(--gold);
  color: var(--black);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - 32px, var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(5, 7, 7, 0.82);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 86px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 156px;
}

.brand img {
  width: 156px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  color: var(--muted);
  font-size: 0.94rem;
}

.site-nav a {
  padding: 0.6rem 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.phone-link {
  color: var(--white);
  font-weight: 800;
  white-space: nowrap;
}

.header-cta {
  min-height: 42px;
  padding: 0.72rem 0.95rem;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.05rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--gold), #ffd866);
  color: #161100;
  box-shadow: 0 16px 35px rgba(242, 183, 5, 0.2);
}

.button-primary:hover {
  color: #161100;
}

.button-secondary {
  background: rgba(0, 169, 157, 0.18);
  border-color: rgba(0, 169, 157, 0.48);
  color: var(--white);
}

.button-outline {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border);
  color: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 6.5rem) 0 clamp(2.4rem, 6vw, 5rem);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  inset: 0;
  background:
    linear-gradient(105deg, rgba(0, 169, 157, 0.14), transparent 44%),
    linear-gradient(292deg, transparent 44%, rgba(242, 183, 5, 0.08));
}

.hero::after {
  width: 72vw;
  max-width: 880px;
  height: 1px;
  right: -12vw;
  top: 24%;
  background: linear-gradient(90deg, transparent, var(--gold), var(--teal), transparent);
  box-shadow: 0 0 32px rgba(0, 169, 157, 0.55);
  transform: rotate(-7deg);
}

.hero-grid,
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(310px, 0.94fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-compact {
  padding-bottom: clamp(2.3rem, 5vw, 4rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--teal);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 1rem;
  font-size: clamp(2.75rem, 7vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.25;
  letter-spacing: 0;
  margin-bottom: 0.55rem;
}

p {
  color: var(--muted);
}

.hero-lede {
  max-width: 690px;
  color: #e4eeee;
  font-size: clamp(1.05rem, 2.5vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.6rem 0 1rem;
}

.micro-trust {
  max-width: 600px;
  margin: 0;
  color: #d5dddc;
  font-size: 0.95rem;
}

.glass-panel,
.glass-card,
.service-card,
.step-card,
details {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-panel {
  padding: clamp(1.25rem, 4vw, 2rem);
  min-height: 430px;
}

.hero-panel h2 {
  font-size: clamp(1.65rem, 4vw, 2.6rem);
}

.status-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.4rem;
  color: var(--white);
  font-weight: 800;
}

.pulse-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(242, 183, 5, 0.14), 0 0 22px rgba(242, 183, 5, 0.78);
}

.fault-list,
.check-list {
  list-style: none;
  padding: 0;
  margin: 1.3rem 0;
}

.fault-list li,
.check-list li {
  position: relative;
  padding: 0.75rem 0 0.75rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #e7f3f1;
}

.fault-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.1rem;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 16px rgba(0, 169, 157, 0.7);
}

.text-link {
  color: var(--gold);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(242, 183, 5, 0.35);
  text-underline-offset: 0.35rem;
}

.trust-strip {
  border-block: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
}

.trust-grid div {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  padding: 1rem;
  color: #e7f3f1;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 800;
}

.section {
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.section-muted {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    rgba(0, 125, 115, 0.035);
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.section-heading {
  max-width: 780px;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.card-grid,
.service-grid,
.steps-grid,
.case-grid,
.area-grid {
  display: grid;
  gap: 1rem;
}

.symptoms-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.symptoms-grid > .glass-card {
  display: flex;
  flex-direction: column;
  min-height: 256px;
  height: 100%;
}

.symptoms-grid > .glass-card p {
  flex: 1;
}

.symptoms-grid > .glass-card a {
  margin-top: auto;
}

.glass-card {
  padding: 1.15rem;
  min-height: 190px;
}

.glass-card p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.glass-card a {
  color: var(--gold);
  font-weight: 850;
}

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

.service-card {
  min-height: 220px;
  padding: 1.15rem;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(242, 183, 5, 0.45);
  color: var(--white);
}

.service-card span,
.step-card span,
.tag {
  display: inline-flex;
  margin-bottom: 0.9rem;
  color: var(--gold);
  font-weight: 900;
}

.feature-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.feature-list div {
  padding: 1rem;
  border-left: 3px solid var(--teal);
  background: rgba(255, 255, 255, 0.045);
  border-radius: var(--radius);
}

.feature-list strong,
.feature-list span {
  display: block;
}

.feature-list span {
  color: var(--muted);
}

label {
  display: block;
  margin: 0.8rem 0 0.35rem;
  color: #eef8f6;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  min-height: 48px;
  padding: 0.9rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.28);
  color: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(245, 247, 247, 0.48);
}

.form-note {
  margin: 0.75rem 0 0;
  font-size: 0.88rem;
}

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

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

.step-card {
  min-height: 190px;
  padding: 1.15rem;
}

.inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 1rem;
}

.inline-cta p {
  margin: 0;
  color: var(--white);
  font-weight: 800;
}

.inline-cta a:not(.button) {
  color: var(--gold);
}

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

.area-grid a {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: #e7f3f1;
  font-weight: 800;
}

.area-grid a:hover {
  border-color: rgba(242, 183, 5, 0.45);
  color: var(--gold);
}

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

blockquote {
  margin: 0;
}

cite {
  color: var(--gold);
  font-style: normal;
  font-weight: 800;
}

.faq-wrap {
  max-width: 860px;
}

details {
  padding: 1rem 1.1rem;
  margin-bottom: 0.85rem;
}

summary {
  cursor: pointer;
  color: #eef8f6;
  font-weight: 850;
}

details p {
  margin: 0.75rem 0 0;
}

.action-panel {
  padding: clamp(1.25rem, 4vw, 2rem);
}

.final-cta {
  padding: clamp(2.5rem, 6vw, 4.6rem) 0;
  background:
    linear-gradient(115deg, rgba(0, 169, 157, 0.28), rgba(242, 183, 5, 0.12)),
    rgba(255, 255, 255, 0.04);
  border-block: 1px solid var(--border);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.final-cta h2 {
  margin-bottom: 0.5rem;
}

.final-cta p {
  margin: 0;
}

.site-footer {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  background: rgba(0, 0, 0, 0.34);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 1.05fr 0.7fr;
  gap: 1.4rem;
}

.site-footer img {
  width: 180px;
  margin-bottom: 1rem;
}

.site-footer h2 {
  font-size: 1rem;
  margin-bottom: 0.8rem;
}

.site-footer a {
  display: block;
  color: var(--muted);
  margin-bottom: 0.45rem;
}

.site-footer a:hover {
  color: var(--gold);
}

address {
  color: var(--muted);
  font-style: normal;
}

.mobile-call-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  padding: 0.55rem;
  background: rgba(5, 7, 7, 0.9);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(18px);
}

.mobile-call-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: var(--radius);
  font-weight: 900;
  text-align: center;
}

.mobile-call-bar a:first-child {
  background: var(--gold);
  color: #151000;
}

@media (min-width: 940px) {
  body {
    padding-bottom: 0;
  }

  .mobile-call-bar {
    display: none;
  }
}

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

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

@media (max-width: 900px) {
  .header-inner {
    grid-template-columns: auto 1fr;
    min-height: auto;
    padding: 0.75rem 0;
  }

  .brand,
  .brand img {
    width: 124px;
  }

  .site-nav {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.7rem;
    font-size: 0.86rem;
  }

  .header-actions {
    grid-column: 1 / -1;
    justify-content: space-between;
  }

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

  .hero {
    padding-top: 2.2rem;
  }

  .hero-panel {
    min-height: 0;
  }

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

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

  .final-cta-inner,
  .inline-cta {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 24px, var(--max-width));
  }

  .site-nav {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr;
  }

  .header-actions {
    display: none;
  }

  .brand,
  .brand img {
    width: 136px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-grid,
  .symptoms-grid,
  .service-grid,
  .steps-grid,
  .six-steps,
  .case-grid,
  .area-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid div {
    min-height: 58px;
  }

  .glass-card,
  .service-card,
  .step-card,
  .symptoms-grid > .glass-card {
    min-height: auto;
  }
}
