/* ===========================
   FINRISE ADVISORS — Version 4
   Clean & Trustworthy | Teal Accent
=========================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --teal:        #0891b2;
  --teal-dark:   #0e7490;
  --teal-mid:    #06b6d4;
  --teal-light:  #cffafe;
  --teal-bg:     #f0fdff;
  --navy:        #0f172a;
  --slate:       #1e293b;
  --gray:        #475569;
  --muted:       #94a3b8;
  --border:      #e2e8f0;
  --white:       #ffffff;
  --off-white:   #f8fafc;
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg:   0 20px 48px rgba(0,0,0,0.1), 0 8px 20px rgba(0,0,0,0.06);
  --radius-sm:   6px;
  --radius:      10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--slate);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* ==============================
   NAVBAR
============================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: box-shadow 0.3s var(--ease);
}

.navbar.scrolled { box-shadow: var(--shadow-md); }

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo img { height: 44px; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.nav-links > li > a {
  text-decoration: none;
  color: var(--gray);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--navy);
  background: var(--off-white);
}

.nav-links > li > a.active { color: var(--teal); }

/* Dropdown */
.dropdown { position: relative; }

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  min-width: 230px;
  padding: 6px;
  list-style: none;
  z-index: 100;
}

.dropdown:hover .dropdown-menu { display: block; }

.dropdown-menu li a {
  display: block;
  padding: 10px 14px;
  color: var(--gray);
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.dropdown-menu li a:hover { background: var(--teal-bg); color: var(--teal-dark); }

.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--teal);
  color: white !important;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.1px;
}

.btn-nav:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(8,145,178,0.35);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ==============================
   BUTTONS
============================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s var(--ease);
  letter-spacing: 0.1px;
}

.btn-primary {
  background: var(--teal);
  color: white;
  box-shadow: 0 2px 8px rgba(8,145,178,0.25);
}

.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(8,145,178,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.45);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
}

.btn-outline-dark {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal);
}

.btn-outline-dark:hover {
  background: var(--teal);
  color: white;
  box-shadow: 0 4px 14px rgba(8,145,178,0.3);
}

.btn-white {
  background: white;
  color: var(--teal-dark);
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background: var(--teal-bg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-dark {
  background: var(--navy);
  color: white;
}

.btn-dark:hover {
  background: var(--slate);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ==============================
   HERO
============================== */
.hero {
  padding-top: 72px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1600&auto=format&fit=crop&q=75');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 30%, rgba(8,145,178,0.3) 100%);
}

/* Teal glow accent */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--teal-mid), var(--teal), var(--teal-mid), transparent);
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
}

.hero-left {}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(8,145,178,0.18);
  border: 1px solid rgba(8,145,178,0.4);
  border-radius: 100px;
  padding: 6px 16px;
  color: var(--teal-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-label i { font-size: 0.6rem; }

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800;
  color: white;
  line-height: 1.12;
  margin-bottom: 22px;
  letter-spacing: -1px;
}

.hero h1 .highlight {
  color: var(--teal-mid);
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
  margin-bottom: 36px;
  font-weight: 400;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
}

.trust-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(8,145,178,0.2);
  border: 2px solid rgba(8,145,178,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* Legacy — kept in case still referenced */
.trust-avatars {
  display: flex;
}

.trust-avatars span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--teal);
  border: 2px solid var(--navy);
  margin-left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: white;
}

.trust-avatars span:first-child { margin-left: 0; }

/* Hero Right — Stats Cards */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  backdrop-filter: blur(10px);
  transition: all 0.3s var(--ease);
}

.hero-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(8,145,178,0.4);
  transform: translateX(4px);
}

.hero-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: rgba(8,145,178,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-mid);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.hero-card-text h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-card-text p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
  font-weight: 400;
}

/* ==============================
   TOOLS / LOGOS BAR
============================== */
.tools-section {
  background: var(--off-white);
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.tools-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--muted);
  margin-bottom: 24px;
}

.tools-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 36px;
}

.tool-item {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.2s;
  cursor: default;
}

.tool-item:hover { color: var(--teal); }

/* ==============================
   SECTIONS
============================== */
.section { padding: 100px 0; }
.section-light { background: var(--off-white); }
.section-teal-light { background: var(--teal-bg); }
.section-navy { background: var(--navy); }

/* Section Header */
.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}

.tag {
  display: inline-block;
  background: var(--teal-bg);
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-navy .tag { background: rgba(8,145,178,0.2); color: var(--teal-light); }

.section-header h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.section-navy .section-header h2 { color: white; }
.section-navy .section-header p { color: rgba(255,255,255,0.6); }

.section-header h2 span { color: var(--teal); }
.section-header p { color: var(--gray); font-size: 1rem; line-height: 1.8; }

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

.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-mid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--teal-bg);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1.2rem;
  margin-bottom: 20px;
  transition: all 0.3s;
}

.service-card:hover .service-icon {
  background: var(--teal);
  color: white;
}

.service-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card p {
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 22px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: gap 0.2s;
}

.service-link:hover { gap: 10px; }

/* ==============================
   CONSTRUCTION ACCOUNTING
============================== */

/* Who it's for pills */
.construction-who {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.who-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--teal-bg);
  border: 1px solid var(--teal-light);
  border-radius: 100px;
  padding: 10px 20px;
  color: var(--teal-dark);
  font-size: 0.88rem;
  font-weight: 600;
}

.who-card i { color: var(--teal); font-size: 0.85rem; }

/* Construction services grid */
.construction-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 72px;
}

.construction-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.construction-card::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--teal);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s var(--ease);
}

.construction-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  transform: translateY(-3px);
}

.construction-card:hover::after { transform: scaleY(1); }

.cc-icon {
  width: 48px;
  height: 48px;
  background: var(--teal-bg);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1.15rem;
  margin-bottom: 18px;
  transition: all 0.3s;
}

.construction-card:hover .cc-icon {
  background: var(--teal);
  color: white;
}

.construction-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.construction-card p {
  color: var(--gray);
  font-size: 0.87rem;
  line-height: 1.75;
}

/* Revenue tiers */
.tiers-section { }

.tiers-section > h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  margin-bottom: 36px;
  letter-spacing: -0.3px;
}

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.tier-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.3s var(--ease);
}

.tier-card-featured {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(8,145,178,0.1), var(--shadow-md);
  transform: translateY(-6px);
}

.tier-badge {
  display: inline-block;
  background: var(--teal-bg);
  color: var(--teal-dark);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.tier-badge.featured {
  background: var(--teal);
  color: white;
}

.tier-card h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.tier-card > p {
  color: var(--gray);
  font-size: 0.87rem;
  line-height: 1.7;
  margin-bottom: 22px;
}

.tier-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.tier-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.87rem;
  color: var(--slate);
  font-weight: 500;
}

.tier-card ul li i {
  color: var(--teal);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ==============================
   STATS BAR
============================== */
.stats-bar { background: var(--navy); padding: 0; }

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-block {
  padding: 52px 32px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
  position: relative;
}

.stat-block:last-child { border-right: none; }

.stat-block h3 {
  font-size: 2.8rem;
  font-weight: 900;
  color: white;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.stat-block h3 span { color: var(--teal-mid); }
.stat-block p { color: rgba(255,255,255,0.5); font-size: 0.82rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.8px; }

/* ==============================
   WHY US
============================== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.why-image-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

/* FinRise Finance Dashboard SVG Illustration */
.finance-dashboard-wrap {
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #0f172a;
  box-shadow: 0 32px 64px rgba(8,145,178,0.18), 0 4px 24px rgba(0,0,0,0.3);
}

.finance-dashboard-svg {
  width: 100%;
  height: auto;
  display: block;
}

.why-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: white;
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-lg);
}

.why-image-badge .badge-icon {
  width: 42px;
  height: 42px;
  background: var(--teal-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1.1rem;
}

.why-image-badge h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 3px;
}

.why-image-badge p { font-size: 0.78rem; color: var(--gray); margin: 0; }

.why-content h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}

.why-content h2 span { color: var(--teal); }
.why-content > p { color: var(--gray); margin-bottom: 36px; line-height: 1.85; }

.feature-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 40px; }

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-icon {
  width: 38px;
  height: 38px;
  background: var(--teal-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-item h4 { font-size: 0.92rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.feature-item p { color: var(--gray); font-size: 0.86rem; margin: 0; line-height: 1.65; }

/* ==============================
   PROCESS
============================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-connector {
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: rgba(255,255,255,0.1);
  z-index: 0;
}

.process-step {
  padding: 0 20px 0;
  position: relative;
  z-index: 1;
  text-align: center;
}

.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(8,145,178,0.15);
  border: 2px solid rgba(8,145,178,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--teal-mid);
  margin: 0 auto 24px;
}

.process-step h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.process-step p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  line-height: 1.7;
}

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

.testimonial-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s var(--ease);
}

.testimonial-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.stars {
  color: #f59e0b;
  font-size: 0.82rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card > p {
  color: var(--slate);
  font-size: 0.93rem;
  line-height: 1.85;
  margin-bottom: 24px;
  font-style: italic;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.t-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.82rem;
  flex-shrink: 0;
}

.t-author h4 { font-size: 0.88rem; font-weight: 700; color: var(--navy); }
.t-author span { font-size: 0.78rem; color: var(--muted); }

/* ==============================
   REVIEWS SECTION
============================== */
.reviews-cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.review-platform-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  text-decoration: none;
  transition: all 0.3s var(--ease);
}

.review-platform-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.review-platform-icon {
  width: 48px;
  height: 48px;
  background: #fef6e4;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-platform-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}

.review-platform-card p {
  font-size: 0.82rem;
  color: var(--gray);
  margin: 0;
}

.review-platform-card > div { flex: 1; }

.review-platform-card > i:last-child {
  color: var(--muted);
  font-size: 0.8rem;
  transition: transform 0.2s, color 0.2s;
}

.review-platform-card:hover > i:last-child {
  transform: translateX(3px);
  color: var(--teal);
}

.leave-review-box {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--teal-bg);
  border: 1px solid var(--teal-light);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  flex-wrap: wrap;
}

.leave-review-box > i {
  font-size: 1.6rem;
  color: #f59e0b;
  flex-shrink: 0;
}

.leave-review-box > div { flex: 1; }
.leave-review-box h4 { font-size: 0.97rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.leave-review-box p { font-size: 0.86rem; color: var(--gray); margin: 0; }

/* ==============================
   CTA
============================== */
.cta-section {
  background: var(--teal);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1200&auto=format&fit=crop&q=60') center/cover;
  opacity: 0.06;
  mix-blend-mode: luminosity;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 800;
  color: white;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.cta-inner p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  margin-bottom: 36px;
  line-height: 1.8;
}

.cta-tag {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

/* ==============================
   CONTACT
============================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 72px;
  align-items: start;
}

.contact-info h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
  line-height: 1.25;
  margin-bottom: 14px;
}

.contact-info > p { color: var(--gray); margin-bottom: 36px; line-height: 1.85; }

.contact-detail {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  align-items: flex-start;
}

.contact-detail .icon {
  width: 42px;
  height: 42px;
  background: var(--teal-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}

.contact-detail h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 3px;
}

.contact-detail p { font-size: 0.9rem; color: var(--slate); margin: 0; }

.contact-form-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 44px;
}

.contact-form-box h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 28px;
  letter-spacing: -0.3px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 7px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--slate);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(8,145,178,0.12);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
  text-align: center;
  padding: 48px 24px;
}

.form-success .success-icon {
  width: 60px;
  height: 60px;
  background: var(--teal-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1.4rem;
  margin: 0 auto 16px;
}

.form-success h3 { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.form-success p { color: var(--gray); font-size: 0.9rem; }

/* ==============================
   PAGE HERO
============================== */
.page-hero {
  background: var(--navy);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1200&auto=format&fit=crop&q=60') center/cover;
  opacity: 0.1;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--teal-mid), var(--teal), transparent);
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}

.page-hero p { color: rgba(255,255,255,0.6); font-size: 1.02rem; line-height: 1.8; max-width: 560px; }

/* ==============================
   FOOTER
============================== */
.footer { background: var(--navy); padding: 72px 0 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-logo { height: 38px; margin-bottom: 18px; display: block; }

.footer-brand p {
  color: rgba(255,255,255,0.45);
  font-size: 0.87rem;
  line-height: 1.85;
  margin-bottom: 24px;
  font-weight: 300;
}

.social-links { display: flex; gap: 8px; }

.social-links a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: all 0.2s;
  font-size: 0.85rem;
}

.social-links a:hover { border-color: var(--teal); color: var(--teal); }

.footer-col h4 {
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.87rem; transition: color 0.2s; }
.footer-col a:hover { color: white; }

.contact-line { color: rgba(255,255,255,0.45); font-size: 0.87rem; display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.contact-line i { color: var(--teal); width: 14px; flex-shrink: 0; }

.footer-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p, .footer-bottom span { color: rgba(255,255,255,0.3); font-size: 0.82rem; }

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.3);
  font-size: 0.82rem;
}

.footer-legal-links a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal-links a:hover { color: rgba(255,255,255,0.7); }

.footer-disclaimers {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-disclaimers p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.22);
  line-height: 1.6;
  margin: 0;
}

.footer-disclaimers sup {
  color: rgba(255,255,255,0.35);
  font-size: 0.65rem;
}

/* ==============================
   SCROLL ANIMATIONS
============================== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.fade-up.visible { opacity: 1; transform: none; }

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

/* ==============================
   RESOURCES PAGE
============================== */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 0;
}

.resource-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  transition: all 0.3s var(--ease);
  position: relative;
}

.resource-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  transform: translateY(-4px);
}

.resource-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
}

.resource-badge {
  display: inline-block;
  background: var(--teal-bg);
  color: var(--teal-dark);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.resource-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
}

.resource-card > p {
  color: var(--gray);
  font-size: 0.86rem;
  line-height: 1.75;
  margin-bottom: 18px;
}

.resource-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 24px;
}

.resource-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: var(--slate);
}

.resource-features li i { color: var(--teal); font-size: 0.7rem; flex-shrink: 0; }

.resources-articles {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
  margin: 0 auto;
}

.article-link-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: all 0.2s;
}

.article-link-card:first-child { border-top: 1px solid var(--border); }

.article-link-card > i:first-child {
  color: var(--teal);
  font-size: 1rem;
  flex-shrink: 0;
  width: 20px;
}

.article-link-card > i:last-child {
  color: var(--muted);
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: transform 0.2s, color 0.2s;
}

.article-link-card:hover > i:last-child {
  transform: translateX(4px);
  color: var(--teal);
}

.article-link-card h4 {
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
  transition: color 0.2s;
}

.article-link-card:hover h4 { color: var(--teal); }
.article-link-card span { font-size: 0.78rem; color: var(--muted); }
.article-link-card > div { flex: 1; }

/* ==============================
   BLOG
============================== */
.blog-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: white;
  color: var(--gray);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}

.filter-btn:hover { border-color: var(--teal); color: var(--teal); }
.filter-btn.active { background: var(--teal); border-color: var(--teal); color: white; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}

.blog-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.blog-card-img-link { display: block; }

.blog-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.blog-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--teal);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 100px;
}

.blog-card-body { padding: 24px; }

.blog-meta {
  display: flex;
  gap: 16px;
  color: var(--muted);
  font-size: 0.78rem;
  margin-bottom: 12px;
}

.blog-meta i { margin-right: 4px; }

.blog-card-body h2 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.45;
  margin-bottom: 10px;
}

.blog-card-body h2 a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

.blog-card-body h2 a:hover { color: var(--teal); }

.blog-card-body > p {
  color: var(--gray);
  font-size: 0.87rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: gap 0.2s;
}

.blog-read-more:hover { gap: 10px; }

/* Blog Post */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  text-decoration: none;
  margin-bottom: 24px;
  transition: color 0.2s;
}

.back-link:hover { color: white; }

.post-hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.post-meta-item {
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
}

.post-meta-item i { margin-right: 5px; }

.post-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: start;
  margin-bottom: 72px;
}

.post-featured-img {
  width: 100%;
  height: 380px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  margin-bottom: 40px;
}

.post-body {
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.9;
}

.post-body h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin: 40px 0 14px;
  letter-spacing: -0.3px;
}

.post-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 28px 0 10px;
}

.post-body p { margin-bottom: 18px; }

.post-body ul {
  padding-left: 20px;
  margin-bottom: 18px;
}

.post-body ul li {
  margin-bottom: 8px;
  line-height: 1.75;
}

.post-body strong { color: var(--navy); font-weight: 700; }

.author-bio {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-top: 48px;
  margin-bottom: 32px;
}

.author-bio-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.author-bio-info h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.author-bio-info span { font-size: 0.8rem; color: var(--teal); font-weight: 600; display: block; margin-bottom: 10px; }
.author-bio-info p { font-size: 0.87rem; color: var(--gray); line-height: 1.75; margin: 0; }

.post-cta-box {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--teal-bg);
  border: 1px solid var(--teal-light);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.post-cta-icon {
  width: 52px;
  height: 52px;
  background: var(--teal);
  color: white;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.post-cta-box h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.post-cta-box p { font-size: 0.87rem; color: var(--gray); margin: 0; }
.post-cta-box > div { flex: 1; }

/* Sidebar */
.post-sidebar { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 100px; }

.sidebar-widget {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.sidebar-widget h4 {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.sidebar-widget p { font-size: 0.87rem; color: var(--gray); line-height: 1.7; margin: 0; }

.sidebar-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.sidebar-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 0.87rem;
  text-decoration: none;
  transition: color 0.2s;
}

.sidebar-links a:hover { color: var(--teal); }
.sidebar-links i { color: var(--teal); font-size: 0.65rem; }

.sidebar-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--navy);
}

.sidebar-contact i { color: var(--teal-mid); font-size: 1.1rem; }
.sidebar-contact p { color: rgba(255,255,255,0.75) !important; }

/* Related posts */
.related-posts h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 24px;
  letter-spacing: -0.3px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.related-card {
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s var(--ease);
  display: block;
}

.related-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: transparent; }

.related-img {
  height: 150px;
  background-size: cover;
  background-position: center;
}

.related-body { padding: 16px; }

.related-body h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin: 8px 0 6px;
  line-height: 1.4;
}

.related-body span { color: var(--muted); font-size: 0.78rem; }

/* ==============================
   PRICING
============================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 80px;
}

.pricing-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  position: relative;
  transition: all 0.3s var(--ease);
}

.pricing-card:hover { box-shadow: var(--shadow-lg); }

.pricing-card-featured {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-header { margin-bottom: 28px; }

.plan-name {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--teal);
  margin-bottom: 12px;
}

.pricing-card-featured .plan-name { color: var(--teal-mid); }

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
}

.plan-price .from {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}

.pricing-card-featured .plan-price .from { color: rgba(255,255,255,0.5); }

.plan-price .price {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -1px;
  line-height: 1;
}

.pricing-card-featured .plan-price .price { color: white; }

.plan-price .per { font-size: 0.88rem; color: var(--muted); font-weight: 500; }
.pricing-card-featured .plan-price .per { color: rgba(255,255,255,0.5); }

.plan-desc {
  color: var(--gray);
  font-size: 0.87rem;
  line-height: 1.7;
  margin: 0;
}

.pricing-card-featured .plan-desc { color: rgba(255,255,255,0.6); }

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.pricing-card-featured .plan-features { border-color: rgba(255,255,255,0.1); }

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--slate);
  font-weight: 500;
}

.pricing-card-featured .plan-features li { color: rgba(255,255,255,0.8); }

.plan-features li i.fa-check { color: var(--teal); font-size: 0.75rem; flex-shrink: 0; }
.plan-features li i.fa-times { color: var(--muted); font-size: 0.75rem; flex-shrink: 0; }
.plan-feature-no { opacity: 0.5; }

.plan-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 12px;
  margin-bottom: 0;
}

/* Pricing includes */
.pricing-includes { margin-top: 40px; }

.pricing-includes > h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: -0.3px;
}

.includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.include-item {
  text-align: center;
  padding: 28px 20px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.include-item > i {
  font-size: 1.6rem;
  color: var(--teal);
  margin-bottom: 14px;
  display: block;
}

.include-item h4 { font-size: 0.92rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.include-item p { font-size: 0.84rem; color: var(--gray); line-height: 1.7; margin: 0; }

/* ==============================
   FAQ
============================== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  gap: 16px;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--teal); }

.faq-question i {
  color: var(--teal);
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-question i { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding-bottom: 22px;
}

.faq-item.open .faq-answer { display: block; }

.faq-answer p {
  color: var(--gray);
  font-size: 0.93rem;
  line-height: 1.85;
  margin: 0;
}

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 48px; padding-top: 72px; padding-bottom: 72px; }
  .hero-right { display: grid; grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-image-wrap { display: none; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-connector { display: none; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .construction-grid { grid-template-columns: repeat(2, 1fr); }
  .tiers-grid { grid-template-columns: 1fr; }
  .tier-card-featured { transform: none; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .resources-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-cta-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card-featured { transform: none; }
  .includes-grid { grid-template-columns: repeat(2, 1fr); }
  .post-layout { grid-template-columns: 1fr; }
  .post-sidebar { position: static; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 10px 16px 16px;
    gap: 2px;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .btn-nav { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-right { grid-template-columns: 1fr; }
  .construction-grid { grid-template-columns: 1fr; }
  .construction-who { gap: 8px; }
  .blog-grid { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
  .includes-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .post-cta-box { flex-direction: column; text-align: center; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .section { padding: 72px 0; }
  .contact-form-box { padding: 28px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-section { padding: 64px 0; }
  .page-hero { padding: 120px 0 64px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ============================================================
   BLOG CATEGORY ILLUSTRATED BACKGROUNDS
   ============================================================ */

/* Construction posts — dark navy to slate */
.blog-img-construction {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f2744 100%);
  position: relative;
  overflow: hidden;
}
.blog-img-construction::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(8,145,178,0.04) 0px,
    rgba(8,145,178,0.04) 1px,
    transparent 1px,
    transparent 28px
  );
}

/* CFO Insights posts — deep navy to teal */
.blog-img-cfo-insights {
  background: linear-gradient(135deg, #0f172a 0%, #0c4a6e 60%, #0891b2 100%);
  position: relative;
  overflow: hidden;
}
.blog-img-cfo-insights::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(8,145,178,0.25) 0%, transparent 60%);
}

/* Business Finance posts — dark teal to emerald */
.blog-img-business-finance {
  background: linear-gradient(135deg, #0f172a 0%, #134e4a 55%, #0891b2 100%);
  position: relative;
  overflow: hidden;
}
.blog-img-business-finance::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(20,184,166,0.2) 0%, transparent 60%);
}

/* Large centered icon in blog card image */
.blog-img-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  font-size: 3rem;
  color: rgba(255,255,255,0.18);
  z-index: 1;
}

/* Blog card category tag — ensure it sits above ::before */
.blog-cat { z-index: 2; }

/* ============================================================
   BLOG POST FEATURED IMAGE — ILLUSTRATED
   ============================================================ */

.post-featured-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-img-construction  { background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f2744 100%); }
.post-img-cfo-insights  { background: linear-gradient(135deg, #0f172a 0%, #0c4a6e 60%, #0891b2 100%); }
.post-img-business-finance { background: linear-gradient(135deg, #0f172a 0%, #134e4a 55%, #0891b2 100%); }

.post-featured-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  z-index: 2;
}

.post-featured-inner i {
  font-size: 4.5rem;
  color: rgba(255,255,255,0.22);
}

.post-featured-inner span {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 5px 16px;
  border-radius: 100px;
}

/* ============================================================
   PRIVACY POLICY & TERMS OF USE PAGES
   ============================================================ */

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.85;
}

.legal-content h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  margin: 48px 0 14px;
  padding-top: 8px;
  border-top: 2px solid var(--border);
}

.legal-content h2:first-of-type { border-top: none; margin-top: 0; }

.legal-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin: 28px 0 10px;
}

.legal-content p { margin-bottom: 16px; }

.legal-content ul {
  margin: 0 0 20px 20px;
  padding: 0;
}

.legal-content ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 4px;
}

.legal-content a { color: var(--teal); text-decoration: underline; }
.legal-content a:hover { color: var(--teal-dark); }

.legal-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding: 16px 20px;
  background: var(--teal-bg);
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.legal-meta strong { color: var(--navy); }

/* ============================================================
   480PX RESPONSIVE
   ============================================================ */

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero h1 { font-size: 2.3rem; }
  .stats-inner { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
}
