/* Zenith Global Fusion — Executive Edge brand palette
   Deep Navy #09284C | Rich Gold #CAA96E | Warm Cream #F5EFE0
   Soft Warm White #FAF7F2 | Deep Charcoal #2B2B29
   Headings: Lora | Body: Poppins
*/

:root {
  --primary: #09284c;
  --secondary: #caa96e;
  --text: #4a4a48;
  --muted: #6b6b68;
  --accent: #f5efe0;
  --white: #faf7f2;
  --pure: #ffffff;
  --soft: #f5efe0;
  --soft-2: #efe6d4;
  --charcoal: #2b2b29;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow: 0 18px 50px rgba(9, 40, 76, 0.12);
  --shadow-sm: 0 8px 24px rgba(9, 40, 76, 0.08);
  --container: 1140px;
  --header-h: 110px;
  --font-head: "Lora", Georgia, serif;
  --font-body: "Poppins", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background: var(--pure);
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

a:hover {
  color: var(--muted);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--primary);
  font-weight: 500;
  line-height: 1.25;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.15rem; }
h5 { font-size: 1rem; font-weight: 500; }

p { margin: 0 0 1em; }

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

/* Buttons — Consultry style */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius);
  padding: 13px 29px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--secondary);
  color: var(--primary);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--primary);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
}

/* Top bar */
.topbar {
  background: var(--primary);
  color: var(--secondary);
  font-size: 13px;
  padding: 0.55rem 0;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.topbar a {
  color: var(--secondary);
}

.topbar a:hover {
  color: var(--white);
}

.topbar-right {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.topbar-item i,
.topbar a i {
  margin-right: 0.4rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #0a0a0a;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(202, 169, 110, 0.22);
  transition: box-shadow 0.25s ease;
}

.site-header.scrolled {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.logo:hover {
  opacity: 0.92;
}

.logo-img {
  display: block;
  height: 96px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
}

.logo.light .logo-img {
  height: 100px;
  max-width: 280px;
}

@media (max-width: 768px) {
  .logo-img {
    height: 70px;
  }

  .logo.light .logo-img {
    height: 76px;
  }
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
}

.nav a {
  color: var(--white);
  font-weight: 500;
  font-size: 14px;
}

.nav a:hover {
  color: var(--secondary);
}

.header-cta {
  margin-left: 0.5rem;
  padding: 11px 22px;
  font-size: 14px;
  background: var(--secondary);
  color: var(--primary);
}

.header-cta:hover {
  background: var(--white);
  color: var(--primary);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
  transition: 0.25s ease;
}

/* Hero */
.hero {
  padding: 4.5rem 0 5rem;
  background:
    radial-gradient(circle at 85% 20%, rgba(202, 169, 110, 0.35), transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(202, 169, 110, 0.18), transparent 35%),
    var(--white);
  overflow: visible;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.badge {
  display: inline-block;
  background: var(--secondary);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.hero-lead {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--primary);
  margin-top: -0.25rem;
}

.hero-desc {
  font-size: 15px;
  max-width: 34rem;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.hero-partners > span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.65rem;
}

.partner-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.partner-pills span {
  background: var(--soft);
  border: 1px solid rgba(9, 40, 76, 0.08);
  color: var(--primary);
  font-size: 12px;
  font-weight: 500;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
}

.hero-visual {
  position: relative;
  /* Extra space under main image; float lives here so the hand stays clear */
  padding-bottom: 7.5rem;
}

.hero-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-main {
  width: 92%;
  margin-left: auto;
  height: 420px;
  position: relative;
  z-index: 1;
}

.hero-card-main img {
  height: 100%;
  /* Keep open palm + network glow centered and fully visible */
  object-position: 32% 40%;
}

.play-badge {
  position: absolute;
  right: 1.25rem;
  top: 1.25rem;
  bottom: auto;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
  z-index: 1;
}

/*
  Networking photo sits under the main image (left), with only a thin
  layered tuck — does not cover the hand.
*/
.hero-card-float {
  position: absolute;
  left: 0;
  right: auto;
  bottom: 0.35rem;
  width: 52%;
  max-width: 260px;
  height: 148px;
  border: 6px solid var(--white);
  z-index: 3;
  box-shadow: var(--shadow);
}

.hero-card-float img {
  height: 100%;
  object-position: center center;
}

.hero-stat-float {
  position: absolute;
  top: 1.5rem;
  left: 0;
  background: var(--primary);
  color: var(--white);
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  max-width: 170px;
  box-shadow: var(--shadow);
  z-index: 3;
}

.hero-stat-float strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.75rem;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.hero-stat-float span {
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
}

/* Sections */
.section {
  padding: 5.5rem 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 2.75rem;
}

.section-head.light h2,
.section-head.light p {
  color: inherit;
}

.section-head p {
  margin: 0;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

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

/* Why / Vision */
.why {
  background: var(--soft);
}

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: stretch;
}

.why-copy {
  display: flex;
  flex-direction: column;
}

.accent-line {
  font-family: var(--font-head);
  font-style: italic;
  color: var(--primary);
  font-size: 1.1rem;
}

.feature-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.5rem;
}

.feature-card {
  background: var(--pure);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  box-shadow: var(--shadow-sm);
  min-height: 140px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--secondary);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
  font-size: 1.1rem;
}

.feature-card h3 {
  margin-bottom: 0.35rem;
}

.feature-card p {
  margin: 0;
  font-size: 13px;
}

.stats-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  color: var(--white);
  height: 100%;
  justify-content: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(202, 169, 110, 0.15);
  border-radius: var(--radius);
  padding: 1.15rem 1rem;
  text-align: center;
}

.stat-vip {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1rem;
  background: rgba(202, 169, 110, 0.12);
  border-color: rgba(202, 169, 110, 0.35);
}

.stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--secondary);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.stat span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

/* Focus */
.focus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.focus-list {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.focus-item {
  display: flex;
  gap: 1rem;
  background: var(--soft);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.35rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.focus-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.focus-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--primary);
  color: var(--secondary);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}

.focus-item h4 {
  margin-bottom: 0.25rem;
}

.focus-item p {
  margin: 0;
  font-size: 13px;
}

.focus-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 420px;
}

.focus-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

/* Collaborators */
.collaborators {
  background: var(--soft);
}

.collab-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.collab-card {
  --glow-border: 2px;
  position: relative;
  isolation: isolate;
  background: var(--pure);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  border: 1px solid rgba(9, 40, 76, 0.06);
  overflow: hidden;
  z-index: 0;
}

/* Rotating glow that traces the card border start → finish */
.collab-card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 220%;
  height: 220%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 60deg,
    rgba(202, 169, 110, 0.15) 100deg,
    #caa96e 140deg,
    #f5efe0 165deg,
    #caa96e 190deg,
    rgba(202, 169, 110, 0.15) 230deg,
    transparent 270deg,
    transparent 360deg
  );
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
  z-index: -2;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

/* Inner fill so only the border edge shows the glow */
.collab-card::after {
  content: "";
  position: absolute;
  inset: var(--glow-border);
  background: var(--pure);
  border-radius: calc(var(--radius-lg) - 2px);
  z-index: -1;
  pointer-events: none;
  transition: box-shadow 0.35s ease, background-color 0.35s ease;
}

.collab-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 18px 40px rgba(9, 40, 76, 0.12),
    0 0 28px rgba(202, 169, 110, 0.28);
  border-color: transparent;
}

.collab-card:hover::before {
  opacity: 1;
  animation: collab-border-spin 2.2s linear infinite;
}

.collab-card:hover::after {
  background-color: var(--soft);
  box-shadow: inset 0 0 0 1px rgba(202, 169, 110, 0.18);
}

@keyframes collab-border-spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.collab-icon {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  margin: 0 auto 0.9rem;
  border-radius: 14px;
  background: var(--secondary);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.collab-card:hover .collab-icon {
  transform: scale(1.06);
  box-shadow: 0 0 18px rgba(202, 169, 110, 0.45);
}

.collab-card h4,
.collab-card p {
  position: relative;
  z-index: 1;
}

.collab-card h4 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.collab-card p {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}

a.collab-card-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a.collab-card-link:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 3px;
}

.collab-site {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.02em;
}

.collab-site i {
  font-size: 10px;
  color: var(--secondary);
  transition: transform 0.25s ease;
}

a.collab-card-link:hover .collab-site i {
  transform: translate(2px, -2px);
}

.collab-site-soon {
  color: var(--muted);
  font-weight: 500;
  font-style: italic;
}

.collab-card .collab-site + .collab-site {
  margin-top: 0.15rem;
}

/* Prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .collab-card:hover::before {
    animation: none;
    opacity: 1;
    background: linear-gradient(135deg, #caa96e, #f5efe0, #caa96e);
  }
}

/* Memberships */
.memberships {
  background:
    linear-gradient(160deg, var(--primary) 0%, #0c335c 55%, #071f3c 100%);
  color: rgba(255, 255, 255, 0.85);
}

.memberships .section-head .eyebrow {
  color: var(--secondary);
}

.memberships .section-head h2 {
  color: var(--white);
}

.memberships .section-head p {
  color: rgba(255, 255, 255, 0.75);
}

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

.price-card {
  background: var(--pure);
  color: var(--text);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem 1.75rem;
  box-shadow: var(--shadow);
  position: relative;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  background: var(--secondary);
  transform: scale(1.03);
  z-index: 1;
}

.price-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary);
  color: var(--secondary);
  font-size: 11px;
  font-weight: 600;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}

.price-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--soft-2);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.price-card.featured .price-icon {
  background: var(--white);
}

.price-card h3 {
  margin-bottom: 0.5rem;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: 0.35rem;
}

.price .amount {
  font-family: var(--font-head);
  font-size: 2.4rem;
  color: var(--primary);
  line-height: 1;
}

.price .period {
  color: var(--muted);
  font-size: 13px;
}

.price-note {
  font-size: 13px;
  margin-bottom: 1.15rem;
  color: var(--primary);
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex: 1;
}

.price-card li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.4rem;
  font-size: 13px;
  border-bottom: 1px solid rgba(9, 40, 76, 0.06);
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.price-card .btn {
  width: 100%;
}

.membership-note {
  margin-top: 2.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(202, 169, 110, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.membership-note p {
  margin: 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.88);
}

/* WOM */
.wom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.wom blockquote {
  margin: 1.25rem 0 0;
  padding: 1.25rem 1.35rem;
  border-left: 4px solid var(--secondary);
  background: var(--soft);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--primary);
}

.wom-panel {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.88);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.wom-panel h3 {
  color: var(--secondary);
  margin-bottom: 0.75rem;
}

.wom-panel p {
  margin: 0;
}

.wom-panel strong {
  color: var(--white);
}

/* Founder */
.founder {
  background: var(--soft);
}

.founder-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: center;
}

.founder-visual {
  position: relative;
}

.founder-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
}

.founder-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.founder-label {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  background: rgba(9, 40, 76, 0.92);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
}

.founder-label strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--secondary);
}

.founder-label span {
  font-size: 13px;
  opacity: 0.85;
}

.founder-copy .lead {
  font-weight: 600;
  color: var(--primary);
  margin-top: -0.5rem;
}

.founder-copy p {
  font-size: 14px;
}

.founder-bio-link {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem 0.55rem;
  margin-top: 0.75rem;
  padding: 0.7rem 1rem;
  background: var(--soft);
  border: 1px solid rgba(202, 169, 110, 0.35);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}

.founder-bio-link i {
  color: var(--secondary);
  font-size: 13px;
}

.founder-bio-soon {
  font-weight: 500;
  font-style: italic;
  color: var(--muted);
}

/* Community */
.community {
  padding: 0;
}

.community-inner {
  background: linear-gradient(120deg, var(--secondary), var(--soft));
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.community .section {
  padding: 0;
}

.community.section {
  padding: 0 0 5.5rem;
}

.community-inner h2 {
  margin-bottom: 0.4rem;
}

.community-inner p {
  margin: 0;
  max-width: 520px;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--soft);
  border-radius: var(--radius);
  padding: 0 1.25rem;
  border: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.faq-item[open] {
  background: var(--white);
  border-color: rgba(9, 40, 76, 0.08);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--primary);
  padding: 1.15rem 0;
  position: relative;
  padding-right: 2rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--primary);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0 0 1.15rem;
  padding-bottom: 0.25rem;
}

/* CTA band */
.cta-band {
  background: var(--primary);
  padding: 3.5rem 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-band h2 {
  color: var(--white);
  margin: 0;
  max-width: 560px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.contact-card {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  background: var(--soft);
  border-radius: var(--radius);
  padding: 1.1rem;
  color: inherit;
}

a.contact-card:hover {
  background: var(--secondary);
  color: inherit;
}

.contact-card i {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--primary);
  color: var(--secondary);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-card span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 0.15rem;
}

.contact-card strong {
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  word-break: break-word;
}

.contact-form {
  background: var(--soft);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.contact-form h3 {
  margin-bottom: 1.25rem;
}

.contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 0.45rem;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--primary);
  background: var(--pure);
  border: 1px solid rgba(9, 40, 76, 0.12);
  border-radius: 15px;
  padding: 15px 20px;
  outline: none;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--muted);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 2px rgba(202, 169, 110, 0.35);
}

.contact-form .btn {
  width: 100%;
  margin-top: 0.25rem;
}

.contact-form .btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-status {
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
}

.form-status--pending {
  background: rgba(9, 40, 76, 0.06);
  color: var(--primary);
  border: 1px solid rgba(9, 40, 76, 0.1);
}

.form-status--success {
  background: rgba(34, 140, 90, 0.1);
  color: #1a6b45;
  border: 1px solid rgba(34, 140, 90, 0.25);
}

.form-status--error {
  background: rgba(180, 40, 40, 0.08);
  color: #9b1c1c;
  border: 1px solid rgba(180, 40, 40, 0.22);
}

/* Honeypot — hidden from real users */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-alt {
  text-align: center;
  margin: 1rem 0 0;
  font-size: 13px;
}

/* Footer */
.site-footer {
  background: #0a0a0a;
  color: rgba(255, 255, 255, 0.75);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 2rem;
  padding-bottom: 3rem;
}

.footer-brand p {
  margin: 1rem 0 1.25rem;
  max-width: 280px;
  font-size: 13px;
}

.site-footer h5 {
  color: var(--white);
  margin-bottom: 1rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 0.55rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}

.site-footer a:hover {
  color: var(--secondary);
}

.footer-contact li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 13px;
}

.footer-contact i {
  color: var(--secondary);
  margin-top: 0.2rem;
}

.social span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.65rem;
}

.social-links {
  display: flex;
  gap: 0.55rem;
  margin-bottom: 0.5rem;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--secondary);
  display: grid;
  place-items: center;
}

.social-links a:hover {
  background: var(--secondary);
  color: var(--primary);
}

.muted {
  color: var(--muted);
  font-size: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.15rem 0;
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
}

.footer-bottom p {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-credit a {
  color: var(--secondary);
  font-weight: 500;
}

.footer-credit a:hover {
  color: var(--white);
}

@media (max-width: 768px) {
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid,
  .why-grid,
  .focus-grid,
  .founder-grid,
  .wom-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }

  .price-card.featured {
    transform: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-visual {
    max-width: 520px;
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0a0a0a;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    gap: 0;
    border-bottom: 1px solid rgba(202, 169, 110, 0.22);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--white);
  }

  .nav a:hover {
    color: var(--secondary);
  }

  .header-cta {
    display: none;
  }

  .header-inner {
    position: relative;
  }

  .feature-cards,
  .contact-cards,
  .stats-grid {
    grid-template-columns: 1fr;
  }

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

  .hero {
    padding: 3rem 0 3.5rem;
  }

  .hero-visual {
    padding-bottom: 5.5rem;
  }

  .hero-card-main {
    width: 100%;
    height: 320px;
  }

  .hero-card-float {
    width: 58%;
    max-width: 220px;
    height: 118px;
    left: 0;
    right: auto;
    bottom: 0.25rem;
  }

  .hero-stat-float {
    top: 0.75rem;
    max-width: 140px;
    padding: 0.75rem;
  }

  .section {
    padding: 3.75rem 0;
  }

  .community.section {
    padding: 0 0 3.75rem;
  }

  .community-inner {
    padding: 1.75rem;
  }

  .membership-note {
    padding: 1.25rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .topbar-inner {
    justify-content: center;
    text-align: center;
  }
}

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

  .partner-pills span {
    width: 100%;
    text-align: center;
  }
}

/* Floating contact icons — fixed right middle */
.float-contact {
  position: fixed;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  text-decoration: none;
  line-height: 1;
}

.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  color: #fff;
  filter: brightness(1.08);
}

.float-email {
  background: var(--primary);
}

.float-call {
  background: var(--secondary);
  color: var(--primary);
}

.float-call:hover {
  color: var(--primary);
}

.float-whatsapp {
  background: #25d366;
}

/* Soft pulse on WhatsApp for attention */
.float-whatsapp {
  animation: float-pulse 2.4s ease-in-out infinite;
}

@keyframes float-pulse {
  0%,
  100% {
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.35);
  }
  50% {
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.65), 0 0 0 8px rgba(37, 211, 102, 0.12);
  }
}

@media (prefers-reduced-motion: reduce) {
  .float-whatsapp {
    animation: none;
  }
}

/* Mobile: slightly smaller, still fixed right-middle buttons */
@media (max-width: 768px) {
  .float-contact {
    right: 0.75rem;
    gap: 0.55rem;
  }

  .float-btn {
    width: 46px;
    height: 46px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .float-contact {
    right: 0.65rem;
    bottom: 1.1rem;
    top: auto;
    transform: none;
  }

  .float-btn {
    width: 48px;
    height: 48px;
  }
}
