:root {
  --bg: #111318;
  --surface: #171b22;
  --ink: #efe6d8;
  --muted: #b3ab9f;
  --line: #313845;
  --brand: #48a8a3;
  --brand-strong: #77c4c0;
  --brand-2: #c28d4f;
  --brand-2-strong: #ddb37c;
  --brand-3: #5ca9be;
  --brand-3-strong: #86c6d8;
  --dark: #0b0d11;
  --btn-bg: linear-gradient(120deg, #2d857f 0%, #245f5b 56%, #1b4744 100%);
  --btn-bg-hover: linear-gradient(120deg, #37a399 0%, #2c726c 56%, #215752 100%);
  --btn-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
  --card-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  --shadow: 0 20px 42px rgba(0, 0, 0, 0.4);
  --container: min(1120px, 92vw);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: clip;
}

body {
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 10%, rgba(20, 97, 109, 0.08) 0%, transparent 35%),
    radial-gradient(circle at 90% 6%, rgba(173, 126, 68, 0.09) 0%, transparent 32%),
    radial-gradient(circle at 84% 80%, rgba(20, 97, 109, 0.06) 0%, transparent 28%),
    linear-gradient(180deg, #f8f4ec 0%, #f5f1e8 48%, #efe8dc 100%);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

html {
  scroll-behavior: smooth;
}

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

img {
  max-width: 100%;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section-pad {
  padding: 6.2rem 0;
}

.pt-0 {
  padding-top: 0;
}

.page-hero {
  padding-bottom: 2rem;
}

.page-title {
  margin: 0.9rem 0 0;
  font-family: "Source Serif 4", serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.98;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.5);
}

.section-title {
  font-family: "Source Serif 4", serif;
  font-size: clamp(1.9rem, 3.6vw, 3.15rem);
  line-height: 1.05;
  margin: 0.9rem 0 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(221, 212, 198, 0.94);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(251, 247, 238, 0.92);
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 1rem;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: "Space Grotesk", sans-serif;
}

.brand-logo {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1.02;
}

.brand-copy strong {
  font-size: 0.96rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-copy small {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.96rem;
}

.main-nav a {
  color: var(--muted);
  position: relative;
  padding: 0.38rem 0.62rem;
  border-radius: 10px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-2) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--ink);
  background: rgba(20, 97, 109, 0.08);
  transform: translateY(-1px);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.currency-picker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: 0.5rem;
}

.currency-picker-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.currency-picker-select {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(11, 14, 19, 0.9);
  color: var(--ink);
  font: inherit;
  font-size: 0.82rem;
  padding: 0.36rem 0.55rem;
  min-width: 78px;
}

.currency-picker-select:focus-visible {
  outline: 2px solid rgba(72, 168, 163, 0.45);
  outline-offset: 2px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 14px;
  background: var(--btn-bg);
  color: white;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(20, 70, 79, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, filter 0.2s ease;
  touch-action: manipulation;
  padding: 0.78rem 1.15rem;
  font-size: 0.92rem;
}

.btn-warm {
  background: linear-gradient(120deg, #b18249 0%, #9b703c 54%, #835a30 100%);
  box-shadow: 0 12px 26px rgba(131, 90, 48, 0.26);
}

.btn-warm:hover {
  background: linear-gradient(120deg, #bb8b52 0%, #a67842 54%, #8c6235 100%);
  box-shadow: 0 16px 34px rgba(131, 90, 48, 0.34);
}

.btn-quiet {
  background: linear-gradient(120deg, #f4f8fc 0%, #edf3f9 100%);
  color: var(--brand-strong);
  border: 1px solid rgba(29, 79, 122, 0.22);
  box-shadow: none;
}

.btn-quiet:hover {
  background: linear-gradient(120deg, #ebf2f9 0%, #e2ebf4 100%);
  box-shadow: 0 10px 20px rgba(16, 38, 58, 0.08);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(236, 254, 255, 0.92);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.btn-link:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.btn:hover {
  transform: translateY(-3px) scale(1.01);
  background: var(--btn-bg-hover);
  box-shadow: var(--btn-shadow);
  filter: saturate(1.05);
}

.btn:focus-visible {
  outline: 3px solid rgba(243, 139, 42, 0.26);
  outline-offset: 2px;
}

.btn:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
  box-shadow: none;
}

.btn-sm {
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 0.95rem 1.35rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
  padding: 0.95rem 1.15rem;
  font-size: 0.95rem;
}

.btn-ghost {
  background: linear-gradient(135deg, rgba(29, 79, 122, 0.08) 0%, rgba(181, 137, 82, 0.1) 100%);
  color: var(--brand-strong);
  border: 1px solid rgba(29, 79, 122, 0.24);
}

.btn-ghost:hover {
  box-shadow: 0 10px 24px rgba(29, 79, 122, 0.12);
  background: linear-gradient(135deg, rgba(29, 79, 122, 0.14) 0%, rgba(181, 137, 82, 0.16) 100%);
}

.hero {
  position: relative;
  overflow: clip;
}

.hero-first {
  padding-top: 1.2rem;
  padding-bottom: 3.2rem;
  background: linear-gradient(145deg, #0f2438 0%, #18334b 56%, #1f415f 100%);
}

.hero-motion {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  animation: driftOrb 15s ease-in-out infinite;
}

.orb-a {
  width: 34rem;
  height: 34rem;
  background: radial-gradient(circle, rgba(0, 166, 166, 0.34) 0%, rgba(0, 166, 166, 0.02) 70%);
  top: -9rem;
  left: -8rem;
}

.orb-b {
  width: 30rem;
  height: 30rem;
  background: radial-gradient(circle, rgba(243, 139, 42, 0.28) 0%, rgba(243, 139, 42, 0.02) 72%);
  right: -8rem;
  top: 2rem;
  animation-delay: -4s;
}

.orb-c {
  width: 28rem;
  height: 28rem;
  background: radial-gradient(circle, rgba(0, 166, 166, 0.2) 0%, rgba(0, 166, 166, 0.02) 72%);
  left: 35%;
  bottom: -12rem;
  animation-delay: -8s;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(213, 225, 238, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(213, 225, 238, 0.16) 1px, transparent 1px);
  background-size: 46px 46px;
  animation: panGrid 22s linear infinite;
}

.hero-stage-text {
  position: relative;
  z-index: 2;
  max-width: 920px;
  padding-top: 2.6rem;
}

.corporate-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1.2rem;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: start;
}

.corporate-hero-copy {
  max-width: none;
  padding-top: 2.3rem;
}

.corporate-hero-panel {
  margin-top: 2.4rem;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.97) 0%, rgba(240, 250, 250, 0.96) 100%);
}

.home-page {
  background:
    radial-gradient(circle at 8% 10%, rgba(21, 65, 102, 0.08) 0%, transparent 42%),
    radial-gradient(circle at 92% 6%, rgba(168, 126, 74, 0.08) 0%, transparent 34%),
    linear-gradient(180deg, #f8fafc 0%, #f2f5f9 48%, #eef2f7 100%);
}

.home-page .site-header {
  background: rgba(248, 250, 252, 0.92);
  border-bottom-color: rgba(208, 217, 228, 0.9);
}

.home-page .hero-first {
  background: linear-gradient(145deg, #0f2438 0%, #18334b 56%, #1f415f 100%);
}

.home-page .hero-grid-lines {
  opacity: 0.09;
  background-image:
    linear-gradient(rgba(210, 224, 238, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(210, 224, 238, 0.16) 1px, transparent 1px);
}

.home-page .orb-a,
.home-page .orb-c {
  background: radial-gradient(circle, rgba(113, 154, 193, 0.2) 0%, rgba(113, 154, 193, 0.02) 72%);
}

.home-page .orb-b {
  background: radial-gradient(circle, rgba(168, 126, 74, 0.2) 0%, rgba(168, 126, 74, 0.02) 72%);
}

.home-page .hero-stage-text h1 {
  color: #f4f8fc;
}

.home-page .hero-stage-text .lead,
.home-page .hero-proof-line,
.home-page .hero-stage-text .hero-points li {
  color: rgba(233, 241, 248, 0.94);
}

.home-page .hero-stage-text .eyebrow {
  border-color: rgba(212, 226, 238, 0.34);
  color: #e4eff8;
  background: rgba(15, 36, 56, 0.46);
}

.home-page .corporate-hero-panel {
  background: linear-gradient(165deg, rgba(252, 253, 255, 0.98) 0%, rgba(243, 247, 252, 0.98) 100%);
  border-color: rgba(204, 214, 225, 0.9);
}

.home-page .hero-overview-list li {
  border-color: rgba(207, 218, 230, 0.82);
  background: rgba(255, 255, 255, 0.86);
}

.home-page .hero-cta-row .btn-warm {
  background: linear-gradient(120deg, #1d4f7a 0%, #163d60 56%, #122f4d 100%);
  box-shadow: 0 12px 26px rgba(17, 48, 77, 0.3);
}

.home-page .hero-cta-row .btn-warm:hover {
  background: linear-gradient(120deg, #245f91 0%, #1a4770 56%, #143656 100%);
  box-shadow: 0 15px 30px rgba(17, 48, 77, 0.36);
}

.home-page .hero-cta-row .btn-link {
  color: rgba(231, 241, 250, 0.94);
}

.home-page .hero-cta-row .btn-link:hover {
  color: #ffffff;
}

.home-page .section-tone-mint {
  background: linear-gradient(160deg, rgba(236, 241, 247, 0.88) 0%, rgba(244, 247, 251, 0.94) 100%);
}

.home-page .section-tone-sky {
  background: linear-gradient(160deg, rgba(233, 240, 248, 0.86) 0%, rgba(244, 248, 253, 0.94) 100%);
}

.home-page .section-tone-sun {
  background: linear-gradient(160deg, rgba(244, 239, 232, 0.84) 0%, rgba(249, 245, 240, 0.92) 100%);
}

.home-page .section-tone-rose {
  background: linear-gradient(160deg, rgba(239, 238, 241, 0.84) 0%, rgba(247, 246, 249, 0.93) 100%);
}

.home-page .section-dark {
  background: linear-gradient(130deg, #13273a 0%, #1a334a 58%, #243f57 100%);
}

.home-page .section-accent {
  background: linear-gradient(120deg, #193650 0%, #254762 50%, #2f5776 100%);
}

.home-page .trust-strip {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(205, 216, 228, 0.94);
}

.home-page .card,
.home-page .project-card,
.home-page .testimonial-card,
.home-page .process-step,
.home-page .faq-item {
  border-color: rgba(206, 217, 228, 0.9);
  background: rgba(255, 255, 255, 0.88);
}

.home-page .floating-cta {
  display: none !important;
}

.hero-stage-text h1 {
  margin: 0.9rem 0;
  font-family: "Source Serif 4", serif;
  font-size: clamp(2.15rem, 5.8vw, 4rem);
  line-height: 1;
  color: #f3feff;
}

.hero-stage-text .lead {
  color: rgba(232, 253, 255, 0.94);
  max-width: 68ch;
}

.hero-stage-text .eyebrow {
  border-color: rgba(225, 252, 254, 0.34);
  color: #e8feff;
  background: rgba(7, 31, 39, 0.46);
}

.availability-chip {
  margin: 0.2rem 0 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  font-size: 0.8rem;
  color: #d6fbfd;
  background: rgba(0, 166, 166, 0.2);
  border: 1px solid rgba(0, 166, 166, 0.4);
}

.hero-proof-line {
  margin: 0.9rem 0 0;
  font-size: 0.86rem;
  color: rgba(234, 255, 255, 0.9);
}

.hero-stage-text .hero-points li {
  color: rgba(235, 255, 255, 0.94);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -6rem -8rem auto;
  width: 20rem;
  height: 20rem;
  background: radial-gradient(circle, rgba(243, 139, 42, 0.22) 0%, rgba(243, 139, 42, 0) 68%);
  pointer-events: none;
  filter: blur(8px);
  animation: floatGlow 8s ease-in-out infinite;
}

.noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    linear-gradient(120deg, rgba(11, 42, 51, 0.2) 0 1px, transparent 1px),
    linear-gradient(240deg, rgba(0, 166, 166, 0.16) 0 1px, transparent 1px);
  background-size: 24px 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  margin: 1rem 0;
  font-family: "Source Serif 4", serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 0.98;
}

.lead {
  color: var(--muted);
  max-width: 60ch;
  font-size: clamp(1rem, 2.4vw, 1.2rem);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.hero-cta-row .btn + .btn,
.hero-cta-row .btn + .btn-ghost,
.hero-cta-row .btn + .btn-quiet,
.hero-cta-row .btn + .btn-link {
  margin-left: 0.1rem;
}

.hero-cta-row .btn:not(:first-child) {
  background: linear-gradient(120deg, #edf9fb 0%, #e4f4f7 100%);
  color: var(--brand-strong);
  border: 1px solid rgba(0, 166, 166, 0.24);
  box-shadow: none;
}

.hero-cta-row .btn:not(:first-child):hover {
  background: linear-gradient(120deg, #e3f6f8 0%, #d9edf1 100%);
  box-shadow: 0 10px 20px rgba(8, 36, 44, 0.08);
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: grid;
  gap: 0.45rem;
}

.hero-points li {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-visual-stack {
  display: grid;
  gap: 1rem;
}

.hero-showcase-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(191, 217, 220, 0.9);
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(236, 248, 249, 0.96) 100%);
  box-shadow: 0 28px 56px rgba(8, 36, 44, 0.16);
}

.hero-showcase-card img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: top center;
}

.hero-stage {
  min-height: 520px;
}

.hero-stage img {
  height: 520px;
  filter: saturate(1.02) contrast(1.03);
}

.hero-stage-content {
  position: absolute;
  inset: auto 1.1rem 1.1rem 1.1rem;
  border-radius: 18px;
  padding: 1.3rem;
  background: linear-gradient(180deg, rgba(6, 24, 31, 0.2) 0%, rgba(6, 24, 31, 0.86) 100%);
  color: #f2feff;
}

.hero-stage-content h1 {
  margin: 0.85rem 0;
  font-family: "Source Serif 4", serif;
  font-size: clamp(2rem, 5.4vw, 3.5rem);
  line-height: 1;
}

.hero-stage-content .lead {
  color: rgba(242, 254, 255, 0.92);
  max-width: 72ch;
}

.hero-stage-content .eyebrow {
  border-color: rgba(236, 254, 255, 0.4);
  color: #e7feff;
  background: rgba(5, 28, 35, 0.28);
}

.hero-stage-content .hero-points li {
  color: rgba(236, 254, 255, 0.96);
}

.hero-support {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.lead-magnet {
  margin-top: 1.1rem;
  border: 1px solid rgba(187, 234, 236, 0.28);
  border-radius: var(--radius);
  background: rgba(7, 31, 39, 0.5);
  color: #e9feff;
  padding: 1rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.3fr 1fr;
  align-items: start;
}

.lead-magnet h3 {
  margin: 0.2rem 0 0.35rem;
  font-size: 1.22rem;
}

.lead-magnet p {
  margin: 0;
  color: rgba(229, 253, 255, 0.9);
}

.lead-magnet-kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9deff2;
}

.lead-magnet-form {
  display: grid;
  gap: 0.6rem;
}

.lead-magnet-form label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.86rem;
}

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

.fit-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  padding: 1.1rem;
}

.fit-card h3 {
  margin-top: 0;
}

.fit-card ul {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
}

.fit-card-muted {
  background: rgba(243, 139, 42, 0.08);
  border-color: rgba(243, 139, 42, 0.32);
}

.roi-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  padding: 1.1rem;
  display: grid;
  gap: 1rem;
}

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

.roi-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.roi-form button {
  grid-column: 1 / -1;
}

.roi-result {
  margin: 0;
  border: 1px dashed var(--line);
  border-radius: 12px;
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.76);
  color: var(--muted);
}

.hero-showcase-overlay {
  position: absolute;
  inset: auto 1rem 1rem 1rem;
  padding: 1rem;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(6, 24, 31, 0.12) 0%, rgba(6, 24, 31, 0.82) 100%);
  color: #f5ffff;
}

.hero-showcase-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.9;
}

.hero-showcase-overlay h2 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.15;
}

.hero-showcase-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.92);
  border-top: 1px solid rgba(191, 217, 220, 0.85);
}

.hero-showcase-stats span {
  display: grid;
  gap: 0.12rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.hero-showcase-stats strong {
  color: var(--ink);
  font-size: 0.94rem;
}

.hero-card {
  background: linear-gradient(165deg, var(--surface) 0%, #f2fbfb 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  transform: translateY(0) rotate(0deg);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hero-card:hover {
  transform: translateY(-6px) rotate(-0.4deg);
  box-shadow: 0 22px 46px rgba(8, 36, 44, 0.14);
}

.hero-card h2 {
  margin-top: 0.2rem;
  margin-bottom: 0.55rem;
  font-size: 1.3rem;
}

.hero-card p {
  margin-top: 0;
  color: var(--muted);
}
.hero-overview-list {
  list-style: none;
  margin: 0.9rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}
.hero-overview-list li {
  padding: 0.72rem 0.78rem;
  border-radius: 12px;
  border: 1px solid rgba(191, 217, 220, 0.78);
  background: rgba(255, 255, 255, 0.7);
  display: grid;
  gap: 0.15rem;
}
.hero-overview-list strong {
  font-size: 0.9rem;
  line-height: 1.2;
  color: var(--ink);
}
.hero-overview-list span {
  font-size: 0.83rem;
  line-height: 1.45;
  color: var(--muted);
}
.hero-overview-actions {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.mini-form {
  display: grid;
  gap: 0.7rem;
}

.mini-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.86rem;
  color: var(--muted);
}

.booking-wrap {
  max-width: 980px;
}

.booking-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  padding: 1.15rem;
  display: grid;
  gap: 0.75rem;
}

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

.booking-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.86rem;
  color: var(--muted);
}

input,
select,
textarea {
  border: 1px solid var(--line);
  background: white;
  border-radius: 10px;
  padding: 0.72rem 0.8rem;
  font: inherit;
}

input,
select,
textarea,
button {
  font-size: 16px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(0, 166, 166, 0.22);
  border-color: var(--brand);
  box-shadow: 0 0 0 6px rgba(0, 166, 166, 0.08);
}

.form-note,
.form-status {
  font-size: 0.78rem;
  margin: 0;
}

.form-status {
  min-height: 1.1rem;
  color: #0b5f62;
}

.audit-preview {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  padding: 0.75rem;
}

.audit-title {
  margin: 0 0 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
}

.audit-preview ul {
  margin: 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.24rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.audit-fallback {
  border: 1px solid rgba(243, 139, 42, 0.45);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 246, 234, 0.95) 100%);
  padding: 0.75rem;
  display: grid;
  gap: 0.5rem;
}

.audit-fallback-copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.audit-fallback-actions {
  display: grid;
  gap: 0.5rem;
}

.trust-strip {
  margin-top: 2.2rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.66);
  border-radius: 14px;
  padding: 1rem;
  display: grid;
  gap: 0.6rem;
}
.lead-magnet-actions {
  display: grid;
  gap: 0.6rem;
  align-content: start;
}

.trust-strip p {
  margin: 0;
  font-weight: 500;
}

.trust-strip ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted);
}

.quick-links {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.quick-links a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.42rem 0.75rem;
  background: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.trust-strip li {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
}

.service-grid,
.pricing-grid,
.process-grid {
  margin-top: 1.6rem;
  display: grid;
  gap: 1rem;
}

.pricing-explainer {
  margin-top: 1.25rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 2px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 250, 250, 0.94) 100%);
  display: grid;
  gap: 1rem;
}

.pricing-explainer-copy p {
  margin: 0;
}

.pricing-explainer-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-strong);
}

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

.pricing-explainer-card {
  padding: 0.95rem;
  border: 1px solid rgba(191, 217, 220, 0.92);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
}

.pricing-explainer-card span {
  display: inline-flex;
  margin-bottom: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--brand-2-strong);
}

.pricing-explainer-card h3 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
}

.pricing-explainer-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.service-grid-3,
.service-grid-4,
.project-grid,
.industry-grid {
  margin-top: 1.6rem;
  display: grid;
  gap: 1rem;
}

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

.service-grid-4,
.project-grid,
.industry-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.projects-page .project-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.projects-page .project-card {
  padding: 1.2rem;
}

.projects-page .project-card h3 {
  font-size: 1.18rem;
}

.project-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(253, 250, 244, 0.95) 100%);
  padding: 1.1rem;
  display: grid;
  gap: 0.45rem;
  align-content: start;
  box-shadow: var(--card-shadow);
}

.project-thumb {
  width: 100%;
  height: 172px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.project-thumb.is-logo {
  object-fit: contain;
  background: linear-gradient(150deg, rgba(236, 248, 249, 0.88) 0%, rgba(255, 255, 255, 0.96) 100%);
  padding: 0.55rem;
}

.project-card h3,
.project-card p {
  margin: 0;
}

.project-card a {
  color: var(--brand);
  font-weight: 700;
}

.project-summary {
  color: var(--ink);
}

.project-meta,
.project-proof {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.project-actions {
  margin-top: 0.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.project-more-link {
  margin-top: 1rem;
}

.project-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.48rem 0.7rem;
  border-radius: 10px;
  border: 1px solid rgba(20, 97, 109, 0.3);
  background: rgba(20, 97, 109, 0.09);
  color: var(--brand-strong);
  font-size: 0.84rem;
  font-weight: 700;
}

.project-actions a:hover {
  background: rgba(20, 97, 109, 0.16);
}

.project-link-secondary {
  border-color: rgba(173, 126, 68, 0.38);
  background: rgba(173, 126, 68, 0.12);
  color: #7f5627;
}

.project-link-secondary:hover {
  background: rgba(173, 126, 68, 0.18);
}

.chip {
  margin: 0;
  width: fit-content;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  font-size: 0.75rem;
  border: 1px solid var(--line);
  color: var(--muted);
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
  padding: 1.2rem;
  box-shadow: var(--card-shadow);
}

.card-media {
  width: 100%;
  height: 150px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 0.75rem;
  border: 1px solid var(--line);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
  color: var(--brand-strong);
  background: linear-gradient(145deg, rgba(0, 166, 166, 0.1) 0%, rgba(243, 139, 42, 0.14) 100%);
  border: 1px solid rgba(0, 166, 166, 0.2);
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.card h3 {
  margin-top: 0;
}

.price-tag {
  margin-bottom: 0;
  font-weight: 700;
  color: var(--brand);
}

.section-dark {
  background: linear-gradient(130deg, #13273a 0%, #1a334a 58%, #243f57 100%);
  color: #ecfeff;
}

.section-tone-mint {
  background: linear-gradient(160deg, rgba(240, 235, 224, 0.86) 0%, rgba(250, 247, 241, 0.94) 100%);
}

.section-tone-sun {
  background: linear-gradient(160deg, rgba(245, 234, 219, 0.86) 0%, rgba(251, 246, 238, 0.94) 100%);
}

.section-tone-sky {
  background: linear-gradient(160deg, rgba(230, 240, 238, 0.88) 0%, rgba(243, 249, 247, 0.96) 100%);
}

.section-tone-rose {
  background: linear-gradient(160deg, rgba(242, 236, 228, 0.86) 0%, rgba(250, 246, 241, 0.95) 100%);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}

.pain-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 1.4rem 1.2rem 1.5rem;
}

.pain-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0.4rem 0 0.85rem;
  color: #ecfeff;
}

.pain-icon {
  font-size: 1.6rem;
  line-height: 1;
}

.pain-card ul {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.5rem;
}

.pain-card ul li {
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(236, 254, 255, 0.82);
}

.pain-foot {
  margin-top: 2rem;
  font-size: 0.95rem;
  color: rgba(236, 254, 255, 0.88);
}

.pain-foot a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pain-lead {
  max-width: 60ch;
  margin-top: 0.75rem;
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.checklist,
.result-card {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.05);
}

.checklist {
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.checklist li {
  color: rgba(255, 255, 255, 0.92);
}

.text-link {
  color: var(--brand-2);
  font-weight: 600;
}

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

.process-step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.65);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(8, 36, 44, 0.08);
}

.process-step span {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand);
}

.pricing-header {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.toggle-wrap {
  display: inline-flex;
  width: fit-content;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.22rem;
  background: rgba(255, 255, 255, 0.8);
}

.toggle-btn {
  border: none;
  background: transparent;
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  font: inherit;
  font-size: 0.86rem;
  color: var(--muted);
  cursor: pointer;
}

.toggle-btn.is-active {
  background: var(--btn-bg);
  color: white;
  box-shadow: 0 8px 16px rgba(0, 166, 166, 0.18);
}

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

.estimator-wrap {
  display: grid;
  gap: 1.3rem;
}

.estimator-lead {
  max-width: 65ch;
  margin-top: 0.6rem;
}

.estimator-shell {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.78);
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.3fr 0.7fr;
}

.estimator-progress {
  grid-column: 1 / -1;
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(24, 20, 18, 0.1);
  overflow: hidden;
}

.estimator-progress-bar {
  height: 100%;
  width: 25%;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-2) 100%);
  transition: width 0.25s ease;
}

.estimate-form {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.65);
}

.estimate-step {
  border: none;
  margin: 0;
  padding: 0;
  display: none;
  gap: 0.65rem;
}

.estimate-step.is-active {
  display: grid;
}

.estimate-step legend {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.option-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.72rem 0.8rem;
  background: white;
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  cursor: pointer;
}

.option-card:has(input:checked) {
  border-color: rgba(0, 166, 166, 0.72);
  background: linear-gradient(135deg, rgba(0, 166, 166, 0.1) 0%, rgba(243, 139, 42, 0.08) 100%);
}

.estimate-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.estimate-actions button {
  min-width: 140px;
}

#estimateSubmit {
  display: none;
}

.estimate-result {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  background: linear-gradient(160deg, #f7ffff 0%, #eaf9fb 100%);
  display: grid;
  gap: 0.5rem;
  align-content: start;
}

.result-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  color: var(--muted);
}

.estimate-result h3 {
  margin: 0;
  font-size: 1.35rem;
}

.estimate-price {
  margin: 0.2rem 0;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--brand);
}

.estimate-result p {
  margin: 0;
}

.retainer-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.estimate-result ul {
  margin: 0;
  padding-left: 1rem;
  color: var(--muted);
}

.price-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.88);
  position: relative;
}

.price-card h3 {
  margin-top: 0;
}

.price {
  font-size: 1.55rem;
  margin: 0.7rem 0 1rem;
}

.price span {
  font-size: 2rem;
  font-weight: 700;
}

.price-card ul {
  margin: 0 0 1rem;
  padding-left: 1.05rem;
}

.price-card .btn {
  background: linear-gradient(120deg, #edf9fb 0%, #e4f4f7 100%);
  color: var(--brand-strong);
  border: 1px solid rgba(0, 166, 166, 0.24);
  box-shadow: none;
}

.price-card .btn:hover {
  background: linear-gradient(120deg, #e3f6f8 0%, #d9edf1 100%);
  box-shadow: 0 10px 20px rgba(8, 36, 44, 0.08);
}

.price-card.featured .btn,
.price-card .btn.btn-warm {
  background: linear-gradient(120deg, #f7a23f 0%, #f38b2a 52%, #dc7412 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 10px 24px rgba(220, 116, 18, 0.26);
}

.price-card.featured .btn:hover,
.price-card .btn.btn-warm:hover {
  background: linear-gradient(120deg, #ffb156 0%, #f39a33 52%, #e07a1d 100%);
  box-shadow: 0 14px 30px rgba(220, 116, 18, 0.34);
}

.featured {
  border-color: rgba(243, 139, 42, 0.6);
  box-shadow: 0 24px 54px rgba(220, 116, 18, 0.14);
}

.badge {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #7a3a0a;
  background: rgba(243, 139, 42, 0.22);
  padding: 0.3rem 0.5rem;
  border-radius: 999px;
}

.section-accent {
  background: linear-gradient(120deg, #193650 0%, #254762 50%, #2f5776 100%);
  color: #ecfeff;
}

.proposal-capture {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.5rem;
}

.proposal-capture input {
  width: 100%;
}

.proposal-capture .btn {
  margin-top: 0.25rem;
}

.guarantee {
  text-align: center;
  max-width: 760px;
}

.guarantee h2 {
  margin-top: 0;
  font-family: "Source Serif 4", serif;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  line-height: 1.08;
}

.guarantee p {
  margin: 0.4rem auto 1.2rem;
  opacity: 0.95;
  max-width: 65ch;
}

.guarantee .btn {
  background: linear-gradient(120deg, #ffffff 0%, #f2fcff 100%);
  color: var(--brand-3-strong);
  box-shadow: 0 12px 26px rgba(12, 46, 90, 0.24);
}

.guarantee .btn:hover {
  background: linear-gradient(120deg, #ffffff 0%, #e9f7ff 100%);
}

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

.testimonial-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--card-shadow);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(8, 36, 44, 0.1);
}

.quote {
  margin: 0 0 0.9rem;
  color: var(--ink);
}

.person {
  margin: 0;
  font-weight: 700;
}

.role {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.faq-wrap {
  display: grid;
  gap: 1.2rem;
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.faq-item:hover {
  border-color: rgba(0, 166, 166, 0.28);
  box-shadow: 0 12px 26px rgba(8, 36, 44, 0.06);
  transform: translateY(-2px);
}

.faq-item button {
  width: 100%;
  text-align: left;
  border: none;
  background: transparent;
  padding: 0.95rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-content p {
  margin: 0;
  padding: 0 0.95rem 0.95rem;
  color: var(--muted);
}

.site-footer {
  padding: 1.6rem 0 4.8rem;
  border-top: 1px solid var(--line);
}

.footer-wrap {
  display: grid;
  gap: 0.5rem;
  justify-items: center;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 0.9rem;
  color: var(--muted);
}

.tiny {
  font-size: 0.8rem;
  color: var(--muted);
}

.floating-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  background: var(--btn-bg);
  color: white;
  padding: 0.82rem 1rem;
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(17, 48, 77, 0.3);
  transform: translateY(120%);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: none;
}

.floating-cta.is-visible {
  transform: translateY(0);
}

.floating-cta:hover {
  box-shadow: 0 20px 38px rgba(17, 48, 77, 0.36);
}

.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(.22,.8,.2,1);
}

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

.is-parallax {
  will-change: transform;
  transition: transform 0.15s linear;
}

.magnetic {
  will-change: transform;
}

@keyframes floatGlow {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-8px, -12px, 0) scale(1.04); }
}

@keyframes driftOrb {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(18px, -22px, 0) scale(1.08); }
}

@keyframes panGrid {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-46px, -46px, 0); }
}

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

.delay-3 {
  transition-delay: 0.24s;
}

/* ── Nav toggle (hamburger) ── */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 9px;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  color: var(--ink);
  flex-shrink: 0;
}

.nav-toggle svg {
  transition: transform 0.2s ease;
}

.nav-toggle[aria-expanded="true"] svg {
  transform: rotate(90deg);
}

/* ── Filter bar (projects page) ── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
}

.filter-btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  background: rgba(255, 255, 255, 0.75);
  font: inherit;
  font-size: 0.9rem;
  cursor: pointer;
  color: var(--muted);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.filter-btn.is-active,
.filter-btn:hover {
  background: var(--brand);
  color: white;
  border-color: var(--brand);
}

.app-promo-strip {
  margin: 0 0 1.1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(20, 97, 109, 0.12) 0%, rgba(173, 126, 68, 0.12) 100%);
  padding: 0.85rem;
  display: grid;
  gap: 0.75rem;
}

.projects-page .page-hero {
  position: relative;
}

.projects-page .page-hero::before {
  content: "";
  position: absolute;
  inset: 1rem 0 0;
  background:
    radial-gradient(circle at 14% 14%, rgba(20, 97, 109, 0.08) 0%, transparent 34%),
    radial-gradient(circle at 88% 20%, rgba(173, 126, 68, 0.1) 0%, transparent 36%);
  pointer-events: none;
}

.projects-page .filter-bar {
  margin-top: 1.3rem;
  margin-bottom: 0.6rem;
}

.live-preview-zone {
  border: 1px solid rgba(20, 97, 109, 0.24);
  border-radius: 28px;
  padding: 1.35rem;
  margin-bottom: 1.4rem;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.9) 0%, rgba(246, 240, 230, 0.92) 100%),
    radial-gradient(circle at 86% 14%, rgba(20, 97, 109, 0.08) 0%, transparent 46%);
  box-shadow: 0 22px 44px rgba(29, 40, 46, 0.12);
}

.live-preview-zone .lead {
  margin: 0.7rem 0 0;
}

.live-preview-grid {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.live-preview-card {
  border: 1px solid rgba(217, 210, 196, 0.95);
  border-radius: 20px;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 30px rgba(31, 45, 56, 0.11);
}

.live-preview-head {
  margin-bottom: 0.55rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.live-preview-head h3 {
  margin: 0;
  font-size: 1rem;
}

.live-preview-head a {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--brand-strong);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.live-preview-frame-wrap {
  border: 1px solid rgba(20, 97, 109, 0.25);
  border-radius: 14px;
  overflow: hidden;
  background: #f8f4ec;
  aspect-ratio: 16 / 10;
}

.live-preview-frame-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

.app-promo-copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.app-promo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.app-promo-actions .btn {
  white-space: nowrap;
}

.project-card {
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(25, 36, 44, 0.16);
}

.case-study-page .service-detail-hero {
  position: relative;
  overflow: hidden;
}

.case-study-page .service-detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(20, 97, 109, 0.09) 0%, transparent 38%),
    radial-gradient(circle at 12% 76%, rgba(173, 126, 68, 0.1) 0%, transparent 34%);
  pointer-events: none;
}

.case-live-preview {
  margin: 1rem 0 1.2rem;
  border: 1px solid rgba(20, 97, 109, 0.26);
  border-radius: 20px;
  padding: 0.95rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(245, 239, 230, 0.94) 100%);
  box-shadow: 0 16px 34px rgba(31, 45, 56, 0.11);
}

.case-live-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.55rem;
}

.case-live-preview-head h2 {
  margin: 0;
  font-size: 1.05rem;
}

.case-live-preview-head a {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--brand-strong);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.case-live-preview-frame {
  border-radius: 13px;
  border: 1px solid rgba(20, 97, 109, 0.2);
  overflow: hidden;
  background: #f8f4ec;
  aspect-ratio: 16 / 9;
}

.case-live-preview-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

body {
  background:
    radial-gradient(circle at 14% 10%, rgba(72, 168, 163, 0.12) 0%, transparent 34%),
    radial-gradient(circle at 90% 8%, rgba(194, 141, 79, 0.12) 0%, transparent 30%),
    linear-gradient(180deg, #111318 0%, #0f1217 48%, #0c0f13 100%);
  color: var(--ink);
}

.site-header,
.home-page .site-header {
  background: rgba(13, 15, 20, 0.9);
  border-bottom: 1px solid rgba(68, 78, 94, 0.65);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(72, 168, 163, 0.15);
}

.eyebrow {
  border-color: rgba(95, 111, 130, 0.6);
  background: rgba(18, 22, 29, 0.85);
  color: #c9c1b5;
}

.section-dark,
.home-page .section-dark {
  background: linear-gradient(140deg, #0f131a 0%, #151a22 55%, #1b212b 100%);
}

.section-tone-mint,
.section-tone-sky,
.section-tone-sun,
.section-tone-rose,
.home-page .section-tone-mint,
.home-page .section-tone-sky,
.home-page .section-tone-sun,
.home-page .section-tone-rose {
  background: linear-gradient(160deg, rgba(20, 25, 32, 0.95) 0%, rgba(14, 18, 24, 0.96) 100%);
}

.section-accent,
.home-page .section-accent {
  background: linear-gradient(120deg, #113235 0%, #1f474c 52%, #3b2d1d 100%);
}

.card,
.project-card,
.price-card,
.testimonial-card,
.process-step,
.faq-item,
.booking-form,
.mini-form,
.estimate-form,
.estimate-result,
.result-card,
.fit-card,
.pain-card,
.backlink-section,
.backlink-card,
.app-promo-strip,
.trust-strip,
.lead-magnet,
.live-preview-zone,
.live-preview-card,
.case-live-preview {
  background: linear-gradient(160deg, rgba(24, 29, 37, 0.92) 0%, rgba(17, 21, 28, 0.95) 100%);
  border-color: rgba(61, 72, 88, 0.82);
  box-shadow: var(--card-shadow);
}

.project-actions a {
  border-color: rgba(72, 168, 163, 0.4);
  background: rgba(72, 168, 163, 0.15);
  color: #9dd8d4;
}

.project-actions a:hover {
  background: rgba(72, 168, 163, 0.25);
}

.project-link-secondary {
  border-color: rgba(194, 141, 79, 0.45);
  background: rgba(194, 141, 79, 0.16);
  color: #e0ba88;
}

.project-link-secondary:hover {
  background: rgba(194, 141, 79, 0.25);
}

.live-preview-frame-wrap,
.case-live-preview-frame {
  border-color: rgba(72, 168, 163, 0.35);
  background: #0e1218;
}

input,
select,
textarea {
  background: rgba(11, 14, 19, 0.92);
  border-color: rgba(66, 77, 92, 0.9);
  color: #efe6d8;
}

input::placeholder,
textarea::placeholder {
  color: #8f9bac;
}

label,
.project-meta,
.project-proof,
.lead,
.app-promo-copy,
.card p,
.faq-content p,
.tiny,
.form-note {
  color: #b8b0a4;
}

.home-page {
  background:
    radial-gradient(circle at 14% 8%, rgba(72, 168, 163, 0.1) 0%, transparent 35%),
    radial-gradient(circle at 88% 10%, rgba(194, 141, 79, 0.12) 0%, transparent 32%),
    linear-gradient(180deg, #111318 0%, #0e1116 55%, #0b0d11 100%);
}

.home-page .hero-first {
  background: linear-gradient(145deg, #0a0d12 0%, #121821 54%, #1a222d 100%);
}

a,
.text-link,
.card-cta,
.footer-links a,
.project-card a,
.backlink-card a,
.live-preview-head a,
.case-live-preview-head a {
  color: #9dd8d4;
}

a:hover,
.text-link:hover,
.card-cta:hover,
.footer-links a:hover,
.project-card a:hover,
.backlink-card a:hover,
.live-preview-head a:hover,
.case-live-preview-head a:hover {
  color: #dcb482;
}

.site-footer {
  border-top: 1px solid rgba(61, 72, 88, 0.82);
  background: rgba(10, 12, 16, 0.92);
}

.backlink-section {
  margin-top: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  padding: 1.1rem;
}

.backlink-section .section-title {
  margin-top: 0.6rem;
}

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

.backlink-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  padding: 0.9rem;
}

.backlink-card h3 {
  margin-top: 0;
  margin-bottom: 0.55rem;
  font-size: 1rem;
}

.backlink-card ul {
  margin: 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.35rem;
}

.backlink-card a {
  color: var(--brand);
  font-weight: 600;
}

.case-timeline {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.6rem;
  color: var(--muted);
}

.case-timeline li {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
  padding: 0.62rem 0.72rem;
}

/* ── Service detail pages ── */
.service-detail-hero {
  padding-bottom: 0.5rem;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.breadcrumb a {
  color: var(--brand);
}

.breadcrumb span {
  opacity: 0.5;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.6rem;
}

.detail-feature {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.75);
}

.detail-feature h3 {
  margin-top: 0;
  font-size: 1.05rem;
}

.detail-feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.detail-hero-image {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  object-fit: cover;
  max-height: 340px;
  margin-top: 1.6rem;
  box-shadow: 0 18px 38px rgba(8, 36, 44, 0.1);
}

.detail-hero-image.is-floating {
  animation: heroFloat 6s ease-in-out infinite;
}

.card.card-linked {
  text-decoration: none;
  display: block;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  color: inherit;
}

.card.card-linked:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(8, 36, 44, 0.12);
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.card .card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
  font-weight: 700;
  color: var(--brand);
  font-size: 0.9rem;
}

.dark-section-lead {
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0.8rem;
}

.cta-block {
  margin-top: 1.4rem;
  text-align: center;
}

.cta-block-lg {
  margin-top: 1.6rem;
}

.cta-block .btn,
.cta-block-lg .btn {
  background: linear-gradient(120deg, #f7a23f 0%, #f38b2a 52%, #dc7412 100%);
  box-shadow: 0 10px 24px rgba(220, 116, 18, 0.26);
}

.cta-block .btn:hover,
.cta-block-lg .btn:hover {
  background: linear-gradient(120deg, #ffb156 0%, #f39a33 52%, #e07a1d 100%);
  box-shadow: 0 14px 30px rgba(220, 116, 18, 0.34);
}

/* ── 2-col intermediate breakpoint (641px – 980px) ── */
@media (min-width: 641px) and (max-width: 980px) {
  .service-grid-4,
  .project-grid,
  .industry-grid,
  .pricing-grid,
  .pain-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .live-preview-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

@media (max-width: 980px) {
  .currency-picker {
    margin-left: auto;
    order: 2;
  }

  .currency-picker-label {
    display: none;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(247, 243, 234, 0.98);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 0;
    z-index: 200;
    gap: 0;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    box-shadow: 0 18px 42px rgba(8, 36, 44, 0.14);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 0.85rem 1.25rem;
    font-size: 1rem;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    width: 100%;
  }

  .main-nav a:last-child {
    border-bottom: none;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
    order: 3;
  }

  .brand {
    min-width: 0;
    flex: 1;
  }

  .brand-copy strong,
  .brand-copy small {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-wrap .btn-sm {
    display: none;
  }

  .site-header {
    position: -webkit-sticky;
    position: sticky;
  }

  .hero-grid,
  .results-grid,
  .service-grid,
  .estimator-shell {
    grid-template-columns: 1fr;
  }

  .corporate-hero-grid {
    grid-template-columns: 1fr;
  }

  .corporate-hero-panel {
    margin-top: 0.4rem;
  }

  .lead-magnet,
  .fit-grid,
  .roi-form {
    grid-template-columns: 1fr;
  }

  .hero-showcase-stats,
  .pricing-explainer-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage,
  .hero-stage img {
    min-height: 460px;
    height: 460px;
  }

  .service-grid-4,
  .project-grid,
  .industry-grid,
  .service-grid-3,
  .process-grid,
  .pricing-grid,
  .testimonial-grid,
  .service-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-pad {
    padding: 4.2rem 0;
  }

  .live-preview-zone {
    padding: 1rem;
    border-radius: 20px;
  }
}

@media (max-width: 640px) {
  .service-grid-4,
  .project-grid,
  .industry-grid,
  .live-preview-grid,
  .backlink-grid,
  .pricing-grid,
  .service-grid-3,
  .process-grid,
  .testimonial-grid,
  .service-detail-grid,
  .booking-grid,
  .pain-grid {
    grid-template-columns: 1fr;
  }

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

  .brand-copy small {
    display: none;
  }

  .brand-copy strong {
    font-size: 0.84rem;
    letter-spacing: 0.05em;
  }

  .hero-content h1 {
    line-height: 1.02;
  }

  .hero-cta-row {
    width: 100%;
  }

  .hero-cta-row .btn,
  .hero-cta-row .btn-link {
    width: 100%;
    justify-content: center;
  }

  .hero-stage-text {
    padding-top: 1.8rem;
  }

  .hero-proof-line {
    font-size: 0.8rem;
  }

  .hero-showcase-card img {
    height: 240px;
  }

  .hero-stage,
  .hero-stage img {
    min-height: 420px;
    height: 420px;
  }

  .hero-showcase-stats {
    padding: 0.8rem;
  }

  .hero-stage-content {
    inset: auto 0.75rem 0.75rem 0.75rem;
    padding: 0.95rem;
  }

  .btn-lg,
  .btn-full {
    font-size: 0.92rem;
  }

  .floating-cta {
    display: inline-flex;
    left: 1rem;
    text-align: center;
  }

  .filter-bar {
    gap: 0.4rem;
  }

  .filter-btn {
    padding: 0.4rem 0.75rem;
    font-size: 0.85rem;
  }

  .estimate-actions button {
    min-width: 0;
    flex: 1;
  }

  .estimator-shell {
    padding: 0.85rem;
  }

  .app-promo-actions {
    display: grid;
  }

  .projects-page .project-grid {
    grid-template-columns: 1fr;
  }

  .case-live-preview-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .case-live-preview-frame {
    aspect-ratio: 4 / 3;
  }

  .live-preview-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .live-preview-frame-wrap {
    aspect-ratio: 4 / 3;
  }
}

/* ═══════════════════════════════════════════════════════════
   Dark editorial: comprehensive white-container overrides
   ═══════════════════════════════════════════════════════════ */

/* Mobile nav dropdown */
@media (max-width: 980px) {
  .main-nav {
    background: rgba(13, 15, 20, 0.97);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-bottom-color: rgba(68, 78, 94, 0.65);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.5);
  }

  .main-nav a {
    border-bottom-color: rgba(61, 72, 88, 0.55);
  }
}

/* Corporate hero panel */
.corporate-hero-panel,
.home-page .corporate-hero-panel {
  background: linear-gradient(165deg, rgba(18, 22, 30, 0.96) 0%, rgba(13, 17, 24, 0.98) 100%);
  border-color: rgba(61, 72, 88, 0.85);
}

/* Hero showcase card */
.hero-showcase-card {
  background: linear-gradient(160deg, rgba(22, 27, 36, 0.95) 0%, rgba(17, 21, 28, 0.96) 100%);
  border-color: rgba(61, 72, 88, 0.82);
}

/* Hero showcase stats panel */
.hero-showcase-stats {
  background: rgba(13, 16, 21, 0.95);
  border-top-color: rgba(61, 72, 88, 0.65);
}

.hero-showcase-stats strong {
  color: var(--ink);
}

/* Hero overview list items */
.hero-overview-list li,
.home-page .hero-overview-list li {
  background: rgba(18, 22, 29, 0.88);
  border-color: rgba(61, 72, 88, 0.8);
}

/* Hero card gradient */
.hero-card {
  background: linear-gradient(165deg, var(--surface) 0%, #161d28 100%);
}

/* ROI calculator */
.roi-card,
.roi-result {
  background: rgba(18, 22, 29, 0.92);
  border-color: rgba(61, 72, 88, 0.82);
}

/* Audit preview + fallback */
.audit-preview {
  background: rgba(18, 22, 29, 0.9);
  border-color: rgba(61, 72, 88, 0.82);
}

.audit-fallback {
  background: linear-gradient(160deg, rgba(22, 27, 35, 0.92) 0%, rgba(30, 20, 12, 0.94) 100%);
  border-color: rgba(194, 141, 79, 0.4);
}

/* Quick links */
.quick-links a {
  background: rgba(18, 22, 29, 0.9);
  border-color: rgba(61, 72, 88, 0.85);
  color: var(--muted);
}

.quick-links a:hover {
  background: rgba(72, 168, 163, 0.15);
  border-color: rgba(72, 168, 163, 0.4);
  color: var(--brand-strong);
}

/* Trust strip list items */
.trust-strip li {
  background: rgba(18, 22, 29, 0.85);
  border-color: rgba(61, 72, 88, 0.75);
}

/* Pricing explainer */
.pricing-explainer {
  background: linear-gradient(135deg, rgba(20, 25, 33, 0.92) 0%, rgba(17, 21, 28, 0.95) 100%);
  border-color: rgba(61, 72, 88, 0.82);
}

.pricing-explainer-card {
  background: rgba(18, 22, 29, 0.9);
  border-color: rgba(61, 72, 88, 0.82);
}

/* Pricing toggle */
.toggle-wrap {
  background: rgba(13, 16, 21, 0.95);
  border-color: rgba(61, 72, 88, 0.85);
}

/* Estimator shell + option cards */
.estimator-shell {
  background: rgba(18, 22, 29, 0.92);
  border-color: rgba(61, 72, 88, 0.82);
}

.option-card {
  background: rgba(14, 17, 23, 0.92);
  border-color: rgba(61, 72, 88, 0.8);
  color: var(--ink);
}

.option-card:has(input:checked) {
  background: linear-gradient(135deg, rgba(72, 168, 163, 0.18) 0%, rgba(194, 141, 79, 0.12) 100%);
  border-color: rgba(72, 168, 163, 0.65);
}

/* Filter buttons (default / inactive state) */
.filter-btn {
  background: rgba(18, 22, 29, 0.88);
  border-color: rgba(61, 72, 88, 0.82);
  color: var(--muted);
}

/* Logo project thumbnails */
.project-thumb.is-logo {
  background: linear-gradient(150deg, rgba(18, 22, 29, 0.9) 0%, rgba(22, 27, 35, 0.92) 100%);
  border-color: rgba(61, 72, 88, 0.7);
}

/* Backlink section + cards (re-applied white after dark block — override here) */
.backlink-section {
  background: linear-gradient(160deg, rgba(22, 27, 35, 0.94) 0%, rgba(17, 21, 28, 0.96) 100%);
  border-color: rgba(61, 72, 88, 0.82);
  color: var(--ink);
}

.backlink-card {
  background: rgba(18, 22, 29, 0.9);
  border-color: rgba(61, 72, 88, 0.8);
  color: var(--ink);
}

.backlink-card h3 {
  color: var(--ink);
}

.backlink-card a {
  color: var(--brand-strong);
}

.backlink-card ul {
  color: var(--muted);
}

/* Case timeline items */
.case-timeline li {
  background: rgba(18, 22, 29, 0.88);
  border-color: rgba(61, 72, 88, 0.78);
  color: var(--muted);
}

/* Service detail feature cards */
.detail-feature {
  background: rgba(20, 25, 33, 0.92);
  border-color: rgba(61, 72, 88, 0.82);
}

.detail-feature h3 {
  color: var(--ink);
}

.detail-feature p {
  color: var(--muted);
}

/* ── Home-page scoped card overrides (higher specificity than generic .card rule) ── */
.home-page .card,
.home-page .project-card,
.home-page .testimonial-card,
.home-page .process-step,
.home-page .faq-item,
.home-page .price-card,
.home-page .fit-card,
.home-page .pain-card,
.home-page .result-card {
  background: linear-gradient(160deg, rgba(24, 29, 37, 0.92) 0%, rgba(17, 21, 28, 0.95) 100%);
  border-color: rgba(61, 72, 88, 0.82);
  box-shadow: var(--card-shadow);
}

.home-page .trust-strip {
  background: rgba(18, 22, 29, 0.88);
  border-color: rgba(61, 72, 88, 0.75);
}

/* Ensure all text in cards is legible */
.home-page .card h2,
.home-page .card h3,
.home-page .card h4,
.home-page .card p,
.home-page .project-card h3,
.home-page .project-card p,
.home-page .testimonial-card p,
.home-page .process-step h3,
.home-page .process-step p,
.home-page .faq-item,
.home-page .price-card h3,
.home-page .price-card p {
  color: var(--ink);
}

.home-page .card p,
.home-page .process-step p,
.home-page .testimonial-card .quote {
  color: var(--muted);
}

/* ── FAQ items: force legible text on dark background ── */
.faq-item {
  background: rgba(20, 25, 33, 0.92);
  border-color: rgba(61, 72, 88, 0.82);
}

.faq-item button {
  color: var(--ink);
}

.faq-item:hover {
  border-color: rgba(72, 168, 163, 0.4);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25);
}

/* ── Final contrast safety overrides ── */
.guarantee .btn {
  background: var(--btn-bg);
  color: #ffffff;
  border: 1px solid rgba(72, 168, 163, 0.38);
  box-shadow: var(--btn-shadow);
}

.guarantee .btn:hover {
  background: var(--btn-bg-hover);
  color: #ffffff;
}

.btn-quiet {
  background: rgba(18, 22, 29, 0.86);
  color: var(--ink);
  border: 1px solid rgba(61, 72, 88, 0.82);
}

.btn-quiet:hover {
  background: rgba(26, 31, 40, 0.92);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
}

.btn-ghost {
  background: rgba(72, 168, 163, 0.12);
  color: var(--brand-strong);
  border: 1px solid rgba(72, 168, 163, 0.36);
}

.btn-ghost:hover {
  background: rgba(72, 168, 163, 0.2);
  color: #d7f2ef;
}

.price-card .btn {
  background: rgba(20, 25, 33, 0.9);
  color: var(--ink);
  border: 1px solid rgba(61, 72, 88, 0.82);
}

.price-card .btn:hover {
  background: rgba(27, 33, 43, 0.95);
  color: #ffffff;
  border-color: rgba(72, 168, 163, 0.42);
}

.card .card-cta,
.project-card a,
.live-preview-head a,
.case-live-preview-head a {
  color: var(--brand-strong);
}

.card .card-cta:hover,
.project-card a:hover,
.live-preview-head a:hover,
.case-live-preview-head a:hover {
  color: #d9c09a;
}

.form-status {
  color: var(--brand-strong);
}

/* ── Accessibility baseline (dark editorial) ── */
.section-dark,
.section-tone-mint,
.section-tone-sky,
.section-tone-sun,
.section-tone-rose,
.section-accent,
.home-page .section-dark,
.home-page .section-tone-mint,
.home-page .section-tone-sky,
.home-page .section-tone-sun,
.home-page .section-tone-rose,
.home-page .section-accent,
.card,
.project-card,
.price-card,
.testimonial-card,
.process-step,
.faq-item,
.booking-form,
.estimate-form,
.estimate-result,
.result-card,
.fit-card,
.pain-card,
.backlink-card,
.live-preview-card,
.case-live-preview,
.detail-feature,
.trust-strip,
.app-promo-strip {
  color: var(--ink);
}

.section-dark p,
.section-tone-mint p,
.section-tone-sky p,
.section-tone-sun p,
.section-tone-rose p,
.section-accent p,
.section-dark li,
.section-tone-mint li,
.section-tone-sky li,
.section-tone-sun li,
.section-tone-rose li,
.section-accent li,
.section-dark .lead,
.section-tone-mint .lead,
.section-tone-sky .lead,
.section-tone-sun .lead,
.section-tone-rose .lead,
.section-accent .lead,
.card p,
.project-card p,
.price-card p,
.testimonial-card .quote,
.process-step p,
.faq-content p,
.detail-feature p,
.trust-strip p,
.app-promo-copy,
.dark-section-lead {
  color: #c8c0b4;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-accent h1,
.section-accent h2,
.section-accent h3,
.card h2,
.card h3,
.project-card h3,
.price-card h3,
.process-step h3,
.testimonial-card .person,
.faq-item button,
.detail-feature h3 {
  color: #f2e9db;
}

.section-dark a:not(.btn),
.section-tone-mint a:not(.btn),
.section-tone-sky a:not(.btn),
.section-tone-sun a:not(.btn),
.section-tone-rose a:not(.btn),
.section-accent a:not(.btn),
.card a:not(.btn),
.project-card a:not(.btn),
.backlink-card a,
.live-preview-head a,
.case-live-preview-head a {
  color: #9fded9;
}

.section-dark a:not(.btn):hover,
.section-tone-mint a:not(.btn):hover,
.section-tone-sky a:not(.btn):hover,
.section-tone-sun a:not(.btn):hover,
.section-tone-rose a:not(.btn):hover,
.section-accent a:not(.btn):hover,
.card a:not(.btn):hover,
.project-card a:not(.btn):hover,
.backlink-card a:hover,
.live-preview-head a:hover,
.case-live-preview-head a:hover {
  color: #dfbf93;
}

.badge {
  color: #f4d9b5;
  background: rgba(194, 141, 79, 0.22);
  border: 1px solid rgba(194, 141, 79, 0.45);
}

.btn,
.btn-warm,
.cta-block .btn,
.cta-block-lg .btn,
.price-card.featured .btn,
.price-card .btn.btn-warm {
  color: #ffffff;
}

/* ── Theme lock + animated ambient background ── */
body {
  position: relative;
  isolation: isolate;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: -18vmax;
  pointer-events: none;
  z-index: -1;
}

body::before {
  background:
    radial-gradient(circle at 16% 22%, rgba(72, 168, 163, 0.18) 0%, rgba(72, 168, 163, 0) 40%),
    radial-gradient(circle at 84% 14%, rgba(194, 141, 79, 0.16) 0%, rgba(194, 141, 79, 0) 36%),
    radial-gradient(circle at 70% 78%, rgba(90, 169, 190, 0.12) 0%, rgba(90, 169, 190, 0) 34%);
  filter: blur(10px);
  animation: ambientDrift 24s ease-in-out infinite alternate;
}

body::after {
  background:
    linear-gradient(115deg, rgba(7, 11, 16, 0) 0%, rgba(72, 168, 163, 0.05) 40%, rgba(194, 141, 79, 0.05) 65%, rgba(7, 11, 16, 0) 100%);
  opacity: 0.9;
  animation: ambientPulse 16s ease-in-out infinite;
}

.section-pad {
  position: relative;
  overflow: clip;
}

.section-pad::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.015) 0%, rgba(255, 255, 255, 0) 35%),
    linear-gradient(320deg, rgba(72, 168, 163, 0.04) 0%, rgba(72, 168, 163, 0) 38%);
  opacity: 0.55;
  animation: sectionSheen 14s linear infinite;
}

/* Final visual consistency for dark editorial surfaces */
.site-header,
.home-page .site-header {
  background: rgba(10, 13, 18, 0.9);
  border-bottom-color: rgba(61, 72, 88, 0.75);
}

.section-tone-mint,
.section-tone-sky,
.section-tone-sun,
.section-tone-rose,
.section-dark,
.section-accent,
.home-page .section-tone-mint,
.home-page .section-tone-sky,
.home-page .section-tone-sun,
.home-page .section-tone-rose,
.home-page .section-dark,
.home-page .section-accent {
  color: #efe6d8;
}

.card,
.project-card,
.price-card,
.testimonial-card,
.process-step,
.faq-item,
.booking-form,
.mini-form,
.estimate-form,
.estimate-result,
.result-card,
.fit-card,
.pain-card,
.backlink-section,
.backlink-card,
.trust-strip,
.live-preview-zone,
.live-preview-card,
.case-live-preview,
.detail-feature,
.app-promo-strip,
.lead-magnet,
.roi-card,
.estimator-shell,
.option-card {
  background: linear-gradient(160deg, rgba(24, 29, 37, 0.94) 0%, rgba(16, 20, 27, 0.96) 100%);
  border-color: rgba(61, 72, 88, 0.82);
  color: #efe6d8;
}

.card p,
.project-card p,
.price-card p,
.process-step p,
.testimonial-card .quote,
.faq-content p,
.detail-feature p,
.retainer-note,
.project-meta,
.project-proof,
.lead,
.form-note,
.tiny,
label {
  color: #c8c0b4;
}

.card h2,
.card h3,
.card h4,
.project-card h3,
.price-card h3,
.process-step h3,
.testimonial-card .person,
.faq-item button,
.detail-feature h3,
.section-title,
.page-title {
  color: #f2e9db;
}

input,
select,
textarea,
.currency-picker-select {
  background: rgba(11, 14, 19, 0.94);
  border-color: rgba(66, 77, 92, 0.92);
  color: #efe6d8;
}

input::placeholder,
textarea::placeholder {
  color: #95a2b3;
}

.btn,
.btn-warm,
.btn-ghost,
.btn-quiet,
.cta-block .btn,
.cta-block-lg .btn,
.price-card .btn,
.price-card .btn.btn-warm,
.price-card.featured .btn,
.app-promo-actions .btn,
.hero-cta-row .btn {
  color: #ffffff;
  padding: 0.78rem 1.18rem;
  min-height: 44px;
}

.btn-sm {
  padding: 0.62rem 0.96rem;
  min-height: 40px;
}

.btn-lg,
.btn-full {
  padding: 0.92rem 1.35rem;
  min-height: 46px;
}

.filter-btn,
.toggle-btn,
.project-actions a,
.quick-links a {
  padding: 0.5rem 0.82rem;
  min-height: 40px;
}

.btn-link,
.text-link,
.card-cta,
.project-card a,
.backlink-card a,
.live-preview-head a,
.case-live-preview-head a,
.footer-links a {
  color: #9fded9;
}

.btn-link:hover,
.text-link:hover,
.card-cta:hover,
.project-card a:hover,
.backlink-card a:hover,
.live-preview-head a:hover,
.case-live-preview-head a:hover,
.footer-links a:hover {
  color: #dfbf93;
}

@keyframes ambientDrift {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(1.5%, -2%, 0) scale(1.04); }
}

@keyframes ambientPulse {
  0%, 100% { opacity: 0.72; }
  50% { opacity: 0.96; }
}

@keyframes sectionSheen {
  0% { transform: translateX(-2%); opacity: 0.45; }
  50% { opacity: 0.62; }
  100% { transform: translateX(2%); opacity: 0.45; }
}

@media (prefers-reduced-motion: reduce) {
  body::before,
  body::after,
  .section-pad::before {
    animation: none !important;
  }
}

.section-intro {
  max-width: 680px;
  margin-bottom: 2.5rem;
  color: var(--text-muted, #c8c0b4);
}
