/* ============================================
   COMMUNA — styles.css
   ============================================ */

/* CSS Reset & Variables */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-base:      #FFFFFF;
  --color-surface:   #F2F5F7;
  --color-content:   #080C0A;
  --color-muted:     #52606D;
  --color-border:    #D8DDE3;
  --color-accent:    #00331E;
  --color-mint:      #00C97A;
  --color-mint-light:#C8F5E2;
  --color-coral:     #FF4F4F;
  --color-lavender:  #A78BFA;
  --color-sky:       #7DD3FC;
  --grad-1: linear-gradient(140deg, #b8ffe4 0%, #c3a5ff 100%);
  --grad-2: linear-gradient(140deg, #e6cbff 0%, #ffcece 100%);
  --grad-3: linear-gradient(140deg, #b5ffe3 0%, #EDE9FE 100%);
  --grad-4: linear-gradient(135deg, #ffcddf 0%, #d3e0ff 50%, #a6ffd6 100%);
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.07), 0 12px 40px rgba(0,0,0,0.04);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10), 0 24px 64px rgba(0,0,0,0.06);
  --shadow-hover: 0 12px 40px rgba(0,51,30,0.10), 0 2px 8px rgba(0,0,0,0.04);
  --radius-sm:  10px;
  --radius-md:  14px;
  --radius-lg:  18px;
  --radius-xl:  24px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip; /* clip does not create a scroll container, so position:fixed works correctly on mobile */
}

body {
  background: var(--color-base);
  font-family: 'Inter', sans-serif;
  color: var(--color-content);
  line-height: 1.6;
}
body.menu-open {
  overscroll-behavior: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

button {
  font-family: inherit;
}

/* ============================================
   SKIP LINK
   ============================================ */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #00331E;
  color: white;
  padding: 8px 16px;
  z-index: 9999;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  border-radius: 0 0 8px 0;
  font-size: 14px;
}
.skip-link:focus { top: 0; }

/* ============================================
   CONTAINER
   ============================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--color-border);
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.96);
  box-shadow: 0 1px 0 #E5E7EB, 0 4px 24px rgba(0,0,0,0.04);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.nav-logo img {
  display: block;
  height: 32px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-muted);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 8px;
  transition: color 0.18s, background 0.18s;
}
.nav-links a:hover {
  color: var(--color-content);
  background: white;
}
.nav-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  align-items: center;
  justify-content: center;
  color: var(--color-content);
  border-radius: 8px;
}
.hamburger:hover { background: var(--color-surface); }
@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none !important; }
  .hamburger { display: flex !important; }
  .nav-inner { padding: 0 20px; }
  .navbar {
    position: fixed !important;
    /* top: auto !important; */
    z-index: 9999 !important;
    background: rgba(255,255,255,0.97) !important;
  }
  .page-enter, .page-leave-to {
    animation: none !important;
    transform: none !important;

  }
}

/* ============================================
   NAV DROPDOWN
   ============================================ */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.18s, background 0.18s;
}
.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle {
  color: var(--color-content);
  background: white;
}
.nav-dropdown-toggle svg {
  transition: transform 0.2s;
}
.nav-dropdown.open .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: white;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.05);
  min-width: 300px;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.97);
  transform-origin: top left;
  transition: opacity 0.2s cubic-bezier(0.16,1,0.3,1), transform 0.2s cubic-bezier(0.16,1,0.3,1), visibility 0.2s;
  z-index: 50;
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
/* stagger each item in */
@keyframes nav-item-in {
  from { opacity: 0; transform: translateX(-6px); }
  to   { opacity: 1; transform: translateX(0); }
}
.nav-dropdown.open .nav-drop-item:nth-child(1) { animation: nav-item-in 0.22s 0.04s cubic-bezier(0.16,1,0.3,1) both; }
.nav-dropdown.open .nav-drop-item:nth-child(2) { animation: nav-item-in 0.22s 0.09s cubic-bezier(0.16,1,0.3,1) both; }
.nav-dropdown.open .nav-drop-item:nth-child(3) { animation: nav-item-in 0.22s 0.14s cubic-bezier(0.16,1,0.3,1) both; }
.nav-dropdown-menu a {
  display: block;
  text-decoration: none;
  padding: 8px;
  border-radius: 10px;
  transition: background 0.15s;
}
.nav-dropdown-menu a:hover { background: var(--color-surface); }
/* Item layout */
.nav-drop-item {
  display: flex !important;
  align-items: center;
  gap: 12px;
}
.nav-drop-item:hover .nav-drop-icon { transform: scale(1.08); }
.nav-drop-item:hover .nav-drop-title { color: var(--color-content); }
.nav-drop-item:hover .nav-drop-arrow { opacity: 1; transform: translateX(0); }
/* Gradient icon box */
.nav-drop-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
}
.nav-drop-icon svg { width: 18px; height: 18px; display: block; }
/* Text stack */
.nav-drop-text { display: flex; flex-direction: column; gap: 1px; flex: 1; }
.nav-drop-title {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: #1a1a2e;
  line-height: 1.2;
  transition: color 0.15s;
}
.nav-drop-sub {
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  color: #8a8a9a;
  line-height: 1.3;
}
/* Arrow chevron */
.nav-drop-arrow {
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.15s, transform 0.15s;
  color: #aaa;
}
.nav-drop-arrow svg { width: 13px; height: 13px; stroke-width: 2.5; }

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: white;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  padding: 56px 24px 24px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: none;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #0F0F0F;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  display: block;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: #00331E; }
.mobile-menu .btn-primary,
.mobile-menu .btn-primary:hover { color: #fff !important; padding: 14px 20px; border-bottom: none; }
.mobile-menu .btn-outline,
.mobile-menu .btn-outline:hover { padding: 14px 20px; }
.mobile-menu img[alt="Communa"] {
  height: auto !important;
  width: 60% !important;
  display: block !important;
  margin-bottom: 20px !important;
}
.mobile-menu-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #0F0F0F;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-group-toggle {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #0F0F0F;
  background: none;
  border: none;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  padding: 12px 0;
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s;
}
.mobile-menu-group-toggle:hover { color: #00331E; }
.mobile-menu-group-toggle svg {
  transition: transform 0.2s;
  flex-shrink: 0;
}
.mobile-menu-group.open .mobile-menu-group-toggle svg {
  transform: rotate(180deg);
}
.mobile-menu-submenu {
  display: none;
  flex-direction: column;
  padding-left: 16px;
}
.mobile-menu-group.open .mobile-menu-submenu {
  display: flex;
}
.mobile-menu-submenu a {
  font-size: 15px !important;
  font-weight: 600 !important;
  color: var(--color-muted) !important;
  border-bottom: 1px solid #f0f0f0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 12px 8px !important;
}
.mobile-menu-submenu a:hover { color: #00331E !important; }
.mobile-sub-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mobile-sub-text { display: flex; flex-direction: column; gap: 1px; }
.mobile-sub-title { font-size: 15px; font-weight: 600; color: #1a1a2e; line-height: 1.2; }
.mobile-sub-desc { font-size: 11px; color: #8a8a9a; font-weight: 400; line-height: 1.3; }

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  background: #00331E;
  color: #fff;
  padding: 10px 20px;
  border-radius: 9px;
  font-weight: 500;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  /* letter-spacing: -0.01em; */
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transition: left 0.45s;
}
.btn-primary:hover::after { left: 100%; }
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,51,30,0.28), 0 1px 4px rgba(0,51,30,0.15);
  background: #004428;
}

.btn-primary-lg {
  padding: 16px 32px;
  font-size: 16px;
  border-radius: 14px;
}

.btn-secondary {
  background: white;
  color: var(--color-content);
  border: 1px solid var(--color-border);
  padding: 10px 20px;
  border-radius: 9px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
  cursor: pointer;
  letter-spacing: -0.01em;
}
.btn-secondary:hover {
  border-color: #C0C4CC;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--color-muted);
  padding: 10px 16px;
  border-radius: 9px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.18s, background 0.18s;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.btn-ghost:hover { color: var(--color-content); background: var(--color-surface); }

.btn-white {
  background: white;
  color: #00331E;
  padding: 10px 20px;
  border-radius: 9px;
  font-weight: 600;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: transform 0.18s, box-shadow 0.18s;
  border: none;
  cursor: pointer;
}
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(0,0,0,0.14); }

.btn-outline-white {
  background: rgba(255,255,255,0.08);
  color: white;
  border: 1px solid rgba(255,255,255,0.22);
  padding: 10px 20px;
  border-radius: 9px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: background 0.18s, border-color 0.18s, transform 0.18s;
  cursor: pointer;
  backdrop-filter: blur(8px);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--color-content);
  border: 1.5px solid var(--color-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: border-color 0.18s, background 0.18s, transform 0.18s;
  cursor: pointer;
}
.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(0, 201, 122, 0.05);
  transform: translateY(-1px);
}

/* ============================================
   SECTION
   ============================================ */
.section {
  padding: 96px 0;
}
.section-sm { padding: 64px 0; }

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6D28D9;
  background: #EDE9FE;
  border: 1px solid rgba(109,40,217,0.15);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 14px;
  font-family: 'Inter', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.section-label::before { display: none; }
.section-label [data-lucide],
.feature-label [data-lucide] {
  width: 14px; height: 14px; flex-shrink: 0; stroke-width: 2.5;
}
/* Label color variants — double class for specificity over base .feature-label */
.section-label.label-red,    .feature-label.label-red    { background: #FEF2F2; color: #B91C1C; border-color: rgba(185,28,28,0.15); }
.section-label.label-green,  .feature-label.label-green  { background: #ECFDF5; color: #065F46; border-color: rgba(0,201,122,0.2); }
.section-label.label-blue,   .feature-label.label-blue   { background: #EFF6FF; color: #1D4ED8; border-color: rgba(29,78,216,0.15); }
.section-label.label-pink,   .feature-label.label-pink   { background: #FDF2F8; color: #BE185D; border-color: rgba(190,24,93,0.15); }
.section-label.label-orange, .feature-label.label-orange { background: #FFF7ED; color: #C2410C; border-color: rgba(194,65,12,0.15); }
.section-label.label-indigo, .feature-label.label-indigo { background: #EEF2FF; color: #4338CA; border-color: rgba(67,56,202,0.15); }

.section-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 800;
  color: var(--color-content);
  line-height: 1.12;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 17px;
  font-family: 'Inter', sans-serif;
  color: var(--color-muted);
  max-width: 560px;
  line-height: 1.65;
}

.section-header-center {
  text-align: center;
  margin-bottom: 56px;
}
.section-header-center .section-label {
  justify-content: center;
}
.section-header-center .section-label::before { display: none; }
.section-header-center .section-subtitle {
  margin: 0 auto;
}

/* ============================================
   BADGE PILL
   ============================================ */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: white;
  color: var(--color-content);
  border: 1px solid var(--color-border);
  padding: 6px 14px 6px 10px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  margin-bottom: 28px;
  box-shadow: var(--shadow-xs);
  letter-spacing: -0.01em;
}
.badge-pill .badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-mint);
  flex-shrink: 0;
}

/* ============================================
   BENTO GRID
   ============================================ */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.tile {
  border-radius: var(--radius-lg);
  padding: 32px;
  overflow: hidden;
  position: relative;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.25s ease;
  border: none;
}
.tile.visible { opacity: 1; transform: translateY(0); }
.tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.tile-full    { grid-column: span 12; }
.tile-wide    { grid-column: span 8; }
.tile-half    { grid-column: span 6; }
.tile-third   { grid-column: span 4; }
.tile-quarter { grid-column: span 3; }

.tile-tall    { min-height: 400px; }
.tile-medium  { min-height: 400px; }
.tile-short   { min-height: 180px; }

/* Tile backgrounds — clean white as default */
.tile-bg-white    { background: white; border: 1px solid #d8dde4; }
.tile-bg-surface  { background: var(--color-surface); }
.tile-bg-dark     { background: #00331E; color: white; border-color: transparent; }
.tile-bg-grad1    { background: var(--grad-1); border-color: rgba(0,180,100,0.18); }
.tile-bg-grad2    { background: var(--grad-2); border-color: rgba(140,100,230,0.18); }
.tile-bg-grad3    { background: var(--grad-3); border-color: rgba(0,180,100,0.16); }
.tile-bg-grad4    { background: var(--grad-4); border-color: rgba(180,160,210,0.2); }

.tile-bg-dark:hover { border-color: transparent; box-shadow: 0 12px 40px rgba(0,0,0,0.25); }

.tile-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: var(--color-mint-light);
  color: var(--color-accent);
  flex-shrink: 0;
}
.tile-bg-dark .tile-icon {
  background: rgba(255,255,255,0.1);
  color: var(--color-mint);
}

.tile-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-mint);
  font-family: 'Inter', sans-serif;
  margin-bottom: 10px;
  display: block;
}
.tile-bg-dark .tile-label { color: rgba(0,201,122,0.7); }

.tile-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  color: var(--color-content);
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.tile-bg-dark .tile-title { color: white; }

.tile-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.65;
}
.tile-bg-dark .tile-desc { color: rgba(255,255,255,0.65); }

.tile-stat {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--color-mint);
  line-height: 1;
  margin: 10px 0 6px;
  letter-spacing: -0.03em;
}

.engagement-features-grid {
  display:grid;grid-template-columns:1fr 1fr;gap:12px;max-width:440px;
}

@media (max-width: 480px) {
  .engagement-features-grid {
    grid-template-columns:1fr;
  }
}

@media (max-width: 1024px) {
  .tile-wide { grid-column: span 12; }
  .tile-half { grid-column: span 6; }
  .tile-third { grid-column: span 12; }
}
@media (max-width: 768px) {
  .tile-wide, .tile-half, .tile-third, .tile-quarter { grid-column: span 12; }
  .bento-grid { gap: 10px; padding: 0 16px; }
  .tile { padding: 24px; }
}

/* Offset for fixed nav when jumping to anchors */
[id^="feat-"], [id="professional-associations"], [id="trade-associations"], [id="chambers"], [id="amc"] {
  scroll-margin-top: 80px;
}

/* ============================================
   FEATURE QUICKNAV
   ============================================ */
.feature-quicknav {
  background: white;
  overflow: hidden;
}
.feature-quicknav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 96px 32px 32px;
  display: flex;
  align-items: stretch;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  flex-wrap: nowrap;
  justify-content: center;
}
.feature-quicknav-inner::-webkit-scrollbar { display: none; }
.fqn-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 22px 28px;
  text-decoration: none;
  border-radius: 16px;
  border: 1.5px solid #E8E8EE;
  flex-shrink: 0;
  min-width: 128px;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s, background 0.18s;
  color: #333;
  background: white;
}
.fqn-item:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.09);
  transform: translateY(-3px);
  background: #FAFAFE;
}
.fqn-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: #F3F3F7;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.18s;
}
.fqn-item:hover .fqn-icon { background: #EAEAF2; }
/* Page-specific icon backgrounds */
.fqn-red   .fqn-icon { background: #FEE9E9; }
.fqn-red   .fqn-item:hover .fqn-icon { background: #FDDADA; }
.fqn-purple .fqn-icon { background: #EEE9FF; }
.fqn-purple .fqn-item:hover .fqn-icon { background: #E3DAFF; }
.fqn-green  .fqn-icon { background: #E6F9F1; }
.fqn-green  .fqn-item:hover .fqn-icon { background: #D3F3E5; }
.fqn-blue   .fqn-icon { background: #E8F0FE; }
.fqn-blue   .fqn-item:hover .fqn-icon { background: #D6E4FD; }
.fqn-pink   .fqn-icon { background: #FDE8F3; }
.fqn-pink   .fqn-item:hover .fqn-icon { background: #FBDAED; }
.fqn-icon svg { width: 20px; height: 20px; stroke-width: 1.8; }
.fqn-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  color: #444;
  /* letter-spacing: -0.01em; */
}
.fqn-item:hover .fqn-label { color: #111; }
.fqn-divider { display: none; }

/* Feature quicknav grid (enhanced) */
.fqn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-bottom: 80px;
}
.fqn-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  text-decoration: none;
  border-radius: 16px;
  border: 1.5px solid #E8E8EE;
  background: white;
  color: #333;
  transition: box-shadow 0.18s, transform 0.18s;
}
.fqn-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.09);
  transform: translateY(-3px);
}
.fqn-red    .fqn-card .fqn-icon { background: #FEE9E9; }
.fqn-red    .fqn-card:hover .fqn-icon { background: #FDDADA; }
.fqn-purple .fqn-card .fqn-icon { background: #EEE9FF; }
.fqn-purple .fqn-card:hover .fqn-icon { background: #E3DAFF; }
.fqn-green  .fqn-card .fqn-icon { background: #E6F9F1; }
.fqn-green  .fqn-card:hover .fqn-icon { background: #D3F3E5; }
.fqn-blue   .fqn-card .fqn-icon { background: #E8F0FE; }
.fqn-blue   .fqn-card:hover .fqn-icon { background: #D6E4FD; }
.fqn-card .fqn-label { white-space: normal; font-size: 14px; }
.fqn-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #666;
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.fqn-learn {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: #B91C1C;
  margin-top: 4px;
  transition: opacity 0.15s;
}
.fqn-red    .fqn-card .fqn-learn { color: #B91C1C; }
.fqn-purple .fqn-card .fqn-learn { color: #4338CA; }
.fqn-green  .fqn-card .fqn-learn { color: #065F46; }
.fqn-blue   .fqn-card .fqn-learn { color: #1D4ED8; }
.fqn-card:hover .fqn-learn { text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 768px) {
  .fqn-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .fqn-grid { grid-template-columns: 1fr; }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  min-height: 92vh;
  background: url('Assets/Communa-Hero-Section-BG-4.webp') center center / cover no-repeat;
  display: flex;
  align-items: center;
  padding: 120px 0 96px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
  flex-direction: column;
}

/* Remove old ::before / ::after — replaced by .hero-blob elements */
.hero-section::before,
.hero-section::after { display: none; }

/* ── Centered hero variant ───────────────────── */
.hero-centered {
  flex-direction: column;
  align-items: center;
  padding: 110px 0 0;
  min-height: auto;
  overflow: visible;
}

/* Animated gradient blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.hero-blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #6EF0BC 0%, transparent 65%);
  top: -140px; left: -80px;
  opacity: 0.55;
}
.hero-blob-2 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, #C4B5FD 0%, transparent 65%);
  top: -60px; right: -60px;
  opacity: 0.52;
}
.hero-blob-3 {
  width: 460px; height: 460px;
  background: radial-gradient(circle, #FF9FAF 0%, transparent 65%);
  bottom: 200px; left: 20%;
  opacity: 0.45;
}
.hero-blob-4 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, #67C7F5 0%, transparent 65%);
  bottom: 160px; right: 15%;
  opacity: 0.45;
}

/* Centered text block */
.hero-center-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 960px;
  padding: 0 24px;
  margin: 0 auto;
}

.hero-title-center {
  font-size: clamp(38px, 5.5vw, 72px);
  line-height: 1.06;
  letter-spacing: -0.035em;
  max-width: 900px;
  width: 100%;
}

.hero-subtitle-center {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
}

.hero-ctas-center {
  justify-content: center;
  margin-bottom: 40px;
}

.social-proof-center {
  justify-content: center;
}

/* Mockup wrapper — sits below text, full container width */
.hero-mockup-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1100px;
  margin: 56px auto 0;
  padding: 0 24px;
}

/* The visual container that holds the UI image */
.hero-visual-centered {
  position: relative;
  padding: 0;
}

/* Device in centered hero — no rotation, no shadow */
.hero-device {
  transform: none;
  box-shadow: none;
}

/* Hero UI screenshot image */
.hero-ui-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

/* Float card positions relative to .hero-visual-centered */
.hero-fc-left {
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.hero-fc-right-top {
  position: absolute;
  right: -16px;
  top: 30%;
  z-index: 10;
}
.hero-fc-right-bottom {
  position: absolute;
  right: -16px;
  bottom: 60px;
  z-index: 10;
}

/* Bottom gradient fade — blends mockup into next section */
.hero-mockup-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, white);
  pointer-events: none;
}

@media (max-width: 960px) {
  .hero-visual-centered { padding: 20px 20px 0; }
  .hero-fc-left, .hero-fc-right-top, .hero-fc-right-bottom { display: none; }
  .hero-mockup-wrap { padding: 0 16px; }
}
@media (max-width: 600px) {
  .hero-center-content { padding: 0 16px; }
  .hero-title-center { font-size: clamp(32px, 8vw, 48px); }
  .hero-subtitle-center { font-size: 16px; }
}

/* Grid must be above orbs — keep for other pages */
.hero-section .hero-grid { position: relative; z-index: 1; }

.hero-section-dark {
  min-height: 80vh;
  background: #00331E;
  display: flex;
  align-items: center;
  padding: 80px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-section-dark::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,201,122,0.28) 0%, transparent 60%);
  top: -200px; right: -100px;
  border-radius: 50%;
  pointer-events: none;
}

.hero-section-grad2 {
  min-height: 70vh;
  background: var(--grad-2);
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-section-grad3 {
  min-height: 70vh;
  background: var(--grad-3);
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-section-grad4 {
  min-height: 80vh;
  background: url('Assets/Communa-Membership-Hero-Section-BG-3.webp') center top / cover no-repeat;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-section, .hero-section-dark, .hero-section-grad2, .hero-section-grad3, .hero-section-grad4 {
    padding: 100px 0 60px;
    min-height: auto;
  }
}

.hero-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(36px, 4.8vw, 66px);
  font-weight: 800;
  color: var(--color-content);
  line-height: 1.07;
  margin-bottom: 22px;
  letter-spacing: -0.03em;
}
.hero-title .accent { color: var(--color-mint); }
@keyframes gradient-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.accent-gradient {
  background: linear-gradient(90deg, #00C97A, #ff81a0, #c446ff, #00C97A);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s ease infinite;
  display: block;
  text-align: center;
  white-space: nowrap;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.hero-title-white {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.hero-title-white .accent { color: var(--color-mint); }

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-subtitle-white {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 0;
  align-items: center;
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 32px;
}
.avatar-stack { display: flex; }
.avatar-stack img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -8px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.06);
}
.avatar-stack img:first-child { margin-left: 0; }
.social-proof-text {
  font-size: 13px;
  color: var(--color-muted);
  font-family: 'Inter', sans-serif;
  line-height: 1.45;
}
.social-proof-text strong { color: var(--color-content); font-weight: 600; }

/* Membership mid-page CTA */
.mmcta-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.membership-mid-cta {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  background: linear-gradient(105deg, #fde8ee 0%, #ede8ff 45%, #e2eeff 100%);
  border-radius: 24px;
  overflow: hidden;
  padding: 64px 0 0 64px;
  margin: 64px 0 128px;
  min-height: 320px;
}
.mmcta-shape {
  position: absolute;
  width: auto;
  height: 345px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0.55;
  pointer-events: none;
  object-fit: contain;
}
.mmcta-left {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-bottom: 64px;
  padding-right: 32px;
}
.mmcta-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.22;
  color: var(--color-content);
  margin: 0;
}
.mmcta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #1a3a2e;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 14px;
  text-decoration: none;
  width: fit-content;
  transition: background 0.2s, transform 0.15s;
}
.mmcta-btn::after {
  content: '→';
  font-size: 17px;
  line-height: 1;
}
.mmcta-btn:hover {
  background: #234d3d;
  transform: translateY(-1px);
}
.mmcta-right {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  min-width: 0;
  padding-right: 0;
}
.mmcta-image {
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 -8px 48px rgba(0,0,0,0.12);
  object-fit: cover;
  object-position: top;
  max-height: 280px;
}

/* Workflow steps */
.workflow-steps {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}
.workflow-step {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #374151;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 0;
  transition: max-height 0.45s ease, opacity 0.4s ease,
              padding-top 0.45s ease, padding-bottom 0.45s ease,
              margin-bottom 0.45s ease;
}
.workflow-step.visible {
  max-height: 80px;
  opacity: 1;
  padding-top: 14px;
  padding-bottom: 14px;
  margin-bottom: 10px;
}
.workflow-step.hiding {
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease,
              padding-top 0.35s ease, padding-bottom 0.35s ease,
              margin-bottom 0.35s ease;
}
.wf-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: #111827;
  border-radius: 50%;
  color: #fff;
}

/* Float animation */
@keyframes floatUp {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-7px); }
}
@keyframes breathe {
  0%, 100% { transform: scale(1); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
  50% { transform: scale(1.08); box-shadow: 0 12px 32px rgba(0,0,0,0.32); }
}

/* ============================================
   DEVICE FRAME MOCKUP
   ============================================ */
.device-frame {
  background: #18181B;
  border-radius: 20px;
  padding: 10px;
  box-shadow: none;
  position: relative;
}
.device-frame::before {
  content: '';
  display: block;
  width: 52px;
  height: 5px;
  background: #303030;
  border-radius: 3px;
  margin: 2px auto 8px;
}
.device-screen {
  background: #F5F8FF;
  border-radius: 10px;
  overflow: hidden;
  font-size: 11px;
  font-family: 'Inter', sans-serif;
}
.mockup-topbar {
  background: white;
  padding: 8px 12px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mockup-dots { display: flex; gap: 4px; }
.mockup-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.mockup-dots span:nth-child(1) { background: #FF5F57; }
.mockup-dots span:nth-child(2) { background: #FFBD2E; }
.mockup-dots span:nth-child(3) { background: #28C840; }
.mockup-sidebar {
  background: white;
  border-right: 1px solid #f0f0f0;
  width: 140px;
  min-height: 200px;
  padding: 12px 0;
  flex-shrink: 0;
}
.mockup-sidebar-item {
  padding: 6px 14px;
  font-size: 10px;
  color: #555;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mockup-sidebar-item.active {
  background: rgba(0,51,30,0.06);
  color: #00331E;
  font-weight: 600;
}
.mockup-body {
  flex: 1;
  padding: 14px;
  overflow: hidden;
}

/* ============================================
   FLOATING GLASS CARDS
   ============================================ */
.float-card {
  position: absolute;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.95);
  border-radius: 14px;
  padding: 11px 15px;
  box-shadow:
    0 2px 8px rgba(0,0,0,0.06),
    0 12px 32px rgba(0,0,0,0.10);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  white-space: nowrap;
  z-index: 10;
  outline: 1px solid rgba(0,0,0,0.05);
}
.float-card-title {
  font-weight: 600;
  color: var(--color-content);
  margin-bottom: 2px;
  font-size: 13px;
  letter-spacing: -0.01em;
}
.float-card-sub { color: var(--color-muted); font-size: 11px; }
.float-card .status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--color-mint);
  display: inline-block;
  margin-right: 4px;
}

/* ============================================
   LOGO MARQUEE
   ============================================ */
.marquee-wrapper {
  overflow: hidden;
  position: relative;
}
.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #ffffff 0%, transparent 100%);
}
.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #ffffff 0%, transparent 100%);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
  align-items: center;
  padding: 8px 0;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-logo {
  background: white;
  border-radius: 12px;
  padding: 14px 28px;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 16px;
  transition: border-color 0.25s, box-shadow 0.25s;
  cursor: default;
}
.marquee-logo img {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.55);
  transition: filter 0.3s;
}
.marquee-logo:hover { border-color: #C8E6DA; box-shadow: 0 2px 12px rgba(0,51,30,0.06); }
.marquee-logo:hover img { filter: grayscale(0%) opacity(1); }

/* ============================================
   DARK SECTION
   ============================================ */
.dark-section {
  background: #00331E;
  color: white;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.dark-section::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,201,122,0.30) 0%, transparent 65%);
  top: -100px; right: 10%;
  border-radius: 50%;
  pointer-events: none;
}
.dark-section .section-label { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.2); }
.dark-section .section-title { color: white; }
.dark-section p { color: rgba(255,255,255,0.7); }

/* ============================================
   FEATURE SECTION WRAPPER
   ============================================ */
.feature-section {
  padding: 96px 0;
}
.feature-section .feature-row:last-child {
  margin-bottom: 0;
}

/* ============================================
   FEATURE ROWS (alternating layout)
   ============================================ */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto 160px;
  padding: 0 24px;
}
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }

.feature-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6D28D9;
  background: #EDE9FE;
  border: 1px solid rgba(109,40,217,0.15);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.feature-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 800;
  color: var(--color-content);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}
.feature-desc {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--color-mint-light);
  color: var(--color-accent);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  margin-top: 24px;
  border: 1px solid rgba(0,201,122,0.2);
}
.feature-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.feature-row.reverse .feature-visual {
  justify-content: flex-start;
}
.feature-visual-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  min-height: 260px;
  width: 30rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .feature-row { grid-template-columns: 1fr; gap: 40px; }
  .feature-row.reverse { direction: ltr; }
}

/* Feature list */
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #444;
  line-height: 1.5;
}
.feature-list li .check-icon {
  color: #fff;
  background: #111827;
  border-radius: 50%;
  padding: 3px;
  flex-shrink: 0;
  margin-top: 2px;
  width: 18px !important;
  height: 18px !important;
}

/* ============================================
   VALUE TILES
   ============================================ */
.value-tiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 900px) {
  .value-tiles-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .value-tiles-grid { grid-template-columns: 1fr; }
}

.value-tile {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--color-border);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.22s, border-color 0.22s;
}
.value-tile.visible { opacity: 1; transform: translateY(0); }
.value-tile:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
  border-color: #D1D5DB;
}

.value-icon-pill {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.value-tile-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--color-content);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.value-tile-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.65;
}

/* ============================================
   PRICING
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.pricing-card {
  background: white;
  border-radius: 24px;
  padding: 40px 36px;
  border: 2px solid #eee;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  opacity: 0;
  transform: translateY(24px);
}
.pricing-card.visible { opacity: 1; transform: translateY(0); }
.pricing-card:hover { border-color: #00D68F; box-shadow: 0 20px 60px rgba(0,51,30,0.12); transform: translateY(-6px); }
.pricing-card.featured {
  border-color: #00331E;
  background: #00331E;
  color: white;
}
.pricing-card.featured:hover { border-color: #00D68F; }
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #00D68F;
  color: #00331E;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
}
.pricing-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.pricing-desc-card {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #888;
  line-height: 1.5;
  margin-bottom: 4px;
}
.pricing-card.featured .pricing-desc-card { color: rgba(255,255,255,0.6); }
.pricing-price {
  font-family: 'DM Sans', sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  margin: 20px 0 4px;
}
.pricing-price sup {
  font-size: 24px;
  font-weight: 600;
  vertical-align: super;
  line-height: 0;
}
.pricing-price-custom {
  font-family: 'DM Sans', sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  margin: 20px 0 4px;
}
.pricing-period { font-size: 13px; color: #888; margin-bottom: 24px; font-family: 'Inter', sans-serif; }
.pricing-card.featured .pricing-period { color: rgba(255,255,255,0.6); }
.pricing-divider { height: 1px; background: #eee; margin: 24px 0; }
.pricing-card.featured .pricing-divider { background: rgba(255,255,255,0.15); }
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: #555;
  line-height: 1.4;
}
.pricing-card.featured .pricing-feature { color: rgba(255,255,255,0.8); }
.pricing-feature .check { color: #00D68F; flex-shrink: 0; margin-top: 1px; }
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
}

/* Billing toggle */
.billing-toggle-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
}
.billing-label {
  font-weight: 500;
  color: #888;
  transition: color 0.2s, font-weight 0.2s;
  cursor: pointer;
}
.billing-label.active { color: #0F0F0F; font-weight: 700; }
.toggle-switch {
  position: relative;
  width: 52px;
  height: 28px;
}
.toggle-switch input {
  opacity: 0;
  width: 0; height: 0;
}
.toggle-slider {
  position: absolute;
  inset: 0;
  background: #e0e0e0;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.3s;
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 22px; height: 22px;
  left: 3px; bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.toggle-switch input:checked + .toggle-slider { background: #00331E; }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(24px); }
.save-badge {
  background: #00D68F;
  color: #00331E;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  opacity: 0;
  transition: opacity 0.3s;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-wrapper {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}
.faq-item {
  border-bottom: 1px solid #eee;
  padding: 0;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #0F0F0F;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover { color: #00331E; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #555;
  line-height: 1.65;
}
.faq-answer.open { max-height: 300px; padding-bottom: 20px; }
.faq-icon { transition: transform 0.3s; flex-shrink: 0; color: #00331E; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ============================================
   CTA STRIP
   ============================================ */
.cta-strip {
  padding: 100px 24px;
  text-align: center;
  background: #00331E;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,201,122,0.32) 0%, transparent 60%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-strip-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  color: white;
  max-width: 680px;
  margin: 0 auto 16px;
  line-height: 1.12;
  letter-spacing: -0.03em;
  position: relative;
  z-index: 1;
}
.cta-strip-sub {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}
.cta-strip .section-label {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.2);
  justify-content: center;
  position: relative;
  z-index: 1;
  display: inline-flex;
}
.cta-strip .section-label::before { display: none; }
.cta-strip-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #F7F8FA;
  color: #0D0D0D;
  padding: 80px 0 36px;
  border-top: 1px solid var(--color-border);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
.footer-brand-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--color-muted);
  margin: 16px 0 24px;
  line-height: 1.6;
  max-width: 260px;
}
.footer-col-title {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 11px; }
.footer-links a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--color-muted);
  text-decoration: none;
  transition: color 0.18s;
}
.footer-links a:hover { color: var(--color-content); }
.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #9CA3AF;
}
.footer-legal { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-legal a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #9CA3AF;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--color-content); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  text-decoration: none;
  transition: background 0.2s;
}
.footer-social a:hover { background: #F0F0F0; }
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; flex-wrap: wrap; }
}

/* ============================================
   PAGE TRANSITION & SCROLL REVEAL
   ============================================ */
.page-enter {
  animation: pageEnter 0.5s ease forwards;
}
@keyframes pageEnter {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   TRUST BADGES
   ============================================ */
.trust-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 40px 24px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 14px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s, transform 0.2s;
}
.trust-badge:hover { box-shadow: 0 8px 24px rgba(0,51,30,0.08); transform: translateY(-2px); }
.trust-badge-icon { color: #00331E; }

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: white;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 48px 32px;
}
.stats-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-border);
  border-radius: 14px;
  overflow: hidden;
}
.stats-bar-inner > div {
  background: white;
  padding: 28px 24px;
  text-align: center;
}
.stat-item-num {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.03em;
}
.stat-item-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.4;
}
@media (max-width: 768px) {
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
  .social-proof {flex-direction: column}
}

/* ============================================
   TEAM CARDS
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 900px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
.team-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #f0f0f0;
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s;
}
.team-card:hover { box-shadow: 0 16px 48px rgba(0,51,30,0.1); transform: translateY(-4px); }
.team-card-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
.team-card-body { padding: 20px 16px; }
.team-card-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0F0F0F;
  margin-bottom: 4px;
}
.team-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #777;
}

/* ============================================
   PHONE MOCKUP
   ============================================ */
.phone-frame {
  background: #1C1C1E;
  border-radius: 40px;
  padding: 14px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.08);
  position: relative;
  width: 220px;
  margin: 0 auto;
}
.phone-frame::before {
  content: '';
  display: block;
  width: 80px;
  height: 24px;
  background: #1C1C1E;
  border-radius: 12px;
  margin: 0 auto 8px;
  border: 2px solid #2a2a2a;
}
.phone-screen {
  background: white;
  border-radius: 28px;
  overflow: hidden;
  min-height: 380px;
}

/* ============================================
   APP STORE BADGES
   ============================================ */
.app-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.app-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  padding: 10px 18px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  color: #0F0F0F;
}
.app-badge-dark {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 10px 18px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  color: white;
}
.app-badge:hover, .app-badge-dark:hover { transform: translateY(-2px); background: rgba(255,255,255,0.15); }
.app-badge-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  color: #888;
  line-height: 1;
  margin-bottom: 2px;
}
.app-badge-dark .app-badge-label { color: rgba(255,255,255,0.6); }
.app-badge-store {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  color: #0F0F0F;
}
.app-badge-dark .app-badge-store { color: white; }

/* ============================================
   VALUES GRID (About page)
   ============================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 640px) {
  .values-grid { grid-template-columns: 1fr; }
}
.value-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid #f0f0f0;
  transition: box-shadow 0.3s, transform 0.3s;
}
.value-card:hover { box-shadow: 0 16px 48px rgba(0,51,30,0.08); transform: translateY(-4px); }
.value-card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(0,51,30,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00331E;
  margin-bottom: 16px;
}
.value-card-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0F0F0F;
  margin-bottom: 8px;
}
.value-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}


/* ============================================
   SECTION HEADER CENTERED
   ============================================ */
.section-header-center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
  padding: 0 24px;
}

/* ============================================
   MISC UTILITIES
   ============================================ */
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.text-center { text-align: center; }
.text-mint  { color: #00D68F; }
.text-coral { color: #FF6B6B; }
.text-lavender { color: #C4B5FD; }
.text-accent { color: #00331E; }
.bg-mint-soft { background: rgba(0,214,143,0.1); }
.bg-coral-soft { background: rgba(255,107,107,0.1); }
.bg-lavender-soft { background: rgba(196,181,253,0.15); }
.bg-sky-soft { background: rgba(186,230,253,0.15); }
.flex-row { display: flex; align-items: center; gap: 12px; }
.w-full { width: 100%; }

/* ============================================
   ABOUT PAGE - MISSION
   ============================================ */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 768px) {
  .mission-grid { grid-template-columns: 1fr; gap: 40px; }
}
.mission-quote {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  color: #0F0F0F;
  line-height: 1.35;
  border-left: 4px solid #00D68F;
  padding-left: 28px;
}

/* ============================================
   ABOUT HERO CENTERED
   ============================================ */
.hero-center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
.hero-center .hero-title {
  font-size: clamp(32px, 4vw, 56px);
  margin-bottom: 24px;
}

/* ============================================
   ENGAGEMENT PHONE PAIR
   ============================================ */
.phone-pair {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: flex-end;
}
.phone-pair .phone-frame:first-child {
  transform: rotate(-4deg) translateY(20px);
}
.phone-pair .phone-frame:last-child {
  transform: rotate(4deg) translateY(20px);
}
@media (max-width: 480px) {
  .phone-pair { gap: 12px; }
  .phone-frame { width: 160px; }
}

/* Make feature rows not hover when inside .tile */
.tile:hover .feature-visual-box {
  box-shadow: none;
  transform: none;
}

/* Internal SEO links */
.internal-link {
  text-decoration: none;
  font-weight: 500;
  color: inherit;
  transition: opacity 0.15s ease;
}
.internal-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================
   ORG TYPE SECTION
   ============================================ */
.org-type-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.org-type-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  opacity: 0;
  transform: translateY(24px);
}
.org-type-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.org-type-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.org-type-image {
  height: 180px;
  position: relative;
  overflow: hidden;
}
.org-type-image-1 { background: linear-gradient(135deg, #FFD0DC 0%, #BFCEFF 100%); }
.org-type-image-2 { background: linear-gradient(135deg, #DDD0FF 0%, #FFD8F0 100%); }
.org-type-image-3 { background: linear-gradient(135deg, #B8F5DC 0%, #D8CEFF 100%); }
.org-type-image-4 { background: linear-gradient(135deg, #B8FFE4 0%, #D0FFD8 100%); }
.org-type-image-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.org-type-icon-wrap {
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.55);
  border-radius: 18px;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
}
.org-type-image-inner svg {
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.12));
}
.org-type-image-plain {
  background: #ffffff;
}
.org-type-image-plain .org-type-image-inner {
  filter: none;
  box-shadow: none;
}
.org-type-image-plain img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  filter: none;
}
.org-type-body {
  padding: 24px;
}
.org-type-body-center {
  text-align: center;
}
.org-type-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--color-content);
  margin-bottom: 10px;
  line-height: 1.3;
}
.org-type-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}
.org-type-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent);
  text-decoration: none;
  transition: gap 0.2s ease;
}
.org-type-link:hover { gap: 10px; }

@media (max-width: 1024px) {
  .org-type-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .org-type-grid { grid-template-columns: 1fr; }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  opacity: 0;
  transform: translateY(24px);
}
.testimonial-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial-card-featured {
  background: var(--color-accent);
  border-color: transparent;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  color: #F59E0B;
}
.testimonial-card-featured .testimonial-stars { color: #6EF0BC; }
.testimonial-quote {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
  color: var(--color-content);
  flex: 1;
}
.testimonial-card-featured .testimonial-quote { color: rgba(255,255,255,0.92); }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar-photo {
  width: 52px; height: 52px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  border: 2.5px solid rgba(255,255,255,0.8);
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  overflow: hidden;
}
.testimonial-avatar-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.testimonial-avatar-lavender { background: #DDD6FE; color: #5B21B6; }
.testimonial-avatar-mint     { background: var(--color-mint-light); color: var(--color-accent); }
.testimonial-avatar-teal     { background: #B8F5DC; color: #065F46; }
.testimonial-card-featured .testimonial-avatar-photo {
  border-color: rgba(255,255,255,0.35);
}
.testimonial-card-featured .testimonial-avatar-mint {
  background: rgba(255,255,255,0.18);
  color: white;
}
.testimonial-name {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-content);
}
.testimonial-role {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--color-muted);
  margin-top: 2px;
}
.testimonial-card-featured .testimonial-name { color: white; }
.testimonial-card-featured .testimonial-role { color: rgba(255,255,255,0.60); }

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}

/* ============================================
   RESPONSIVE GRID UTILITIES
   ============================================ */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.fqn-grid-4 { grid-template-columns: repeat(4, 1fr); }

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

/* Feature visual box mobile fix */
@media (max-width: 768px) {
  .feature-visual-box { width: 100%; }
}

/* Membership mid-CTA mobile */
@media (max-width: 768px) {
  .membership-mid-cta { display: none; }
}

/* Float cards — hide on mobile */
@media (max-width: 768px) {
  .float-card { display: none; }
}

/* Member avatar floats — resize on mobile */
@media (max-width: 768px) {
  .member-avatar-float { width: 60px !important; height: 60px !important; }
}

/* Hero rotating text — allow wrap on very small screens */
@media (max-width: 480px) {
  .accent-gradient { white-space: normal; }
}

/* Mobile-app page bento grid */
.mobile-bento { display: grid; grid-template-columns: 1fr 1fr 1.35fr; grid-template-rows: auto auto auto; gap: 16px; }
@media (max-width: 768px) {
  .mobile-bento { grid-template-columns: 1fr !important; }
  .mobile-bento > [style*="grid-column"],
  .mobile-bento > [style*="grid-row"] {
    grid-column: auto !important;
    grid-row: auto !important;
  }
}

/* Demo page feature rows */
@media (max-width: 768px) {
  .demo-feature-row { grid-template-columns: 1fr !important; gap: 40px !important; }
  .demo-stats-grid { grid-template-columns: 1fr !important; }
}

/* Expect / 3-col card grids on feature pages */
.expect-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.about-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 900px) {
  .expect-grid { grid-template-columns: 1fr !important; }
  .features-3col { grid-template-columns: 1fr !important; }
}

/* Netlify forms — success / error (ILA-style) */
.form-msg {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  line-height: 1.4;
}
.form-msg__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.form-msg__text { flex: 1; min-width: 0; }
.form-msg--success {
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #2e7d32;
}
.form-msg--success .form-msg__icon { background: #4caf50; color: #fff; }
.form-msg--error {
  background: #ffebee;
  border: 1px solid #ef9a9a;
  color: #c62828;
}
.form-msg--error .form-msg__icon { background: #e53935; color: #fff; }
.form-msg__text a {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-msg--success .form-msg__text a { color: #1b5e20; }

