/* ============================================
   SAI ENTERPRISES — Design Tokens
   ============================================ */
:root {
  --navy-950: #0a1c30;
  --navy-900: #0f2a47;
  --navy-800: #16385c;
  --navy-700: #1f4a75;
  --accent-700: #8b5a24;
  --accent-600: #a9702e;
  --accent-500: #c08a45;
  --accent-100: #f3e6d4;
  --cream: #f6f3ec;
  --cream-deep: #efe9dc;
  --white: #ffffff;
  --ink: #16232f;
  --ink-soft: #4c5c6b;
  --ink-faint: #8a97a3;
  --border: #e6e1d4;
  --shadow-sm: 0 2px 10px rgba(15, 42, 71, 0.06);
  --shadow-md: 0 12px 30px rgba(15, 42, 71, 0.12);
  --shadow-lg: 0 24px 60px rgba(15, 42, 71, 0.18);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--accent-500);
  outline-offset: 2px;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy-900);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-600);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--accent-600);
}

.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-head h2 {
  font-size: clamp(30px, 4vw, 42px);
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
}
.section-head h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 3px;
  background: var(--accent-600);
  border-radius: 2px;
}
.section-head p { color: var(--ink-soft); margin-top: 16px; font-size: 16px; }

section { padding: 96px 0; }
@media (max-width: 780px) { section { padding: 64px 0; } }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform 0.2s ease; }
.btn:hover svg { transform: translateX(3px); }
.btn:hover { transform: translateY(-2px); }

.btn-navy { background: var(--navy-900); color: var(--white); }
.btn-navy:hover { background: var(--navy-800); box-shadow: var(--shadow-md); }

.btn-accent { background: var(--accent-600); color: var(--white); }
.btn-accent:hover { background: var(--accent-700); box-shadow: var(--shadow-md); }

.btn-outline { background: transparent; color: var(--navy-900); border-color: var(--navy-900); }
.btn-outline:hover { background: var(--navy-900); color: var(--white); }

.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline-light:hover { background: var(--white); color: var(--navy-900); }

.btn-block { width: 100%; justify-content: center; }

/* ============================================
   HEADER / NAV
   ============================================ */
.topbar {
  background: var(--navy-950);
  color: rgba(255,255,255,0.8);
  font-size: 13px;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-left { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar a:hover { color: var(--accent-500); }
.topbar-left span { display: inline-flex; align-items: center; gap: 6px; }
.topbar svg { width: 13px; height: 13px; }

header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 46px; height: 46px;
  background: linear-gradient(160deg, var(--navy-800), var(--navy-950));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.brand-mark svg { width: 24px; height: 24px; }
.brand-text .name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--navy-900);
  letter-spacing: 0.01em;
  line-height: 1.1;
}
.brand-text .name span { color: var(--accent-600); }
.brand-text .tagline {
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.02em;
  margin-top: 2px;
}

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav > ul { display: flex; align-items: center; gap: 2px; }
.main-nav a.nav-link {
  padding: 10px 16px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  border-radius: var(--radius-sm);
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav a.nav-link:hover { color: var(--accent-600); }
.main-nav li.active > a.nav-link { color: var(--navy-900); font-weight: 700; }
.main-nav li.active > a.nav-link::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 2px;
  height: 2px;
  background: var(--accent-600);
  border-radius: 2px;
}
.main-nav .caret { width: 11px; height: 11px; transition: transform 0.2s; }
.has-dropdown:hover .caret { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.18s ease;
  z-index: 50;
}
.has-dropdown { position: relative; }
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--ink);
}
.dropdown a:hover { background: var(--cream); color: var(--accent-600); }
.dropdown .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-500); flex-shrink: 0; }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.call-pill {
  display: flex; align-items: center; gap: 10px;
  background: var(--navy-900);
  color: var(--white);
  padding: 9px 16px;
  border-radius: var(--radius-sm);
}
.call-pill .icon-circle {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.call-pill svg { width: 15px; height: 15px; }
.call-pill .label { font-size: 10.5px; opacity: 0.75; line-height: 1.3; }
.call-pill .number { font-size: 14px; font-weight: 700; line-height: 1.3; }

.wa-pill {
  display: flex; align-items: center; gap: 8px;
  background: var(--accent-600);
  color: var(--white);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
}
.wa-pill:hover { background: var(--accent-700); }
.wa-pill svg { width: 16px; height: 16px; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 20px; height: 20px; }

@media (max-width: 1080px) {
  .call-pill, .topbar-left span:last-child { display: none; }
}
@media (max-width: 940px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .wa-pill span { display: none; }
  .wa-pill { padding: 10px; }
}

/* Mobile drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
}
.mobile-nav.open { display: block; }
.mobile-nav .backdrop {
  position: absolute; inset: 0;
  background: rgba(10,28,48,0.55);
}
.mobile-nav .drawer {
  position: absolute;
  top: 0; right: 0;
  width: min(320px, 82vw);
  height: 100%;
  background: var(--white);
  padding: 24px;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.mobile-nav .drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.mobile-nav .close-btn {
  width: 38px; height: 38px; border-radius: 8px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; background: var(--white);
}
.mobile-nav .close-btn svg { width: 18px; height: 18px; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 2px; }
.mobile-nav a.nav-link {
  display: block;
  padding: 14px 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy-900);
  border-bottom: 1px solid var(--border);
}
.mobile-nav .sub-list { padding-left: 14px; }
.mobile-nav .sub-list a { font-size: 14.5px; font-weight: 500; color: var(--ink-soft); padding: 10px; }
.mobile-nav .drawer .btn { margin-top: 20px; }

/* ============================================
   HERO
   ============================================ */
.hero {
  background: linear-gradient(180deg, var(--cream) 0%, #eef3f6 100%);
  overflow: hidden;
  position: relative;
  padding: 72px 0 0;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding-bottom: 56px;
}
.hero h1 {
  font-size: clamp(34px, 4.6vw, 54px);
  margin-bottom: 20px;
}
.hero-copy p.lede {
  color: var(--ink-soft);
  font-size: 17px;
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-badges { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-badge { display: flex; align-items: center; gap: 10px; }
.hero-badge .icon-badge {
  width: 40px; height: 40px;
  border: 1.5px solid var(--accent-500);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--accent-600);
}
.hero-badge .icon-badge svg { width: 18px; height: 18px; }
.hero-badge .text { font-size: 13.5px; font-weight: 600; color: var(--navy-900); line-height: 1.3; }

.hero-media { position: relative; }
.hero-media .frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3.1;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media .float-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-media .float-card .icon {
  width: 46px; height: 46px; border-radius: 10px;
  background: var(--accent-100); color: var(--accent-600);
  display: flex; align-items: center; justify-content: center;
}
.hero-media .float-card .icon svg { width: 22px; height: 22px; }
.hero-media .float-card .num { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--navy-900); line-height: 1; }
.hero-media .float-card .lbl { font-size: 12px; color: var(--ink-soft); margin-top: 2px; }

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .hero-media .float-card { left: 16px; bottom: -20px; }
}

/* Page hero (interior pages) */
.page-hero {
  background: linear-gradient(155deg, var(--navy-950) 0%, var(--navy-800) 100%);
  color: var(--white);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -80px; top: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(169,112,46,0.28), transparent 70%);
}
.page-hero .eyebrow { color: var(--accent-500); }
.page-hero h1 { color: var(--white); font-size: clamp(30px, 4vw, 44px); }
.page-hero .crumbs { margin-top: 16px; font-size: 14px; color: rgba(255,255,255,0.7); display: flex; gap: 8px; align-items: center; }
.page-hero .crumbs a:hover { color: var(--accent-500); }
.page-hero p.lede { color: rgba(255,255,255,0.78); max-width: 560px; margin-top: 16px; font-size: 16px; }

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: transparent;
}
.service-card .icon-circle {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--navy-900);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: background 0.25s ease;
}
.service-card:hover .icon-circle { background: var(--accent-600); }
.service-card .icon-circle svg { width: 26px; height: 26px; color: var(--white); }
.service-card h3 { font-size: 19px; margin-bottom: 10px; }
.service-card p { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 18px; }
.service-card .read-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: 14px; color: var(--navy-900);
}
.service-card .read-more svg { width: 14px; height: 14px; transition: transform 0.2s; }
.service-card:hover .read-more svg { transform: translateX(4px); }
.service-card .read-more:hover { color: var(--accent-600); }

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: linear-gradient(155deg, var(--navy-950), var(--navy-800));
  color: var(--white);
  padding: 44px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-item { display: flex; align-items: center; gap: 16px; padding: 0 12px; position: relative; }
.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -10px; top: 6px; bottom: 6px;
  width: 1px;
  background: rgba(255,255,255,0.15);
}
.stat-item .icon { width: 44px; height: 44px; flex-shrink: 0; color: var(--accent-500); }
.stat-item .icon svg { width: 100%; height: 100%; }
.stat-item .num { font-family: var(--font-display); font-size: 30px; font-weight: 700; line-height: 1; }
.stat-item .lbl { font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 4px; }
@media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 32px; } .stat-item:nth-child(2)::after { display: none; } }
@media (max-width: 480px) { .stats-grid { grid-template-columns: 1fr; } .stat-item::after { display: none; } }

/* ============================================
   ABOUT / SPLIT SECTIONS
   ============================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 36px; } }
.split.reverse .split-media { order: 2; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 4/3.4; object-fit: cover; }
.split-media { position: relative; }
.split-copy p.lede { color: var(--ink-soft); margin-bottom: 20px; }
.check-list { display: flex; flex-direction: column; gap: 14px; margin: 24px 0 30px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--ink); }
.check-list .tick {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--accent-100); color: var(--accent-600);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.check-list .tick svg { width: 13px; height: 13px; }

.experience-badge {
  position: absolute;
  bottom: -22px; right: -18px;
  background: var(--accent-600);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.experience-badge .num { font-family: var(--font-display); font-size: 34px; font-weight: 700; line-height: 1; }
.experience-badge .lbl { font-size: 12px; margin-top: 4px; letter-spacing: 0.03em; }

/* ============================================
   VALUES / ICON ROWS
   ============================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 940px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .values-grid { grid-template-columns: 1fr; } }
.value-card { text-align: center; padding: 30px 20px; }
.value-card .icon-circle {
  width: 64px; height: 64px; margin: 0 auto 18px;
  border-radius: 50%; background: var(--cream);
  display: flex; align-items: center; justify-content: center; color: var(--accent-600);
}
.value-card .icon-circle svg { width: 28px; height: 28px; }
.value-card h4 { font-size: 17px; margin-bottom: 8px; }
.value-card p { font-size: 14px; color: var(--ink-soft); }

/* ============================================
   TEAM
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 940px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .team-grid { grid-template-columns: 1fr; } }
.team-card { text-align: center; }
.team-card .photo { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 3/3.4; margin-bottom: 16px; box-shadow: var(--shadow-sm); }
.team-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { font-size: 16.5px; }
.team-card .role { font-size: 13px; color: var(--accent-600); font-weight: 600; margin-top: 2px; }

/* ============================================
   PROJECTS
   ============================================ */
.filter-bar { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 44px; }
.filter-btn {
  padding: 10px 20px;
  border-radius: 30px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 14px; font-weight: 600; color: var(--ink-soft);
}
.filter-btn.active, .filter-btn:hover { background: var(--navy-900); color: var(--white); border-color: var(--navy-900); }

.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 940px) { .projects-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .projects-grid { grid-template-columns: 1fr; } }

.project-card { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); background: var(--white); border: 1px solid var(--border); transition: box-shadow 0.25s, transform 0.25s; }
.project-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.project-card .thumb { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.project-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.project-card:hover .thumb img { transform: scale(1.06); }
.project-card .tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--accent-600); color: var(--white);
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.03em;
  padding: 5px 12px; border-radius: 20px;
}
.project-card .body { padding: 20px 22px; }
.project-card h4 { font-size: 17px; margin-bottom: 6px; }
.project-card .meta { font-size: 13px; color: var(--ink-soft); display: flex; align-items: center; gap: 6px; }
.project-card .meta svg { width: 13px; height: 13px; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 940px) { .testi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  position: relative;
}
.testi-card .quote-mark { color: var(--accent-500); opacity: 0.5; width: 34px; height: 34px; margin-bottom: 14px; }
.testi-card .stars { display: flex; gap: 3px; margin-bottom: 14px; color: var(--accent-600); }
.testi-card .stars svg { width: 15px; height: 15px; }
.testi-card p.msg { font-size: 14.5px; color: var(--ink); margin-bottom: 22px; }
.testi-card .person { display: flex; align-items: center; gap: 12px; }
.testi-card .person img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.testi-card .person .name { font-weight: 700; font-size: 14.5px; color: var(--navy-900); }
.testi-card .person .role { font-size: 12.5px; color: var(--ink-soft); }

/* ============================================
   BLOG
   ============================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 940px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); background: var(--white); transition: box-shadow 0.25s, transform 0.25s; }
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.blog-card .thumb { aspect-ratio: 16/10; overflow: hidden; }
.blog-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-card .body { padding: 22px 22px 24px; }
.blog-card .meta { display: flex; gap: 14px; font-size: 12.5px; color: var(--ink-faint); margin-bottom: 12px; }
.blog-card .meta span { display: flex; align-items: center; gap: 5px; }
.blog-card .meta svg { width: 13px; height: 13px; }
.blog-card h4 { font-size: 18px; margin-bottom: 10px; }
.blog-card p { font-size: 14px; color: var(--ink-soft); margin-bottom: 16px; }
.blog-card .read-more { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 13.5px; color: var(--navy-900); }
.blog-card .read-more svg { width: 13px; height: 13px; }
.blog-card:hover .read-more { color: var(--accent-600); }

/* Blog single */
.article-body { max-width: 760px; margin: 0 auto; }
.article-body h2 { font-size: 26px; margin: 36px 0 14px; }
.article-body p { color: var(--ink-soft); margin-bottom: 18px; font-size: 16px; }
.article-body img { border-radius: var(--radius-md); margin: 30px 0; aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.article-body ul { margin: 0 0 18px 0; display: flex; flex-direction: column; gap: 10px; }
.article-body ul li { color: var(--ink-soft); font-size: 15.5px; padding-left: 26px; position: relative; }
.article-body ul li::before { content: ""; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; border-radius: 50%; background: var(--accent-500); }

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  background: linear-gradient(155deg, var(--navy-950), var(--navy-800));
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute; right: -60px; bottom: -80px;
  width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(169,112,46,0.3), transparent 70%);
}
.cta-band h3 { color: var(--white); font-size: clamp(22px, 3vw, 30px); margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,0.75); font-size: 15px; }
.cta-band .ctas { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ============================================
   CONTACT
   ============================================ */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; align-items: flex-start; }
@media (max-width: 940px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info-card, .form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.contact-row { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--border); }
.contact-row:last-child { border-bottom: none; }
.contact-row .icon-circle {
  width: 46px; height: 46px; border-radius: 50%; background: var(--cream); color: var(--accent-600);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-row .icon-circle svg { width: 20px; height: 20px; }
.contact-row h4 { font-size: 15px; margin-bottom: 4px; }
.contact-row p, .contact-row a { font-size: 14.5px; color: var(--ink-soft); }
.contact-row a:hover { color: var(--accent-600); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--navy-900); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14.5px;
  color: var(--ink);
  background: var(--cream);
  transition: border-color 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent-500); outline: none; background: var(--white); }
.field textarea { resize: vertical; min-height: 110px; }
.form-card h3 { margin-bottom: 6px; font-size: 22px; }
.form-card > p { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 24px; }
.form-note { font-size: 12.5px; color: var(--ink-faint); margin-top: 14px; text-align: center; }

.map-wrap { border-radius: var(--radius-lg); overflow: hidden; margin-top: 40px; border: 1px solid var(--border); }
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ============================================
   FAQ (accordion)
   ============================================ */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; background: var(--white); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; font-weight: 600; font-size: 15.5px; color: var(--navy-900);
  background: none; border: none; width: 100%; text-align: left;
}
.faq-q svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform 0.25s ease; color: var(--accent-600); }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-a { max-height: 240px; }
.faq-a p { padding: 0 24px 20px; color: var(--ink-soft); font-size: 14.5px; }

/* ============================================
   PROCESS STEPS
   ============================================ */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
@media (max-width: 900px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process-grid { grid-template-columns: 1fr; } }
.process-card { text-align: center; padding: 0 12px; position: relative; }
.process-card .step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--navy-900); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 20px;
  margin: 0 auto 18px;
}
.process-card h4 { font-size: 16.5px; margin-bottom: 8px; }
.process-card p { font-size: 14px; color: var(--ink-soft); }

/* ============================================
   CLIENT LOGOS
   ============================================ */
.logo-strip { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 30px; opacity: 0.6; }
.logo-strip .logo-item { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--navy-900); letter-spacing: 0.02em; }

/* ============================================
   FOOTER
   ============================================ */
footer.site-footer { background: var(--navy-950); color: rgba(255,255,255,0.7); padding-top: 72px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 36px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h5 { color: var(--white); font-family: var(--font-display); font-size: 16px; margin-bottom: 20px; }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.55); max-width: 280px; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { font-size: 14px; color: rgba(255,255,255,0.65); }
.footer-col ul a:hover { color: var(--accent-500); }
.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
}
.social-row a:hover { background: var(--accent-600); }
.social-row svg { width: 16px; height: 16px; color: var(--white); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: rgba(255,255,255,0.65); margin-bottom: 4px; }
.footer-contact svg { width: 16px; height: 16px; color: var(--accent-500); flex-shrink: 0; margin-top: 2px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; flex-wrap: wrap; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--accent-500); }
.footer-bottom-links { display: flex; gap: 20px; }

/* Newsletter mini form */
.newsletter { display: flex; gap: 8px; margin-top: 6px; }
.newsletter input {
  flex: 1; padding: 11px 14px; border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06); color: var(--white); font-size: 13.5px;
}
.newsletter input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter button {
  background: var(--accent-600); color: var(--white); border: none; border-radius: var(--radius-sm);
  padding: 0 16px; display: flex; align-items: center; justify-content: center;
}
.newsletter button svg { width: 16px; height: 16px; }
.newsletter button:hover { background: var(--accent-700); }

/* Floating WhatsApp button */
.float-wa {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
}
.float-wa svg { width: 28px; height: 28px; color: var(--white); }
.float-wa:hover { transform: scale(1.08); }

/* Utility */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
