@import url('https://fonts.googleapis.com/css2?family=PT+Sans+Caption:wght@400;700&display=swap');

/* ============================================
   REVIARE GROUP — SHARED STYLESHEET
   reviaregroup.com
   Brand: The Strategist — Ink, Deep, Teal
   Updated: June 2026
   ============================================ */

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

:root {
  --navy:       #051C2C;
  --navy-mid:   #0A3D5C;
  --navy-light: #0D5C7A;
  --blue:       #00BFA5;
  --blue-pale:  #B2DFDB;
  --blue-faint: #E8F8F6;
  --white:      #FFFFFF;
  --offwhite:   #F7F8FA;
  --slate:      #64748B;
  --muted:      #FFFFFF;
  --text:       #051C2C;
  --border:     #E0E8EC;
  --green:      #16A34A;
  --green-bg:   #F0FDF4;
  --amber:      #D97706;
  --red:        #DC2626;
  --font: 'PT Sans Caption', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-sm: 8px;
  --radius:    12px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(5,28,44,0.08);
  --shadow:    0 4px 16px rgba(5,28,44,0.08);
  --shadow-lg: 0 12px 40px rgba(5,28,44,0.12);
}

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

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

/* ── LAYOUT ── */
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 760px; margin: 0 auto; padding: 0 24px; }
section { padding: 88px 24px; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(5,28,44,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,191,165,0.12);
}
.nav-inner {
  max-width: 1080px; margin: 0 auto; padding: 0 24px;
  height: 66px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 11px; }
.nav-mark svg { width: 28px; height: 28px; }
.nav-wordmark { display: flex; flex-direction: column; line-height: 1; }
.nav-wordmark .nw-main { font-size: 18px; font-weight: 600; color: #fff; letter-spacing: 0.3px; }
.nav-wordmark .nw-sub  { font-size: 11px; font-weight: 500; color: #FFFFFF; letter-spacing: 4px; text-transform: uppercase; margin-top: 1px; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 14px; color: rgba(255,255,255,0.75); padding: 8px 14px;
  border-radius: var(--radius-sm); transition: all 0.15s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.07); }
.nav-links a.active { color: #FFFFFF; font-weight: 600; }

.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-cta {
  background: #FFFFFF; color: #00BFA5; padding: 9px 20px;
  border-radius: var(--radius-sm); font-size: 14px; font-weight: 600;
  transition: all 0.15s;
}
.nav-cta:hover { background: #F0F9FF; transform: translateY(-1px); }

/* Mobile nav toggle */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.nav-hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.2s; }

/* ── TYPOGRAPHY ── */
h1 { font-size: clamp(32px, 4.5vw, 54px); font-weight: 700; line-height: 1.12; letter-spacing: -0.5px; }
h2 { font-size: clamp(26px, 3.5vw, 40px); font-weight: 700; line-height: 1.18; letter-spacing: -0.3px; }
h3 { font-size: clamp(18px, 2.5vw, 24px); font-weight: 600; line-height: 1.3; }
h4 { font-size: 16px; font-weight: 600; line-height: 1.4; }
p { line-height: 1.72; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; color: var(--blue);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px;
}
.eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--blue); display: block; }
.eyebrow.light { color: var(--blue-pale); }
.eyebrow.light::before { background: var(--blue-pale); }
/* Centre-aligned eyebrow utility */
.eyebrow[style*="justify-content:center"],
.eyebrow[style*="justify-content: center"] {
  display: flex;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 600; transition: all 0.18s;
  cursor: pointer; border: 2px solid transparent;
}
.btn-primary { background: #FFFFFF; color: #00BFA5; border-color: #FFFFFF; }
.btn-primary:hover { background: #E8F8F6; border-color: #E8F8F6; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,191,165,0.28); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--border); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.3); }
.btn-outline-light:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.06); }
.btn-sm { padding: 9px 18px; font-size: 14px; }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--navy); padding: 130px 24px 80px;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 60px; background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero-dark::after { background: var(--offwhite); }
.page-hero-inner { max-width: 1080px; margin: 0 auto; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { font-size: 18px; color: var(--blue-pale); max-width: 580px; }

/* ── CARDS ── */
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  transition: all 0.2s; box-shadow: var(--shadow-sm);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: rgba(0,191,165,0.25); }
.card-accent { border-top: 3px solid var(--blue); }

/* ── HIGHLIGHT BOXES ── */
.highlight-box {
  background: var(--blue-faint); border: 1px solid rgba(0,191,165,0.2);
  border-radius: var(--radius); padding: 24px 28px;
}
.highlight-box.navy { background: var(--navy); border-color: transparent; }
.highlight-box.green { background: var(--green-bg); border-color: rgba(22,163,74,0.2); }

/* ── PRICING TABLE ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.pricing-card {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px 28px; position: relative; transition: all 0.2s;
}
.pricing-card.featured { border-color: var(--blue); border-width: 2px; }
.pricing-card.featured::before {
  content: 'Most Popular'; position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: #fff; font-size: 11px; font-weight: 700;
  padding: 4px 14px; border-radius: 20px; letter-spacing: 0.5px;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); }
.pricing-tier { font-size: 12px; font-weight: 700; color: var(--blue); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 8px; }
.pricing-name { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.pricing-price { font-size: 38px; font-weight: 800; color: var(--navy); line-height: 1; margin: 16px 0 4px; }
.pricing-price sup { font-size: 20px; vertical-align: top; margin-top: 6px; }
.pricing-delivery { font-size: 13px; color: var(--slate); margin-bottom: 24px; }
.pricing-features { margin-bottom: 28px; }
.pricing-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--text); padding: 7px 0;
  border-bottom: 1px solid var(--border);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; text-align: left; font-size: 15px; font-weight: 600;
  color: var(--navy); gap: 16px; transition: background 0.15s;
}
.faq-question:hover { background: var(--offwhite); }
.faq-icon { font-size: 20px; color: var(--blue); flex-shrink: 0; transition: transform 0.2s; }
.faq-answer { display: none; padding: 0 24px 20px; font-size: 15px; color: var(--slate); line-height: 1.75; }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ── PROCESS STEPS ── */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid; grid-template-columns: 56px 1fr; gap: 24px;
  padding: 28px 0; border-bottom: 1px solid var(--border);
  align-items: start;
}
.step:last-child { border-bottom: none; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--blue-faint); border: 2px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800; color: var(--blue); flex-shrink: 0;
}
.step-content h4 { color: var(--navy); margin-bottom: 6px; margin-top: 14px; }
.step-content p { font-size: 15px; color: var(--slate); }

/* ── CASE STUDY CARDS ── */
.case-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; transition: all 0.2s;
}
.case-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.case-header { background: var(--navy); padding: 28px 32px; }
.case-industry { font-size: 11px; font-weight: 700; color: var(--blue-pale); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px; }
.case-company { font-size: 20px; font-weight: 700; color: #fff; }
.case-body { padding: 28px 32px; }
.case-problem { font-size: 14px; color: var(--slate); margin-bottom: 20px; line-height: 1.7; }
.case-stats { display: flex; gap: 20px; margin-bottom: 20px; flex-wrap: wrap; }
.case-stat-item { text-align: center; }
.case-stat-num { font-size: 26px; font-weight: 800; color: var(--blue); line-height: 1; }
.case-stat-label { font-size: 11px; color: var(--slate); margin-top: 3px; }
.case-service-tag {
  display: inline-block; font-size: 12px; font-weight: 600;
  color: var(--blue); background: var(--blue-faint);
  padding: 4px 12px; border-radius: 20px;
}

/* ── CTA SECTION ── */
.cta-band {
  background: var(--navy); padding: 88px 24px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 700px; height: 700px; border-radius: 50%;
  border: 1px solid rgba(0,191,165,0.08); pointer-events: none;
}
.cta-band-inner { position: relative; z-index: 1; max-width: 620px; margin: 0 auto; }
.cta-band h2 { color: #fff; margin-bottom: 16px; }
.cta-band p { font-size: 17px; color: var(--blue-pale); margin-bottom: 36px; }
.cta-band .cta-note { font-size: 13px; color: #FFFFFF; margin-top: 16px; }
.cta-band .cta-note a { color: #FFFFFF; text-decoration: underline; }

/* ── FOOTER ── */
footer {
  background: var(--navy); border-top: 1px solid rgba(0,191,165,0.1);
  padding: 60px 0 32px;
}

.footer-brand p { font-size: 14px; color: #FFFFFF; line-height: 1.75; margin-top: 16px; max-width: 280px; }
.footer-col h4 { font-size: 11px; font-weight: 700; color: #FFFFFF; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px; }
.footer-col li { margin-bottom: 11px; }
.footer-col li a { font-size: 14px; color: #FFFFFF; transition: color 0.15s; }
.footer-col li a:hover { color: #fff; }

.footer-bottom p { font-size: 13px; color: #FFFFFF; }
.footer-creds { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-creds span {
  font-size: 11px; color: #FFFFFF; padding: 3px 10px;
  border: 1px solid rgba(255,255,255,0.08); border-radius: 20px;
}


/* ── FOOTER ALIGNMENT ── */
.footer-inner {
  max-width: 1080px; margin: 0 auto; padding: 0 24px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px;
}
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
  
}
@media (max-width: 768px) {
  section { padding: 64px 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  
  .case-stats { gap: 14px; }
}
@media (max-width: 480px) {
  .btn { padding: 12px 20px; font-size: 14px; }
  .pricing-card.featured::before { white-space: nowrap; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
