/* =====================================================
   CONSCIOUS HEALTH CONNECTIONS
   Colors: Black #0d0d0d / Lime Green #8DC63F / White
   Fonts: Montserrat (headings) + Inter (body)
   ===================================================== */

:root {
  --black:       #0d0d0d;
  --black-soft:  #111111;
  --black-card:  #1a1a1a;
  --green:       #8DC63F;
  --green-dark:  #75a832;
  --green-light: #a3d952;
  --white:       #ffffff;
  --off-white:   #f5f5f5;
  --light-gray:  #efefef;
  --mid-gray:    #cccccc;
  --text-dark:   #0d0d0d;
  --text-body:   #333333;
  --text-muted:  #777777;

  --font-head:   'Montserrat', sans-serif;
  --font-body:   'Inter', sans-serif;

  --container-w: 1140px;
  --radius:      6px;
  --radius-lg:   12px;
  --transition:  all 0.28s ease;

  --shadow-sm:   0 2px 10px rgba(0,0,0,0.08);
  --shadow-md:   0 6px 24px rgba(0,0,0,0.12);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.18);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; transition: var(--transition); }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
address { font-style: normal; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--text-dark);
}
h1 { font-size: clamp(2rem, 4.5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 700; }
h4 { font-size: 1rem; font-weight: 600; }
p  { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ── Container ── */
.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}

.btn--green {
  background: var(--green);
  color: var(--black);
  border-color: var(--green);
}
.btn--green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn--outline-dark {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--text-dark);
  width: 100%;
}
.btn--outline-dark:hover {
  background: var(--text-dark);
  color: var(--white);
}

.btn--contact-submit {
  width: 100%;
  padding: 1rem;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
}

/* ── Section Helpers ── */
.section-title {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.section-title--white { color: var(--white); }

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.eyebrow {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.6rem;
}

.title-rule {
  width: 50px;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
  margin: 1rem 0 1.5rem;
}

/* ── Reveal Animation ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════════
   HEADER
════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}

.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
}

.site-header.scrolled { background: rgba(10,10,10,0.97); backdrop-filter: blur(12px); }
.site-header.scrolled .header-inner { height: 64px; }

/* Logo — white on black header */
.logo-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.site-logo {
  height: 52px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: height 0.3s ease, filter 0.3s ease;
}
.site-header.scrolled .site-logo { height: 42px; }


/* Nav */
.nav-list {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
}

/* Dropdown */
.nav-item { position: relative; }

/* Ensure non-dropdown nav items don't get accidental gap */
.nav-list > li:not(.nav-item) { position: relative; }

/* Nav CTA button (desktop only) */
.nav-cta-desktop {
  margin-left: 0.75rem;
  flex-shrink: 0;
}
.nav-cta-desktop .btn {
  font-size: 0.88rem;
  padding: 0.55rem 1.25rem;
  white-space: nowrap;
}
@media (max-width: 1100px) { .nav-cta-desktop { display: none; } }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 248px;
  background: #111;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  z-index: 200;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: background 0.2s, color 0.2s;
  font-family: var(--font-body);
}
.nav-dropdown a i { color: var(--green); width: 16px; font-size: 0.8rem; }
.nav-dropdown a:hover { background: rgba(141,198,63,0.08); color: #fff; }
.nav-caret {
  font-size: 0.55rem;
  margin-left: 3px;
  opacity: 0.6;
  transition: transform 0.25s;
}
.nav-item:hover .nav-caret { transform: rotate(180deg); }

/* Mobile dropdown */
@media (max-width: 1100px) {
  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(255,255,255,0.03);
    border-radius: 0;
    display: none;
  }
  .nav-item.mob-open .nav-dropdown { display: block; }
  .nav-dropdown a { padding: 0.65rem 2.25rem; font-size: 0.85rem; }
}

.nav-link {
  display: block;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--white);
  padding: 0.5rem 0.75rem;
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: var(--green);
  transition: var(--transition);
  transform: translateX(-50%);
}
.nav-link:hover::after,
.nav-link.active::after { width: 60%; }
.nav-link:hover { color: var(--green); }
.nav-link.active { color: var(--white); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.4rem;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 1px;
}
.hamburger.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.is-open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile overlay */
.nav-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 998;
}
.nav-overlay.active { display: block; }

@media (max-width: 1100px) {
  .hamburger { display: flex; }
  .main-nav {
    position: fixed;
    top: 0; right: -300px;
    width: 300px; height: 100vh;
    background: var(--black);
    z-index: 999;
    padding: 90px 0 2rem;
    overflow-y: auto;
    transition: right 0.35s ease;
    box-shadow: var(--shadow-lg);
  }
  .main-nav.is-open { right: 0; }
  .nav-list { display: flex; flex-direction: column; align-items: flex-start; gap: 0; }
  .nav-link {
    width: 100%;
    padding: 0.9rem 1.5rem;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-link::after { display: none; }

  /* Mobile drawer logo */
  .nav-drawer-logo {
    padding: 1.75rem 1.5rem 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 0.5rem;
  }
  .nav-drawer-logo-img {
    height: 44px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
  }

  /* Mobile drawer CTA */
  .nav-drawer-cta {
    padding: 1.5rem;
  }
  .nav-drawer-cta .btn {
    width: 100%;
    text-align: center;
    display: block;
  }
}

/* Hide drawer logo on desktop */
.nav-drawer-logo { display: none; }
.nav-drawer-cta  { display: none; }
@media (max-width: 1100px) {
  .nav-drawer-logo { display: block; }
  .nav-drawer-cta  { display: block; }
}

/* ════════════════════════════════════════
   HERO — igoeScore Style
════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: url('../images/hero-bg.jpg') center center / cover no-repeat;
  overflow: hidden;
  padding: 100px 2rem 60px;
}

/* Dark overlay so text stays readable over the photo */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  z-index: 0;
}
.hero > * { position: relative; z-index: 1; }

/* Radial green glow — mirrors igoeScore gold glow */
.hero-glow-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% 15%, rgba(141,198,63,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 55% 40% at 80% 85%, rgba(141,198,63,0.04) 0%, transparent 60%);
  pointer-events: none;
}

/* Floating particles canvas */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-particle {
  position: absolute;
  border-radius: 50%;
  background: var(--green);
  opacity: 0;
  animation: particleFloat linear infinite;
}
@keyframes particleFloat {
  0%   { transform: translateY(0) scale(1);   opacity: 0; }
  10%  { opacity: 0.35; }
  90%  { opacity: 0.08; }
  100% { transform: translateY(-100vh) scale(0.3); opacity: 0; }
}

/* Content wrapper */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 860px;
  width: 100%;
}

/* Eyebrow pill */
.hero-eyebrow-wrap { margin-bottom: -0.4rem; }
.hero-eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(141,198,63,0.1);
  border: 1px solid rgba(141,198,63,0.28);
  color: var(--green);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
}
.hero-eyebrow-badge i { font-size: 0.55rem; animation: pulse 2s ease infinite; }
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

/* Headline */
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  opacity: 0;
  animation: fadeUp 0.9s 0.2s ease forwards;
}
.hero-headline-accent {
  color: var(--green);
  display: block;
}

/* Tagline */
.hero-tagline {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.52);
  font-style: italic;
  max-width: 580px;
  line-height: 1.65;
  margin: 0;
  letter-spacing: 0.01em;
  opacity: 0;
  animation: fadeUp 0.9s 0.38s ease forwards;
}

.br-desk { display: none; }
@media (min-width: 700px) { .br-desk { display: block; } }

/* Credential badges row */
.hero-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.9s 0.52s ease forwards;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(141,198,63,0.08);
  border: 1px solid rgba(141,198,63,0.22);
  color: rgba(255,255,255,0.75);
  font-family: var(--font-head);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  white-space: nowrap;
}
.hero-badge i { color: var(--green); font-size: 0.72rem; }

/* Video box */
.hero-video-box {
  width: 100%;
  max-width: 520px;
  opacity: 0;
  animation: fadeUp 0.9s 0.65s ease forwards;
}
.hero-video-poster {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(141,198,63,0.18);
  box-shadow: 0 0 60px rgba(141,198,63,0.1), 0 20px 60px rgba(0,0,0,0.5);
  transition: box-shadow 0.4s ease;
}
.hero-video-poster:hover {
  box-shadow: 0 0 80px rgba(141,198,63,0.18), 0 24px 70px rgba(0,0,0,0.6);
}
.hero-video-img {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(0.75);
  transition: transform 0.5s ease, filter 0.4s ease;
}
.hero-video-poster:hover .hero-video-img {
  transform: scale(1.03);
  filter: brightness(0.6);
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  background: rgba(0,0,0,0.25);
}
.hero-play-btn {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(141,198,63,0.92);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--black);
  box-shadow: 0 4px 28px rgba(141,198,63,0.45);
  transition: transform 0.25s ease, background 0.25s ease;
  padding-left: 5px;
}
.hero-video-poster:hover .hero-play-btn {
  transform: scale(1.12);
  background: var(--green);
}
.hero-video-label {
  color: rgba(255,255,255,0.85);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
}

/* Cred row */
.hero-cred-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  opacity: 0;
  animation: fadeUp 0.9s 0.78s ease forwards;
}
.hero-cred-row span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.hero-cred-row i { color: var(--green); }

/* CTA buttons */
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.9s 0.9s ease forwards;
}
.btn--hero-outline {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border: 1.5px solid rgba(255,255,255,0.2);
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  transition: var(--transition);
  display: inline-block;
}
.btn--hero-outline:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
  background: rgba(255,255,255,0.05);
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  z-index: 2;
}
.hero-bounce {
  animation: heroBounce 1.8s ease infinite;
  font-size: 0.75rem;
  color: rgba(141,198,63,0.5);
}
@keyframes heroBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* Responsive */
@media (max-width: 640px) {
  .hero { padding: 120px 1.5rem 100px; }
  .hero-headline { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero-badges { gap: 0.5rem; }
  .hero-badge { font-size: 0.68rem; padding: 0.35rem 0.7rem; }
  .hero-cred-row { gap: 1rem; font-size: 0.76rem; }
  .hero-play-btn { width: 56px; height: 56px; font-size: 1.2rem; }
}



/* ════════════════════════════════════════
   STATS STRIP
════════════════════════════════════════ */
.stats-strip {
  background: var(--green);
  padding: 2.5rem 1.5rem;
}

.stats-strip-inner {
  max-width: var(--container-w);
  margin: 0 auto;
  text-align: center;
}

.stats-strip-headline {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2rem;
}

.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1 1 180px;
  padding: 0.5rem 1.5rem;
  text-align: center;
}

.stat-num {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  color: rgba(255,255,255,0.25);
  line-height: 1;
  margin-bottom: 0.4rem;
  display: block;
}

.stat-lbl {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--black);
  text-transform: uppercase;
  line-height: 1.3;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(0,0,0,0.15);
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .stat-divider { display: none; }
  .stat-item { flex: 1 1 140px; }
}

/* ════════════════════════════════════════
   ABOUT
════════════════════════════════════════ */
.about-section {
  padding: 6rem 0 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 0;
}

.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-img { width: 100%; display: block; }

.about-text-col { padding-right: 1rem; }
.about-text-col .section-title { margin-bottom: 0.5rem; }
.about-text-col p { font-size: 0.97rem; color: var(--text-body); margin-bottom: 1.2rem; }

/* Ticker — full viewport width */
.ticker-wrap {
  overflow: hidden;
  background: #f0f2f4;
  padding: 0.875rem 0;
  margin-top: 0;
  position: relative;
  border-top: 1px solid #e0e3e7;
  border-bottom: 1px solid #e0e3e7;
  width: 100%;
  left: 0;
  right: 0;
}

.ticker-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: ticker 26s linear infinite;
  gap: 0;
}

/* Bullet divider */
.ticker-divider {
  color: #c5cdd6 !important;
  font-size: 0.45rem !important;
  padding: 0 0.5rem !important;
  flex-shrink: 0;
  line-height: 1;
}

/* Logo items — no filter, show true original brand colors */
.ticker-logo-item {
  display: inline-flex;
  align-items: center;
  padding: 0 1.25rem;
  flex-shrink: 0;
}

.ticker-logo {
  height: 80px;
  width: auto;
  display: block;
  filter: none;
  opacity: 1;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.ticker-logo-item:hover .ticker-logo {
  opacity: 0.8;
  transform: scale(1.04);
}

/* Jeff Igoe logo — 2× the base size */
.ticker-logo--jeff {
  height: 160px;
}

/* CHC logo in ticker — color version on light bg */
.ticker-logo--chc {
  height: 80px;
  width: auto;
  filter: none;
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-text-col { padding-right: 0; }
}

/* ════════════════════════════════════════
   CONCIERGE SERVICES — LUXURY REDESIGN
════════════════════════════════════════ */
.concierge-section {
  background: #0a0a0a;
}

/* ── Intro — now lives on black ── */
.concierge-intro-inner {
  max-width: 760px;
  padding-top: 5rem;
  margin-bottom: 3.5rem;
}

.section-title--light {
  color: #ffffff;
}

.eyebrow--light {
  color: var(--green);
}

.concierge-lead--light {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  max-width: 640px;
  margin: 0;
}

/* ── Unified dark section ── */
.concierge-dark {
  background: #0a0a0a;
  padding: 0 0 5rem;
  position: relative;
  overflow: hidden;
}

/* Subtle green glow in top-right */
.concierge-dark::before {
  content: '';
  position: absolute;
  top: -180px; right: -180px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(141,198,63,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Card grid ── */
.csc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  margin-bottom: 1.5px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* ── Individual card ── */
.csc-card {
  background: #0f0f0f;
  padding: 3rem 2.5rem;
  position: relative;
  transition: background 0.35s ease;
  display: flex;
  flex-direction: column;
  gap: 0;
  cursor: default;
}

.csc-card:hover {
  background: #141414;
}

/* Green left-border accent on hover */
.csc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--green);
  transition: height 0.4s ease;
  border-radius: 0 0 2px 0;
}
.csc-card:hover::before { height: 100%; }

/* ── Card image ── */
.csc-img-wrap {
  width: calc(100% + 5rem);
  margin: -3rem -2.5rem 2rem;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  position: relative;
}

.csc-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  filter: brightness(0.88) saturate(1.1);
}

.csc-card:hover .csc-img {
  transform: scale(1.04);
  filter: brightness(0.95) saturate(1.2);
}

/* Gradient fade from image into black card */
.csc-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(to bottom, transparent, #0f0f0f);
  pointer-events: none;
}

@media (max-width: 820px) {
  .csc-img-wrap {
    width: calc(100% + 3.5rem);
    margin: -2.25rem -1.75rem 1.75rem;
  }
}

@media (max-width: 560px) {
  .csc-img-wrap {
    width: calc(100% + 2.5rem);
    margin: -2rem -1.25rem 1.5rem;
  }
}

/* ── Card top row: number + icon ── */
.csc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.csc-num {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--green);
  opacity: 0.9;
}

.csc-icon {
  width: 48px; height: 48px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 1.1rem;
  transition: var(--transition);
}
.csc-card:hover .csc-icon {
  border-color: var(--green);
  color: var(--green);
}

/* ── Title ── */
.csc-title {
  font-family: var(--font-head);
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.1rem;
  flex-shrink: 0;
}
.csc-title span {
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  display: block;
  font-size: 0.9em;
}

/* ── Body ── */
.csc-body {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin-bottom: 2rem;
  flex: 1;
}

/* ── Footer: link + accent line ── */
.csc-footer {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: auto;
}

.csc-link {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.csc-link i {
  font-size: 0.7rem;
  transition: transform 0.25s ease;
}
.csc-link:hover { color: var(--green-light); }
.csc-link:hover i { transform: translateX(4px); }

.csc-accent-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.07);
  transition: background 0.35s ease;
}
.csc-card:hover .csc-accent-line {
  background: rgba(141,198,63,0.2);
}

/* ── Bottom CTA bar ── */
/* ── Strategy CTA Band ── */
.strategy-cta-band {
  margin-top: 3.5rem;
  background: linear-gradient(135deg, #0f1a0a 0%, #111 60%, #0d1a0a 100%);
  border: 1px solid rgba(141,198,63,0.2);
  border-radius: var(--radius-lg);
  padding: 2.75rem 3rem;
  position: relative;
  overflow: hidden;
}
.strategy-cta-band::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(141,198,63,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.strategy-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.strategy-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.75rem;
}

.strategy-cta-title {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 0.6rem;
  max-width: 480px;
}

.strategy-cta-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 440px;
  margin: 0;
}

.strategy-cta-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.strategy-cta-btn {
  white-space: nowrap;
  padding: 0.9rem 2rem;
  font-size: 0.9rem;
}

.strategy-cta-note {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.strategy-cta-note i { color: var(--green); font-size: 0.65rem; }

@media (max-width: 820px) {
  .strategy-cta-band { padding: 2rem 1.75rem; }
  .strategy-cta-inner { flex-direction: column; align-items: flex-start; gap: 1.75rem; }
  .strategy-cta-right { align-items: flex-start; }
}

/* ── Responsive ── */
@media (max-width: 820px) {
  .csc-grid { grid-template-columns: 1fr; }
  .concierge-intro { padding: 4rem 0 3rem; }
  .csc-card { padding: 2.25rem 1.75rem; }
}

@media (max-width: 560px) {
  .csc-card { padding: 2rem 1.25rem; }
  .csc-title { font-size: 1.15rem; }
}

/* ════════════════════════════════════════
   OUR SERVICES (4-card grid)
════════════════════════════════════════ */
.our-services-section {
  padding: 5rem 0;
  background: var(--off-white);
}

.our-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.osvc-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.osvc-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.osvc-icon { margin-bottom: 1.25rem; }
.osvc-icon-img { width: 52px; height: 52px; }

.osvc-corner {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  color: var(--mid-gray);
  font-size: 0.85rem;
  transition: var(--transition);
}
.osvc-card:hover .osvc-corner { color: var(--green); }

.osvc-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.osvc-title--green { color: var(--green); }

.osvc-card p {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.65;
  margin: 0;
}

.osvc-card--featured { border-color: var(--green); }

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

/* ════════════════════════════════════════
   COMPACT SERVICE ROWS
════════════════════════════════════════ */
.svc-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 3rem;
}

.svc-row-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2.25rem 2.75rem;
  background: #111111;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
  transition: background 0.25s ease;
  cursor: pointer;
}
.svc-row-item:last-child { border-bottom: none; }
.svc-row-item:hover { background: #161616; }
.svc-row-item:hover .svc-row-arrow { color: var(--green); transform: translateX(4px); }
.svc-row-item:hover .svc-row-title { color: var(--green); }

.svc-row-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex: 1;
}

.svc-row-num {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(141,198,63,0.6);
  letter-spacing: 0.08em;
  flex-shrink: 0;
  min-width: 26px;
}

.svc-row-icon {
  width: 54px; height: 54px;
  border-radius: 12px;
  background: rgba(141,198,63,0.08);
  border: 1px solid rgba(141,198,63,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: background 0.25s ease;
}
.svc-row-item:hover .svc-row-icon {
  background: rgba(141,198,63,0.15);
}

.svc-row-text { flex: 1; }

.svc-row-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.3rem;
  transition: color 0.25s ease;
}
.svc-row-title span {
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

.svc-row-body {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin: 0;
}

.svc-row-arrow {
  color: rgba(255,255,255,0.25);
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: color 0.25s ease, transform 0.25s ease;
}

/* ════════════════════════════════════════
   HIGH TOUCHPOINT FEATURED SECTION
════════════════════════════════════════ */
.htlh-feature {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
  background: #0d0d0d;
  border: 1px solid rgba(141,198,63,0.2);
  border-radius: var(--radius-lg);
  padding: 4rem 4rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}
.htlh-feature::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(141,198,63,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.htlh-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(141,198,63,0.08);
  border: 1px solid rgba(141,198,63,0.2);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  margin-bottom: 1.25rem;
}

.htlh-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.htlh-body {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.htlh-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
}
.htlh-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
}
.htlh-list li i {
  color: var(--green);
  font-size: 0.75rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.htlh-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #000;
  background: var(--green);
  border: 2px solid var(--green);
  border-radius: var(--radius);
  padding: 0.8rem 1.75rem;
  transition: var(--transition);
  text-decoration: none;
}
.htlh-btn:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(141,198,63,0.3);
}

.htlh-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.htlh-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: var(--radius);
  filter: brightness(0.85);
  display: block;
}

.htlh-stat-row {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  overflow: hidden;
}

.htlh-stat {
  padding: 0.85rem 0.75rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.htlh-stat:last-child { border-right: none; }

.htlh-stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.htlh-stat-lbl {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.3;
  letter-spacing: 0.03em;
}

@media (max-width: 860px) {
  .htlh-feature { grid-template-columns: 1fr; gap: 1.75rem; padding: 2rem; }
  .htlh-img { height: 180px; }
}
@media (max-width: 600px) {
  .svc-row-item { padding: 1.25rem 1.25rem; }
  .svc-row-body { display: none; }
}

/* ════════════════════════════════════════
   ACCORDION — Services Toggle
════════════════════════════════════════ */
.accordion-block {
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.acc-item {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.acc-item:last-child { border-bottom: none; }

/* Trigger row */
.acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 2rem;
  background: #111111;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.25s ease;
}
.acc-trigger:hover,
.acc-item.is-open .acc-trigger {
  background: #181818;
}

.acc-num {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.08em;
  flex-shrink: 0;
  min-width: 28px;
}

.acc-label {
  flex: 1;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.01em;
}
.acc-label--green { color: var(--green); }

.acc-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(141,198,63,0.35);
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  font-size: 0.7rem;
  transition: transform 0.3s ease, background 0.25s ease, border-color 0.25s ease;
}
.acc-item.is-open .acc-icon {
  transform: rotate(45deg);
  background: var(--green);
  border-color: var(--green);
  color: #000;
}

/* Panel — collapsed by default */
.acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.acc-item.is-open .acc-panel {
  max-height: 400px;
}

.acc-body {
  padding: 0 2rem 1.75rem 2rem;
  background: #111111;
}

.acc-inner {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.acc-emoji {
  width: 40px; height: 40px;
  flex-shrink: 0;
  margin-top: 2px;
}

.acc-inner p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin: 0;
}

/* Featured item */
.acc-item--featured .acc-trigger { background: #0f180a; }
.acc-item--featured .acc-trigger:hover,
.acc-item--featured.is-open .acc-trigger { background: #131f0c; }
.acc-item--featured .acc-body { background: #0f180a; }

@media (max-width: 640px) {
  .acc-trigger { padding: 1.25rem 1.25rem; gap: 0.9rem; }
  .acc-body { padding: 0 1.25rem 1.5rem; }
  .acc-label { font-size: 0.95rem; }
}

/* ════════════════════════════════════════
   AI REVOLUTION SECTION
════════════════════════════════════════ */
/* ═══════════════ AI REVOLUTION SECTION ═══════════════ */
.ai-revolution-section {
  background: #0a0a0a;
  overflow: hidden;
}

/* Full-bleed hero image with text overlay */
.ai-rev-hero-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.ai-rev-hero-wrap .ai-rev-hero-img {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  filter: brightness(0.55) saturate(1.1);
  transition: transform 1s ease;
}
.ai-rev-hero-wrap:hover .ai-rev-hero-img {
  transform: scale(1.02);
}

.ai-rev-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.4) 60%,
    rgba(0,0,0,0.1) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 6rem;
  max-width: 860px;
}

.ai-rev-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(141,198,63,0.35);
  backdrop-filter: blur(8px);
  padding: 0.45rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  width: fit-content;
}

.ai-rev-title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.ai-rev-accent {
  color: var(--green);
}

.ai-rev-lead {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.ai-rev-btn {
  width: fit-content;
}

/* Three feature cards row */
.ai-rev-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(141,198,63,0.12);
  border-top: 1px solid rgba(141,198,63,0.15);
}

.ai-rev-card {
  background: #0d0d0d;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: background 0.3s ease;
}
.ai-rev-card:hover {
  background: #111;
}

.ai-rev-card-icon {
  width: 44px; height: 44px;
  background: rgba(141,198,63,0.1);
  border: 1px solid rgba(141,198,63,0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.ai-rev-card-stat {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.ai-rev-card strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
}

.ai-rev-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 900px) {
  .ai-rev-hero-wrap .ai-rev-hero-img { aspect-ratio: 4/3; }
  .ai-rev-hero-overlay {
    padding: 2.5rem 2rem;
    max-width: 100%;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 100%);
  }
  .ai-rev-cards { grid-template-columns: 1fr; }
}

/* legacy stat desc kept for any references */
.ai-stat-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

.ai-rev-glow {
  position: absolute;
  top: 50%; right: -80px;
  transform: translateY(-50%);
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(141,198,63,0.08) 0%, transparent 70%);
  pointer-events: none;
}

@media (max-width: 900px) {
  .ai-rev-inner { grid-template-columns: 1fr; gap: 3rem; }
  .ai-rev-right { flex-direction: row; flex-wrap: wrap; }
  .ai-stat-card { flex: 1 1 calc(50% - 0.5rem); }
}
@media (max-width: 560px) {
  .ai-stat-card { flex: 1 1 100%; }
}

/* ════════════════════════════════════════
   PRICING
════════════════════════════════════════ */
.pricing-section {
  padding: 5rem 0;
  background: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.price-card {
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.price-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.price-tier {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.price-amount {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.price-period {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.price-features {
  text-align: left;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.4;
}
.price-features li i {
  color: var(--green);
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 3px;
}

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

/* ════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════ */
.testimonials-section {
  padding: 5rem 0;
  background: var(--off-white);
}

.testimonials-slider {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.tslide { display: block; }

.tslide-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.tslide-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.tslide-img-wrap:hover .tslide-img { transform: scale(1.04); }

.tslide-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 54px; height: 54px;
  background: rgba(141,198,63,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--black);
  font-size: 1.1rem;
  padding-left: 4px;
  transition: var(--transition);
}
.tslide-img-wrap:hover .tslide-play { background: var(--green); transform: translate(-50%,-50%) scale(1.1); }

.tslide-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.55);
  color: var(--white);
  font-size: 0.8rem;
  padding: 0.5rem 0.75rem;
}

.tslider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.tdot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--mid-gray);
  cursor: pointer;
  transition: var(--transition);
}
.tdot.active { background: var(--green); }

@media (max-width: 860px) {
  .testimonials-slider { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .testimonials-slider { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════
   BLOG
════════════════════════════════════════ */
.blog-section {
  padding: 5rem 0;
  background: #0d0d0d;
}

.blog-section .section-header { text-align: left; }
.blog-section .section-title { color: #fff; }
.blog-section .section-sub   { color: rgba(255,255,255,0.45); }

.blog-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

/* Base card */
.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  background: #111;
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  border-color: rgba(141,198,63,0.25);
}

/* Featured card */
.blog-card--featured .blog-img { aspect-ratio: 16/9; }
.blog-card--featured .blog-title {
  font-size: 1.15rem;
  line-height: 1.35;
}

/* Image */
.blog-img-wrap { overflow: hidden; position: relative; }
.blog-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  filter: brightness(0.88);
}
.blog-card:hover .blog-img { transform: scale(1.04); filter: brightness(1); }

/* Featured badge */
.blog-featured-badge {
  position: absolute;
  top: 0.85rem; left: 0.85rem;
  background: var(--green);
  color: var(--black);
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.blog-body {
  padding: 1.4rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Tags */
.blog-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(141,198,63,0.12);
  color: var(--green);
  border: 1px solid rgba(141,198,63,0.25);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.85rem;
}
.blog-tag--ai   { background: rgba(141,198,63,0.12); color: var(--green); border-color: rgba(141,198,63,0.25); }
.blog-tag--ads  { background: rgba(66,133,244,0.1);  color: #6ab0ff;      border-color: rgba(66,133,244,0.25); }
.blog-tag--lead { background: rgba(251,146,60,0.1);  color: #fb923c;      border-color: rgba(251,146,60,0.25); }

.blog-title {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 0.65rem;
}

.blog-excerpt {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  flex: 1;
}

.blog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1rem;
  margin-top: auto;
}

.blog-meta {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}
.blog-meta i { color: var(--green); font-size: 0.65rem; }

.blog-read-more {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
  transition: gap 0.2s ease, color 0.2s ease;
}
.blog-read-more:hover { gap: 0.6rem; color: var(--green-light); }

.blog-coming-soon {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-card--featured { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════
   CONTACT / FOOTER
════════════════════════════════════════ */
.contact-section {
  background: var(--black);
}

.contact-inner {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 5rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-logo {
  height: 60px;
  width: auto;
  margin-bottom: 2rem;
  display: block;
  filter: brightness(0) invert(1);
}

.contact-headline {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.arrow-right {
  color: var(--green);
  display: inline-block;
}

.contact-sub {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.55);
  max-width: 360px;
  margin: 0;
  line-height: 1.7;
}

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 0; }
.contact-form h3 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.cform-group {
  margin-bottom: 1rem;
}

.cform-group input,
.cform-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding: 0.75rem 0;
  outline: none;
  transition: var(--transition);
}
.cform-group input::placeholder,
.cform-group textarea::placeholder { color: rgba(255,255,255,0.4); }
.cform-group input:focus,
.cform-group textarea:focus { border-bottom-color: var(--green); }
.cform-group textarea { resize: vertical; min-height: 80px; }

.cform-success {
  margin-top: 1rem;
  color: var(--green);
  font-size: 0.95rem;
  font-weight: 600;
}
.cform-success i { margin-right: 0.5rem; }

.contact-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 1.5rem;
  text-align: center;
  background: var(--black);
}
.contact-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
  margin: 0;
  max-width: var(--container-w);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; padding: 3.5rem 1.5rem; }
}

/* ════════════════════════════════════════
   BACK TO TOP
════════════════════════════════════════ */
.back-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  background: var(--green);
  color: var(--black);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
  opacity: 0; pointer-events: none;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 200;
  font-weight: 700;
}
.back-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.back-top:hover { background: var(--green-dark); transform: translateY(-3px); }

/* ════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 768px) {
  .hero { min-height: 90vh; }
  .hero-title { font-size: clamp(1.9rem, 7vw, 2.8rem); }
  .about-section { padding: 4rem 0 0; }
  .concierge-section { padding: 4rem 0; }
}

@media (max-width: 600px) {
  body { font-size: 15px; }
  .section-title { font-size: 1.6rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .our-services-grid { grid-template-columns: 1fr; }
}
