/* ============================================
   CHURCHKIND — Premium Design System
   Palette: Navy #1a2f5e · Gold #c9933a · Green #4a7c59 · Purple #5b3d6e
   ============================================ */

/* --- Global Lucide icon defaults --- */
[data-lucide], .lucide {
  display: block;
  flex-shrink: 0;
}

/* --- CSS Custom Properties --- */
:root {
  --navy:         #1a2f5e;
  --navy-dark:    #111f3e;
  --navy-light:   #e8edf7;
  --gold:         #c9933a;
  --gold-dark:    #a87530;
  --gold-light:   #fdf3e3;
  --green:        #4a7c59;
  --green-dark:   #326044;
  --green-light:  #e6f2ea;
  --purple:       #5b3d6e;
  --purple-light: #f0eaf5;
  --amber:        #c9933a;
  --teal:         #2a7a8a;
  --teal-light:   #e0f2f5;
  --indigo:       #4338ca;

  --white:        #ffffff;
  --off-white:    #f7f6f2;
  --text-dark:    #111827;
  --text-mid:     #374151;
  --text-light:   #6b7280;
  --border:       #e5e7eb;

  --radius-sm:    10px;
  --radius-md:    16px;
  --radius-lg:    20px;
  --radius-xl:    28px;
  --radius-pill:  100px;

  --shadow-sm: 0 1px 3px rgba(26,47,94,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(26,47,94,.1), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 40px rgba(26,47,94,.14);
  --shadow-xl: 0 24px 64px rgba(26,47,94,.18);

  --transition: all .25s cubic-bezier(.4,0,.2,1);
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-mid);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 96px 0;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .01em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(201,147,58,.35);
}
.btn--primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,147,58,.45); }

.btn--ghost {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.35);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover { background: rgba(255,255,255,.25); border-color: rgba(255,255,255,.6); transform: translateY(-2px); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.5);
}
.btn--outline:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }

.btn--large { padding: 16px 36px; font-size: 1rem; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}

.nav__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--white);
  transition: var(--transition);
}

.nav.scrolled .nav__logo { color: var(--navy); }

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav__links a {
  font-family: var(--font-heading);
  font-size: .82rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
}

.nav.scrolled .nav__links a { color: var(--text-mid); }
.nav__links a:hover { background: rgba(255,255,255,.15); color: var(--white); }
.nav.scrolled .nav__links a:hover { background: var(--navy-light); color: var(--navy); }

.nav__cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 8px 18px !important;
  box-shadow: 0 4px 14px rgba(201,147,58,.35);
}
.nav__cta:hover { background: var(--gold-dark) !important; }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav.scrolled .nav__toggle span { background: var(--navy); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(26,47,94,.78) 0%, rgba(26,47,94,.45) 60%, rgba(201,147,58,.2) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 120px 28px 80px;
  margin-left: max(28px, calc((100vw - 1180px) / 2 + 28px));
}

.hero__badge {
  display: inline-block;
  background: rgba(201,147,58,.25);
  border: 1px solid rgba(201,147,58,.4);
  color: #f9d38a;
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 20px;
  letter-spacing: -.02em;
}

.hero__title em {
  font-style: normal;
  color: #f9d38a;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.88);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 580px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: rgba(255,255,255,.55);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255,255,255,.4);
  border-bottom: 2px solid rgba(255,255,255,.4);
  transform: rotate(45deg);
  margin: 8px auto 0;
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(5px); }
}

/* ============================================
   ABOUT STRIP
   ============================================ */
.about-strip {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.about-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.about-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-item__icon svg { width: 22px; height: 22px; stroke-width: 1.75; }

.about-item__icon--gold   { background: var(--gold-light);   color: var(--gold); }
.about-item__icon--navy   { background: var(--navy-light);   color: var(--navy); }
.about-item__icon--green  { background: var(--green-light);  color: var(--green-dark); }
.about-item__icon--purple { background: var(--purple-light); color: var(--purple); }

.about-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.about-item strong { font-family: var(--font-heading); font-size: .9rem; font-weight: 700; color: var(--text-dark); }
.about-item span { font-size: .78rem; color: var(--text-light); }

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 56px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 18px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================
   BENEFITS GRID
   ============================================ */
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0;
  transition: var(--transition);
}

.benefit-card--health::before   { background: var(--green); }
.benefit-card--shopping::before { background: var(--gold); }
.benefit-card--entertainment::before { background: var(--purple); }
.benefit-card--attractions::before { background: #d97706; }
.benefit-card--travel::before   { background: var(--navy); }
.benefit-card--tech::before     { background: var(--indigo); }

.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.benefit-card:hover::before { opacity: 1; }

.benefit-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit-card__icon svg { width: 26px; height: 26px; stroke-width: 1.6; }

.benefit-card__icon--green  { background: var(--green-light);  color: var(--green-dark); }
.benefit-card__icon--gold   { background: var(--gold-light);   color: var(--gold-dark); }
.benefit-card__icon--purple { background: var(--purple-light); color: var(--purple); }
.benefit-card__icon--amber  { background: #fef3c7;             color: #b45309; }
.benefit-card__icon--navy   { background: var(--navy-light);   color: var(--navy); }
.benefit-card__icon--indigo { background: #e0e7ff;             color: var(--indigo); }

.benefit-card h3 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--text-dark); }
.benefit-card p  { font-size: .88rem; color: var(--text-light); line-height: 1.6; flex: 1; }
.benefit-card__link { font-family: var(--font-heading); font-size: .82rem; font-weight: 600; color: var(--gold); }

/* ============================================
   SAVINGS BANNER
   ============================================ */
.savings-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #2a4a8a 50%, #1a3a5e 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.savings-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(201,147,58,.08);
}

.savings-banner__content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.savings-stat { flex-shrink: 0; }

.savings-stat__number {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -.04em;
}

.savings-stat__label {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  margin-top: 8px;
  max-width: 180px;
  line-height: 1.5;
}

.savings-divider {
  width: 1px;
  height: 120px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}

.savings-text h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.savings-text p { color: rgba(255,255,255,.75); margin-bottom: 24px; line-height: 1.7; }

.savings-examples { display: flex; flex-direction: column; gap: 10px; }
.savings-examples li { display: flex; align-items: center; gap: 10px; font-size: .88rem; color: rgba(255,255,255,.8); }

.savings-tag {
  background: rgba(201,147,58,.25);
  border: 1px solid rgba(201,147,58,.35);
  color: #f9d38a;
  font-family: var(--font-heading);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  flex-shrink: 0;
}

/* ============================================
   DETAIL SECTIONS
   ============================================ */
.detail-section { background: var(--white); }
.detail-section--alt { background: var(--off-white); }

.detail-section__header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 48px;
}

.detail-section__label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.detail-section__label--green  { background: var(--green-light);  color: var(--green-dark); }
.detail-section__label--gold   { background: var(--gold-light);   color: var(--gold-dark); }
.detail-section__label--purple { background: var(--purple-light); color: var(--purple); }
.detail-section__label--navy   { background: var(--navy-light);   color: var(--navy); }
.detail-section__label--indigo { background: #e0e7ff;             color: var(--indigo); }

.detail-section__header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}
.detail-section__header p { font-size: 1rem; color: var(--text-light); }

/* Detail grid */
.detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.detail-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.detail-card h4 {
  min-height: 2.6em; /* two-line reserve so paragraphs always start level */
  display: flex;
  align-items: flex-end;
}
.detail-section--alt .detail-card { background: var(--white); }
.detail-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }

.detail-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--white);
}
.detail-card__icon svg { width: 24px; height: 24px; stroke-width: 1.75; }

.detail-card h4 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.detail-card p  { font-size: .875rem; color: var(--text-light); line-height: 1.65; }

/* ============================================
   HIGH STREET / BRANDS
   ============================================ */
.brands-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.feature-block {
  margin-bottom: 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.feature-block__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-block__icon svg { width: 20px; height: 20px; stroke-width: 1.75; }

.feature-block__icon--gold  { background: var(--gold-light);  color: var(--gold-dark); }
.feature-block__icon--green { background: var(--green-light); color: var(--green-dark); }
.feature-block__icon--navy  { background: var(--navy-light);  color: var(--navy); }

.feature-block > div { flex: 1; }
.feature-block h4 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.feature-block p  { font-size: .875rem; color: var(--text-light); line-height: 1.6; }

.brands-feature__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.brand-badge {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 72px;
  overflow: hidden;
  transition: var(--transition);
}
.brand-badge img {
  display: block;
  width: 120px;
  height: 44px;
  object-fit: contain;
  object-position: center;
  transition: var(--transition);
}
.brand-badge:hover { border-color: var(--gold); }
.brand-badge--more {
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-mid);
  text-align: center;
  background: var(--bg-subtle, #f9f6f1);
  border-style: dashed;
}

/* ============================================
   ENTERTAINMENT
   ============================================ */
.entertainment-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.ent-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.ent-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }

.ent-card__header {
  padding: 36px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ent-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,.18);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.ent-card__icon svg { width: 24px; height: 24px; stroke-width: 1.75; }

.ent-card__saving {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
}

.ent-card__body { padding: 28px; }
.ent-card__body h4 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.ent-card__body p  { font-size: .9rem; color: var(--text-light); line-height: 1.6; margin-bottom: 16px; }

.ent-card__example {
  font-size: .82rem;
  color: var(--text-light);
  background: var(--off-white);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
}

/* ============================================
   ATTRACTIONS
   ============================================ */
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.attraction-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
}
.attraction-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }

.attr-highlight { background: var(--navy); border-color: transparent; }
.attr-highlight h4 { color: var(--white); }
.attr-highlight p  { color: rgba(255,255,255,.7); }
.attr-highlight .attraction-card__icon { background: rgba(255,255,255,.15) !important; color: var(--white) !important; }

.attraction-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.attraction-card__icon svg { width: 22px; height: 22px; stroke-width: 1.75; }

.attraction-card__icon--amber  { background: #fef3c7; color: #b45309; }
.attraction-card__icon--navy   { background: var(--navy-light); color: var(--navy); }
.attraction-card__icon--purple { background: var(--purple-light); color: var(--purple); }
.attraction-card__icon--teal   { background: var(--teal-light); color: var(--teal); }
.attraction-card__icon--green  { background: var(--green-light); color: var(--green-dark); }
.attraction-card__icon--gold   { background: var(--gold-light); color: var(--gold-dark); }

.attraction-card h4 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.attraction-card p  { font-size: .875rem; color: var(--text-light); line-height: 1.6; }

/* ============================================
   TRAVEL
   ============================================ */
.travel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.travel-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition);
}
.travel-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; }

.travel-item__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.travel-item__icon svg { width: 22px; height: 22px; stroke-width: 1.75; }

.travel-item__icon--green  { background: var(--green-light);  color: var(--green-dark); }
.travel-item__icon--gold   { background: var(--gold-light);   color: var(--gold-dark); }
.travel-item__icon--navy   { background: var(--navy-light);   color: var(--navy); }
.travel-item__icon--purple { background: var(--purple-light); color: var(--purple); }
.travel-item__icon--amber  { background: #fef3c7;             color: #b45309; }

.travel-item__content h4 { font-family: var(--font-heading); font-size: .95rem; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.travel-item__content p  { font-size: .875rem; color: var(--text-light); line-height: 1.6; }

/* ============================================
   TECHNOLOGY
   ============================================ */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tech-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  transition: var(--transition);
}
.tech-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }

.tech-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.tech-card__icon svg { width: 24px; height: 24px; stroke-width: 1.6; }

.tech-card__icon--dark  { background: #1a1a1a; color: #ffffff; }
.tech-card__icon--blue  { background: #dbeafe; color: #1d4ed8; }
.tech-card__icon--gold  { background: var(--gold-light); color: var(--gold-dark); }

.tech-card__brand { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; margin-bottom: 6px; color: var(--text-dark); }
.tech-card__saving { font-family: var(--font-heading); font-size: .8rem; font-weight: 600; color: var(--gold); margin-bottom: 20px; background: var(--gold-light); padding: 4px 12px; border-radius: var(--radius-pill); display: inline-block; }
.tech-card ul { display: flex; flex-direction: column; gap: 8px; }
.tech-card li { font-size: .875rem; color: var(--text-light); padding-left: 14px; position: relative; }
.tech-card li::before { content: '·'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* ============================================
   CHURCH PRICING — SIMPLE
   ============================================ */
.pricing-section { background: var(--off-white); }
.pricing-section .section-header { max-width: 720px; }
.pricing-section .section-header h2 { font-size: clamp(1.7rem, 2.8vw, 2.3rem); }

.pricing-simple {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 40px;
}

.pricing-simple__card {
  background: linear-gradient(160deg, var(--navy) 0%, #2a4a8a 100%);
  border-radius: var(--radius-xl);
  padding: 48px 44px;
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pricing-simple__badge {
  display: inline-block;
  background: rgba(201,147,58,.3);
  border: 1px solid rgba(201,147,58,.4);
  color: #f9d38a;
  font-family: var(--font-heading);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
  width: fit-content;
}

.pricing-simple__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}

.pricing-simple__amount {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -.04em;
}

.pricing-simple__period {
  font-size: 1rem;
  color: rgba(255,255,255,.6);
  font-weight: 500;
}

.pricing-simple__tagline {
  font-size: .95rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 32px;
  line-height: 1.6;
}

.pricing-simple__features {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 36px;
}

.pricing-simple__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: rgba(255,255,255,.85);
}

.pricing-simple__features li svg {
  width: 16px;
  height: 16px;
  color: #9de8c4;
  stroke-width: 2.5;
  flex-shrink: 0;
}

.pricing-simple__card .btn--primary {
  background: var(--white);
  color: var(--navy);
  width: 100%;
  justify-content: center;
  font-size: 1rem;
}
.pricing-simple__card .btn--primary:hover {
  background: var(--off-white);
  transform: translateY(-2px);
}

.pricing-simple__context h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.pricing-simple__context p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 28px;
}

.pricing-simple__comparisons {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-compare {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  color: var(--text-mid);
}
.pricing-compare svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  stroke-width: 1.75;
  flex-shrink: 0;
}

/* Value bar */
.pricing-value-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
}

.pricing-value-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.pricing-value-item svg { width: 22px; height: 22px; color: var(--gold); stroke-width: 1.75; flex-shrink: 0; }
.pricing-value-item strong { color: var(--text-dark); }

.pricing-value-divider { width: 1px; height: 40px; background: var(--border); }

/* ============================================
   PRICING — TIERED
   ============================================ */

/* Grid of 5 tier cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 14px;
}

.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }

/* Featured (Parish) */
.pricing-card--featured {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.pricing-card--featured:hover { border-color: var(--gold); }
.pricing-card--featured .pricing-card__for,
.pricing-card--featured .pricing-card__note { color: rgba(255,255,255,.65); }
.pricing-card--featured .pricing-card__tier { color: var(--white); }
.pricing-card--featured .pricing-card__period { color: rgba(255,255,255,.6); }

/* Micro (free) */
.pricing-card--micro { background: var(--gold-light); border-color: rgba(201,147,58,.25); }

.pricing-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.pricing-card__for {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 6px;
}
.pricing-card__tier {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin-bottom: 4px;
}
.pricing-card__amount {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.pricing-card--featured .pricing-card__amount { color: var(--gold); }
.pricing-card--micro .pricing-card__amount { color: var(--gold-dark); }
.pricing-card__period {
  font-size: .8rem;
  color: var(--text-light);
  font-weight: 500;
}
.pricing-card__sub {
  font-size: .75rem;
  color: var(--text-light);
  margin-bottom: 12px;
  min-height: 1.2em;
}
.pricing-card__note {
  font-size: .82rem;
  color: var(--text-light);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 20px;
}
.pricing-card__cta {
  width: 100%;
  text-align: center;
  padding: 11px 16px;
  font-size: .85rem;
  margin-top: auto;
}

/* Size note */
.pricing-size-note {
  font-size: .8rem;
  color: var(--text-light);
  text-align: center;
  margin: 4px 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.pricing-size-note svg { width: 14px; height: 14px; flex-shrink: 0; opacity: .6; }
.pricing-size-note a { color: var(--gold-dark); text-decoration: underline; }

/* Diocesan panel */
.pricing-diocese {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 28px;
}
.pricing-diocese__label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.pricing-diocese__text h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.pricing-diocese__text p {
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  line-height: 1.65;
  max-width: 520px;
}
.pricing-diocese__price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.pricing-diocese__amount {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  white-space: nowrap;
}
.pricing-diocese__period {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 10px;
}

/* Why different */
.pricing-why {
  background: var(--gold-light);
  border: 1.5px solid rgba(201,147,58,.2);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
}
.pricing-why__icon {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.pricing-why__icon svg { width: 22px; height: 22px; stroke-width: 1.75; }
.pricing-why h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.pricing-why p { font-size: .88rem; color: var(--text-mid); line-height: 1.65; }

/* Supporter contributions */
.pricing-supporter {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.pricing-supporter__header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.pricing-supporter__header svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  stroke-width: 1.75;
}
.pricing-supporter__header h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.pricing-supporter__header p { font-size: .88rem; color: var(--text-light); line-height: 1.6; }

.pricing-supporter__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
.pricing-supporter__row {
  background: var(--off-white);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.pricing-supporter__tier {
  font-family: var(--font-heading);
  font-size: .82rem;
  font-weight: 700;
  color: var(--text-dark);
  min-width: 100px;
}
.pricing-supporter__standard {
  font-size: .8rem;
  color: var(--text-light);
}
.pricing-supporter__arrow { color: var(--gold); font-weight: 700; }
.pricing-supporter__level { font-size: .88rem; color: var(--text-dark); }
.pricing-supporter__note {
  font-size: .8rem;
  color: var(--text-light);
  text-align: center;
}
.pricing-supporter__note a { color: var(--gold-dark); text-decoration: underline; }

/* ============================================
   DENOMINATIONS
   ============================================ */
.denom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.denom-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
}
.denom-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }

.denom-card__icon {
  width: 48px;
  height: 48px;
  background: var(--gold-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  margin-bottom: 18px;
}
.denom-card__icon svg { width: 22px; height: 22px; stroke-width: 1.75; }

.denom-card h4 { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.denom-card p  { font-size: .875rem; color: var(--text-light); line-height: 1.65; margin-bottom: 18px; }

.denom-card__example {
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--navy-light);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
}

.denom-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.denom-cta p { font-size: 1rem; color: var(--text-mid); }
.denom-cta .btn--primary { background: var(--navy); box-shadow: 0 4px 18px rgba(26,47,94,.3); }
.denom-cta .btn--primary:hover { background: var(--navy-dark); }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #2a4a8a 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(201,147,58,.08);
}

.cta-content { max-width: 680px; margin: 0 auto; }
.cta-content h2 { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--white); margin-bottom: 16px; line-height: 1.2; }
.cta-content p  { font-size: 1.05rem; color: rgba(255,255,255,.75); margin-bottom: 36px; line-height: 1.7; }

.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }

.cta-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  font-family: var(--font-heading);
}
.cta-badges span { display: flex; align-items: center; gap: 6px; }
.cta-badges span svg { width: 16px; height: 16px; color: var(--gold); stroke-width: 2.5; flex-shrink: 0; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--text-dark);
  padding: 60px 0 32px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer__brand .nav__logo { color: var(--white); margin-bottom: 12px; }
.footer__brand p { font-size: .875rem; color: rgba(255,255,255,.45); line-height: 1.6; }

.footer__links h5 { font-family: var(--font-heading); font-size: .8rem; font-weight: 700; color: rgba(255,255,255,.4); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.footer__links ul { display: flex; flex-direction: column; gap: 10px; }
.footer__links a  { font-size: .875rem; color: rgba(255,255,255,.55); transition: var(--transition); }
.footer__links a:hover { color: var(--gold); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.animate-in { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.animate-in.visible { opacity: 1; transform: none; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .benefits__grid    { grid-template-columns: repeat(2, 1fr); }
  .detail-grid       { grid-template-columns: repeat(2, 1fr); }
  .brands-feature    { grid-template-columns: 1fr; gap: 36px; }
  .pricing-simple    { grid-template-columns: 1fr; }
  .pricing-grid      { grid-template-columns: repeat(3, 1fr); }
  .denom-grid        { grid-template-columns: repeat(2, 1fr); }
  .pricing-value-bar { grid-template-columns: 1fr; gap: 16px; padding: 24px; }
  .pricing-value-divider { width: 100%; height: 1px; }
  .pricing-diocese   { flex-direction: column; gap: 24px; padding: 32px; }
  .pricing-diocese__price { align-items: flex-start; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav__links { display: none; flex-direction: column; position: fixed; top: 0; right: 0; bottom: 0; width: 75%; max-width: 320px; background: var(--white); box-shadow: var(--shadow-xl); padding: 80px 28px 40px; gap: 4px; }
  .nav__links.open { display: flex; }
  .nav__links a    { color: var(--text-mid) !important; font-size: .95rem; padding: 10px 14px; }
  .nav__toggle     { display: flex; }
  .hero__content   { margin-left: 0; padding: 100px 28px 60px; }
  .hero__title     { font-size: 2.4rem; }
  .benefits__grid  { grid-template-columns: 1fr; }
  .detail-grid     { grid-template-columns: 1fr; }
  .attractions-grid { grid-template-columns: repeat(2, 1fr); }
  .entertainment-cards { grid-template-columns: 1fr; }
  .travel-grid     { grid-template-columns: 1fr; }
  .tech-grid       { grid-template-columns: 1fr; }
  .denom-grid      { grid-template-columns: 1fr; }
  .pricing-grid    { grid-template-columns: repeat(2, 1fr); }
  .pricing-supporter__grid { grid-template-columns: 1fr; }
  .savings-banner__content { flex-direction: column; gap: 32px; }
  .savings-divider { width: 100%; height: 1px; }
  .footer__inner   { grid-template-columns: 1fr; gap: 32px; }
  .brands-feature__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
  .hero__actions   { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .about-strip__grid  { grid-template-columns: 1fr; }
  .attractions-grid   { grid-template-columns: 1fr; }
  .brands-feature__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid      { grid-template-columns: 1fr; }
  .pricing-simple__amount { font-size: 4rem; }
}
