/* ============================================================
   Elite--Singles.com — Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --green:        #3A9B5F;
  --green-dark:   #1E5E38;
  --green-deeper: #164729;
  --green-light:  #E8F5EE;
  --green-mid:    #D1EDD9;
  --green-hover:  #2E7A4A;
  --gold:         #C9A84C;
  --gold-light:   #F5EDD0;

  --text:         #1A1A2E;
  --text-md:      #4A5568;
  --text-lt:      #718096;
  --text-inv:     #FFFFFF;

  --bg:           #FFFFFF;
  --bg-off:       #F8FAF9;
  --bg-light:     #F1F7F3;
  --border:       #E2EDE7;
  --border-lt:    #EDF3EF;

  --shadow-xs:    0 1px 4px rgba(0,0,0,0.06);
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:    0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:    0 8px 40px rgba(0,0,0,0.13);

  --radius:       8px;
  --radius-lg:    16px;
  --radius-xl:    24px;
  --radius-pill:  999px;

  --trans:        0.22s ease;
  --trans-slow:   0.38s ease;

  --max-w:        1160px;
  --nav-h:        72px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Open Sans', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* ── Typography ────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.28;
  color: var(--text);
  font-weight: 600;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.65rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.65rem); }
h4 { font-size: 1.22rem; }
h5 { font-size: 1.05rem; }
h6 { font-size: 0.95rem; }

p { margin-bottom: 1.1em; color: var(--text-md); }
p:last-child { margin-bottom: 0; }

a { color: var(--green); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--green-dark); }

strong, b { font-weight: 600; }
em, i { font-style: italic; }

blockquote {
  border-left: 3px solid var(--green);
  padding: 0.75rem 1.25rem;
  margin: 1.5rem 0;
  background: var(--green-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text-md);
}

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-sm {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-lg {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 5rem 0; }
section.compact { padding: 3rem 0; }
section.spacious { padding: 7rem 0; }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { margin-bottom: 0.9rem; }
.section-header p { max-width: 600px; margin: 0 auto; font-size: 1.08rem; }

.section-label {
  display: inline-block;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.8rem;
}

/* ── Grid helpers ───────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.78rem 2rem;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Open Sans', sans-serif;
  transition: all var(--trans);
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 3px 14px rgba(58,155,95,0.30);
}
.btn-primary:hover {
  background: var(--green-hover);
  color: #fff;
  box-shadow: 0 5px 20px rgba(58,155,95,0.40);
  transform: translateY(-1px);
}
.btn-secondary {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-secondary:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-1px);
}
.btn-white {
  background: #fff;
  color: var(--green-dark);
  box-shadow: 0 3px 14px rgba(0,0,0,0.15);
}
.btn-white:hover {
  background: var(--green-light);
  color: var(--green-dark);
  transform: translateY(-1px);
}
.btn-ghost-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.70);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
}
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-sm { padding: 0.55rem 1.3rem; font-size: 0.85rem; }

/* ── Navigation ─────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-lt);
  z-index: 1000;
  transition: box-shadow var(--trans);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo .logo-mark {
  width: 36px;
  height: 36px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
}
.nav-logo .logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
}
.nav-logo .logo-text span { color: var(--green); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  padding: 0.45rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-md);
  border-radius: var(--radius);
  transition: all var(--trans);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--green);
  background: var(--green-light);
}

.nav-cta { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.nav-cta .btn-sm { padding: 0.55rem 1.25rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--trans);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 1.5rem;
  z-index: 999;
  box-shadow: var(--shadow-lg);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-lt);
  font-weight: 500;
  color: var(--text-md);
}
.mobile-menu a:hover { color: var(--green); }
.mobile-menu .mobile-join {
  display: block;
  margin-top: 1.25rem;
  text-align: center;
  padding: 0.7rem 1.25rem;
  border-bottom: none;
  border-radius: var(--radius-pill);
  background: var(--green);
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}
.mobile-menu .mobile-join:hover { background: var(--green-hover); color: #fff; }

/* ── Page offset for fixed nav ──────────────────────────────── */
.page-content { padding-top: var(--nav-h); }

/* ── Hero sections ──────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - var(--nav-h));
  background: linear-gradient(135deg, var(--green-deeper) 0%, var(--green-dark) 45%, var(--green) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(201,168,76,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(255,255,255,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; }
.hero h1 { color: #fff; margin-bottom: 1.2rem; }
.hero .hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  flex-wrap: wrap;
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.3rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Page hero (shorter, for inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--green-deeper) 0%, var(--green-dark) 50%, var(--green) 100%);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--bg));
}
.page-hero h1 { color: #fff; margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.82); font-size: 1.1rem; max-width: 560px; }

/* ── Cards ──────────────────────────────────────────────────── */
.card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
  transition: box-shadow var(--trans), transform var(--trans);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.card-body { padding: 1.75rem; }
.card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

/* ── Feature icons ──────────────────────────────────────────── */
.feature-icon {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-lg);
  background: var(--green-light);
  color: var(--green);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.feature-icon.gold { background: var(--gold-light); color: var(--gold); }
.feature-icon.dark { background: var(--green-dark); color: #fff; }

/* ── Steps ──────────────────────────────────────────────────── */
.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 1rem;
  box-shadow: 0 3px 12px rgba(58,155,95,0.30);
}

/* ── Stats bar ──────────────────────────────────────────────── */
.stats-bar {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  padding: 3.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.stat-label {
  color: rgba(255,255,255,0.78);
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 0.4rem;
  letter-spacing: 0.03em;
}

/* ── Testimonials ───────────────────────────────────────────── */
.testimonial-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--green-light);
  position: absolute;
  top: -0.5rem;
  left: 1.25rem;
  line-height: 1;
}
.testimonial-text {
  font-size: 1rem;
  color: var(--text-md);
  font-style: italic;
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
}
.testimonial-author { display: flex; align-items: center; gap: 0.85rem; }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-mid);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green-dark);
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; color: var(--text); }
.testimonial-detail { font-size: 0.8rem; color: var(--text-lt); }

/* ── Star ratings ───────────────────────────────────────────── */
.stars { color: #F5A623; letter-spacing: 1px; font-size: 0.9rem; margin-bottom: 0.75rem; }

/* ── Forms ──────────────────────────────────────────────────── */
.form-group {
  margin-bottom: 1.35rem;
}
.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.45rem;
}
.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--trans), box-shadow var(--trans);
  outline: none;
}
.form-control:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(58,155,95,0.12);
}
.form-control::placeholder { color: var(--text-lt); }

textarea.form-control { resize: vertical; min-height: 130px; }

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

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
}
.form-check input { margin-top: 0.25rem; accent-color: var(--green); flex-shrink: 0; }
.form-check-label { font-size: 0.88rem; color: var(--text-md); }

/* ── Auth card ──────────────────────────────────────────────── */
.auth-page {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--green-deeper) 0%, var(--green-dark) 55%, var(--green) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 2rem) 1.5rem 3rem;
}
.auth-card {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 2.75rem;
  width: 100%;
  max-width: 460px;
}
.auth-logo { text-align: center; margin-bottom: 1.75rem; }
.auth-divider {
  text-align: center;
  position: relative;
  margin: 1.5rem 0;
}
.auth-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  height: 1px;
  background: var(--border);
}
.auth-divider span {
  position: relative;
  background: #fff;
  padding: 0 0.85rem;
  font-size: 0.8rem;
  color: var(--text-lt);
  font-weight: 500;
}

/* ── Pricing ────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: start;
}
.pricing-card {
  background: var(--bg);
  border-radius: var(--radius-xl);
  border: 2px solid var(--border);
  padding: 2.25rem;
  position: relative;
  transition: box-shadow var(--trans), transform var(--trans);
}
.pricing-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.pricing-card.featured {
  border-color: var(--green);
  box-shadow: 0 6px 30px rgba(58,155,95,0.18);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.pricing-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.pricing-duration {
  font-size: 0.82rem;
  color: var(--text-lt);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.pricing-price {
  margin-bottom: 1.75rem;
}
.pricing-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.pricing-amount sup {
  font-size: 1.4rem;
  vertical-align: super;
  margin-right: 0.1rem;
}
.pricing-per {
  font-size: 0.82rem;
  color: var(--text-lt);
  margin-top: 0.3rem;
}
.pricing-total {
  font-size: 0.82rem;
  color: var(--text-lt);
  margin-top: 0.2rem;
}
.pricing-features {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.pricing-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-md);
}
.pricing-feature .check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pricing-feature .cross {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #F3F4F6;
  color: #9CA3AF;
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── Blog ───────────────────────────────────────────────────── */
.blog-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow var(--trans), transform var(--trans);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.blog-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--green);
}
.blog-card-body { padding: 1.5rem; }
.blog-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-light);
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
}
.blog-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
  color: var(--text);
  transition: color var(--trans);
  line-height: 1.4;
}
.blog-card:hover .blog-card-title { color: var(--green); }
.blog-card-excerpt { font-size: 0.88rem; color: var(--text-lt); line-height: 1.6; margin-bottom: 1rem; }
.blog-card-meta { font-size: 0.78rem; color: var(--text-lt); display: flex; align-items: center; gap: 0.9rem; }

/* Blog article */
.article-body { font-size: 1.05rem; line-height: 1.85; color: var(--text-md); }
.article-body h2 { margin: 2rem 0 1rem; font-size: 1.7rem; }
.article-body h3 { margin: 1.75rem 0 0.85rem; font-size: 1.35rem; }
.article-body p { margin-bottom: 1.4rem; }
.article-body ul, .article-body ol { margin: 1rem 0 1.5rem 1.5rem; }
.article-body li { margin-bottom: 0.5rem; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }

/* ── Author box ─────────────────────────────────────────────── */
.author-box {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem;
  background: var(--bg-off);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  margin: 3rem 0;
}
.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-dark);
  flex-shrink: 0;
}
.author-info h4 { margin-bottom: 0.2rem; font-size: 1rem; }
.author-info .author-title { font-size: 0.8rem; color: var(--text-lt); margin-bottom: 0.6rem; }
.author-info p { font-size: 0.88rem; margin: 0; }

/* ── FAQ Accordion ──────────────────────────────────────────── */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.faq-question {
  width: 100%;
  padding: 1.1rem 1.5rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: background var(--trans);
}
.faq-question:hover { background: var(--green-light); }
.faq-question.open { background: var(--green-light); color: var(--green-dark); }
.faq-chevron { font-size: 0.9rem; transition: transform var(--trans); flex-shrink: 0; }
.faq-question.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  background: var(--green-light);
  font-size: 0.92rem;
  color: var(--text-md);
  border-top: 1px solid var(--green-mid);
}
.faq-answer.open { display: block; }

/* ── App store badges ───────────────────────────────────────── */
.store-badges { display: flex; gap: 1rem; flex-wrap: wrap; }
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--text);
  color: #fff;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all var(--trans);
}
.store-badge:hover { background: var(--text-md); color: #fff; transform: translateY(-2px); }
.store-badge-icon { font-size: 1.6rem; line-height: 1; }
.store-badge-text .store-sub { font-size: 0.62rem; opacity: 0.75; line-height: 1; }
.store-badge-text .store-name { font-size: 1rem; font-weight: 600; line-height: 1.2; }

/* ── Mobile app mockup ──────────────────────────────────────── */
.app-phone-wrap {
  position: relative;
  max-width: 280px;
  margin: 0 auto;
}
.app-phone {
  width: 100%;
  aspect-ratio: 9/18;
  background: linear-gradient(160deg, var(--green-dark), var(--green));
  border-radius: 36px;
  border: 8px solid var(--text);
  box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(255,255,255,0.1);
  overflow: hidden;
  position: relative;
}
.app-phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #fff 0%, var(--green-light) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  gap: 0.75rem;
}
.app-phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 22px;
  background: var(--text);
  border-radius: 0 0 16px 16px;
  z-index: 10;
}
.app-screen-logo {
  width: 50px;
  height: 50px;
  background: var(--green);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(58,155,95,0.40);
}
.app-screen-card {
  background: #fff;
  border-radius: 14px;
  padding: 0.85rem;
  box-shadow: 0 3px 12px rgba(0,0,0,0.10);
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.app-screen-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-mid);
  flex-shrink: 0;
}
.app-screen-text { flex: 1; }
.app-screen-name { font-size: 0.75rem; font-weight: 600; color: var(--text); height: 8px; background: var(--border); border-radius: 4px; margin-bottom: 4px; }
.app-screen-sub { font-size: 0.65rem; color: var(--text-lt); height: 6px; background: var(--border-lt); border-radius: 4px; width: 70%; }
.app-screen-heart { color: var(--green); font-size: 1rem; }
.app-match-badge {
  background: var(--green);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.06em;
}

/* ── Features comparison table ──────────────────────────────── */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.compare-table th, .compare-table td {
  padding: 0.9rem 1.2rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.compare-table th {
  background: var(--bg-off);
  font-weight: 600;
  color: var(--text);
}
.compare-table th:not(:first-child), .compare-table td:not(:first-child) { text-align: center; }
.compare-table td:first-child { color: var(--text-md); }
.compare-table .featured-col { background: var(--green-light); }
.compare-table th.featured-col { background: var(--green); color: #fff; }
.compare-table .tick { color: var(--green); font-size: 1.1rem; }
.compare-table .dash { color: var(--text-lt); }

/* ── Breadcrumb ─────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: rgba(255,255,255,0.75); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { opacity: 0.5; }

/* ── Alert / notice ─────────────────────────────────────────── */
.notice {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.88rem;
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}
.notice-info { background: var(--green-light); color: var(--green-dark); border: 1px solid var(--green-mid); }
.notice-warning { background: #FFF3CD; color: #7D6008; border: 1px solid #F9E08A; }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--green-deeper);
  color: rgba(255,255,255,0.80);
  padding: 4.5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
}
.footer-brand .logo-text { color: rgba(255,255,255,0.90); font-size: 1.35rem; }
.footer-brand .logo-text span { color: var(--green); }
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 1rem;
  color: rgba(255,255,255,0.65);
}
.footer-heading {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.50);
  margin-bottom: 1.1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
  transition: color var(--trans);
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.45); margin: 0; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.8rem; color: rgba(255,255,255,0.55); }
.footer-bottom-links a:hover { color: #fff; }

/* ── Legal pages ────────────────────────────────────────────── */
.legal-body { max-width: 820px; margin: 0 auto; }
.legal-body h2 { font-size: 1.45rem; margin: 2.5rem 0 0.85rem; color: var(--text); }
.legal-body h3 { font-size: 1.15rem; margin: 2rem 0 0.65rem; color: var(--text); }
.legal-body p { color: var(--text-md); font-size: 0.95rem; }
.legal-body ul { margin: 0.75rem 0 1.2rem 1.5rem; list-style: disc; }
.legal-body ul li { font-size: 0.95rem; color: var(--text-md); margin-bottom: 0.45rem; }
.legal-updated {
  font-size: 0.82rem;
  color: var(--text-lt);
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

/* ── Contact page ───────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.contact-info-text .label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-lt); margin-bottom: 0.2rem; }
.contact-info-text .value { font-weight: 500; color: var(--text); }

/* ── About page ─────────────────────────────────────────────── */
.about-mission {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
  padding: 2.5rem 3rem;
  border-left: 4px solid var(--green);
  background: var(--green-light);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin: 2rem 0;
}

.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--bg-off);
  border: 1px solid var(--border);
  transition: box-shadow var(--trans), transform var(--trans);
}
.value-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.value-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.value-card h4 { margin-bottom: 0.65rem; }
.value-card p { font-size: 0.88rem; margin: 0; }

/* ── Utility ────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-green { color: var(--green); }
.text-white { color: #fff; }
.text-muted { color: var(--text-lt); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.full-width { width: 100%; }
.hidden { display: none; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  section { padding: 3.5rem 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-stats { gap: 1.5rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .auth-card { padding: 2rem 1.5rem; }
  .about-mission { padding: 1.75rem; }
  .hero { min-height: auto; padding: 4rem 0; }
  .nav-inner { justify-content: flex-start; gap: 0.5rem; }
  .nav-toggle { order: 2; margin-left: auto; }
  .nav-cta { order: 3; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .store-badges { flex-direction: column; }
}
