/* ══════════════════════════════════════════════════════════
   Simplex Accounting Services — Shared Stylesheet
   Design: Navy + Champagne Gold, Premium Trust-First
   ══════════════════════════════════════════════════════════ */

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

:root {
  --navy: #1B2A4A;
  --navy-light: #2A3F6B;
  --navy-dark: #111D35;
  --cream: #FAF8F5;
  --gold: #C9A84C;
  --gold-light: #D4B86A;
  --gold-dark: #A8893C;
  --white: #ffffff;
  --bg: #FAF8F5;
  --text: #1a1a1a;
  --text-muted: #6b7280;
  --display: 'Playfair Display', Georgia, serif;
  --body: 'Outfit', sans-serif;
  --green-wa: #25D366;
  --green-wa-hover: #1fb855;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img { max-width: 100%; height: auto; }

/* ── Announcement Bar ── */
.announcement {
  background: var(--gold);
  color: var(--navy);
  text-align: center;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 700;
}
.announcement a {
  color: var(--navy);
  text-decoration: underline;
  margin-left: 6px;
}

/* ── Navigation ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.nav-logo {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo .logo-icon {
  width: 36px;
  height: 36px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 800;
}
.logo-text,
.footer-brand .logo-text {
  color: #243444 !important;
  font-family: var(--sans) !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  line-height: 1 !important;
  display: block !important;
}
.logo-section,
.footer-brand .logo-section {
  font-family: var(--sans) !important;
  font-size: 9px !important;
  font-weight: 700 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: var(--gold) !important;
  margin-top: 4px !important;
  line-height: 1 !important;
  display: block !important;
}
.nav-logo .logo-dot { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--navy); }

/* Services dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-trigger {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--body);
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  transition: color 0.2s;
}
.nav-dropdown-trigger:hover { color: var(--navy); }
.nav-dropdown-trigger .arrow {
  font-size: 10px;
  transition: transform 0.2s;
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: -12px;
  margin-top: 12px;
  background: var(--white);
  border-radius: 12px;
  padding: 8px;
  min-width: 260px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all 0.2s;
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown:hover .arrow { transform: rotate(180deg); }
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s;
}
.nav-dropdown-menu a:hover { background: var(--cream); }
.nav-dropdown-menu .dd-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.nav-dropdown-menu .dd-icon.finance { background: #EBF0F7; }
.nav-dropdown-menu .dd-icon.hr { background: #EDE9FE; }
.nav-dropdown-menu .dd-icon.property { background: #FEF3C7; }
.nav-dropdown-menu .dd-label { font-size: 11px; color: var(--text-muted); font-weight: 500; margin-top: 2px; }

.nav-phone {
  color: var(--navy) !important;
  font-weight: 700 !important;
}
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700 !important;
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--gold-dark) !important; color: #fff !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--navy);
  padding: 8px;
}

/* ── Buttons ── */
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  padding: 16px 32px;
  border: none;
  border-radius: 8px;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-gold:hover { background: var(--gold-dark); color: #fff; transform: translateY(-2px); }

.btn-navy {
  background: var(--navy);
  color: #fff;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); }

.btn-whatsapp {
  background: var(--green-wa);
  color: #fff;
  padding: 16px 28px;
  border: none;
  border-radius: 8px;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.btn-whatsapp:hover { background: var(--green-wa-hover); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: #fff;
  padding: 14px 28px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  padding: 14px 28px;
  border: 2px solid var(--navy);
  border-radius: 8px;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.btn-outline-navy:hover { background: var(--navy); color: #fff; }

.btn-whatsapp-lg {
  background: var(--green-wa);
  color: #fff;
  padding: 20px 40px;
  border: none;
  border-radius: 12px;
  font-family: var(--body);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s;
}
.btn-whatsapp-lg:hover { background: var(--green-wa-hover); transform: translateY(-2px); }

/* ── WhatsApp SVG Icon (reusable) ── */
.wa-icon { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }

/* ── Hero (Home) ── */
.hero {
  background: var(--navy);
  color: #fff;
  padding: 80px 48px 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(42,63,107,0.6) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(42,63,107,0.4) 0%, transparent 50%);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-badges {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.badge-trustpilot { background: var(--gold); color: #1C1C1E; }
.badge-hmrc { background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.25); }
.badge-mtd { background: var(--gold); color: var(--navy); }
.badge-fixed { background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.2); }

.hero h1 {
  font-family: var(--display);
  font-size: clamp(42px, 4.5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
  max-width: 700px;
}
.hero h1 .highlight {
  color: var(--gold);
  font-style: italic;
}
.hero-sub {
  font-size: 18px;
  opacity: 0.85;
  max-width: 560px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-ctas { display: flex; gap: 12px; margin-bottom: 48px; flex-wrap: wrap; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
}
.hero-stat {
  padding: 24px 16px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.7;
  font-weight: 600;
}

/* ── Page Hero (Inner Pages) ── */
.page-hero {
  background: var(--navy);
  color: #fff;
  padding: 72px 48px 64px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(42,63,107,0.6) 0%, transparent 60%),
              radial-gradient(circle at 30% 70%, rgba(42,63,107,0.4) 0%, transparent 50%);
}
.page-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-hero .breadcrumb {
  font-size: 13px;
  opacity: 0.6;
  margin-bottom: 20px;
  font-weight: 500;
}
.page-hero .breadcrumb a { color: #fff; text-decoration: none; }
.page-hero .breadcrumb a:hover { text-decoration: underline; }
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}
.page-hero h1 .highlight {
  color: var(--gold);
  font-style: italic;
}
.page-hero p {
  font-size: 18px;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.page-hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Section Helpers ── */
.section {
  padding: 100px 48px;
  max-width: 1300px;
  margin: 0 auto;
}
.section--full {
  padding: 100px 48px;
  max-width: none;
}
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--navy { background: var(--navy); color: #fff; }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cream);
  color: var(--navy);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.section-badge--light {
  background: rgba(255,255,255,0.12);
  color: #fff;
}
.section-header h2 {
  font-family: var(--display);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.section--navy .section-header h2 { color: #fff; }
.section-header p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}
.section--navy .section-header p { color: rgba(255,255,255,0.7); }

/* ── Services Overview (Home) ── */
.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-card {
  background: var(--white);
  border-radius: 16px;
  padding: 0;
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
  transition: all 0.3s;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(27,42,74,0.1);
}
.svc-card-top {
  padding: 32px 28px 20px;
  position: relative;
}
.svc-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 16px;
}
.svc-card.finance .svc-icon { background: #EBF0F7; }
.svc-card.hr .svc-icon { background: #EDE9FE; }
.svc-card.property .svc-icon { background: #FEF3C7; }
.svc-card-count {
  position: absolute;
  top: 28px;
  right: 28px;
  background: var(--navy);
  color: #fff;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
}
.svc-card-title {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.svc-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}
.svc-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-dark);
  text-decoration: none;
  transition: gap 0.2s;
}
.svc-card-link:hover { gap: 10px; }
.svc-divider {
  height: 1px;
  background: rgba(0,0,0,0.06);
  margin: 0 28px;
}
.svc-card-list {
  padding: 20px 28px 28px;
  list-style: none;
}
.svc-card-list li {
  padding: 7px 0;
  font-size: 13px;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.svc-card-list li:last-child { border-bottom: none; }
.svc-card-list li .check {
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Service Detail Grid (Inner Pages) ── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-item {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s;
  position: relative;
}
.service-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(27,42,74,0.08);
  border-color: var(--gold);
}
.service-item-num {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 12px;
  line-height: 1;
}
.service-item h3 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.service-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Software Bar ── */
.software {
  padding: 48px;
  background: var(--navy);
  text-align: center;
}
.software-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 24px;
}
.software-logos {
  display: flex;
  justify-content: center;
  gap: 56px;
  align-items: center;
}
.sw-logo {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  opacity: 0.3;
}

/* ── Why Simplex Cards ── */
.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.why-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 28px;
  border: 2px solid rgba(0,0,0,0.04);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
}
.why-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.why-card-icon {
  width: 48px;
  height: 48px;
  background: #FEF3C7;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.why-card h3 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.why-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Benefit Blocks ── */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit-block {
  text-align: center;
  padding: 40px 28px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.06);
}
.benefit-block .benefit-icon {
  width: 64px;
  height: 64px;
  background: var(--cream);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
}
.benefit-block h3 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.benefit-block p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Who We Help ── */
.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}
.audience-tag {
  background: var(--white);
  border: 2px solid rgba(0,0,0,0.06);
  border-radius: 100px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ── Pricing Teaser ── */
.pricing-teaser {
  text-align: center;
  padding: 60px 48px;
  background: var(--gold);
}
.pricing-teaser h3 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.pricing-teaser p {
  font-size: 15px;
  color: var(--navy);
  opacity: 0.8;
  margin-bottom: 24px;
}

/* ── Testimonials ── */
.testimonials {
  padding: 100px 48px;
  background: var(--cream);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.t-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(0,0,0,0.06);
}
.t-stars { color: var(--gold); font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.t-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 20px;
}
.t-author { font-weight: 700; font-size: 14px; color: var(--navy); }
.t-role { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ── Inline CTA ── */
.inline-cta {
  padding: 48px;
  background: var(--gold);
  text-align: center;
}
.inline-cta h3 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.inline-cta p {
  font-size: 15px;
  color: var(--navy);
  opacity: 0.8;
  margin-bottom: 24px;
}
.inline-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── CTA Band ── */
.cta-band {
  padding: 80px 48px;
  background: var(--navy);
  text-align: center;
  color: #fff;
}
.cta-band h2 {
  font-family: var(--display);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 700;
  margin-bottom: 12px;
}
.cta-band h2 .gold { color: var(--gold); }
.cta-band p {
  font-size: 16px;
  opacity: 0.8;
  margin-bottom: 32px;
}
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Callout Box ── */
.callout {
  background: var(--navy);
  color: #fff;
  border-radius: 16px;
  padding: 48px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.callout h3 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}
.callout p {
  font-size: 15px;
  opacity: 0.8;
  margin-bottom: 24px;
  line-height: 1.7;
}

/* ── Intro / Content Block ── */
.intro-block {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.intro-block h2 {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.intro-block p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 12px;
}

/* ── About Page: Values ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  text-align: center;
  padding: 48px 32px;
  background: var(--white);
  border-radius: 16px;
  border: 2px solid rgba(0,0,0,0.04);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
}
.value-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.value-card .value-icon {
  width: 64px;
  height: 64px;
  background: #FEF3C7;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
}
.value-card h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.value-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── About: Story Section ── */
.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.story-image {
  background: var(--navy);
  border-radius: 16px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--display);
  font-size: 48px;
  font-weight: 800;
}
.story-content h2 {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}
.story-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ── Stats Bar ── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--navy);
  border-radius: 16px;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}
.stat-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  color: #fff;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.7;
  font-weight: 600;
}

/* ── Qualifications Badges ── */
.qual-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.qual-badge {
  background: var(--white);
  border: 2px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  padding: 20px 32px;
  text-align: center;
  min-width: 160px;
}
.qual-badge .qual-icon { font-size: 32px; margin-bottom: 8px; }
.qual-badge .qual-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Contact Page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-details h3 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--cream);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-item-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 4px;
}
.contact-item-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}
.contact-item-value a {
  color: var(--navy);
  text-decoration: none;
}
.contact-item-value a:hover { text-decoration: underline; }

/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 8px 32px rgba(0,0,0,0.04);
}
.contact-form h3 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  font-family: var(--body);
  font-size: 15px;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%236b7280' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  padding: 16px;
  border: none;
  border-radius: 10px;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.form-submit:hover { background: var(--gold-dark); color: #fff; }

/* ── FAQ ── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 32px;
  margin-bottom: 12px;
  border: 1px solid rgba(0,0,0,0.06);
}
.faq-item h4 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.faq-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── WhatsApp Section ── */
.whatsapp-section {
  text-align: center;
  padding: 60px 48px;
  background: #E8F5E9;
}
.whatsapp-section h3 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.whatsapp-section p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ── Footer ── */
.footer {
  padding: 60px 48px;
  background: var(--white);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
}
.footer-brand-link {
  margin-bottom: 16px;
}
.footer-brand {
  margin-bottom: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.footer-brand .logo-icon {
  width: 32px;
  height: 32px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 800;
}
.footer-brand .gold { color: var(--gold); }
.footer-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--navy);
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 10px;
}
.footer-col a:hover { color: var(--navy); }
.footer-bottom {
  padding: 20px 48px;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  border-top: 1px solid rgba(0,0,0,0.06);
  background: var(--white);
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .services-cards,
  .service-grid,
  .why-cards,
  .benefit-grid,
  .values-grid,
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }

  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .hero-stat { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .story-section { grid-template-columns: 1fr; gap: 40px; }
  .story-image { height: 280px; }
  .footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    z-index: 500;
    background: var(--white);
    padding: 24px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    gap: 16px;
  }
  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    min-width: auto;
    margin-top: 8px;
  }

  .hero { padding: 48px 20px 40px; }
  .hero h1 { font-size: 36px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-ctas { flex-direction: column; }

  .page-hero { padding: 48px 20px 40px; }
  .page-hero h1 { font-size: 32px; }

  .section, .section--full { padding: 60px 20px; }

  .services-cards,
  .service-grid,
  .why-cards,
  .benefit-grid,
  .values-grid,
  .testimonials-grid { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; }
  .footer { grid-template-columns: 1fr; gap: 24px; }
  .software-logos { gap: 24px; flex-wrap: wrap; }

  .inline-cta, .pricing-teaser, .whatsapp-section { padding: 40px 20px; }
  .cta-band { padding: 60px 20px; }
  .cta-buttons, .inline-cta-btns, .page-hero-ctas { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero-badges { gap: 8px; }
  .badge { font-size: 10px; padding: 4px 10px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .audience-tags { gap: 8px; }
  .audience-tag { font-size: 12px; padding: 8px 16px; }
}

/* ══════════════════════════════════════════════════════════
   ANIMATION LAYER — Now handled by GSAP (transitions.css)
   Old CSS animations removed to prevent conflicts.
   ══════════════════════════════════════════════════════════ */

/* ── Nav scroll state ── */
.nav {
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.nav--scrolled {
  box-shadow: 0 4px 24px rgba(27,42,74,0.13);
}

/* ── Service item hover ── */
.service-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(27,42,74,0.14);
}

/* ── Benefit block hover ── */
.benefit-block:hover {
  box-shadow: 0 12px 32px rgba(27,42,74,0.1);
}

/* ── Button hover ── */
.btn-gold:hover { box-shadow: 0 8px 24px rgba(201,168,76,0.38); }
.btn-whatsapp:hover { box-shadow: 0 8px 24px rgba(37,211,102,0.35); }

/* ── Service number ── */
.service-item-num { transition: color 0.25s ease; }
.service-item:hover .service-item-num { color: var(--gold); }


/* ── Floating WhatsApp Button (sticky, all pages) ── */
.wa-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s ease;
}
.wa-fab:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 12px 36px rgba(37,211,102,0.55);
}
.wa-fab svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}
@media (max-width: 640px) {
  .wa-fab {
    bottom: 20px;
    right: 16px;
    width: 52px;
    height: 52px;
  }
}

/* ── Logo Image ── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
}
.nav-logo-img {
  height: 40px !important;
  width: auto !important;
  max-width: 200px !important;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}
.nav-logo:hover .nav-logo-img {
  opacity: 0.85;
}
/* Sub-page nav logo: icon mark only + text */
.nav-logo-mark {
  height: 40px !important;
  width: auto !important;
  max-width: 44px !important;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}
.nav-logo-label {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-left: 10px;
}
.nav-logo-label .nl-simplex {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-logo-label .nl-section {
  font-family: var(--body);
  font-size: 10px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
}
.footer-logo-img {
  height: 36px !important;
  width: auto !important;
  max-width: 180px !important;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.92;
  margin-bottom: 12px;
}

/* ══════════════════════════════════════════════════════════
   MOBILE QA FIXES (15 Mar 2026)
   ══════════════════════════════════════════════════════════ */

/* Hero badges: wrap to 2 per row on small screens */
@media (max-width: 480px) {
  .hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
  }
  .hero-badges .badge {
    font-size: 11px;
    padding: 5px 10px;
    flex: 0 0 auto;
  }
}

/* Hero heading: bump up mobile size */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 32px;
    line-height: 1.15;
  }
  .hero-sub {
    font-size: 14px;
    line-height: 1.55;
  }
  /* Hero stats: cleaner 2-col */
  .hero-stats {
    gap: 0;
  }
  .hero-stat {
    padding: 12px 8px;
  }
  .hero-stat-num {
    font-size: 22px;
  }
  .hero-stat-label {
    font-size: 11px;
  }
}

/* Service pillar cards on homepage — ensure readable at mobile */
@media (max-width: 480px) {
  .svc-card {
    padding: 24px 20px;
  }
  .svc-card-title {
    font-size: 18px;
  }
  .svc-card-desc {
    font-size: 13px;
    line-height: 1.5;
  }
  .svc-card-list li {
    font-size: 13px;
    padding: 4px 0;
  }
  .svc-icon {
    font-size: 28px;
  }
}

/* Why cards — bigger text on mobile */
@media (max-width: 480px) {
  .why-card {
    padding: 28px 20px;
  }
  .why-card h3 {
    font-size: 17px;
  }
  .why-card p {
    font-size: 13px;
    line-height: 1.55;
  }
  .why-card-icon {
    font-size: 32px;
  }
}

/* Testimonial cards — readable */
@media (max-width: 480px) {
  .t-card {
    padding: 24px 20px;
  }
  .t-text {
    font-size: 13px;
    line-height: 1.6;
  }
  .t-author {
    font-size: 13px;
  }
  .t-role {
    font-size: 11px;
  }
}

/* CTA buttons — full width on mobile for easy tapping */
@media (max-width: 480px) {
  .btn-gold, .btn-whatsapp, .btn-navy, .btn-outline {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 16px 24px;
    font-size: 15px;
    min-height: 48px;
  }
  .hero-ctas, .page-hero-ctas, .cta-buttons, .inline-cta-btns {
    width: 100%;
    gap: 12px;
  }
}

/* Section headers — mobile sizing */
@media (max-width: 480px) {
  .section-header h2 {
    font-size: 26px;
    line-height: 1.2;
  }
  .section-header p {
    font-size: 14px;
  }
  .section-badge {
    font-size: 11px;
  }
}

/* CTA band — tighter on mobile */
@media (max-width: 480px) {
  .cta-band h2 {
    font-size: 26px;
    line-height: 1.2;
  }
  .cta-band p {
    font-size: 14px;
  }
}

/* Service items on sub-pages — tighter mobile */
@media (max-width: 480px) {
  .service-item {
    padding: 24px 20px;
  }
  .service-item h3 {
    font-size: 16px;
  }
  .service-item p {
    font-size: 13px;
    line-height: 1.55;
  }
  .service-item-num {
    font-size: 14px;
  }
}

/* Benefit blocks */
@media (max-width: 480px) {
  .benefit-block {
    padding: 24px 20px;
  }
  .benefit-block h3 {
    font-size: 16px;
  }
  .benefit-block p {
    font-size: 13px;
  }
}

/* Audience tags */
@media (max-width: 480px) {
  .audience-tags {
    justify-content: center;
  }
}

/* Footer — clean mobile stack */
@media (max-width: 480px) {
  .footer {
    padding: 40px 20px;
    gap: 28px;
  }
  .footer-desc {
    font-size: 13px;
  }
  .footer-col h4 {
    font-size: 13px;
    margin-bottom: 8px;
  }
  .footer-col a {
    font-size: 13px;
  }
  .footer-bottom {
    font-size: 11px;
    padding: 16px 20px;
  }
}

/* Software logos — wrap cleaner */
@media (max-width: 480px) {
  .software {
    padding: 24px 20px;
  }
  .software-label {
    font-size: 11px;
  }
  .sw-logo {
    font-size: 14px;
    padding: 8px 16px;
  }
}

/* Inline CTA */
@media (max-width: 480px) {
  .inline-cta h3 {
    font-size: 20px;
  }
  .inline-cta p {
    font-size: 13px;
  }
}

/* Announcement bar */
@media (max-width: 480px) {
  .announcement {
    font-size: 11px;
    padding: 8px 16px;
  }
}

/* Page hero sub-pages */
@media (max-width: 480px) {
  .page-hero h1 {
    font-size: 28px;
    line-height: 1.2;
  }
  .page-hero p {
    font-size: 14px;
  }
}

/* Contact page */
@media (max-width: 480px) {
  .contact-item {
    padding: 20px 16px;
  }
  .contact-item-label {
    font-size: 11px;
  }
  .contact-item-value {
    font-size: 14px;
  }
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px; /* prevents iOS zoom on focus */
    padding: 14px;
  }
  .contact-form label {
    font-size: 12px;
  }
}

/* WhatsApp FAB — don't overlap footer CTA buttons */
@media (max-width: 480px) {
  .wa-fab {
    bottom: 16px;
    right: 12px;
    width: 50px;
    height: 50px;
  }
  .wa-fab svg {
    width: 26px;
    height: 26px;
  }
}

/* Software logo wordmarks */
.sw-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background: rgba(255,255,255,0.07);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}
.sw-logo-link:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-2px);
}
.sw-wordmark {
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.sw-logo-link:hover .sw-wordmark {
  opacity: 1;
}

/* Simplex geometric mark */
.logo-icon-img {
  width: 30px;
  height: auto;
  display: block;
  flex-shrink: 0;
}
.logo-icon-footer {
  width: 24px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

/* Footer logo */
.footer-logo-name {
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-logo-sub {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
  line-height: 1;
}

