
:root {
  --bg: #0f1518;
  --bg-soft: #162024;
  --bg-light: #f5f7f6;
  --surface: #ffffff;
  --surface-dark: #1b262a;
  --text: #142024;
  --muted: #657276;
  --line: #dce4e2;
  --brand: #12a8a0;
  --brand-dark: #0b706d;
  --accent: #d7b46a;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(10, 24, 30, 0.16);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg-light);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

p {
  margin: 0 0 1rem;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5.8rem);
  max-width: 860px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

h3 {
  font-size: 1.2rem;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  max-width: 850px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 50;
  padding: 0.8rem 1rem;
  background: var(--white);
  color: var(--text);
  border-radius: 999px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(15, 21, 24, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: var(--white);
  flex: 1;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand), #b8f2ec);
  color: #071113;
  font-weight: 900;
  letter-spacing: -0.08em;
  box-shadow: 0 12px 30px rgba(18, 168, 160, 0.25);
}

.brand strong {
  display: block;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.brand small {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  padding: 0.75rem 0.9rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.10);
}

.header-call {
  color: #071113;
  background: var(--accent);
  text-decoration: none;
  padding: 0.78rem 1.05rem;
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  border-radius: 14px;
  padding: 0.65rem;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  border-radius: 99px;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 18%, rgba(18, 168, 160, 0.42), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(215, 180, 106, 0.26), transparent 28%),
    linear-gradient(135deg, #0b1114 0%, #142126 48%, #0f1518 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -160px 0;
  height: 260px;
  background: linear-gradient(180deg, transparent, rgba(245, 247, 246, 0.08));
  transform: skewY(-4deg);
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: 3rem;
  padding: 4.5rem 0;
}

.hero-kicker,
.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--brand);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
}

.hero-lead {
  max-width: 690px;
  margin-top: 1.35rem;
  color: rgba(255, 255, 255, 0.80);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions,
.page-actions,
.cta-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 900;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

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

.btn-primary {
  color: #061315;
  background: var(--brand);
  box-shadow: 0 18px 38px rgba(18, 168, 160, 0.22);
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.page-hero .btn-outline,
.contact-hero .btn-outline {
  color: var(--text);
  border-color: rgba(20, 32, 36, 0.18);
  background: var(--white);
}

.btn-light {
  color: var(--text);
  background: var(--white);
}

.btn-ghost-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.hero-summary {
  margin-top: 1.7rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 780px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.hero-summary div {
  padding: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-summary div:last-child {
  border-right: 0;
}

.hero-summary span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-summary strong {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.96rem;
}

.hero-panel {
  position: relative;
  border-radius: 32px;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 16px 16px auto auto;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 180, 106, 0.45), transparent 64%);
}

.panel-top {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  font-weight: 900;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(18, 168, 160, 0.18);
}

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

.hero-list li {
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.panel-note {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(18, 168, 160, 0.14);
  color: rgba(255, 255, 255, 0.86);
}

.section {
  padding: 5.2rem 0;
}

.section.muted {
  background: #eaf0ef;
}

.section-head {
  max-width: 780px;
  margin-bottom: 2.1rem;
}

.section-head p,
.section-lead {
  color: var(--muted);
  font-size: 1.06rem;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.split > p {
  font-size: 1.18rem;
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.card {
  position: relative;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.card-number {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--brand-dark);
  font-weight: 900;
}

.card p {
  margin: 0.8rem 0 0;
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.steps article {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
}

.steps span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  margin-bottom: 1rem;
  background: var(--text);
  color: var(--white);
  font-weight: 900;
}

.steps p,
.trust-points span {
  color: var(--muted);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.trust-points {
  display: grid;
  gap: 0.9rem;
}

.trust-points div {
  padding: 1.1rem;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1px solid var(--line);
}

.trust-points strong,
.trust-points span {
  display: block;
}

.request-card {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 2rem;
  align-items: start;
  padding: 2rem;
  border-radius: 32px;
  background: var(--surface-dark);
  color: var(--white);
  box-shadow: 0 30px 90px rgba(15, 21, 24, 0.26);
}

.request-card .section-lead,
.request-card label,
.request-card .form-note {
  color: rgba(255, 255, 255, 0.74);
}

.request-form {
  display: grid;
  gap: 0.9rem;
}

.request-form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 800;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  padding: 0.9rem 1rem;
  font: inherit;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.request-form input::placeholder,
.request-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.request-form select option {
  color: var(--text);
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(18, 168, 160, 0.20);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

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

.form-note a {
  color: var(--white);
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

details {
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1rem 1.1rem;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.final-cta {
  padding-top: 0;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  border-radius: 32px;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 20%, rgba(18, 168, 160, 0.34), transparent 34%),
    linear-gradient(135deg, #11191d, #1b2a2e);
}

.cta-panel p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.76);
}

.page-hero {
  padding: 5.2rem 0;
  background:
    radial-gradient(circle at 16% 12%, rgba(18, 168, 160, 0.16), transparent 30%),
    linear-gradient(180deg, #ffffff, #eef4f3);
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.14rem;
  margin-top: 1.1rem;
}

.service-detail {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.service-detail.reverse {
  grid-template-columns: 1.2fr 0.8fr;
}

.service-detail.reverse > div:first-child {
  order: 2;
}

.detail-list {
  display: grid;
  gap: 0.9rem;
}

.detail-list article {
  padding: 1.3rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.detail-list p {
  margin-top: 0.65rem;
  color: var(--muted);
}

.story-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.story-grid p {
  color: var(--muted);
  font-size: 1.05rem;
}

.story-card,
.contact-card,
.location-card {
  padding: 1.6rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.check-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.check-list li {
  position: relative;
  padding-left: 1.6rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand);
}

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

.contact-list {
  margin: 1.2rem 0 0;
  display: grid;
  gap: 1rem;
}

.contact-list div {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.contact-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-list dt {
  color: var(--muted);
  font-weight: 800;
}

.contact-list dd {
  margin: 0.2rem 0 0;
  font-size: 1.08rem;
  font-weight: 900;
}

.contact-list a {
  color: var(--brand-dark);
}

.site-footer {
  color: var(--white);
  background: #0b1114;
  padding: 3.2rem 0 1.4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.8fr;
  gap: 2rem;
}

.footer-title,
.footer-heading {
  font-weight: 900;
  margin-bottom: 0.7rem;
}

.site-footer p,
.site-footer span,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a,
.site-footer span {
  display: block;
  text-decoration: none;
  margin-bottom: 0.35rem;
}

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

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .trust-grid,
  .request-card,
  .service-detail,
  .service-detail.reverse,
  .story-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-detail.reverse > div:first-child {
    order: 0;
  }

  .cards,
  .steps,
  .value-cards,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid {
    min-height: auto;
  }
}

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

  .header-inner {
    min-height: 66px;
  }

  .brand small {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .header-call {
    display: none;
  }

  .site-nav {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem;
    background: #0b1114;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 0.95rem 1rem;
  }

  .hero-grid {
    gap: 1.1rem;
    padding: 1.25rem 0 2rem;
    align-items: start;
  }

  h1 {
    font-size: clamp(2.05rem, 11vw, 3.15rem);
  }

  .hero-lead {
    margin-top: 0.9rem;
    font-size: 1rem;
  }

  .hero-actions {
    margin-top: 1rem;
  }

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

  .hero-summary {
    margin-top: 1rem;
    grid-template-columns: 1fr;
    border-radius: 20px;
  }

  .hero-summary div {
    padding: 0.8rem 0.9rem;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero-summary div:last-child {
    border-bottom: 0;
  }

  .hero-panel {
    padding: 1rem;
    border-radius: 22px;
  }

  .hero-list {
    margin: 1rem 0;
    gap: 0.55rem;
  }

  .hero-list li {
    padding: 0.72rem 0.82rem;
    border-radius: 14px;
  }

  .panel-note {
    padding: 0.82rem;
    border-radius: 14px;
    font-size: 0.95rem;
  }

  .section,
  .page-hero {
    padding: 3.2rem 0;
  }

  .cards,
  .steps,
  .value-cards,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .card,
  .steps article,
  .request-card,
  .cta-panel,
  .story-card,
  .contact-card,
  .location-card {
    border-radius: 20px;
  }

  .request-card,
  .cta-panel {
    padding: 1.1rem;
  }

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

  .cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-actions,
  .page-actions {
    width: 100%;
  }

  .cta-actions .btn,
  .page-actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
