:root {
  --font-heading: Georgia, "Times New Roman", serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --glass: rgba(255, 255, 255, 0.72);
  --glass-dark: rgba(23, 61, 142, 0.28);
  --line: rgba(255, 255, 255, 0.42);
  --shadow: 0 24px 80px rgba(17, 24, 39, 0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(207, 25, 25, 0.16), transparent 28rem),
    radial-gradient(circle at 88% 18%, rgba(23, 61, 142, 0.16), transparent 30rem),
    linear-gradient(180deg, #fff8f9 0%, #f8fbff 44%, #ffffff 100%);
  font-size: 16px;
  line-height: 1.7;
}

h1,
h2,
h3,
h4 {
  letter-spacing: -0.035em;
  line-height: 1.05;
}

h1 {
  font-size: clamp(35px, 9vw, 68px);
}

h2 {
  font-size: clamp(28px, 6.2vw, 46px);
}

h3,
h4 {
  font-size: clamp(20px, 4vw, 26px);
}

p,
li,
td,
th,
a,
button,
input,
textarea {
  font-size: 16px;
}

.site-shell {
  position: relative;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  inset: auto auto 8% -10%;
  width: 34rem;
  height: 34rem;
  border-radius: 999px;
  background: rgba(86, 29, 41, 0.12);
  filter: blur(8px);
  transform: translateY(calc(var(--scroll-shift, 0px) * 0.12));
  pointer-events: none;
  z-index: -1;
}

.site-shell::after {
  inset: 18% -12% auto auto;
  background: rgba(23, 61, 142, 0.16);
  transform: translateY(calc(var(--scroll-shift, 0px) * -0.08));
}

.glass-panel {
  background: var(--glass);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.glass-deep {
  background: linear-gradient(135deg, rgba(86, 29, 41, 0.93), rgba(23, 61, 142, 0.92));
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 30px 90px rgba(23, 61, 142, 0.28);
}

.glass-deep h1,
.glass-deep h2,
.glass-deep h3,
.glass-deep p,
.glass-deep li,
.glass-deep span {
  color: #ffffff;
}

.section-pad {
  padding: 4.5rem 1rem;
}

.container-wide {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(86, 29, 41, 0.28);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: #111827;
  line-height: 1;
}

.nav-link {
  color: #1f2937;
  font-size: 18px;
  font-weight: 700;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--accent);
}

.desktop-header-phone {
  display: none !important;
}

.mobile-menu-toggle {
  display: inline-flex !important;
}

.mobile-menu {
  display: none;
}

.mobile-menu.is-open {
  display: block;
}

.btn-primary,
.btn-secondary,
.btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  min-height: 52px;
  padding: 0.85rem 1.35rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(207, 25, 25, 0.32);
}

.btn-primary:hover {
  color: #ffffff;
  background: #a81414;
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(207, 25, 25, 0.42);
}

.btn-secondary {
  background: #ffffff;
  color: #111827;
  border: 1px solid rgba(17, 24, 39, 0.12);
}

.btn-secondary:hover,
.btn-light:hover {
  color: #111827;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(17, 24, 39, 0.14);
}

.btn-light {
  background: rgba(255, 255, 255, 0.9);
  color: #111827;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.hero-media,
.hero-copy {
  min-height: 100%;
}

.hero-image-frame {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 2rem;
  background: #111827;
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-frame::before,
.hero-image-frame::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(10px);
}

.hero-image-frame::before {
  width: 44%;
  height: 44%;
  right: -12%;
  top: -8%;
}

.hero-image-frame::after {
  width: 28%;
  height: 28%;
  left: 8%;
  bottom: 8%;
}

.stars {
  color: #ffcf33;
  font-size: 26px;
  letter-spacing: 0.08em;
  line-height: 1;
}

.trust-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
}

.trust-icons img {
  width: auto;
  height: 48px;
  max-width: 92px;
  object-fit: contain;
  border-radius: 14px;
  padding: 0.35rem;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.58);
}

.badge-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.badge-line span {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.42rem 0.72rem;
  font-size: 14px;
  color: #ffffff;
}

.two-column-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}

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

.info-media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.16);
}

.service-card,
.reason-card,
.issue-card,
.faq-card,
.review-card {
  background: #ffffff;
  color: #374151;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 1.35rem;
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.08);
}

.service-card h3,
.reason-card h3,
.issue-card h3,
.faq-card h3,
.review-card h3 {
  color: #111827;
}

.icon-bubble {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(86, 29, 41, 0.12), rgba(23, 61, 142, 0.12));
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.data-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 0.75rem;
}

.data-table th {
  color: #111827;
  text-align: left;
  padding: 0.65rem 1rem;
}

.data-table td {
  background: #ffffff;
  color: #374151;
  padding: 1rem;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.data-table td:first-child {
  border-left: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 1rem 0 0 1rem;
  color: #111827;
  font-weight: 800;
}

.data-table td:last-child {
  border-right: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 0 1rem 1rem 0;
}

.review-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.42s ease;
  will-change: transform;
}

.review-slide {
  flex: 0 0 100%;
}

.review-card {
  min-height: 100%;
  padding: 1.3rem;
}

.review-card .stars {
  color: #ffb800;
  font-size: 18px;
}

.process-step {
  position: relative;
  padding-left: 4rem;
}

.process-step strong:first-child {
  position: absolute;
  left: 0;
  top: 0;
  width: 2.8rem;
  height: 2.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: var(--secondary);
}

.cta-band {
  background:
    linear-gradient(135deg, rgba(86, 29, 41, 0.95), rgba(23, 61, 142, 0.95)),
    radial-gradient(circle at top right, rgba(207, 25, 25, 0.4), transparent 24rem);
}

.footer {
  background: #0d1424;
  color: #d1d5db;
}

.footer .logo-text,
.footer h3,
.footer h4,
.footer a {
  color: #ffffff;
}

.footer p,
.footer li,
.footer small {
  color: #d1d5db;
  font-size: 14px;
}

.mobile-sticky-call {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: none !important;
  padding: 0.7rem 0.8rem calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(13, 20, 36, 0.88);
  backdrop-filter: blur(14px);
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-sticky-call.is-visible {
  display: block !important;
  transform: translateY(0);
  opacity: 1;
}

.mobile-sticky-call a {
  width: 100%;
  min-height: 52px;
  color: #ffffff;
}

.section-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.58s ease, transform 0.58s ease;
}

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

@media (min-width: 768px) {
  .desktop-header-phone {
    display: inline-flex !important;
  }

  .mobile-menu-toggle,
  .mobile-menu,
  .mobile-sticky-call,
  .mobile-sticky-call.is-visible {
    display: none !important;
  }

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

  .two-column-info {
    grid-template-columns: minmax(0, 65%) minmax(260px, 35%);
  }

  .two-column-info.image-left {
    grid-template-columns: minmax(260px, 35%) minmax(0, 65%);
  }

  .two-column-info.image-left .info-media {
    order: -1;
  }

  .review-slide {
    flex-basis: calc((100% - 2rem) / 3);
  }
}

@media (max-width: 767px) {
  h1,
  h2 {
    line-height: 1.08;
  }

  .section-pad {
    padding: 3.25rem 1rem;
  }

  .container-wide {
    width: min(100% - 1rem, 1180px);
  }

  .btn-primary,
  .btn-secondary,
  .btn-light {
    width: 100%;
    padding-inline: 0.85rem;
  }

  .data-table,
  .data-table thead,
  .data-table tbody,
  .data-table tr,
  .data-table th,
  .data-table td {
    display: block;
    width: 100%;
  }

  .data-table thead {
    display: none;
  }

  .data-table td,
  .data-table td:first-child,
  .data-table td:last-child {
    border-radius: 1rem;
    border: 1px solid rgba(17, 24, 39, 0.08);
    margin-bottom: 0.4rem;
  }

  body.has-sticky-call {
    padding-bottom: 82px;
  }
}
