/* ============================================================
   TextNP — Consolidated Styles for WordPress
   Ported from the Astro build (global.css + component styles)
   ============================================================ */

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

/* ========== DESIGN TOKENS ========== */
.textnp-root {
  --leaf-lightest: #E8F5E9;
  --leaf-pale: #C8E6C9;
  --leaf-light: #7BC67E;
  --leaf-mid: #4CAF50;
  --leaf-dark: #2E7D32;
  --leaf-deepest: #1B5E20;
  --navy: #3B3464;
  --navy-deep: #2A2548;
  --navy-light: #4E4680;
  --cream: #FDFBF7;
  --cream-warm: #F7F3EC;
  --warm-blush: #FFF8F2;
  --warm-peach: #FDEEE2;
  --sage: #D5DCC3;
  --sage-light: #E8EDDB;
  --moss: #8A9A5B;
  --bark: #6B5B4A;
  --earth: #C4A882;
  --white: #FFFFFF;
  --text-dark: #2A2548;
  --text-body: #4A4560;
  --text-soft: #7A7590;
  --text-muted: #A8A3B8;
  --border-soft: rgba(59,52,100,0.07);
  --shadow-soft: 0 2px 20px rgba(59,52,100,0.05);
  --shadow-hover: 0 8px 40px rgba(59,52,100,0.1);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;

  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

html { scroll-behavior: smooth; }

.textnp-root #what, .textnp-root #how, .textnp-root #tiers, .textnp-root #about, .textnp-root #book {
  scroll-margin-top: 90px;
}

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

.textnp-root section { padding: 7rem 2.5rem; }
.textnp-root .section-inner { max-width: 1060px; margin: 0 auto; }

.textnp-root .section-eyebrow {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--leaf-dark); margin-bottom: 0.8rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.textnp-root .section-eyebrow svg { flex-shrink: 0; }

.textnp-root .section-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  color: var(--navy-deep); line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 1rem;
}

.textnp-root .section-desc {
  font-size: 1.05rem; color: var(--text-body); line-height: 1.65; max-width: 540px; font-weight: 400;
}

/* Buttons */
.textnp-root .btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--leaf-dark); color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.95rem; font-weight: 600;
  padding: 1rem 2rem; border-radius: 100px; text-decoration: none;
  transition: all 0.35s ease; border: none; cursor: pointer; letter-spacing: -0.01em;
}
.textnp-root .btn-primary:hover { background: var(--leaf-deepest); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(46,125,50,0.25); }
.textnp-root .btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem; background: transparent;
  color: var(--text-body); font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.95rem;
  font-weight: 500; padding: 1rem 1.5rem; border-radius: 100px; text-decoration: none; transition: all 0.3s ease;
}
.textnp-root .btn-secondary:hover { color: var(--leaf-dark); background: rgba(46,125,50,0.06); }
.textnp-root .btn-large { padding: 1.15rem 2.8rem; font-size: 1.05rem; }

/* Leaf divider */
.textnp-root .leaf-divider { display: flex; align-items: center; justify-content: center; gap: 1rem; padding: 1.5rem 0; overflow: hidden; }
.textnp-root .leaf-divider-line { flex: 1; max-width: 200px; height: 1px; background: linear-gradient(90deg, transparent, var(--leaf-pale), transparent); }
.textnp-root .leaf-divider svg { flex-shrink: 0; }

/* Animations */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes drift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(15px, -25px) rotate(2deg); }
  66% { transform: translate(-10px, 15px) rotate(-1deg); }
}
@keyframes leafFloat {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  25% { transform: translateY(-12px) rotate(calc(var(--r, 0deg) + 5deg)); }
  75% { transform: translateY(8px) rotate(calc(var(--r, 0deg) - 3deg)); }
}
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.3); } }
@keyframes msgIn { from { opacity: 0; transform: translateY(8px) scale(0.97); } to { opacity: 1; transform: translateY(0) scale(1); } }

/* ========== NAV ========== */
.textnp-root .nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0.8rem 2.5rem; display: flex; justify-content: space-between; align-items: center; transition: all 0.4s ease;
}
.textnp-root .nav.scrolled {
  background: rgba(253, 251, 247, 0.92); backdrop-filter: blur(20px);
  box-shadow: 0 1px 12px rgba(59, 52, 100, 0.06); padding: 0.5rem 2.5rem;
}
.textnp-root .nav-logo { display: flex; align-items: center; text-decoration: none; }
.textnp-root .nav-logo img { height: 56px; width: auto; display: block; transition: height 0.4s ease; }
.textnp-root .nav.scrolled .nav-logo img { height: 44px; }
.textnp-root .nav-links { display: flex; gap: 2.5rem; align-items: center; list-style: none; margin: 0; padding: 0; }
.textnp-root .nav-links li { margin: 0; padding: 0; line-height: 1; display: flex; align-items: center; }
.textnp-root .nav-links a { text-decoration: none; color: var(--text-soft); font-size: 0.88rem; font-weight: 500; transition: color 0.25s; letter-spacing: -0.01em; line-height: 1; }
.textnp-root .nav-links a:hover { color: var(--text-dark); }
.textnp-root .nav-cta-link {
  background: var(--navy) !important; color: var(--white) !important; padding: 0.6rem 1.6rem;
  border-radius: 100px; font-weight: 600 !important; font-size: 0.85rem !important; transition: all 0.3s ease !important;
}
.textnp-root .nav-cta-link:hover { background: var(--leaf-dark) !important; transform: translateY(-1px); }

/* Since the theme's admin bar / body padding differs from Astro, push content below the fixed nav */
.textnp-root .nav + * { margin-top: 0; }
body.textnp-page { padding-top: 0; }

/* ========== HERO ========== */
.textnp-root .hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 8rem 2.5rem 6rem; position: relative; overflow: hidden;
  background: url('https://flowercardmed.com/wp-content/uploads/2026/05/HeroImage.webp') center center / cover no-repeat;
}
.textnp-root .hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(175deg, rgba(253,251,247,0.82) 0%, rgba(213,220,195,0.72) 40%, rgba(232,245,233,0.68) 100%);
  z-index: 1;
}
.textnp-root .hero-blob { position: absolute; border-radius: 50%; opacity: 0.35; z-index: 2; }
.textnp-root .hero-blob.one { width: 700px; height: 700px; background: radial-gradient(circle, var(--leaf-lightest) 0%, transparent 70%); top: -15%; right: -15%; animation: drift 20s ease-in-out infinite; }
.textnp-root .hero-blob.two { width: 500px; height: 500px; background: radial-gradient(circle, var(--warm-peach) 0%, transparent 70%); bottom: -10%; left: -10%; animation: drift 25s ease-in-out infinite reverse; }
.textnp-root .hero-blob.three { width: 350px; height: 350px; background: radial-gradient(circle, var(--sage) 0%, transparent 70%); top: 30%; left: 15%; animation: drift 18s ease-in-out infinite 4s; opacity: 0.2; }

.textnp-root .hero-leaf { position: absolute; opacity: 0.12; z-index: 2; }
.textnp-root .hero-leaf.a { top: 12%; left: 8%; animation: leafFloat 12s ease-in-out infinite; }
.textnp-root .hero-leaf.b { top: 20%; right: 12%; animation: leafFloat 15s ease-in-out infinite 2s; transform: rotate(45deg); }
.textnp-root .hero-leaf.c { bottom: 18%; left: 15%; animation: leafFloat 18s ease-in-out infinite 5s; transform: rotate(-30deg); }
.textnp-root .hero-leaf.d { bottom: 25%; right: 8%; animation: leafFloat 14s ease-in-out infinite 3s; transform: rotate(120deg); }
.textnp-root .hero-leaf.e { top: 55%; left: 5%; animation: leafFloat 16s ease-in-out infinite 1s; transform: rotate(200deg); }
.textnp-root .hero-leaf.f { top: 8%; left: 45%; animation: leafFloat 20s ease-in-out infinite 7s; transform: rotate(75deg); }

.textnp-root .hero-content { position: relative; z-index: 5; text-align: center; max-width: 700px; }
.textnp-root .hero-icon { width: 110px; height: 110px; margin: 0 auto 2.5rem; animation: fadeUp 0.8s ease-out; filter: drop-shadow(0 4px 16px rgba(46,125,50,0.15)); }
.textnp-root .hero-icon img { width: 100%; height: 100%; object-fit: contain; }
.textnp-root .hero-pill {
  display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.75);
  backdrop-filter: blur(10px); border: 1px solid rgba(123,198,126,0.2); border-radius: 100px;
  padding: 0.45rem 1.1rem; font-size: 0.78rem; font-weight: 500; color: var(--leaf-dark);
  margin-bottom: 2rem; animation: fadeUp 0.8s ease-out 0.1s both;
}
.textnp-root .hero-pill-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--leaf-mid); animation: pulse 2s ease-in-out infinite; }
.textnp-root .hero-heading {
  font-family: 'Instrument Serif', serif; font-size: clamp(3.2rem, 7vw, 5.5rem); color: var(--navy-deep);
  line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 1.5rem; animation: fadeUp 0.8s ease-out 0.2s both;
}
.textnp-root .hero-heading .accent { color: var(--leaf-dark); font-style: italic; }
.textnp-root .hero-desc {
  font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--text-body); line-height: 1.65; font-weight: 400;
  max-width: 520px; margin: 0 auto 2.5rem; animation: fadeUp 0.8s ease-out 0.35s both;
}
.textnp-root .hero-actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; animation: fadeUp 0.8s ease-out 0.5s both; }
.textnp-root .hero-trust { margin-top: 3rem; font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; animation: fadeUp 0.8s ease-out 0.65s both; }

/* ========== PROOF STRIP ========== */
.textnp-root .proof-strip { background: var(--white); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); padding: 2.5rem; }
.textnp-root .proof-inner { max-width: 960px; margin: 0 auto; display: flex; justify-content: center; gap: 4rem; flex-wrap: wrap; }
.textnp-root .proof-item { text-align: center; }
.textnp-root .proof-number { font-family: 'Instrument Serif', serif; font-size: 2rem; color: var(--leaf-dark); line-height: 1; }
.textnp-root .proof-label { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.3rem; font-weight: 500; }

/* ========== WHAT IS TEXTNP ========== */
.textnp-root .what { background: var(--cream); position: relative; overflow: hidden; }
.textnp-root .what-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-top: 3.5rem; position: relative; z-index: 2; }
.textnp-root .what-copy p { font-size: 1.05rem; line-height: 1.7; color: var(--text-body); margin-bottom: 1.25rem; font-weight: 400; }
.textnp-root .what-copy strong { color: var(--text-dark); font-weight: 600; }
.textnp-root .what-highlight { background: linear-gradient(135deg, var(--leaf-lightest), var(--sage-light)); border-radius: var(--radius-lg); padding: 1.5rem 1.75rem; margin-top: 1.5rem; border-left: 3px solid var(--leaf-mid); }
.textnp-root .what-highlight p { font-size: 0.95rem !important; color: var(--leaf-deepest) !important; margin-bottom: 0 !important; font-weight: 500 !important; font-style: italic; }

.textnp-root .phone-mockup { background: var(--white); border-radius: 32px; padding: 1.5rem; box-shadow: var(--shadow-soft), 0 0 0 1px var(--border-soft); max-width: 360px; margin: 0 auto; position: relative; }
.textnp-root .phone-header { display: flex; align-items: center; gap: 0.7rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border-soft); margin-bottom: 1.25rem; }
.textnp-root .phone-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--leaf-light), var(--leaf-dark)); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 0.7rem; font-weight: 700; }
.textnp-root .phone-name { font-size: 0.85rem; font-weight: 600; color: var(--text-dark); }
.textnp-root .phone-status { font-size: 0.68rem; color: var(--leaf-mid); font-weight: 500; }
.textnp-root .msg { padding: 0.85rem 1.1rem; border-radius: 18px; margin-bottom: 0.6rem; font-size: 0.88rem; line-height: 1.5; max-width: 88%; opacity: 0; animation: msgIn 0.5s ease-out forwards; }
.textnp-root .msg:nth-child(1) { animation-delay: 0.6s; }
.textnp-root .msg:nth-child(2) { animation-delay: 1.4s; }
.textnp-root .msg:nth-child(3) { animation-delay: 2.2s; }
.textnp-root .msg:nth-child(4) { animation-delay: 3.0s; }
.textnp-root .msg-out { background: var(--navy); color: var(--white); margin-left: auto; border-bottom-right-radius: 6px; }
.textnp-root .msg-in { background: var(--leaf-lightest); color: var(--text-dark); border-bottom-left-radius: 6px; }
.textnp-root .msg-in .msg-sender { font-size: 0.65rem; font-weight: 600; color: var(--leaf-dark); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.25rem; }

/* ========== HOW IT WORKS ========== */
.textnp-root .how { background: var(--white); position: relative; overflow: hidden; }
.textnp-root .how-subtitle { font-size: 1rem; color: var(--text-soft); line-height: 1.6; max-width: 520px; margin-bottom: 3.5rem; font-weight: 400; }
.textnp-root .abc-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; position: relative; z-index: 2; }
.textnp-root .abc-card { background: var(--cream); border-radius: var(--radius-xl); padding: 2.5rem 2rem; transition: all 0.35s ease; position: relative; overflow: hidden; }
.textnp-root .abc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.textnp-root .abc-letter { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 14px; background: var(--leaf-lightest); color: var(--leaf-dark); font-family: 'Instrument Serif', serif; font-weight: 700; font-size: 1.5rem; margin-bottom: 1.25rem; }
.textnp-root .abc-card h3 { font-family: 'Instrument Serif', serif; font-size: 1.45rem; color: var(--navy); margin-bottom: 0.75rem; }
.textnp-root .abc-card p { font-size: 0.92rem; line-height: 1.65; color: var(--text-body); font-weight: 400; }

/* ========== BOTANICAL QUOTE ========== */
.textnp-root .botanical-break { padding: 3rem 2.5rem; text-align: center; position: relative; overflow: hidden; background: linear-gradient(180deg, var(--white) 0%, var(--sage-light) 50%, var(--cream) 100%); }
.textnp-root .botanical-break-inner { max-width: 600px; margin: 0 auto; position: relative; z-index: 2; }
.textnp-root .botanical-break blockquote {
  font-family: 'Instrument Serif', serif; font-size: 1.6rem; font-style: italic; color: var(--leaf-deepest); line-height: 1.4;
  border: none !important; margin: 0 !important; padding: 0 !important; box-shadow: none !important;
}
.textnp-root .botanical-break cite { display: block; margin-top: 0.75rem; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.82rem; font-style: normal; color: var(--moss); font-weight: 500; }

/* ========== TIERS ========== */
.textnp-root .tiers { background: var(--navy-deep); position: relative; overflow: hidden; }
.textnp-root .tiers .section-eyebrow { color: var(--leaf-light); }
.textnp-root .tiers .section-title { color: var(--white); }
.textnp-root .tiers .section-desc { color: rgba(255,255,255,0.55); margin-bottom: 1.5rem; }
.textnp-root .rw-tooltip-wrap { margin-bottom: 2.5rem; position: relative; z-index: 5; }
.textnp-root .rw-tooltip { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(123,198,126,0.1); border: 1px solid rgba(123,198,126,0.2); border-radius: 100px; padding: 0.5rem 1.1rem; cursor: pointer; position: relative; }
.textnp-root .rw-icon { color: var(--leaf-light); font-size: 0.9rem; }
.textnp-root .rw-label { font-size: 0.82rem; color: var(--leaf-light); font-weight: 500; }
.textnp-root .rw-tooltip-text { display: none; position: absolute; top: calc(100% + 10px); left: 0; background: var(--white); color: var(--text-body); font-size: 0.82rem; line-height: 1.6; padding: 1rem 1.25rem; border-radius: var(--radius-md); box-shadow: var(--shadow-hover); width: 340px; z-index: 10; }
.textnp-root .rw-tooltip:hover .rw-tooltip-text, .textnp-root .rw-tooltip:focus-within .rw-tooltip-text { display: block; }
.textnp-root .rw-tooltip-text strong { color: var(--leaf-dark); }
.textnp-root .tier-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; position: relative; z-index: 2; }
.textnp-root .tier { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-xl); padding: 2.25rem 1.75rem; transition: all 0.35s ease; }
.textnp-root .tier:hover { background: rgba(255,255,255,0.09); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.15); }
.textnp-root .tier.highlight { background: rgba(123,198,126,0.1); border-color: rgba(123,198,126,0.25); }
.textnp-root .tier-badge { display: inline-block; background: var(--leaf-mid); color: var(--white); font-size: 0.65rem; font-weight: 700; padding: 0.2rem 0.65rem; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 1rem; }
.textnp-root .tier-name { font-family: 'Instrument Serif', serif; font-size: 1.6rem; color: var(--white); margin-bottom: 0.2rem; }
.textnp-root .tier-price { font-family: 'Instrument Serif', serif; font-size: 1.3rem; color: var(--leaf-light); margin-bottom: 0.2rem; }
.textnp-root .tier-check-in { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-bottom: 1rem; }
.textnp-root .tier-windows { display: inline-flex; align-items: center; gap: 0.4rem; background: rgba(255,255,255,0.07); border-radius: 10px; padding: 0.4rem 0.8rem; font-size: 0.8rem; font-weight: 600; color: var(--leaf-light); margin-bottom: 1.25rem; }
.textnp-root .tier-list { list-style: none; }
.textnp-root .tier-list li { font-size: 0.85rem; color: rgba(255,255,255,0.55); padding: 0.4rem 0 0.4rem 1.4rem; position: relative; font-weight: 400; line-height: 1.45; }
.textnp-root .tier-list li::before { content: '🌿'; position: absolute; left: 0; font-size: 0.65rem; top: 0.45rem; }
.textnp-root .checkin-note { margin-top: 1.5rem; font-size: 0.78rem; color: rgba(255,255,255,0.35); line-height: 1.6; max-width: 620px; font-style: italic; }
.textnp-root .tiers-explainer { margin-top: 3rem; position: relative; z-index: 2; }
.textnp-root .explainer-intro { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.65; max-width: 680px; margin-bottom: 1.5rem; }
.textnp-root .explainer-intro strong { color: rgba(255,255,255,0.75); }
.textnp-root .faq-accordion { border-top: 1px solid rgba(255,255,255,0.08); margin-bottom: 2rem; }
.textnp-root .faq-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
.textnp-root .faq-item summary { display: flex; align-items: center; justify-content: space-between; padding: 1.1rem 0; cursor: pointer; list-style: none; gap: 1rem; }
.textnp-root .faq-item summary::-webkit-details-marker { display: none; }
.textnp-root .faq-label { font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.75); }
.textnp-root .faq-arrow { color: var(--leaf-light); flex-shrink: 0; transition: transform 0.3s ease; }
.textnp-root .faq-item[open] .faq-arrow { transform: rotate(180deg); }
.textnp-root .faq-body { padding: 0 0 1.25rem; display: flex; flex-direction: column; gap: 0.75rem; }
.textnp-root .faq-body p { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.65; }
.textnp-root .faq-body strong { color: var(--leaf-light); }
.textnp-root .tiers-disclaimer { display: flex; align-items: flex-start; gap: 0.75rem; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius-md); padding: 1rem 1.25rem; font-size: 0.82rem; color: rgba(255,255,255,0.4); line-height: 1.6; max-width: 620px; }

/* ========== ABOUT ========== */
.textnp-root .about { background: var(--cream); position: relative; overflow: hidden; }
.textnp-root .about-layout { display: grid; grid-template-columns: 280px 1fr; gap: 4rem; align-items: start; margin-top: 3.5rem; position: relative; z-index: 2; }
.textnp-root .about-photo-frame { border-radius: var(--radius-xl); overflow: hidden; background: linear-gradient(135deg, var(--sage-light), var(--leaf-lightest)); aspect-ratio: 3/4; box-shadow: var(--shadow-soft); position: relative; }
.textnp-root .about-photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.textnp-root .about-info h3 { font-family: 'Instrument Serif', serif; font-size: 2rem; color: var(--navy); }
.textnp-root .about-creds { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1.5rem; margin-top: 0.2rem; }
.textnp-root .about-info p { font-size: 1.02rem; line-height: 1.7; color: var(--text-body); font-weight: 400; margin-bottom: 1rem; }
.textnp-root .about-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.textnp-root .about-tags span { background: var(--leaf-lightest); border: 1px solid var(--leaf-pale); color: var(--leaf-dark); padding: 0.4rem 1rem; border-radius: 100px; font-size: 0.78rem; font-weight: 500; }

/* ========== FINAL CTA ========== */
.textnp-root .final-cta { background: linear-gradient(180deg, var(--sage-light) 0%, var(--leaf-lightest) 100%); padding: 7rem 2.5rem; text-align: center; position: relative; overflow: hidden; }
.textnp-root .final-cta .section-inner { display: flex; flex-direction: column; align-items: center; text-align: center; max-width: 460px; margin: 0 auto; }
.textnp-root .final-cta .section-desc { margin-bottom: 2.5rem; }
.textnp-root .cta-leaf { position: absolute; opacity: 0.18; z-index: 1; }
.textnp-root .cta-leaf.left { left: 5%; top: 50%; transform: translateY(-50%) rotate(-20deg); }
.textnp-root .cta-leaf.right { right: 5%; top: 40%; transform: translateY(-50%); }
.textnp-root .final-fine { margin-top: 1rem; font-size: 0.8rem; color: var(--moss); }

/* ========== FOOTER ========== */
.textnp-root .footer { background: var(--navy-deep); color: rgba(255,255,255,0.35); padding: 3rem 2.5rem; text-align: center; position: relative; overflow: hidden; }
.textnp-root .footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--leaf-dark), var(--leaf-light), var(--leaf-dark)); opacity: 0.4; }
.textnp-root .footer-inner { max-width: 640px; margin: 0 auto; }
.textnp-root .footer-disclaimer { font-size: 0.72rem; line-height: 1.6; margin-bottom: 1rem; }
.textnp-root .footer-bottom { font-size: 0.78rem; }
.textnp-root .footer-bottom a { color: rgba(255,255,255,0.45); text-decoration: none; }
.textnp-root .footer-bottom a:hover { color: var(--leaf-light); }

/* Inner-page content (default WP editor content wrapped with the same nav/footer) */
.textnp-root .textnp-inner-content { max-width: 780px; margin: 0 auto; padding: 10rem 2.5rem 6rem; font-size: 1.05rem; line-height: 1.75; color: var(--text-body); }
.textnp-root .textnp-inner-content h1, .textnp-root .textnp-inner-content h2 { font-family: 'Instrument Serif', serif; color: var(--navy-deep); }
.textnp-root .textnp-inner-content a { color: var(--leaf-dark); }

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .textnp-root .nav-links { gap: 1.5rem; }
  .textnp-root .what-layout { grid-template-columns: 1fr; gap: 3rem; }
  .textnp-root .about-layout { grid-template-columns: 1fr; }
  .textnp-root .about-photo-frame { max-width: 220px; }
  .textnp-root .tier-grid { grid-template-columns: repeat(2, 1fr); }
  .textnp-root .proof-inner { gap: 2.5rem; }
}

@media (max-width: 600px) {
  .textnp-root section { padding: 4.5rem 1.25rem; }
  .textnp-root .nav { padding: 0.8rem 1.25rem; }
  .textnp-root .nav-logo img { height: 40px; }
  .textnp-root .nav.scrolled .nav-logo img { height: 34px; }
  .textnp-root .nav-links .nav-link-text { display: none; }
  .textnp-root .hero { padding: 7rem 1.25rem 4rem; }
  .textnp-root .hero-icon { width: 90px; height: 90px; }
  .textnp-root .hero-actions { flex-direction: column; }
  .textnp-root .hero-leaf { display: none; }
  .textnp-root .abc-row { grid-template-columns: 1fr; }
  .textnp-root .tier-grid { grid-template-columns: 1fr; }
  .textnp-root .rw-tooltip-text { width: 280px; }
  .textnp-root .final-cta { padding: 4.5rem 1.25rem; }
  .textnp-root .proof-inner { flex-direction: column; gap: 1.5rem; }
}
