:root {
  --ink: #0f2a2a;
  --ink-soft: #1b3d3d;
  --sand: #f5efe6;
  --mist: #edf6f2;
  --surface: #fffaf4;
  --coral: #e76d5b;
  --sun: #f4b468;
  --teal: #0c4b4a;
  --mint: #c8e7dd;
  --border: rgba(15, 42, 42, 0.12);
  --shadow: 0 30px 80px rgba(15, 42, 42, 0.14);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: linear-gradient(140deg, var(--sand) 0%, var(--mist) 45%, var(--surface) 100%);
  position: relative;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  background: var(--teal);
  color: var(--surface);
  padding: 0.6rem 1rem;
  border-radius: 999px;
  z-index: 10;
}

.skip-link:focus {
  left: 1rem;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: -20% auto auto -20%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle at 30% 30%, rgba(244, 180, 104, 0.28), transparent 60%);
  z-index: 0;
  animation: drift 26s ease-in-out infinite;
}

body::after {
  inset: auto -25% -25% auto;
  width: 65vw;
  height: 65vw;
  background: radial-gradient(circle at 70% 60%, rgba(12, 75, 74, 0.2), transparent 65%);
  animation-delay: -9s;
}

.site-shell {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1 0 auto;
}

a {
  color: var(--teal);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--coral);
}

h1,
h2,
h3,
h4 {
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.grid-container {
  max-width: 1200px;
}

.site-header {
  padding: 1.5rem 0 1rem;
  position: sticky;
  top: 0;
  z-index: 9;
  overflow: visible;
  backdrop-filter: blur(12px);
  background: rgba(255, 250, 244, 0.92);
  border-bottom: 1px solid var(--border);
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}

.header-phone {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  color: var(--ink-soft);
}

.header-phone a {
  font-weight: 600;
  color: var(--ink);
}

.header-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  overflow: visible;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: inherit;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(140deg, var(--coral), var(--sun));
  color: var(--surface);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  letter-spacing: 0.03em;
  box-shadow: 0 14px 30px rgba(231, 109, 91, 0.25);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.4rem;
}

.brand-tag {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  font-size: 0.95rem;
  margin-left: auto;
  align-items: center;
  overflow: visible;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(12, 75, 74, 0.3);
  background: transparent;
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-weight: 600;
}

.nav-group {
  position: relative;
}

.nav-group::after {
  content: "";
  position: absolute;
  left: -0.4rem;
  right: -0.4rem;
  top: 100%;
  height: 0.8rem;
}

.nav-link {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: var(--ink);
  cursor: pointer;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.8rem);
  left: 0;
  min-width: 220px;
  background: var(--surface);
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 0.8rem;
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 20;
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
  display: flex;
}

.nav-dropdown.is-open {
  display: flex;
}

.nav-dropdown a {
  font-size: 0.9rem;
  color: var(--ink);
}

.nav-cta {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.button {
  border-radius: 999px;
  padding: 0.65rem 1.4rem;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
}

.button.primary {
  background: var(--coral);
  color: var(--surface);
  box-shadow: 0 18px 40px rgba(231, 109, 91, 0.22);
}

.button.primary:hover,
.button.primary:focus {
  background: var(--teal);
  color: var(--surface);
}

.button.ghost {
  background: transparent;
  border-color: rgba(12, 75, 74, 0.3);
  color: var(--teal);
}

.page-hero {
  padding: 2.5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  max-width: 560px;
}

.hero-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.hero-logo img {
  width: 120px;
  height: 120px;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--ink-soft);
  margin-bottom: 0.6rem;
}

.hero-intro {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

.section-actions {
  margin-top: 1.2rem;
}

.breadcrumb {
  padding: 0.6rem 0 0.8rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.breadcrumb a {
  color: var(--ink-soft);
}

.breadcrumb-separator {
  margin: 0 0.4rem;
  color: rgba(12, 75, 74, 0.4);
}

.hero-card {
  background: var(--surface);
  padding: 1.6rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.hero-card-inner {
  display: grid;
  gap: 0.8rem;
}

.hero-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-soft);
}

.hero-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--ink-soft);
}

.section {
  padding: 3rem 0;
}

.section.alt {
  background: rgba(255, 250, 244, 0.7);
}

.section-title {
  margin-bottom: 1rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
}

.card {
  background: var(--surface);
  border-radius: 24px;
  padding: 1.4rem;
  border: 1px solid var(--border);
  box-shadow: 0 18px 40px rgba(15, 42, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
}

.stat-card {
  background: var(--surface);
  border-radius: 22px;
  padding: 1.2rem;
  border: 1px solid var(--border);
  box-shadow: 0 14px 32px rgba(15, 42, 42, 0.08);
}

.stat-value {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.benefit-card {
  background: rgba(255, 250, 244, 0.8);
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 1.2rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
}

.testimonial-card {
  background: var(--surface);
  border-radius: 22px;
  border: 1px solid var(--border);
  padding: 1.4rem;
  box-shadow: 0 16px 36px rgba(15, 42, 42, 0.08);
}

.testimonial-meta {
  margin-top: 0.8rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.pricing-card {
  background: var(--surface);
  border-radius: 22px;
  border: 1px solid var(--border);
  padding: 1.4rem;
  box-shadow: 0 16px 34px rgba(15, 42, 42, 0.08);
}

.pricing-card h3 {
  margin-bottom: 0.4rem;
}

.form-panel {
  background: var(--surface);
  border-radius: 24px;
  border: 1px solid var(--border);
  padding: 1.6rem;
  box-shadow: 0 20px 40px rgba(15, 42, 42, 0.1);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

label {
  font-weight: 600;
  color: var(--ink);
}

input,
select,
textarea {
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--mist);
  padding: 0.7rem 0.9rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
}

input:focus,
input:focus-visible,
select:focus,
select:focus-visible,
textarea:focus,
textarea:focus-visible {
  background: var(--surface);
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(12, 75, 74, 0.14);
  outline: none;
}

textarea {
  min-height: 140px;
}

.form-note {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.honeypot {
  display: none;
}

.alert {
  background: rgba(231, 109, 91, 0.12);
  border: 1px solid rgba(231, 109, 91, 0.3);
  color: var(--ink);
  padding: 0.8rem 1rem;
  border-radius: 16px;
  margin-bottom: 1rem;
}

.alert.success {
  background: rgba(200, 231, 221, 0.5);
  border-color: rgba(12, 75, 74, 0.25);
}

.map-panel {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.map-panel iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  color: var(--ink);
}

.card-note {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.list-check {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--ink-soft);
  display: grid;
  gap: 0.5rem;
}

.list-soft {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--ink-soft);
  display: grid;
  gap: 0.5rem;
}

.step-list {
  margin: 0;
  padding-left: 1.3rem;
  color: var(--ink-soft);
  display: grid;
  gap: 0.7rem;
}

.panel {
  background: var(--surface);
  border-radius: 24px;
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: 0 16px 36px rgba(15, 42, 42, 0.1);
}

.panel.subtle {
  background: rgba(255, 250, 244, 0.6);
}

.panel-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  margin-bottom: 0.9rem;
}

.panel-note {
  margin-top: 1rem;
  color: var(--ink-soft);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tag-list li,
.tag-list span,
.tag-list a {
  list-style: none;
  background: var(--mint);
  color: var(--ink);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.tag-list a:hover,
.tag-list a:focus {
  background: rgba(200, 231, 221, 0.7);
}

.cta-band {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  box-shadow: var(--shadow);
}

.cta-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.highlight-strip {
  background: rgba(200, 231, 221, 0.6);
  border-radius: 22px;
  padding: 1.2rem 1.6rem;
  border: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.6rem;
  padding: 2.5rem 0 1.5rem;
  border-top: 1px solid var(--border);
}

.footer-title {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: var(--ink-soft);
  margin-bottom: 0.7rem;
}

.footer-link {
  display: block;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.footer-meta {
  color: var(--ink-soft);
  font-size: 0.85rem;
  padding-bottom: 2rem;
}

.footer-contact {
  display: block;
  margin-top: 0.4rem;
}

.cookie-banner {
  position: fixed;
  inset: auto 1.5rem 1.5rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 1rem 1.4rem;
  display: none;
  z-index: 15;
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.cookie-content p {
  margin: 0;
  color: var(--ink-soft);
  max-width: 680px;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
}

.support-tile {
  background: var(--surface);
  border-radius: 20px;
  padding: 1.2rem;
  border: 1px solid var(--border);
}

.support-title {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.support-copy {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.faq-grid details {
  background: var(--surface);
  border-radius: 20px;
  padding: 1rem 1.2rem;
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(15, 42, 42, 0.08);
}

.faq-grid summary {
  cursor: pointer;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  color: var(--ink);
}

.faq-grid p {
  color: var(--ink-soft);
  margin-top: 0.6rem;
}

@media (max-width: 960px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    margin-left: 0;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1rem;
    box-shadow: var(--shadow);
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .nav-dropdown {
    position: static;
    display: flex;
    box-shadow: none;
    border: none;
    padding: 0.6rem 0 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-top: 1.2rem;
  }

  .hero-card {
    order: -1;
  }

  .cta-band {
    padding: 1.5rem;
  }

  .header-top {
    flex-direction: column;
    align-items: flex-start;
  }
}

body[data-theme="dark"] {
  color-scheme: dark;
  color: var(--surface);
  background: linear-gradient(140deg, #0f2a2a 0%, #0c4b4a 40%, #1b3d3d 100%);
}

body[data-theme="dark"] a {
  color: var(--sun);
}

body[data-theme="dark"] h1,
body[data-theme="dark"] h2,
body[data-theme="dark"] h3,
body[data-theme="dark"] h4 {
  color: var(--surface);
}

body[data-theme="dark"] .brand-tag,
body[data-theme="dark"] .hero-label,
body[data-theme="dark"] .hero-kicker,
body[data-theme="dark"] .hero-intro,
body[data-theme="dark"] .hero-list,
body[data-theme="dark"] .card-note,
body[data-theme="dark"] .list-check,
body[data-theme="dark"] .list-soft,
body[data-theme="dark"] .step-list,
body[data-theme="dark"] .panel-note,
body[data-theme="dark"] .footer-meta {
  color: rgba(245, 239, 230, 0.8);
}

body[data-theme="dark"] .card-title {
  color: var(--surface);
}

body[data-theme="dark"] .site-header,
body[data-theme="dark"] .section.alt {
  background: rgba(15, 42, 42, 0.65);
}

body[data-theme="dark"] .header-phone {
  color: rgba(245, 239, 230, 0.78);
}

body[data-theme="dark"] .header-phone a {
  color: var(--surface);
}

body[data-theme="dark"] .button.ghost {
  color: var(--surface);
  border-color: rgba(244, 180, 104, 0.6);
  background: rgba(244, 180, 104, 0.12);
}

body[data-theme="dark"] .button.ghost:hover,
body[data-theme="dark"] .button.ghost:focus {
  background: rgba(244, 180, 104, 0.2);
}

body[data-theme="dark"] .site-nav,
body[data-theme="dark"] .cookie-banner {
  background: rgba(15, 42, 42, 0.9);
}

body[data-theme="dark"] .nav-link {
  color: var(--surface);
}

body[data-theme="dark"] .card,
body[data-theme="dark"] .panel,
body[data-theme="dark"] .hero-card,
body[data-theme="dark"] .cta-band,
body[data-theme="dark"] .support-tile,
body[data-theme="dark"] .faq-grid details,
body[data-theme="dark"] .stat-card,
body[data-theme="dark"] .benefit-card,
body[data-theme="dark"] .testimonial-card,
body[data-theme="dark"] .pricing-card,
body[data-theme="dark"] .form-panel {
  background: rgba(15, 42, 42, 0.85);
  border-color: rgba(245, 239, 230, 0.2);
}

body[data-theme="dark"] .tag-list li,
body[data-theme="dark"] .tag-list span,
body[data-theme="dark"] .tag-list a {
  background: rgba(200, 231, 221, 0.2);
  color: var(--surface);
}

body[data-theme="dark"] label,
body[data-theme="dark"] .form-note {
  color: rgba(245, 239, 230, 0.85);
}

body[data-theme="dark"] input,
body[data-theme="dark"] select,
body[data-theme="dark"] textarea {
  background: rgba(12, 75, 74, 0.45);
  color: var(--surface);
  border-color: rgba(245, 239, 230, 0.2);
}

body[data-theme="dark"] input:focus,
body[data-theme="dark"] input:focus-visible,
body[data-theme="dark"] select:focus,
body[data-theme="dark"] select:focus-visible,
body[data-theme="dark"] textarea:focus,
body[data-theme="dark"] textarea:focus-visible {
  background: rgba(12, 75, 74, 0.6);
  border-color: rgba(244, 180, 104, 0.85);
  box-shadow: 0 0 0 3px rgba(244, 180, 104, 0.2);
  outline: none;
}

body[data-theme="dark"] input::placeholder,
body[data-theme="dark"] textarea::placeholder {
  color: rgba(245, 239, 230, 0.6);
}

@media (prefers-color-scheme: dark) {
  body {
    color: var(--surface);
    background: linear-gradient(140deg, #0f2a2a 0%, #0c4b4a 40%, #1b3d3d 100%);
  }

  a {
    color: var(--sun);
  }

  h1,
  h2,
  h3,
  h4 {
    color: var(--surface);
  }

  .brand-tag,
  .hero-label,
  .hero-kicker,
  .hero-intro,
  .hero-list,
  .card-note,
  .list-check,
  .list-soft,
  .step-list,
  .panel-note,
  .footer-meta {
    color: rgba(245, 239, 230, 0.8);
  }

  .card-title {
    color: var(--surface);
  }

  .nav-link {
    color: var(--surface);
  }

  .site-header,
  .section.alt {
    background: rgba(15, 42, 42, 0.65);
  }

  .header-phone {
    color: rgba(245, 239, 230, 0.78);
  }

  .header-phone a {
    color: var(--surface);
  }

  .button.ghost {
    color: var(--surface);
    border-color: rgba(244, 180, 104, 0.6);
    background: rgba(244, 180, 104, 0.12);
  }

  .button.ghost:hover,
  .button.ghost:focus {
    background: rgba(244, 180, 104, 0.2);
  }

  .site-nav,
  .cookie-banner {
    background: rgba(15, 42, 42, 0.9);
  }

  .card,
  .panel,
  .hero-card,
  .cta-band,
  .support-tile,
  .faq-grid details,
  .stat-card,
  .benefit-card,
  .testimonial-card,
  .pricing-card,
  .form-panel {
    background: rgba(15, 42, 42, 0.85);
    border-color: rgba(245, 239, 230, 0.2);
  }

  .tag-list li,
  .tag-list span,
  .tag-list a {
    background: rgba(200, 231, 221, 0.2);
    color: var(--surface);
  }

  label,
  .form-note {
    color: rgba(245, 239, 230, 0.85);
  }

  input,
  select,
  textarea {
    background: rgba(12, 75, 74, 0.45);
    color: var(--surface);
    border-color: rgba(245, 239, 230, 0.2);
  }

  input::placeholder,
  textarea::placeholder {
    color: rgba(245, 239, 230, 0.6);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(8%, 6%, 0);
  }
}
