:root {
  --bg: #f5f9fb;
  --bg-alt: #edf4f7;
  --surface: #ffffff;
  --surface-strong: #f8fcfd;
  --text: #163442;
  --text-soft: #5e7680;
  --primary: #0f4d63;
  --primary-strong: #0b3d4f;
  --accent: #56b39d;
  --accent-soft: #dff3ec;
  --line: #d6e4ea;
  --shadow: 0 20px 60px rgba(15, 77, 99, 0.12);
  --shadow-soft: 0 12px 32px rgba(15, 77, 99, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1180px;
}

*,
*::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 top left, rgba(86, 179, 157, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(15, 77, 99, 0.08), transparent 24%),
    linear-gradient(180deg, #f7fbfd 0%, #f4f8fa 100%);
  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  padding: 0.75rem 1rem;
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  z-index: 1000;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 251, 253, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(214, 228, 234, 0.9);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-mark {
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), #236c87);
  color: #fff;
  font-family: "Fraunces", serif;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

.brand-text {
  display: grid;
}

.brand-text strong {
  font-size: 1rem;
  line-height: 1.1;
}

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

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

.header-link {
  font-weight: 700;
  color: var(--primary);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.25rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--primary), #12627d);
  color: #fff;
  box-shadow: 0 14px 32px rgba(15, 77, 99, 0.22);
}

.button-primary:hover {
  box-shadow: 0 18px 36px rgba(15, 77, 99, 0.28);
}

.button-secondary {
  background: var(--surface);
  color: var(--primary);
  border-color: var(--line);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.7);
  color: var(--primary);
  border-color: rgba(15, 77, 99, 0.16);
}

.button-light {
  background: #fff;
  color: var(--primary-strong);
  box-shadow: var(--shadow-soft);
}

.button-small {
  min-height: 2.8rem;
  padding-inline: 1rem;
}

.button-block {
  width: 100%;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero {
  padding: 4rem 0 1.5rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 2.3rem;
  align-items: center;
}

.hero-copy h1,
.section-heading h2,
.service-copy h2,
.bio-card h2,
.final-cta-card h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #0f2f3c;
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  max-width: 12ch;
}

.hero-subtitle {
  margin: 1.15rem 0 0;
  max-width: 60ch;
  color: var(--text-soft);
  font-size: 1.13rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.hero-actions .button-primary {
  min-width: 18rem;
  box-shadow: 0 18px 40px rgba(15, 77, 99, 0.28);
}

.hero-actions .button-ghost {
  background: rgba(255, 255, 255, 0.9);
}

.hero-trust-line {
  margin: 1rem 0 0;
  color: var(--text-soft);
  font-weight: 600;
}

.hero-contact-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.contact-pill {
  flex: 1 1 220px;
  display: grid;
  gap: 0.1rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 77, 99, 0.12);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-pill:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 77, 99, 0.22);
  box-shadow: 0 16px 34px rgba(15, 77, 99, 0.1);
}

.contact-pill-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-soft);
  margin-bottom: 0.2rem;
}

.contact-pill strong {
  color: var(--primary-strong);
}

.contact-pill small {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
}

.hero-card {
  position: relative;
  padding: 1.7rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(245, 250, 251, 0.98) 100%);
  border: 1px solid rgba(214, 228, 234, 0.95);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: auto -10% -35% auto;
  width: 18rem;
  height: 18rem;
  background: radial-gradient(circle, rgba(86, 179, 157, 0.24), transparent 70%);
  pointer-events: none;
}

.hero-card-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.hero-card-label {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-card-top h2 {
  margin: 0.2rem 0 0;
  font-size: 1.8rem;
}

.hero-card-subtitle {
  margin: 0.45rem 0 0;
  max-width: 30ch;
  color: var(--text-soft);
}

.status-badge {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #1d6b58;
  font-size: 0.85rem;
  font-weight: 800;
  white-space: nowrap;
}

.hero-illustration {
  position: relative;
  margin-top: 1rem;
}

.hero-card-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(214, 228, 234, 0.95);
}

.hero-card-footer span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.58rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  color: #1d4858;
  font-weight: 700;
}

.proof-strip {
  padding: 1rem 0 0.5rem;
}

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

.proof-item {
  padding: 1.35rem 1.4rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(214, 228, 234, 0.92);
  box-shadow: var(--shadow-soft);
}

.proof-item strong {
  display: block;
  margin-bottom: 0.45rem;
}

.proof-item p {
  margin: 0;
  color: var(--text-soft);
}

.section {
  padding: 5.5rem 0;
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 2rem;
}

.section-heading h2,
.service-copy h2,
.bio-card h2,
.final-cta-card h2,
.contact-copy h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.section-heading p:last-child,
.service-copy p,
.bio-card p,
.contact-copy p {
  color: var(--text-soft);
}

.issues-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.issue-card,
.benefit-card,
.contact-card,
.review-card,
.authority-card,
.bio-card,
.panel-card,
.service-note {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(214, 228, 234, 0.95);
  box-shadow: var(--shadow-soft);
}

.issue-card {
  padding: 1.45rem;
  border-radius: var(--radius-lg);
}

.issue-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  min-height: 3rem;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: var(--accent-soft);
  color: #1d6b58;
  font-weight: 800;
}

.issue-card h3,
.benefit-card h3,
.reviews-block h3 {
  margin: 0 0 0.6rem;
  font-size: 1.15rem;
}

.issue-card p,
.benefit-card p,
.review-card p,
.authority-list,
.contact-card p,
.contact-card a,
.path-step p,
.service-note p,
.form-note,
.footer-bottom p {
  margin: 0;
  color: var(--text-soft);
}

.service-section {
  padding-top: 3rem;
}

.service-layout,
.trust-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 1.5rem;
  align-items: start;
}

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

.check-list li {
  position: relative;
  padding-left: 2rem;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42rem;
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #7ad1b6);
  box-shadow: 0 0 0 0.28rem rgba(86, 179, 157, 0.18);
}

.panel-card {
  padding: 1.6rem;
  border-radius: var(--radius-xl);
}

.panel-eyebrow {
  margin: 0 0 1rem;
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.path-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.path-step:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.path-step span {
  width: 2.2rem;
  height: 2.2rem;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
}

.path-step strong {
  display: block;
  margin-bottom: 0.2rem;
}

.service-note {
  margin-top: 1rem;
  padding: 1.35rem;
  border-radius: var(--radius-lg);
}

.service-note strong {
  display: block;
  margin-bottom: 0.35rem;
}

.service-note a {
  color: var(--primary);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.benefit-card {
  padding: 1.45rem;
  border-radius: var(--radius-lg);
}

.trust-section {
  background:
    radial-gradient(circle at right top, rgba(86, 179, 157, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(237, 244, 247, 0.64), rgba(245, 249, 251, 0));
}

.bio-card {
  padding: 1.8rem;
  border-radius: var(--radius-xl);
}

.bio-role {
  margin-top: 0.35rem;
  font-weight: 800;
  color: var(--primary);
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.credentials-grid span {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: var(--surface-strong);
  border: 1px solid var(--line);
  font-weight: 700;
}

.trust-side {
  display: grid;
  gap: 1rem;
}

.authority-card {
  padding: 1.45rem;
  border-radius: var(--radius-lg);
}

.authority-card strong {
  display: block;
  margin-bottom: 0.85rem;
}

.authority-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.authority-list li {
  position: relative;
  padding-left: 1.35rem;
}

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

.reviews-block {
  display: grid;
  gap: 1rem;
}

.review-card {
  padding: 1.35rem;
  border-radius: var(--radius-lg);
}

.review-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.9rem;
}

.review-meta {
  display: grid;
  gap: 0.1rem;
}

.review-meta strong {
  font-size: 0.98rem;
}

.review-meta span {
  font-size: 0.9rem;
  color: var(--text-soft);
}

.review-card p {
  line-height: 1.68;
}

.review-rating {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  margin-bottom: 0;
  border-radius: 50%;
  background: var(--accent-soft);
  color: #1d6b58;
  font-weight: 800;
}

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

.faq-item {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(214, 228, 234, 0.95);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem 1.4rem;
  background: transparent;
  border: 0;
  text-align: left;
  font-weight: 800;
  color: var(--text);
  cursor: pointer;
}

.faq-icon {
  position: relative;
  flex: 0 0 auto;
  width: 1.15rem;
  height: 1.15rem;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
  transform: translateY(-50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.faq-icon::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-item.is-open .faq-icon::after {
  opacity: 0;
  transform: translateY(-50%) rotate(0deg);
}

.faq-answer {
  padding: 0 1.4rem 1.3rem;
}

.faq-answer p {
  margin: 0;
  color: var(--text-soft);
}

.final-cta-section {
  padding-top: 2rem;
}

.final-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(15, 77, 99, 0.96), rgba(20, 104, 129, 0.94)),
    radial-gradient(circle at top right, rgba(122, 209, 182, 0.18), transparent 20%);
  color: #fff;
  box-shadow: var(--shadow);
}

.final-cta-card h2 {
  color: #fff;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  max-width: 16ch;
}

.final-cta-text {
  max-width: 42ch;
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.final-cta-card .eyebrow {
  color: rgba(255, 255, 255, 0.74);
}

.contact-section {
  padding-bottom: 7rem;
}

.contact-copy {
  position: sticky;
  top: 6rem;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
}

.contact-card {
  padding: 1.25rem;
  border-radius: var(--radius-lg);
}

.contact-card-quick {
  background: linear-gradient(180deg, #fafdff 0%, #f3f9fb 100%);
  border-color: rgba(15, 77, 99, 0.18);
}

.contact-card-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-soft);
}

.contact-card a {
  color: var(--primary);
  font-weight: 800;
}

.contact-form {
  padding: 1.7rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(214, 228, 234, 0.98);
  box-shadow: var(--shadow);
}

.form-intro {
  margin-bottom: 1.2rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #f9fcfd 0%, #f2f8fa 100%);
  border: 1px solid var(--line);
}

.form-intro strong {
  display: block;
  margin-bottom: 0.2rem;
}

.form-intro p {
  margin: 0;
  color: var(--text-soft);
}

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

.field-full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fbfefe;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(15, 77, 99, 0.5);
  box-shadow: 0 0 0 0.24rem rgba(15, 77, 99, 0.08);
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1rem 0 1.2rem;
  color: var(--text-soft);
}

.privacy-check input {
  margin-top: 0.22rem;
}

.form-note {
  margin-top: 0.9rem;
  font-size: 0.92rem;
}

.form-feedback {
  min-height: 1.5rem;
  margin: 0.75rem 0 0;
  font-weight: 700;
}

.form-feedback.is-success {
  color: #1d6b58;
}

.form-feedback.is-error {
  color: #a14545;
}

.site-footer {
  padding: 2.2rem 0 5.5rem;
  background: #0d2832;
  color: rgba(255, 255, 255, 0.84);
}

.footer-inner,
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.footer-inner strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #fff;
}

.footer-inner p,
.footer-contacts a,
.footer-contacts p {
  margin: 0;
}

.footer-contacts {
  display: grid;
  gap: 0.35rem;
  text-align: right;
}

.footer-bottom {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-sticky-bar {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 120;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  padding: 0.55rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(214, 228, 234, 0.98);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.mobile-sticky-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border-radius: 16px;
  background: #f3f8fa;
  color: var(--primary);
  font-weight: 800;
}

.mobile-sticky-bar .mobile-sticky-primary {
  background: linear-gradient(135deg, var(--primary), #12627d);
  color: #fff;
}

@media (max-width: 1080px) {
  .hero-layout,
  .service-layout,
  .trust-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 14ch;
  }

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

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

  .contact-copy {
    position: static;
  }
}

@media (max-width: 860px) {
  .header-inner {
    align-items: flex-start;
  }

  .hero {
    padding-top: 3rem;
  }

  .proof-grid,
  .benefits-grid,
  .contact-methods,
  .form-grid,
  .credentials-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-card-top,
  .final-cta-card,
  .footer-inner,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-contacts {
    text-align: left;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 6rem;
  }

  .container {
    width: min(calc(100% - 1.2rem), var(--container));
  }

  .header-actions .button-small,
  .header-link {
    display: none;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(2.2rem, 10vw, 3.1rem);
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-trust-line {
    font-size: 0.96rem;
  }

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

  .button,
  .contact-pill {
    width: 100%;
  }

  .hero-actions .button-primary {
    min-width: 0;
  }

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

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

  .section {
    padding: 4rem 0;
  }

  .contact-form,
  .hero-card,
  .bio-card,
  .panel-card,
  .final-cta-card {
    padding: 1.25rem;
  }

  .form-intro {
    padding: 0.9rem 1rem;
  }

  .final-cta-card h2 {
    max-width: none;
  }

  .mobile-sticky-bar {
    display: grid;
  }
}
