:root {
  --bg: #fcf7f2;
  --surface: #f3ede7;
  --card: #ffffff;
  --border: #e8e0d8;
  --muted: #b0ada6;
  --dim: #9c9890;
  --light: #302d31;
  --bright: #2e2b2f;
  --accent: #00a89f;
  --accent-dark: #007f78;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--light);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Subtle grain */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 999;
}

/* Scroll bar */
.scroll-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--accent);
  z-index: 200;
  transition: width 0.08s linear;
}

/* Nav */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 0;
  padding-top: calc(22px + env(safe-area-inset-top));
  transition: padding 0.3s, background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}

nav.scrolled {
  padding: 14px 0;
  padding-top: calc(14px + env(safe-area-inset-top));
  background: #fcf7f2;
  border-bottom-color: var(--border);
}

.nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--bright);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.01em;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav-link:hover {
  color: var(--accent);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

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

nav .btn-accent:hover {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 6px 28px rgba(0, 168, 159, 0.3);
}

/* Buttons */
.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #ffffff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  letter-spacing: 0.01em;
}

.btn-accent:hover {
  background: #007f78;
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(0, 168, 159, 0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--light);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  padding: 12px 22px;
  border-radius: 6px;
  border: 1px solid var(--border);
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.btn-outline:hover {
  border-color: rgba(0, 168, 159, 0.4);
  color: var(--bright);
  background: rgba(0, 168, 159, 0.04);
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: rgba(0, 168, 159, 0.08);
  border: 1px solid rgba(0, 168, 159, 0.25);
  color: var(--accent);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 4px;
}

@media (min-width: 768px) {
  .badge { gap: 7px; }
}

.badge-dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--accent);
  animation: blink 2.5s ease-in-out infinite;
}


@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.3
  }
}

.badge-green {
  background: rgba(34, 197, 94, 0.08);
  border-color: rgba(34, 197, 94, 0.9);
  color: #22c55e;
}

.badge-dot-green {
  background: #22c55e;
}

.badge-blue {
  background: rgba(37, 99, 235, 0.07);
  border-color: rgba(37, 99, 235, 0.25);
  color: #2563eb;
}

.badge-dot-blue {
  background: #2563eb;
}

/* Worry rows */
.worry-row {
  background: rgba(3, 168, 159, 0.04);
  border: 1px solid rgba(3, 168, 159, 0.1);
  transition: background 0.2s, border-color 0.2s;
}

.worry-row .worry-icon {
  transform: scale(1);
}

.worry-row .text-dim {
  color: #6e6b65 !important;
}

.worry-row .worry-title {
  color: inherit;
}

.worry-row:hover {
  background: rgba(0, 168, 159, 0.12) !important;
  border-color: rgba(0, 168, 159, 0.35) !important;
}

.worry-row:hover .worry-icon {
  transform: scale(1.12);
}

.worry-row:hover .worry-title {
  color: #000000;
}

.worry-title {
  transition: color 0.2s;
}

/* Section eyebrow */
.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

/* Hero glows */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

/* Cards */
.card {
  position: relative;
  background: #fdfaf8;
  border: 1px solid rgba(0, 168, 159, 0.35);
  border-radius: 16px;
  padding: 32px;
  transform: translateY(0);
  box-shadow: none;
  transition: border-color 0.25s ease-out, transform 0.25s ease-out, box-shadow 0.25s ease-out, background 0.25s ease-out;
}

.card:hover {
  background: var(--card);
  border-color: rgba(0, 168, 159, 0.6);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 40px rgba(0, 168, 159, 0.1);
}

.card-featured {
  background: var(--card);
  border-color: rgba(0, 168, 159, 0.5);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.1), 0 0 40px rgba(0, 168, 159, 0.06);
  transform: translateY(0);
}

.card-featured:hover {
  background: #ffffff;
  border-color: rgba(0, 168, 159, 0.6);
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 40px rgba(0, 168, 159, 0.1);
}

/* Service icon */
.svc-icon {
  width: 63px;
  height: 63px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  background: rgba(0, 168, 159, 0.07);
}

/* Worry icon (overrides svc-icon size/margin/color) */
.worry-icon {
  margin: 0;
  width: 36px;
  height: 36px;
  transition: transform 0.2s;
  color: #1c1b18;
}

.worry-icon-red { background: #fca5a5; }
.worry-icon-cyan { background: #a5f0f8; }
.worry-icon-orange { background: #ff9f6b; }
.worry-icon-purple { background: #c084fc; }

/* Process */
.step-num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 168, 159, 0.22);
  background: rgba(0, 168, 159, 0.07);
  color: var(--accent);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 5px;
  margin: 0 auto 18px;
}

.step-line {
  position: absolute;
  top: 24px;
  left: calc(50% + 26px);
  right: calc(-50% + 26px);
  height: 1px;
  border-top: 1.5px dashed var(--border);
}

@media (max-width: 768px) {
  .step-line {
    display: none;
  }
}

/* Testimonial cards */
.tcard {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.25s, transform 0.2s, box-shadow 0.2s;
}

.tcard:hover {
  border-color: rgba(0, 168, 159, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
}

.stars {
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 1px;
}

/* Skill pills */
.skill-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--light);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: border-color 0.2s, color 0.2s;
}

.skill-pill:hover {
  border-color: rgba(0, 168, 159, 0.3);
  color: var(--bright);
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 21px 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--bright);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
}

.faq-item.open .faq-btn {
  color: var(--accent);
}

.faq-btn:hover {
  color: var(--accent);
}

.faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(0, 168, 159, 0.4);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, border-color 0.2s, color 0.2s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: rgba(0, 168, 159, 0.4);
  color: var(--accent);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-body {
  max-height: 280px;
  padding-bottom: 20px;
}

/* Form */
.form-field {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--bright);
  border-radius: 8px;
  padding: 13px 16px;
  font-size: 0.875rem;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

select.form-field {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239c9890' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 6px center;
  padding-right: 32px;
}

.form-field::placeholder {
  color: var(--muted);
}

.form-field:focus {
  border-color: rgba(0, 168, 159, 0.45);
  box-shadow: 0 0 0 3px rgba(0, 168, 159, 0.08);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.card.visible {
  transition: border-color 0.25s ease-out, transform 0.25s ease-out, box-shadow 0.25s ease-out, background 0.25s ease-out;
}

.d1 {
  transition-delay: 0.08s;
}

.d2 {
  transition-delay: 0.16s;
}

.d3 {
  transition-delay: 0.24s;
}

.d4 {
  transition-delay: 0.32s;
}

/* Hero fade-up */
@keyframes up {
  from {
    opacity: 0;
    transform: translateY(22px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.a0 {
  animation: up 0.75s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.a1 {
  animation: up 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.10s both;
}

.a2 {
  animation: up 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.20s both;
}

.a3 {
  animation: up 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.30s both;
}

.a4 {
  animation: up 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
}

/* Semantic text utilities */
.text-body {
  color: #302d31;
}

.text-secondary {
  color: #7a7874;
}

/* Portfolio */
.pf-cat-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
}

.pf-cat-business {
  background: rgba(34, 197, 94, 0.08);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.9);
}

.pf-cat-music {
  background: rgba(96, 239, 255, 0.1);
  color: #006a80;
  border: 1px solid rgba(0, 106, 128, 0.45);
}

.pf-cat-lifestyle {
  background: rgba(255, 159, 107, 0.1);
  color: #8a3a00;
  border: 1px solid rgba(138, 58, 0, 0.4);
}

.pf-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 900px) {
  .pf-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .pf-row {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
  }

  .pf-row::-webkit-scrollbar {
    height: 3px;
  }

  .pf-row::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 2px;
  }
}

.pf-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  flex: 0 0 260px;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}

@media (min-width: 601px) {
  .pf-card {
    flex: unset;
  }
}

.pf-card:hover {
  border-color: rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pf-link {
  display: block;
  text-decoration: none;
}

.pf-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--surface);
}

.pf-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform .5s cubic-bezier(.16, 1, .3, 1);
}

.pf-card:hover .pf-img {
  transform: scale(1.04);
}

.pf-overlay {
  position: absolute;
  inset: 0;
  background: rgba(252, 247, 242, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .2s;
}

.pf-card:hover .pf-overlay {
  opacity: 1;
}

.pf-view-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #ffffff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: .78rem;
  padding: 8px 16px;
  border-radius: 5px;
  transform: translateY(4px);
  transition: transform .2s;
}

.pf-card:hover .pf-view-btn {
  transform: translateY(0);
}

.pf-body {
  padding: 14px 16px;
}

.pf-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--bright);
  margin: 0 0 4px;
  line-height: 1.3;
  transition: color 0.2s;
}

.pf-card:hover .pf-name {
  color: #04a89f;
}

.pf-desc {
  font-size: .8rem;
  line-height: 1.5;
  margin-bottom: 8px;
}

.pf-domain {
  font-size: .68rem;
  color: #9c9890;
  letter-spacing: .01em;
}

/* Accent rule */
.accent-rule {
  width: 30px;
  height: 2px;
  background: var(--accent);
  border-radius: 99px;
  margin-bottom: 14px;
}

/* Tooltip */
.tip-wrap {
  position: relative;
  cursor: default;
}

.tip-wrap .tip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--light);
  font-size: 0.72rem;
  line-height: 1.4;
  padding: 6px 11px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s, transform 0.18s;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  z-index: 50;
}

.tip-wrap .tip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: var(--border);
}

.tip-wrap:hover .tip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Mobile menu */
#mobile-menu {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 101;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 0;
  margin: 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

#mobile-menu.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s ease, visibility 0s;
}

#mobile-menu.fast-close {
  transition: opacity 0.12s ease, visibility 0s linear 0.12s;
}

/* Marquee */
.marquee-wrap {
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll 30s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* Hamburger bars */
#h1 { transition: transform .3s, opacity .3s; transform-origin: center; }
#h2 { transition: opacity .3s; }
#h3 { transition: transform .3s; transform-origin: center; }

/* Mobile menu panel */
.mobile-menu-panel {
  background: var(--bg);
}

.mobile-menu-panel a.mob {
  font-family: 'Syne', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--bright);
  border: none;
  padding: 14px 0;
  width: 100%;
  text-align: center;
}

.mobile-menu-panel a.mob:hover {
  color: var(--accent);
}

.mobile-menu-panel .btn-accent {
  margin-top: 24px;
}

/* Hero glow variants */
.hero-glow-accent {
  background: transparent;
}

.hero-glow-blue {
  background: radial-gradient(circle, rgba(80, 120, 255, 0.06) 0%, transparent 70%);
}

/* Hero card */
.hero-card {
  background: #fcf9f7;
  border-color: rgba(0, 168, 159, 0.35);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12), 0 4px 20px rgba(0, 0, 0, 0.07);
  transform: translateY(-4px);
  padding: 0;
  overflow: hidden;
}

.hero-card-stripe {
  background: var(--accent);
}

/* Inline accent badge (hero card footer) */
.inline-accent-badge {
  background: rgba(0, 168, 159, 0.08);
  color: var(--accent);
}

/* Marquee label */
.marquee-label { color: #b0ada6; }

/* Process step heading */
.step-title {
  font-size: 1.4rem;
  line-height: 1.2;
}

/* Featured testimonial */
.tcard-featured {
  background: #232124;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tcard-featured blockquote,
.tcard-featured .text-bright {
  color: #f0eee8;
}

.tcard-featured .text-dim {
  color: #b0ada6;
}

.tcard-featured-glow {
  background: radial-gradient(circle, rgba(0, 168, 159, 0.07) 0%, transparent 65%);
  transform: translate(25%, -25%);
}

.quote-mark {
  color: var(--accent);
  opacity: 0.6;
}

/* Avatar accent variants */
.avatar-accent {
  background: rgba(0, 168, 159, 0.1);
  color: var(--accent);
}

.avatar-accent-border {
  background: rgba(0, 168, 159, 0.1);
  color: var(--accent);
  border: 1px solid rgba(0, 168, 159, 0.25);
}

/* About stat card */
.stat-card-accent {
  background: rgba(0, 168, 159, 0.06);
  border: 1px solid rgba(0, 168, 159, 0.14);
}

/* About availability CTA */
.available-cta {
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.9);
  color: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Form feedback messages */
.form-success {
  display: none;
  background: rgba(0, 168, 159, 0.07);
  border: 1px solid rgba(0, 168, 159, 0.2);
  color: var(--accent);
}

.form-error {
  display: none;
  background: rgba(255, 60, 60, 0.07);
  border: 1px solid rgba(255, 60, 60, 0.2);
  color: #cc2222;
}

/* Policy modal */
.policy-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(252, 247, 242, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 24px 16px;
  overflow-y: auto;
  opacity: 0;
  transition: opacity .25s;
}

.policy-modal-inner {
  max-width: 680px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  position: relative;
}

.policy-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.policy-modal-close {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--dim);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: color .2s;
}

.policy-modal-close:hover {
  color: var(--bright);
}

.policy-modal-body {
  font-size: 0.875rem;
  line-height: 1.75;
}

/* Dark CTA banner */
.section-black {
  background: #232124;
}
.section-black h2 {
  color: #f0eee8;
}
.section-black p {
  color: #b0ada6;
}
.section-black .btn-outline {
  color: #f0eee8;
  border-color: rgba(240, 238, 232, 0.25);
}
.section-black .btn-outline:hover {
  color: #ffffff;
  border-color: rgba(240, 238, 232, 0.5);
  background: rgba(240, 238, 232, 0.08);
}

/* Dark footer */
footer {
  background: #232124;
  border-top-color: rgba(255, 255, 255, 0.1);
}
footer .eyebrow {
  color: #efede7;
}
footer p,
footer a,
footer button {
  color: #9c9890;
}
footer a:hover,
footer button:hover,
footer .footer-btn-hover:hover {
  color: #efede7 !important;
}
footer .border-t {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.text-xs {
  font-size: 0.85rem !important;
}

.faq-body p {
  font-size: 1rem !important;
}

/* Service card titles */
#services .card h3 {
  font-size: 1.6rem;
}

#services .card p,
#services .card li {
  font-size: 1rem !important;
}

/* Testimonial attribution — larger text */
.tcard .flex.items-center p,
.tcard-featured .flex.items-center p {
  font-size: 0.875rem;
  line-height: 1.4;
}
