/* ===========================
   INDUS DIGITAL — Option A: Crimson & Gold
   Primary #B01218 · Dark #7A0C10 · Gold #D4A017
   =========================== */

:root {
  --primary:        #B01218;
  --primary-dark:   #7A0C10;
  --primary-light:  #FDF6EE;
  --gold:           #D4A017;
  --gold-dark:      #A87C0F;
  --gold-light:     #FBF3DC;
  --footer-bg:      #1E1208;
  --black:          #1a1a1a;
  --text-body:      #3a3a3a;
  --text-muted:     #6b6b6b;
  --border:         #E2E4E0;
  --section-alt:    #F5F7FA;
  --bg-white:       #ffffff;
  --radius:         8px;
  --radius-lg:      14px;
  --shadow-sm:      0 2px 8px rgba(0,0,0,.06);
  --shadow-md:      0 6px 28px rgba(0,0,0,.12);
}

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

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background: #fff;
}

img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }

/* ===========================
   TOPBAR
=========================== */
.topbar {
  background: var(--black);
  color: #fff;
  font-size: 13px;
  padding: 7px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar a { color: #ffd580; }
.topbar a:hover { color: #fff; }
.topbar-right { display: flex; gap: 20px; align-items: center; }

/* ===========================
   NAVBAR
=========================== */
.navbar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}

.logo { display: flex; align-items: center; text-decoration: none; }
.logo img { width: 300px; height: auto; display: block; }
.logo-mark, .logo-text { display: none; }

/* Nav links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 2px;
  align-items: center;
}
.nav-links > li { position: relative; }

.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  background: var(--primary-light);
  color: var(--primary);
}

/* Dropdown — hover on the <li>, not the <a> */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: '▾'; font-size: 10px; margin-left: 3px; }

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 6px; /* gap between trigger and menu */
  z-index: 200;
  min-width: 230px;
}
.dropdown-menu-inner {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 8px;
}
/* Keep open while hovering the <li> — covers both trigger and menu */
.nav-dropdown:hover .dropdown-menu { display: block; }

.dropdown-menu a {
  display: block;
  padding: 9px 14px;
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text-body);
  white-space: nowrap;
}
.dropdown-menu a:hover { background: var(--primary-light); color: var(--primary); }

/* CTA button in nav */
.nav-cta {
  background: var(--primary) !important;
  color: #fff !important;
  border-radius: var(--radius) !important;
  padding: 9px 20px !important;
  font-weight: 600 !important;
  white-space: nowrap;
  display: inline-flex !important;
  align-items: center;
}
.nav-cta:hover { background: var(--primary-dark) !important; color: #fff !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--black); border-radius: 2px; transition: .2s;
}

/* Mobile nav */
.mobile-nav { display: none; background: #fff; border-top: 1px solid var(--border); padding: 12px 0; }
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block; padding: 11px 24px;
  font-size: 15px; color: var(--black); font-weight: 500;
  border-bottom: 0.5px solid #f0f0f0;
}
.mobile-nav a:hover { background: var(--primary-light); color: var(--primary); }
.mobile-nav .mobile-sub { padding-left: 40px; font-size: 14px; color: var(--text-muted); }
.mobile-nav .mobile-sub:hover { color: var(--primary); }

/* ===========================
   CONTAINER
=========================== */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ===========================
   HERO
=========================== */
.hero {
  background: var(--primary-light);
  border-bottom: 1px solid #e8d5c0;
  padding: 88px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; right: -100px; top: -100px;
  width: 560px; height: 560px; border-radius: 50%;
  background: rgba(212,160,23,.07);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; left: -60px; bottom: -60px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(176,18,24,.05);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.hero-eyebrow {
  font-size: 12px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.hero-eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 2px; background: var(--gold);
}
.hero h1 {
  font-size: 46px; font-weight: 800;
  line-height: 1.12; color: var(--black);
  margin-bottom: 22px;
}
.hero h1 em { font-style: normal; color: var(--primary); }
.hero-lead { font-size: 17px; color: var(--text-body); margin-bottom: 36px; max-width: 480px; line-height: 1.75; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.hero-img img { width: 100%; height: 380px; object-fit: cover; }

.hero-stats {
  display: flex; gap: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(176,18,24,.15);
}
.stat-item strong { font-size: 30px; font-weight: 800; color: var(--primary); display: block; line-height: 1; }
.stat-item span { font-size: 13px; color: var(--text-muted); margin-top: 4px; display: block; }

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-size: 15px; font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .18s;
  text-decoration: none;
  line-height: 1;
}
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: #fff; }
.btn-gold { background: var(--gold); color: #3a2800; border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: #fff; }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-white { background: #fff; color: var(--primary); border-color: #fff; }
.btn-white:hover { background: var(--gold-light); color: var(--primary-dark); }
.btn-sm { padding: 9px 18px; font-size: 13px; }

/* ===========================
   SECTIONS
=========================== */
section { padding: 72px 0; }
.section-alt { background: var(--section-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.section-label {
  font-size: 12px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: #ffd580;
  margin-bottom: 10px;
}
.section-title { font-size: 34px; font-weight: 800; color: var(--black); line-height: 1.2; margin-bottom: 14px; }
.section-title.white { color: #fff; }
.section-sub { font-size: 17px; color: var(--text-muted); max-width: 580px; margin-bottom: 48px; }
.section-sub.white { color: rgba(255,255,255,.75); }
.section-head { text-align: center; }
.section-head .section-sub { margin-left: auto; margin-right: auto; }

/* ===========================
   CARDS
=========================== */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card-icon {
  width: 52px; height: 52px; border-radius: var(--radius);
  background: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 18px;
}
.card h3 { font-size: 18px; font-weight: 700; color: var(--black); margin-bottom: 10px; }
.card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.card-link { margin-top: 16px; font-size: 14px; font-weight: 600; color: var(--primary); display: inline-flex; gap: 4px; align-items: center; }
.card-link:hover { color: var(--primary-dark); }

/* ===========================
   SERVICES SPLIT
=========================== */
.services-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.services-split.reverse .split-img { order: -1; }
.split-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.split-img img { width: 100%; height: 340px; object-fit: cover; }

.feature-list { list-style: none; margin-top: 24px; }
.feature-list li { display: flex; gap: 12px; padding: 10px 0; border-bottom: 0.5px solid var(--border); font-size: 15px; }
.feature-list li:last-child { border-bottom: none; }
.feature-check { color: var(--gold-dark); font-size: 18px; flex-shrink: 0; margin-top: 2px; font-weight: 700; }

/* ===========================
   WHY US
=========================== */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.why-item {
  text-align: center; padding: 32px 20px;
  background: var(--bg-white);
  border-radius: var(--radius-lg); border: 1px solid var(--border);
}
.why-num { font-size: 42px; font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: 8px; }
.why-item h4 { font-size: 15px; font-weight: 600; color: var(--black); margin-bottom: 8px; }
.why-item p { font-size: 13px; color: var(--text-muted); }

/* ===========================
   TESTIMONIALS
=========================== */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testimonial-card {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
}
.stars { color: var(--gold); font-size: 18px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card blockquote { font-size: 15px; color: var(--text-body); line-height: 1.7; font-style: italic; margin-bottom: 18px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--gold-dark); font-size: 15px;
}
.reviewer-name { font-weight: 600; font-size: 14px; color: var(--black); }
.reviewer-biz { font-size: 12px; color: var(--text-muted); }

/* ===========================
   CTA BAND
=========================== */
.cta-band { background: var(--primary); padding: 64px 0; text-align: center; }
.cta-band h2 { font-size: 34px; font-weight: 800; color: #fff; margin-bottom: 14px; }
.cta-band p { font-size: 17px; color: rgba(255,255,255,.8); margin-bottom: 32px; }
.cta-band .btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===========================
   PROCESS STEPS
=========================== */
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.process-step { padding: 28px 24px; text-align: center; }
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold); color: #3a2800;
  font-weight: 800; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.process-step h4 { font-size: 16px; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.process-step p { font-size: 14px; color: var(--text-muted); }

/* ===========================
   PAGE HERO (inner pages)
=========================== */
/* ===========================
   INNER PAGE HERO — same cream style as homepage hero
=========================== */
.hero-inner {
  background: var(--primary-light);
  border-bottom: 1px solid #e8d5c0;
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.hero-inner::before {
  content: '';
  position: absolute; right: -100px; top: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(212,160,23,.07);
  pointer-events: none;
}
.hero-inner::after {
  content: '';
  position: absolute; left: -60px; bottom: -60px;
  width: 280px; height: 280px; border-radius: 50%;
  background: rgba(176,18,24,.05);
  pointer-events: none;
}
.hero-inner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.hero-inner-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.hero-inner-img img {
  width: 100%; height: 320px; object-fit: cover; display: block;
}

/* Centered variant — no image, text centred */
.hero-inner.centered {
  text-align: center;
}
.hero-inner.centered .hero-inner-grid {
  grid-template-columns: 1fr;
  max-width: 720px;
  margin: 0 auto;
}
.hero-inner.centered .hero-eyebrow {
  justify-content: center;
}
.hero-inner.centered .hero-lead {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-inner.centered .hero-actions {
  justify-content: center;
}
.hero-inner.centered .breadcrumb {
  justify-content: center;
}
.breadcrumb {
  font-size: 13px; color: var(--text-muted);
  margin-bottom: 14px;
  display: flex; gap: 6px; align-items: center;
}
.breadcrumb a { color: var(--primary); font-weight: 500; }
.breadcrumb a:hover { color: var(--primary-dark); }
.breadcrumb span { color: var(--text-muted); }

/* ===========================
   CONTENT WRAP (service pages)
=========================== */
.content-wrap { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }
.content-main h2 { font-size: 26px; font-weight: 700; color: var(--black); margin: 32px 0 14px; }
.content-main h3 { font-size: 20px; font-weight: 600; color: var(--black); margin: 24px 0 10px; }
.content-main p { margin-bottom: 16px; color: var(--text-body); }
.content-main ul { margin: 16px 0 16px 20px; }
.content-main ul li { margin-bottom: 8px; color: var(--text-body); }

/* Sidebar */
.sidebar-widget {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px; margin-bottom: 24px;
}
.sidebar-widget h4 {
  font-size: 16px; font-weight: 700; color: var(--black);
  margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}
.sidebar-services { list-style: none; }
.sidebar-services li a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 0.5px solid #f0f0f0;
  font-size: 14px; color: var(--text-body);
}
.sidebar-services li a:hover { color: var(--primary); }
.sidebar-services li:last-child a { border-bottom: none; }
.sidebar-cta {
  background: var(--primary); border-radius: var(--radius-lg);
  padding: 28px 24px; margin-bottom: 24px;
  text-align: center; border-top: 3px solid var(--gold);
}
.sidebar-cta h4 { color: #fff; font-size: 17px; margin-bottom: 10px; }
.sidebar-cta p { font-size: 13px; color: rgba(255,255,255,.75); margin-bottom: 18px; }

/* ===========================
   CONTACT PAGE
=========================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info-item {
  display: flex; gap: 16px;
  margin-bottom: 24px; padding-bottom: 24px;
  border-bottom: 0.5px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-icon {
  width: 44px; height: 44px; border-radius: var(--radius);
  background: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--gold-dark); flex-shrink: 0;
}
.contact-info-item h4 { font-size: 14px; font-weight: 600; color: var(--black); margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { font-size: 15px; color: var(--text-muted); }

/* ===========================
   FORM
=========================== */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--black); margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px; font-family: inherit;
  color: var(--text-body); background: #fff;
  transition: border-color .15s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,160,23,.12);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===========================
   TEAM
=========================== */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; }
.team-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; text-align: center; }
.team-photo { height: 200px; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo-placeholder { height: 200px; background: var(--gold-light); display: flex; align-items: center; justify-content: center; font-size: 52px; }
.team-info { padding: 20px; }
.team-info h4 { font-size: 16px; font-weight: 700; color: var(--black); margin-bottom: 4px; }
.team-info span { font-size: 13px; color: var(--gold-dark); font-weight: 600; }
.team-info p { font-size: 13px; color: var(--text-muted); margin-top: 8px; }

/* ===========================
   BLOG
=========================== */
.blog-grid { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }
.posts-grid { display: grid; gap: 28px; }
.post-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  display: grid; grid-template-columns: 220px 1fr;
  transition: box-shadow .2s, transform .2s;
}
.post-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.post-thumb { overflow: hidden; }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; min-height: 180px; }
.post-thumb-placeholder { width: 100%; min-height: 180px; background: var(--gold-light); display: flex; align-items: center; justify-content: center; font-size: 42px; }
.post-body { padding: 24px; }
.post-meta { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; display: flex; gap: 12px; flex-wrap: wrap; }
.post-tag { background: var(--gold-light); color: var(--gold-dark); font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 4px; text-transform: uppercase; letter-spacing: .04em; }
.post-body h2 { font-size: 19px; font-weight: 700; color: var(--black); margin-bottom: 10px; line-height: 1.3; }
.post-body h2 a { color: var(--black); }
.post-body h2 a:hover { color: var(--primary); }
.post-body p { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.65; }
.read-more { font-size: 14px; font-weight: 600; color: var(--primary); }
.read-more:hover { color: var(--primary-dark); }

/* ===========================
   PRICING
=========================== */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 40px; }
.pricing-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  text-align: center; position: relative;
}
.pricing-card.featured { border: 2px solid var(--gold); }
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #3a2800;
  font-size: 12px; font-weight: 700;
  padding: 4px 16px; border-radius: 20px; white-space: nowrap;
}
.pricing-card h3 { font-size: 20px; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.pricing-card .price { font-size: 38px; font-weight: 800; color: var(--primary); line-height: 1; margin: 16px 0 6px; }
.pricing-card .price span { font-size: 16px; font-weight: 400; color: var(--text-muted); }
.pricing-card > p { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }
.pricing-card ul { list-style: none; text-align: left; margin-bottom: 24px; }
.pricing-card ul li { font-size: 14px; color: var(--text-body); padding: 7px 0; border-bottom: 0.5px solid #f0f0f0; display: flex; gap: 8px; }
.pricing-card ul li::before { content: '✓'; color: var(--gold-dark); font-weight: 700; flex-shrink: 0; }
.pricing-card ul li.no::before { content: '✗'; color: #ccc; }

/* ===========================
   FOOTER
=========================== */
footer { background: var(--footer-bg); color: rgba(255,255,255,.6); padding: 60px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .logo img { width: 200px; height: auto; }
.footer-desc { font-size: 14px; margin-top: 16px; line-height: 1.7; }
.footer-col h5 {
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--gold); margin-bottom: 16px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.55); }
.footer-links a:hover { color: var(--gold); }
.footer-contact-item { display: flex; gap: 8px; font-size: 14px; margin-bottom: 12px; align-items: flex-start; }
.footer-contact-item span:first-child { color: var(--gold); flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,.55); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  padding: 18px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; flex-wrap: wrap; gap: 8px;
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--gold); }

/* ===========================
   UTILITIES
=========================== */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0  { margin-bottom: 0; }

/* ===========================
   HERO — PERSON VARIANT
=========================== */
/* Remove rounded box + shadow; let the PNG cut-out float naturally */
.hero-img--person {
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-img--person img {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
  /* Nudge the figure down so feet sit at the hero's bottom edge */
  margin-bottom: -80px;
}

/* Bullet list in hero */
.hero-bullets {
  list-style: none;
  margin-bottom: 36px;
}
.hero-bullets li {
  font-size: 16px;
  color: var(--text-body);
  padding: 7px 0;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.hero-bullets li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ===========================
   ABOUT SPLIT (section 2)
=========================== */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-text p {
  color: var(--text-body);
  margin-bottom: 16px;
  line-height: 1.75;
}
.about-check-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 0.5px solid var(--border);
  align-items: flex-start;
}
.about-check-item:last-child { border-bottom: none; }
.about-check-item .feature-check {
  font-size: 16px;
  margin-top: 3px;
}
.about-check-item strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  display: block;
  margin-bottom: 3px;
}
.about-check-item p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

/* ===========================
   SERVICES CARD GRID (section 3)
=========================== */
.services-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.service-card .card-icon {
  margin-bottom: 18px;
}
.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}
.service-card .card-link {
  margin-top: auto;
}

/* ===========================
   WHY CHOOSE US (section 4)
=========================== */
.why-highlight {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--gold-light);
  border: 1px solid #e8d5a0;
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 48px;
}
.why-highlight-icon {
  font-size: 32px;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-highlight h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}
.why-highlight p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.75;
  margin: 0;
}

.why-three-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-pillar {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: box-shadow .2s, transform .2s;
}
.why-pillar:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.why-pillar-num {
  font-size: 42px;
  font-weight: 800;
  color: var(--primary);
  opacity: .15;
  line-height: 1;
  margin-bottom: 16px;
}
.why-pillar h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}
.why-pillar p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ===========================
   CTA PERSON BAND (last section)
=========================== */
.cta-person-band {
  background: var(--primary);
  padding: 0 0 0;
  overflow: hidden;
}
.cta-person-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: flex-end;
}
.cta-person-img {
  display: flex;
  align-items: flex-end;
}
.cta-person-img img {
  width: 100%;
  max-width: 380px;
  height: auto;
  object-fit: contain;
  display: block;
  /* Let the figure grow naturally from the bottom */
  margin-bottom: 0;
}
.cta-person-content {
  padding: 72px 48px 72px 0;
}
.cta-logo {
  width: 200px; height: auto;
  margin-bottom: 28px; display: block;
}
.cta-person-content .section-label {
  color: var(--gold);
  margin-bottom: 12px;
}
.cta-person-content h2 {
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
}
.cta-person-content p {
  font-size: 16px;
  color: rgba(255,255,255,.8);
  line-height: 1.75;
  max-width: 520px;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 960px) {
  .hero-grid, .hero-inner-grid, .services-split,
  .contact-grid, .content-wrap,
  .blog-grid { grid-template-columns: 1fr; }
  .services-split.reverse .split-img { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 36px; }
  .section-title { font-size: 28px; }
  .hero-img { display: none; }
  .hero-inner-img { display: none; }
  .logo img { width: 240px; }
  .post-card { grid-template-columns: 1fr; }
  .post-thumb { height: 200px; }
  /* New sections */
  .about-split { grid-template-columns: 1fr; gap: 36px; }
  .why-three-grid { grid-template-columns: 1fr; gap: 20px; }
  .cta-person-grid { grid-template-columns: 1fr; }
  .cta-person-img { display: none; }
  .cta-person-content { padding: 64px 0; }
  .cta-person-content h2 { font-size: 30px; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .topbar .container { flex-direction: column; gap: 4px; text-align: center; }
  .topbar-right { flex-direction: column; gap: 4px; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: 56px 0; }
  section { padding: 48px 0; }
  .hero h1 { font-size: 28px; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .logo img { width: 180px; }
  .navbar .container { padding-top: 8px; padding-bottom: 8px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  /* New sections */
  .services-card-grid { grid-template-columns: 1fr; }
  .why-highlight { flex-direction: column; gap: 12px; padding: 20px; }
  .cta-person-content { padding: 48px 0; }
  .cta-person-content h2 { font-size: 26px; }
}