/* ============================================================
   HOVISTA HOSPITALITY ADVISORY — STYLESHEET
   ============================================================ */
:root {
  --navy: #1E2761;
  --teal: #028090;
  --gold: #D4A843;
  --dark: #0F1629;
  --cream: #FAF8F5;
  --white: #FFFFFF;
  --light: #F0F7FA;
  --grey: #6B7280;
  --border: #E8E8E8;
  --text: #374151;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.7; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; transition: color 0.3s; }
img { max-width: 100%; }
img:not(.brand-logo) { height: auto; }

/* NAV */
#main-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: all 0.4s; }
#main-nav.scrolled { background: rgba(15,22,41,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,0.06); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-brand { display: flex; align-items: center; cursor: pointer; }
.brand-logo { height: 30px; width: auto; display: block; transition: opacity 0.3s; }
.brand-logo:hover { opacity: 0.85; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links > a, .nav-group > a { color: rgba(255,255,255,0.8); font-size: 13px; letter-spacing: 1.2px; text-transform: uppercase; font-weight: 500; transition: color 0.3s; }
.nav-links > a:hover, .nav-group > a:hover, .nav-links > a.active, .nav-group > a.active { color: var(--gold); }
.nav-group { position: relative; }
.nav-dropdown { position: absolute; top: 100%; left: -12px; padding-top: 12px; min-width: 220px; display: none; }
.nav-group:hover .nav-dropdown { display: block; }
.dropdown-inner { background: var(--dark); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; padding: 8px 0; box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.dropdown-inner a { display: block; padding: 10px 20px; color: rgba(255,255,255,0.7); font-size: 13px; transition: all 0.2s; }
.dropdown-inner a:hover { color: var(--gold); background: rgba(255,255,255,0.04); }
.btn-nav-cta { background: linear-gradient(135deg, var(--gold), #C4923A) !important; color: var(--dark) !important; padding: 10px 24px !important; border-radius: 6px; font-size: 12px !important; font-weight: 600 !important; letter-spacing: 1px !important; transition: transform 0.2s !important; }
.btn-nav-cta:hover { transform: translateY(-1px); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: 0.3s; }
@media (max-width: 900px) {
  .nav-links { display: none; position: absolute; top: 72px; left: 0; right: 0; background: var(--dark); flex-direction: column; padding: 24px; gap: 16px; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-links.open { display: flex; }
  .nav-dropdown { position: static; display: block; padding: 0; }
  .dropdown-inner { background: transparent; border: none; box-shadow: none; padding: 0 0 0 16px; }
  .nav-toggle { display: block; }
}

/* HERO */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(165deg, var(--dark) 0%, var(--navy) 40%, #0A2440 100%); position: relative; overflow: hidden; text-align: center; }
.hero-bg-dots { position: absolute; inset: 0; opacity: 0.04; background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.3) 1px, transparent 0); background-size: 48px 48px; }
.hero-glow-1 { position: absolute; top: 10%; right: -5%; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(2,128,144,0.08), transparent 70%); }
.hero-glow-2 { position: absolute; bottom: 5%; left: -10%; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(212,168,67,0.06), transparent 70%); }
.hero-content { max-width: 900px; padding: 120px 24px 80px; position: relative; z-index: 1; }
.hero-pill { display: inline-block; padding: 6px 20px; border: 1px solid rgba(212,168,67,0.25); border-radius: 100px; margin-bottom: 32px; }
.hero-pill span { color: var(--gold); font-size: 12px; letter-spacing: 3px; text-transform: uppercase; font-weight: 500; }
.hero h1 { font-family: var(--font-display); font-size: clamp(40px, 7vw, 72px); font-weight: 600; color: var(--white); line-height: 1.1; margin: 0 0 24px; }
.hero h1 span { color: var(--gold); }
.hero p { font-size: 18px; color: rgba(255,255,255,0.65); max-width: 620px; margin: 0 auto 48px; line-height: 1.7; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* BUTTONS */
.btn-primary { background: linear-gradient(135deg, var(--gold), #C4923A); color: var(--dark); border: none; padding: 16px 40px; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; letter-spacing: 1.5px; text-transform: uppercase; font-family: var(--font-body); display: inline-block; transition: transform 0.2s; }
.btn-primary:hover { transform: translateY(-2px); }
.btn-secondary { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.2); padding: 16px 40px; border-radius: 8px; font-size: 14px; font-weight: 500; cursor: pointer; letter-spacing: 1.5px; text-transform: uppercase; font-family: var(--font-body); display: inline-block; transition: all 0.3s; }
.btn-secondary:hover { border-color: rgba(255,255,255,0.4); }

/* STATS */
.stats-section { background: var(--white); position: relative; z-index: 2; margin-top: -48px; }
.stats-grid { max-width: 1000px; margin: 0 auto; padding: 0 24px; }
.stats-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1px; background: var(--navy); border-radius: 12px; overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,0.12); }
.stat-card { background: var(--dark); padding: 36px 24px; text-align: center; }
.stat-num { font-family: var(--font-display); font-size: 42px; font-weight: 700; color: var(--gold); }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.5); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 4px; }

/* SECTIONS */
.section { padding: 100px 24px; }
.section-cream { background: var(--cream); }
.section-dark { background: linear-gradient(165deg, var(--dark), var(--navy)); }
.section-white { background: var(--white); }
.section-light { background: var(--light); }
.section-header { text-align: center; margin-bottom: 64px; }
.section-label { color: var(--teal); font-size: 12px; letter-spacing: 3px; text-transform: uppercase; font-weight: 600; margin-bottom: 16px; }
.section-title { font-family: var(--font-display); font-size: 42px; font-weight: 600; color: var(--navy); margin: 0 0 16px; }
.section-dark .section-title { color: var(--white); }
.section-subtitle { font-size: 16px; color: var(--grey); max-width: 560px; margin: 0 auto; }
.section-dark .section-subtitle { color: rgba(255,255,255,0.5); }
.container { max-width: 1100px; margin: 0 auto; }
.container-narrow { max-width: 800px; margin: 0 auto; }
.container-mid { max-width: 900px; margin: 0 auto; }

/* SERVICE CARDS */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.service-card { padding: 36px; background: var(--white); border-radius: 12px; cursor: pointer; border: 1px solid var(--border); transition: all 0.4s; position: relative; overflow: hidden; }
.service-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }
.service-icon { width: 48px; height: 48px; border-radius: 10px; background: rgba(30,39,97,0.05); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 24px; }
.service-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--navy); margin: 0 0 12px; }
.service-card p { font-size: 14px; color: var(--grey); line-height: 1.7; margin: 0; }
.service-card .learn-more { margin-top: 20px; color: var(--gold); font-size: 13px; font-weight: 600; letter-spacing: 1px; }

/* WHY HOVISTA */
.why-card { padding: 36px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; }
.why-card .accent { width: 3px; height: 32px; background: var(--gold); border-radius: 2px; margin-bottom: 20px; }
.why-card h3 { font-family: var(--font-display); font-size: 22px; color: var(--white); margin: 0 0 12px; }
.why-card p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.8; margin: 0; }

/* PAGE HEADER */
.page-header { padding: 140px 24px 64px; background: linear-gradient(165deg, var(--dark), var(--navy)); text-align: center; }
.page-header .breadcrumb { color: rgba(255,255,255,0.35); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; }
.page-header h1 { font-family: var(--font-display); font-size: clamp(32px, 5vw, 52px); font-weight: 600; color: var(--white); margin: 0 0 16px; }
.page-header p { font-size: 17px; color: rgba(255,255,255,0.55); max-width: 620px; margin: 0 auto; line-height: 1.7; }

/* CONTENT */
.content-section { padding: 80px 24px; }
.content-section p { font-size: 17px; color: var(--text); line-height: 1.9; margin-bottom: 24px; }
.quote-block { padding: 32px; background: rgba(2,128,144,0.05); border-left: 3px solid var(--teal); border-radius: 0 8px 8px 0; margin: 40px 0; }
.quote-block p { font-size: 17px; color: var(--navy); line-height: 1.8; font-family: var(--font-display); font-style: italic; font-weight: 500; margin: 0; }
.quote-block-gold { padding: 32px; background: rgba(212,168,67,0.06); border-left: 3px solid var(--gold); border-radius: 0 8px 8px 0; margin: 48px 0 0; }
.quote-block-gold p { font-size: 17px; color: var(--navy); line-height: 1.8; font-family: var(--font-display); font-weight: 500; margin: 0; }

/* SERVICE DETAIL */
.detail-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.detail-item { padding: 16px 20px; border-radius: 8px; display: flex; align-items: center; gap: 12px; }
.detail-item:nth-child(odd) { background: var(--light); }
.detail-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.detail-item span { font-size: 14px; color: var(--text); }

/* CASE STUDIES */
.case-card { margin-bottom: 48px; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: box-shadow 0.3s; }
.case-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.06); }
.case-header { display: flex; justify-content: space-between; align-items: center; padding: 20px 32px; background: linear-gradient(135deg, var(--dark), var(--navy)); flex-wrap: wrap; gap: 16px; }
.case-header .case-label { font-size: 10px; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; font-weight: 600; }
.case-header h3 { font-family: var(--font-display); font-size: 24px; color: var(--white); margin: 4px 0 0; font-weight: 600; }
.case-stats { display: flex; gap: 24px; }
.case-stat-num { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--gold); text-align: center; }
.case-stat-label { font-size: 10px; color: rgba(255,255,255,0.45); letter-spacing: 1px; text-transform: uppercase; text-align: center; }
.case-body { padding: 32px; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.case-section-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; margin-bottom: 8px; }
.case-section-label.challenge { color: #DC2626; }
.case-section-label.solution { color: var(--teal); }
.case-section-label.result { color: #16A34A; }
.case-body p { font-size: 14px; color: #4B5563; line-height: 1.7; margin: 0; }

/* TESTIMONIALS */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); gap: 32px; }
.testimonial-card { padding: 36px; background: var(--white); border-radius: 12px; border: 1px solid var(--border); display: flex; flex-direction: column; }
.testimonial-stars { color: var(--gold); font-size: 16px; margin-bottom: 20px; letter-spacing: 4px; }
.testimonial-card blockquote { font-size: 15px; color: var(--text); line-height: 1.8; font-style: italic; margin: 0 0 24px; flex: 1; }
.testimonial-meta { border-top: 1px solid #F0F0F0; padding-top: 16px; }
.testimonial-name { font-family: var(--font-display); font-size: 16px; color: var(--navy); font-weight: 600; }
.testimonial-prop { font-size: 13px; color: var(--grey); }
.testimonial-service { font-size: 11px; color: var(--teal); letter-spacing: 1px; text-transform: uppercase; font-weight: 600; margin-top: 4px; }

/* RESOURCES */
.resource-filters { display: flex; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
.resource-filter { padding: 8px 20px; border-radius: 100px; font-size: 13px; cursor: pointer; border: 1px solid var(--border); background: transparent; color: var(--grey); font-weight: 500; transition: all 0.2s; font-family: var(--font-body); }
.resource-filter.active { border-color: var(--navy); background: var(--navy); color: var(--white); }
.resources-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.resource-card { padding: 28px; border: 1px solid var(--border); border-radius: 12px; display: flex; flex-direction: column; transition: all 0.3s; }
.resource-card:hover { border-color: var(--gold); box-shadow: 0 8px 24px rgba(0,0,0,0.05); }
.resource-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.resource-icon { font-size: 28px; }
.resource-tag { font-size: 10px; color: var(--teal); letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; padding: 4px 10px; background: rgba(2,128,144,0.06); border-radius: 4px; }
.resource-card h3 { font-family: var(--font-display); font-size: 20px; color: var(--navy); margin: 0 0 8px; font-weight: 600; }
.resource-card p { font-size: 14px; color: var(--grey); line-height: 1.7; margin: 0 0 20px; flex: 1; }
.resource-dl { color: var(--gold); font-size: 13px; font-weight: 600; letter-spacing: 0.5px; }
.resource-dl.coming { color: var(--grey); }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { padding: 24px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-question h3 { font-family: var(--font-display); font-size: 19px; color: var(--navy); font-weight: 500; margin: 0; }
.faq-toggle { color: var(--gold); font-size: 24px; transition: transform 0.3s; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { font-size: 15px; color: var(--grey); line-height: 1.8; padding: 0 0 24px; margin: 0; }

/* INSIGHTS */
.insights-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.insight-card { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: all 0.3s; }
.insight-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.06); }
.insight-bar { height: 8px; background: linear-gradient(90deg, var(--navy), var(--teal)); }
.insight-body { padding: 28px; }
.insight-cat { font-size: 11px; color: var(--teal); letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; }
.insight-card h3 { font-family: var(--font-display); font-size: 20px; color: var(--navy); margin: 10px 0 12px; line-height: 1.3; }
.insight-date { font-size: 12px; color: #9CA3AF; }

/* TIMELINE */
/* STORY CARDS */
.story-card { display: flex; align-items: stretch; background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: 0 2px 20px rgba(0,0,0,0.04); margin-bottom: 0; max-width: 720px; margin-left: auto; margin-right: auto; }
.story-card__accent { flex: 0 0 100px; background: var(--dark); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; position: relative; }
.story-card__number { font-family: var(--font-display); font-size: 32px; font-weight: 300; color: var(--gold); line-height: 1; }
.story-card__icon { font-size: 24px; }
.story-card__content { flex: 1; padding: 32px 36px; }
.story-card__label { font-size: 11px; color: var(--teal); letter-spacing: 2.5px; text-transform: uppercase; font-weight: 600; display: block; margin-bottom: 6px; }
.story-card__title { font-family: var(--font-display); font-size: 22px; color: var(--navy); font-weight: 600; margin: 0 0 12px; line-height: 1.3; }
.story-card__desc { font-size: 15px; color: var(--grey); line-height: 1.8; margin: 0; }
.story-card--flipped { flex-direction: row-reverse; }
.story-card--flipped .story-card__accent { background: var(--navy); }
.story-connector { text-align: center; padding: 4px 0; }
@media (max-width: 600px) {
  .story-card, .story-card--flipped { flex-direction: column; }
  .story-card__accent { flex: 0 0 auto; padding: 20px; flex-direction: row; gap: 16px; }
  .story-card__content { padding: 24px; }
}

/* APPROACH STEPS */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 32px; }
.step-card { padding: 32px; background: var(--cream); border-radius: 12px; position: relative; }
.step-icon { font-size: 36px; margin-bottom: 16px; }
.step-num { font-family: var(--font-display); font-size: 48px; font-weight: 700; color: rgba(212,168,67,0.12); position: absolute; top: 16px; right: 20px; }
.step-card h3 { font-family: var(--font-display); font-size: 22px; color: var(--navy); margin: 0 0 12px; font-weight: 600; }
.step-card p { font-size: 14px; color: var(--grey); line-height: 1.8; margin: 0; }

/* AUDIENCE */
.audience-points { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 24px; margin-bottom: 64px; }
.audience-point { padding: 32px; background: var(--cream); border-radius: 12px; border-left: 3px solid var(--gold); }
.audience-point h3 { font-family: var(--font-display); font-size: 20px; color: var(--navy); margin: 0 0 10px; font-weight: 600; }
.audience-point p { font-size: 14px; color: var(--grey); line-height: 1.8; margin: 0; }

/* PARTNERS */
.partners-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.partner-card { padding: 28px; border: 1px solid var(--border); border-radius: 12px; }
.partner-cat { font-size: 10px; color: var(--teal); letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; }
.partner-card h3 { font-family: var(--font-display); font-size: 20px; color: var(--navy); margin: 8px 0 10px; font-weight: 600; }
.partner-card p { font-size: 14px; color: var(--grey); line-height: 1.7; margin: 0; }

/* CONTACT FORM */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 12px; color: var(--grey); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px 16px; border: 1px solid #E0E0E0; border-radius: 8px; font-size: 15px; font-family: var(--font-body); outline: none; transition: border 0.3s; background: var(--white); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--teal); }
.form-group textarea { resize: vertical; }
.form-info { margin-top: 48px; padding: 32px; background: var(--light); border-radius: 12px; text-align: center; }
.form-info p { font-size: 14px; color: var(--grey); margin: 0; }
.form-info strong { color: var(--navy); }

/* CTA */
.cta-section { padding: 100px 24px; background: var(--cream); text-align: center; }
.cta-section h2 { font-family: var(--font-display); font-size: 38px; font-weight: 600; color: var(--navy); margin: 0 0 16px; }
.cta-section p { font-size: 16px; color: var(--grey); line-height: 1.7; margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-dark { padding: 48px 32px; background: linear-gradient(135deg, var(--dark), var(--navy)); border-radius: 16px; text-align: center; }
.cta-dark p { font-size: 17px; color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto 28px; line-height: 1.8; }

/* DIFFERENCE BOX */
.difference-box { margin-top: 64px; padding: 40px; background: linear-gradient(135deg, var(--dark), var(--navy)); border-radius: 16px; text-align: center; }
.difference-box h3 { font-family: var(--font-display); font-size: 26px; color: var(--white); margin: 0 0 12px; }
.difference-box > p { font-size: 16px; color: rgba(255,255,255,0.6); max-width: 600px; margin: 0 auto 32px; line-height: 1.7; }
.difference-stats { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; }
.difference-stat-num { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--gold); }
.difference-stat-label { font-size: 11px; color: rgba(255,255,255,0.45); letter-spacing: 1.5px; text-transform: uppercase; }

/* FOOTER */
footer { background: var(--dark); padding: 64px 24px 32px; border-top: 1px solid rgba(255,255,255,0.04); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 48px; margin-bottom: 48px; }
.footer-brand { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--white); letter-spacing: 2px; margin-bottom: 8px; }
.footer-brand-sub { font-family: var(--font-display); font-size: 13px; color: var(--gold); font-style: italic; margin-bottom: 16px; }
.footer-col p { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.7; margin: 0 0 4px; }
.footer-col h4 { color: var(--white); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a { display: block; color: rgba(255,255,255,0.4); font-size: 13px; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px; text-align: center; font-size: 12px; color: rgba(255,255,255,0.25); }

/* ANIMATIONS */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s, transform 0.7s; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
/* Fallback: if JS hasn't fired after 3s, show content anyway */
@keyframes reveal-fallback { to { opacity: 1; transform: translateY(0); } }
.reveal { animation: reveal-fallback 0s 3s forwards; }

/* GRID HELPERS */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 24px; }

/* PRICING CARDS */
.pricing-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 36px 28px 28px; display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; transition: box-shadow 0.3s, transform 0.3s; }
.pricing-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-4px); }
.pricing-card--featured { border-color: var(--gold); box-shadow: 0 4px 24px rgba(212,168,67,0.12); }
.pricing-badge { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--dark); font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 16px; border-radius: 0 0 8px 8px; }
.pricing-tier { font-family: var(--font-display); font-size: 24px; color: var(--navy); font-weight: 600; margin: 8px 0 12px; }
.pricing-amount { font-size: 18px; font-weight: 700; color: var(--teal); margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border); width: 100%; }
.pricing-features { list-style: none; padding: 0; margin: 0 0 24px; width: 100%; text-align: left; }
.pricing-features li { font-size: 14px; color: var(--grey); padding: 6px 0 6px 24px; position: relative; line-height: 1.6; }
.pricing-features li::before { content: '✓'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
.section-audit-btn { display: inline-block; background: var(--navy); color: var(--white); font-size: 14px; font-weight: 600; padding: 14px 32px; border-radius: 8px; transition: background 0.3s; letter-spacing: 0.5px; }
.section-audit-btn:hover { background: var(--teal); color: var(--white); }
.section-audit-btn--dark { background: var(--gold); color: var(--dark); }
.section-audit-btn--dark:hover { background: var(--white); color: var(--navy); }

/* PRICING ROWS */
.pricing-row { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 24px 28px; transition: box-shadow 0.3s; }
.pricing-row:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.pricing-row__title { font-family: var(--font-display); font-size: 20px; color: var(--navy); font-weight: 600; margin: 0 0 4px; }
.pricing-row__desc { font-size: 16px; font-weight: 700; color: var(--teal); margin: 0 0 12px; }
.pricing-row__detail { font-size: 14px; color: var(--grey); line-height: 1.7; margin: 0; }

/* BUNDLE CARDS */
.bundle-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 24px 28px; transition: background 0.3s; }
.bundle-card:hover { background: rgba(255,255,255,0.1); }
.bundle-card__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.bundle-card__header h3 { font-family: var(--font-display); font-size: 18px; color: var(--white); font-weight: 600; margin: 0; }
.bundle-card__discount { background: var(--gold); color: var(--dark); font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 20px; white-space: nowrap; }
.bundle-card p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; margin: 0; }

/* ARTICLE CONTENT */
.article-content h2 { font-family: var(--font-heading); color: var(--navy); font-size: 1.6rem; margin: 40px 0 16px; }
.article-content h3 { font-family: var(--font-heading); color: var(--navy); font-size: 1.25rem; margin: 32px 0 12px; }
.article-content p { font-size: 16px; line-height: 1.8; color: #374151; margin-bottom: 20px; }
.article-content strong { color: var(--navy); }
.insight-link { color: var(--teal); font-weight: 600; font-size: 14px; text-decoration: none; }
.insight-link:hover { text-decoration: underline; }
