:root {
  --bg: #ffffff;
  --bg-muted: #f7f8fa;
  --surface: #ffffff;
  --surface-muted: #eef1f4;
  --text: #1f2326;
  --text-muted: #495057;
  --border: #d7dde3;
  --hero-bg: #12161a;
  --hero-text: #f2f4f6;
  --hero-muted: #c7cdd3;
  --accent: #bfe9f7;
  --accent-hover: #a6ddee;
  --accent-contrast: #111111;
  --link: var(--accent);
  --link-hover: var(--accent-hover);
  --site-accent: var(--accent);
  --site-dark: var(--hero-bg);
  --site-light: var(--bg);
  --site-surface: var(--surface);
  --site-surface-alt: var(--surface-muted);
  --site-border: var(--border);
  --site-text: var(--text);
  --site-muted: var(--text-muted);
  --site-shadow: 0 10px 24px rgba(16, 24, 40, 0.08);
}

* {
  box-sizing: border-box;
}

a {
  color: var(--link);
}

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

body {
  font-family: "Figtree", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 999;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: var(--site-accent);
  color: #0b0f14;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--site-accent);
  outline-offset: 2px;
}

h1,
h2,
h3,
h4 {
  font-family: "Outfit", sans-serif;
  letter-spacing: -0.01em;
  color: var(--text);
}

.wp-block-heading {
  margin-bottom: 16px;
}

.wp-site-blocks p {
  max-width: 70ch;
  margin-left: auto;
  margin-right: auto;
}

.wp-block-column p,
.wp-block-column ul,
.wp-block-column ol,
.wp-block-media-text__content p,
.wp-block-media-text__content ul {
  max-width: none;
}

.wp-block-list li {
  margin-bottom: 6px;
}

.wp-block-columns {
  gap: 32px;
}

.home-page {
  margin: 0;
  color: var(--text);
  background: var(--bg);
}

.home-page a {
  color: var(--link);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--hero-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-weight: 600;
}

.logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 1rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  font-size: 0.95rem;
  color: var(--hero-text);
}

.nav-links a.btn {
  color: var(--accent-contrast);
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.78rem 1.1rem;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  transform: none;
}

.btn-primary,
.btn-dark {
  background: var(--accent);
  color: var(--accent-contrast);
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.18);
}

.btn-primary:hover,
.btn-dark:hover {
  filter: brightness(1.03);
  box-shadow: 0 14px 30px rgba(16, 24, 40, 0.24);
  transform: none;
}

.btn-primary:active,
.btn-dark:active {
  transform: translateY(1px);
  box-shadow: 0 8px 18px rgba(16, 24, 40, 0.2);
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  box-shadow: none;
}

.btn-ghost:hover {
  background: var(--surface-muted);
  border-color: var(--accent);
  color: var(--text);
}

.hero {
  max-width: 1160px;
  margin: 0 auto;
  padding: clamp(28px, 4.5vw, 70px) 24px 44px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
  background: var(--hero-bg);
  border-radius: 20px;
  box-shadow: none;
}

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

.hero .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--accent);
  color: var(--hero-text);
}

.hero h1 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  line-height: 1.1;
  margin: 0 0 1rem;
  color: var(--hero-text);
}

.hero p {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--hero-muted);
  max-width: 58ch;
}

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

.hero-cta .btn {
  min-height: 52px;
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.trust-bar img {
  height: 90px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  filter: grayscale(10%);
  opacity: 0.9;
}

.trust-bar--about {
  margin-top: 24px;
}

.whatsapp-button img {
  height: 52px;
  width: auto;
  display: block;
}

.whatsapp-button.is-compact img {
  height: 44px;
}

.whatsapp-button,
.whatsapp-button.btn-ghost {
  border: none;
  background: transparent;
  padding: 0;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
}

.whatsapp-button:hover,
.whatsapp-button.btn-ghost:hover {
  background: transparent;
  border: none;
  box-shadow: none;
}

.hero-cap {
  font-size: 0.95rem;
  color: var(--hero-muted);
  margin: 0.2rem 0 0;
}

.hero-panel {
  background: var(--surface);
  border-radius: 26px;
  padding: 28px;
  box-shadow: var(--site-shadow);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: auto -20% -30% auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle at center, rgba(191, 233, 247, 0.35), transparent 70%);
  opacity: 0.35;
}

.panel-title {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.panel-head {
  font-size: 1.5rem;
  margin: 0.4rem 0 1rem;
}

.section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 56px 24px;
  background: var(--bg);
  border-radius: 20px;
  box-shadow: none;
}

.section-dark {
  background: var(--bg-muted);
}

.section h2 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin: 0 0 0.6rem;
}

.section-intro {
  color: var(--text-muted);
  max-width: 70ch;
  margin: 0 0 2rem;
}

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

.card {
  background: var(--surface);
  border-radius: 20px;
  padding: 22px;
  border: 1px solid var(--border);
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  min-height: 120px;
}

.card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.services-page .card {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: none;
}

.services-page .card p {
  color: var(--text-muted);
}

.services-page .card h3 {
  color: var(--text);
}

.card-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card-link:hover,
.card-link:focus-visible {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.16);
}

.card-link h3::after {
  content: " →";
  font-weight: 600;
  color: var(--accent);
}

.dark-band {
  background: var(--surface);
  color: var(--text);
  border-radius: 22px;
  margin: 0 auto;
  max-width: 1160px;
  box-shadow: none;
}

.dark-band .section-intro {
  color: var(--text-muted);
}

.contact-form {
  margin-top: 1.5rem;
}

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

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-weight: 500;
}

.form-grid label.full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.7rem 0.8rem;
  border-radius: 12px;
  font-family: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.form-note {
  margin-top: 1rem;
  color: var(--text-muted);
}

.form-note a {
  color: inherit;
  text-decoration: none;
}

.form-success {
  margin-top: 1rem;
  font-weight: 600;
  color: var(--accent);
}

.site-footer {
  padding: 40px 24px;
  background: var(--bg-muted);
  border-top: 1px solid var(--border);
}

.footer-content {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
}

.footer-section h4 {
  margin: 0 0 1rem;
  font-size: 1rem;
}

.footer-section a {
  display: block;
  text-decoration: none;
  color: var(--text-muted);
  margin: 0.4rem 0;
}

.footer-section a:hover {
  color: var(--text);
}

.footer-bottom {
  max-width: 1160px;
  margin: 2rem auto 0;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  color: var(--text-muted);
  text-align: center;
}

.footer-bottom a {
  color: inherit;
  text-decoration: underline;
}

.footer-bottom a:hover {
  color: var(--text);
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--hero-muted);
  margin-bottom: 10px;
}

.contact-form {
  max-width: 760px;
  margin: 0 auto;
}

.contact-form form {
  display: grid;
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  font-weight: 600;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  font: inherit;
  background: var(--bg);
  color: var(--text);
}

.form-field textarea {
  resize: vertical;
}

.contact-submit {
  border: none;
  border-radius: 9999px;
  padding: 12px 26px;
  font-weight: 600;
  background: var(--accent);
  color: var(--accent-contrast);
  cursor: pointer;
}

.contact-submit:hover {
  filter: brightness(0.96);
}

.form-note {
  margin-top: 10px;
  text-align: center;
  color: var(--text-muted);
}

.reviews {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.reviews-summary {
  margin-bottom: 24px;
}

.reviews-title {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.reviews-rating {
  font-size: 1.2rem;
  margin: 0;
}

.reviews-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.reviews-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 16px;
  text-align: left;
}

.reviews-card h4 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.reviews-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.reviews-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  font-size: 0.85rem;
  opacity: 0.8;
}

.reviews-link {
  display: inline-block;
  margin-top: 18px;
  color: inherit;
  text-decoration: underline;
}

.muted-link {
  color: var(--text-muted);
  text-decoration: none;
}

.muted-link:hover {
  color: var(--text);
  text-decoration: underline;
}

.reviews-loading {
  margin: 0;
}

.hero-title {
  margin: 0 0 12px;
  color: var(--hero-text);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

.hero-subtitle {
  margin: 0 0 16px;
  color: var(--hero-muted);
  font-size: 1.05rem;
}

.hero-highlights {
  margin: 0 0 24px;
  padding-left: 18px;
  color: var(--hero-muted);
}

.hero-highlights li {
  margin-bottom: 6px;
}

.hero-cta {
  gap: 12px;
  flex-wrap: wrap;
}

.home-hero {
  background: var(--hero-bg);
}

.home-hero .wp-block-media-text {
  gap: 2rem;
}

.home-hero .wp-block-media-text__content {
  max-width: 520px;
}

.wp-block-button .wp-block-button__link {
  border-radius: 12px;
  font-weight: 600;
}

.services-section .wp-block-heading {
  margin-bottom: 12px;
}

.services-section .wp-block-columns {
  margin-top: 28px;
}

.testimonials-section .wp-block-heading {
  margin-bottom: 20px;
}

.testimonials-section .reviews {
  margin-top: 16px;
}

.eicr-section {
  margin-bottom: 40px;
}

.eicr-kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.eicr-faq {
  margin: 24px auto 0;
  max-width: 860px;
  display: grid;
  gap: 12px;
}

.eicr-faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
}

.eicr-faq summary {
  cursor: pointer;
  font-weight: 600;
}

.eicr-faq p {
  margin: 10px 0 0;
}

.services-page {
  background: var(--bg);
  color: var(--text);
}

.services-page * {
  box-sizing: border-box;
}

.services-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--hero-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.services-nav {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  gap: 1.5rem;
}

.services-logo img {
  height: 44px;
  width: auto;
  display: block;
}

.services-links {
  display: flex;
  gap: 0.9rem;
  align-items: center;
}

.services-links a {
  text-decoration: none;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  font-size: 0.95rem;
  color: var(--hero-text);
}

.services-links a.btn {
  color: var(--accent-contrast);
}

.services-links a:hover,
.services-links a.is-active {
  background: rgba(255, 255, 255, 0.08);
}

.services-links .cta {
  border-radius: 12px;
  background: var(--accent);
  color: var(--accent-contrast);
  padding: 0.6rem 0.9rem;
}

.services-hero {
  padding: 90px 24px 70px;
  background: var(--hero-bg);
}

.services-hero .btn-ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--hero-text);
}

.services-hero .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--accent);
  color: var(--hero-text);
}

.services-hero-inner {
  max-width: 960px;
  margin: 0 auto;
}

.services-hero h1 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  margin: 0 0 0.6rem;
  color: var(--hero-text);
}

.services-hero .lead {
  color: var(--hero-muted);
  max-width: 70ch;
  margin: 0 0 2rem;
}

.eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--hero-muted);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.services-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.78rem 1.1rem;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 600;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-contrast);
  box-shadow: none;
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.services-section {
  padding: 56px 24px;
  background: var(--bg);
}

.services-section.alt {
  background: var(--bg-muted);
}

.section-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.section-intro {
  color: var(--text-muted);
  max-width: 70ch;
  margin: 0 0 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.service-block {
  background: var(--surface);
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: none;
  padding: 22px;
  display: grid;
  gap: 0.6rem;
}

.service-block ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
}

.services-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.services-panel {
  background: var(--surface);
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 22px;
}

.services-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.service-step {
  background: var(--surface);
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 18px;
}

.service-step .step-number {
  display: inline-block;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 8px;
}

.services-cta {
  padding: 56px 24px 72px;
  background: var(--bg-muted);
  color: var(--text);
}

.services-cta h2,
.services-cta p {
  color: var(--text);
}

.breadcrumbs {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

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

.breadcrumbs a:hover {
  color: var(--text);
}

.service-detail .section {
  max-width: 960px;
}

.service-detail .section p,
.service-detail .section li {
  color: var(--text-muted);
}

.content-list {
  padding-left: 1.2rem;
}

.content-list li {
  margin-bottom: 0.5rem;
}

.cta-panel {
  background: var(--surface);
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 28px;
  display: grid;
  gap: 0.8rem;
}

.cta-panel .btn {
  width: fit-content;
}

.related-links {
  display: grid;
  gap: 0.6rem;
}

.related-links a {
  color: var(--accent);
  text-decoration: none;
}

.related-links a:hover {
  text-decoration: underline;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  background: var(--surface);
  border-radius: 16px;
  padding: 14px 16px;
  border: 1px solid var(--border);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
}

.footer-nap {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.services-footer {
  padding: 48px 24px;
  background: var(--bg-muted);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.footer-grid a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  margin: 0.35rem 0;
}

.footer-grid a:hover {
  color: var(--text);
}

@media (max-width: 600px) {
  .wp-block-columns {
    gap: 20px;
  }

  .services-links {
    display: none;
  }

  .services-hero {
    padding-top: 72px;
  }

  .reviews-card {
    text-align: center;
  }

  .reviews-meta {
    flex-direction: column;
    gap: 6px;
  }
}

.home-page {
  margin: 0;
  color: var(--text);
  background: var(--bg);
}

.home-page .site-header {
  background: var(--hero-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.home-page .nav-inner {
  justify-content: space-between;
}

.home-page .nav-links a {
  color: var(--hero-text);
}

.home-page .nav-links a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.home-page .hero {
  max-width: 1200px;
  margin: 24px auto 0;
  padding: clamp(28px, 4.5vw, 70px) 24px 44px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  background: var(--hero-bg);
  text-align: center;
  border-radius: 20px;
}

.home-page .hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.home-page .hero-content h1 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.9rem, 2.8vw, 2.6rem);
  line-height: 1.2;
  margin: 0 0 1.2rem;
  color: var(--hero-text);
}

.home-page .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  color: var(--hero-muted);
  margin-bottom: 0.6rem;
}

.home-page .btn-primary {
  background: var(--accent);
  color: var(--accent-contrast);
  box-shadow: none;
}

.home-page .section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px;
  background: var(--bg);
  box-shadow: none;
  border-radius: 20px;
}

.home-page main {
  padding-bottom: 32px;
}

.home-page .section-dark {
  background: var(--bg-muted);
  border-radius: 20px;
}

.home-page .section.is-card {
  background: var(--surface);
  box-shadow: none;
  border-radius: 20px;
  padding: 56px 24px;
}

.home-page .section h2 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  margin: 0 0 1rem;
  color: var(--text);
  text-align: center;
}

.home-page .section-intro {
  color: var(--text-muted);
  max-width: 70ch;
  margin: 0 auto;
  text-align: center;
}

.home-page .reviews {
  margin-top: 28px;
}

.home-page .reviews-card {
  background: var(--surface);
  border: 1px solid var(--border);
}

.home-page .form-grid label {
  color: var(--text);
}

.home-page input,
.home-page textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
}

.home-page .form-note,
.home-page .form-success {
  color: var(--text-muted);
}

.home-page .site-footer {
  background: var(--bg-muted);
  border-top: 1px solid var(--border);
}

.home-page .footer-section a,
.home-page .footer-bottom {
  color: var(--text-muted);
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 12px;
  display: none;
  gap: 12px;
  padding: 0 16px;
  z-index: 50;
  justify-content: center;
}

.mobile-cta .btn {
  flex: 1;
  max-width: 220px;
}

@media (max-width: 760px) {
  .has-mobile-cta {
    padding-bottom: 96px;
  }

  .mobile-cta {
    display: flex;
  }
}

@media (max-width: 980px) {
  .home-page .hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .home-page .hero {
    padding-top: 48px;
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

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

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

  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .logo-img {
    height: 38px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--accent);
    color: var(--accent-contrast);
    border: 1px solid var(--accent-hover);
    padding: 0.4rem 0.7rem;
    border-radius: 12px;
    cursor: pointer;
  }

  .nav-links {
    display: none;
    position: absolute;
    right: 16px;
    top: 68px;
    flex-direction: column;
    background: var(--hero-bg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 12px;
    width: min(88vw, 320px);
    box-shadow: 0 18px 50px rgba(10, 12, 16, 0.35);
  }

  .nav-links.show {
    display: flex;
  }

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

  .dark-band {
    border-radius: 20px;
  }
}
