/* ===================================================================
   Debt Structure — Design tokens & global styles
   =================================================================== */
:root {
  --orange: #EE6C1F;
  --orange-dark: #C6540F;
  --orange-light: #FF9E52;
  --charcoal: #2F3136;
  --charcoal-2: #23252A;
  --bg: #FFFFFF;
  --bg-light: #F7F8FA;
  --grey: #E9ECEF;
  --text: #222222;
  --muted: #6B7280;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-soft: 0 12px 30px -12px rgba(47, 49, 54, 0.16);
  --shadow-card: 0 6px 18px -8px rgba(47, 49, 54, 0.12);
}

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

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  color: var(--charcoal);
  line-height: 1.15;
}

p { margin: 0; color: var(--muted); line-height: 1.65; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
section { position: relative; }

/* Skip link for keyboard users */
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--orange); color: #fff;
  padding: 12px 20px; z-index: 999; border-radius: 0 0 8px 0; font-family: 'Poppins', sans-serif; font-weight: 600;
}
.skip-link:focus { left: 0; }

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

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 13px;
  letter-spacing: 1.6px; text-transform: uppercase; color: var(--orange-dark);
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--orange); border-radius: 2px; }

.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 15px;
  padding: 15px 28px; border-radius: 50px; border: 2px solid transparent;
  cursor: pointer; transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}
.btn-primary { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); color: #fff; box-shadow: 0 10px 24px -8px rgba(238,108,31,0.55); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -8px rgba(238,108,31,0.65); }
.btn-outline-light { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.55); color: #fff; }
.btn-outline-light:hover { background: rgba(255,255,255,0.14); transform: translateY(-2px); }
.btn-outline-dark { background: #fff; border-color: var(--grey); color: var(--charcoal); }
.btn-outline-dark:hover { border-color: var(--orange); color: var(--orange-dark); transform: translateY(-2px); }
.btn-sm { padding: 11px 20px; font-size: 14px; }
.btn-block { width: 100%; justify-content: center; }
.btn:disabled { opacity: .6; cursor: not-allowed; transform: none !important; }

/* ---------- Utility bar ---------- */
.utility-bar { background: var(--charcoal-2); color: #c9cbd1; font-size: 13px; }
.utility-bar .container { display: flex; justify-content: space-between; align-items: center; height: 38px; }
.utility-left { display: flex; gap: 22px; }
.utility-left span { display: flex; align-items: center; gap: 7px; }
.utility-left i { color: var(--orange); font-size: 12px; }
.utility-left a { color: inherit; }
.utility-right { display: flex; align-items: center; gap: 14px; }
.utility-right span { color: #8b8d94; }
.social-dot { width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 12px; transition: background .2s; }
.social-dot:hover { background: var(--orange); }

/* ---------- Nav ---------- */
.nav-wrap { position: sticky; top: 0; z-index: 50; background: #fff; box-shadow: 0 1px 0 rgba(0,0,0,0.06); }
.nav-wrap nav { height: 78px; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-img { height: 50px; width: auto; max-width: 180px; max-height: 50px; display: block; }
.nav-wrap .logo-img { height: 64px; max-height: 64px; max-width: 220px; }
.logo-mark { width: 44px; height: 44px; flex-shrink: 0; }
.logo-text { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 20px; color: var(--charcoal); line-height: 1.1; }
.logo-text small { display: block; font-family: 'Inter', sans-serif; font-weight: 500; font-size: 9px; letter-spacing: 2px; color: var(--orange-dark); margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 34px; font-family: 'Poppins', sans-serif; font-weight: 500; font-size: 14.5px; color: var(--charcoal); }
.nav-links a { position: relative; padding: 6px 0; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--orange-dark); }
.nav-links a.active::after { content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--orange); border-radius: 2px; }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.burger { display: none; font-size: 22px; color: var(--charcoal); cursor: pointer; background: none; border: none; padding: 4px; }

/* ---------- Hero (home) ---------- */
.hero { background: linear-gradient(160deg, var(--charcoal) 0%, var(--charcoal-2) 55%, #1c1d21 100%); overflow: hidden; padding: 90px 0 70px; }
.hero .container { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 50px; align-items: center; position: relative; z-index: 2; }
.hero-arc { position: absolute; border-radius: 50%; border: 2px solid rgba(238,108,31,0.35); }
.arc1 { width: 640px; height: 640px; top: -260px; right: -180px; border-color: rgba(238,108,31,0.28); }
.arc2 { width: 460px; height: 460px; top: -140px; right: -60px; border-color: rgba(255,158,82,0.22); }
.arc3 { width: 300px; height: 300px; top: -20px; right: 40px; border-color: rgba(238,108,31,0.4); }
.hero-eyebrow { color: var(--orange-light); }
.hero-eyebrow::before { background: var(--orange-light); }
.hero h1 { font-size: 48px; color: #fff; font-weight: 700; letter-spacing: -0.5px; }
.hero h1 span { background: linear-gradient(135deg, var(--orange-light), var(--orange)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { margin-top: 20px; font-size: 17px; color: #c7c9ce; max-width: 480px; }
.hero-buttons { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; }
.ncr-strip { display: flex; align-items: center; gap: 14px; margin-top: 38px; color: #9a9ca3; font-size: 13px; flex-wrap: wrap; }
.ncr-badge { display: flex; align-items: center; gap: 8px; font-family: 'Poppins', sans-serif; font-weight: 700; color: #fff; font-size: 15px; }
.ncr-badge i { color: var(--orange); }
.divider-dot { width: 4px; height: 4px; border-radius: 50%; background: #54565d; }

.hero-visual { position: relative; height: 440px; }
.visual-card { position: absolute; inset: 0; border-radius: 28px; background: radial-gradient(circle at 30% 20%, rgba(255,158,82,0.35), transparent 60%), linear-gradient(150deg,#3a3c42,#25272c); display: flex; align-items: center; justify-content: center; box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5); overflow: hidden; }
.visual-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }

/* ---------- Secondary page hero (About/Services/FAQ/Contact/etc.) ---------- */
.page-hero { background: linear-gradient(160deg, var(--charcoal) 0%, var(--charcoal-2) 60%, #1c1d21 100%); padding: 64px 0 56px; overflow: hidden; }
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #9a9ca3; margin-bottom: 18px; font-family: 'Poppins', sans-serif; }
.breadcrumb a { color: #c7c9ce; }
.breadcrumb a:hover { color: var(--orange-light); }
.breadcrumb i { font-size: 10px; }
.page-hero h1 { font-size: 38px; color: #fff; font-weight: 700; max-width: 700px; }
.page-hero h1 span { color: var(--orange-light); }
.page-hero p.lead { margin-top: 14px; font-size: 16px; color: #c7c9ce; max-width: 560px; }

/* ---------- Trust bar ---------- */
.trust-bar { background: #fff; margin-top: -1px; border-bottom: 1px solid var(--grey); }
.trust-bar .container { display: grid; grid-template-columns: repeat(4, 1fr); padding: 34px 32px; gap: 20px; }
.trust-item { text-align: center; border-right: 1px solid var(--grey); }
.trust-item:last-child { border-right: none; }
.trust-item strong { display: block; font-family: 'Poppins', sans-serif; font-size: 28px; color: var(--charcoal); font-weight: 700; }
.trust-item .count-suffix { color: var(--orange-dark); }
.trust-item span { font-size: 13px; color: var(--muted); }

/* ---------- Section heading helper ---------- */
.section-head { max-width: 640px; margin: 0 auto 52px; text-align: center; }
.section-head.left-align { margin: 0 0 40px; text-align: left; }
.section-head h2 { font-size: 34px; font-weight: 700; letter-spacing: -0.3px; }
.section-head h2 span { color: var(--orange-dark); }
.section-head p { margin-top: 14px; font-size: 16px; }

/* ---------- Services ---------- */
.services { padding: 100px 0; background: var(--bg); }
.services.compact { padding: 70px 0; }
.service-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }
.service-grid.grid-4 { grid-template-columns: repeat(4, 1fr); }
.service-card { background: #fff; border: 1px solid var(--grey); border-radius: var(--radius-lg); padding: 32px 24px; text-align: left; transition: transform .3s ease, box-shadow .3s ease, border-color .3s; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-soft); border-color: transparent; }
.service-icon { width: 56px; height: 56px; border-radius: 16px; background: linear-gradient(135deg, rgba(238,108,31,0.14), rgba(238,108,31,0.05)); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.service-icon i { color: var(--orange-dark); font-size: 22px; }
.service-card h3 { font-size: 18px; margin-bottom: 10px; }
.service-card p { font-size: 14px; margin-bottom: 18px; }
.service-card a { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 13.5px; color: var(--orange-dark); display: inline-flex; align-items: center; gap: 6px; }
.service-card a i { font-size: 11px; transition: transform .2s; }
.service-card a:hover i { transform: translateX(4px); }

/* ---------- Why choose / testimonial ---------- */
.why { background: var(--bg-light); padding: 100px 0; }
.why .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why h2 { font-size: 32px; font-weight: 700; margin-bottom: 16px; }
.why p.lead-p { margin-bottom: 26px; font-size: 16px; }
.check-list li { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; font-family: 'Poppins', sans-serif; font-weight: 500; color: var(--charcoal); font-size: 15px; }
.check-list i { color: var(--orange); font-size: 16px; }

.testimonial-card { background: #fff; border-radius: var(--radius-lg); padding: 38px 34px; box-shadow: var(--shadow-soft); position: relative; }
.quote-badge { width: 54px; height: 54px; border-radius: 50%; background: linear-gradient(135deg, var(--orange), var(--orange-dark)); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 22px; position: absolute; top: -24px; left: 34px; }
.testimonial-card p.quote { font-size: 17px; color: var(--charcoal); font-weight: 500; margin-top: 14px; line-height: 1.6; }
.testimonial-person { display: flex; align-items: center; gap: 12px; margin-top: 24px; }
.avatar-initials { width: 46px; height: 46px; border-radius: 50%; background: var(--charcoal); color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 14px; }
.testimonial-person strong { display: block; font-family: 'Poppins', sans-serif; font-size: 14.5px; color: var(--charcoal); }
.testimonial-person span { font-size: 12.5px; }
.dots { display: flex; gap: 8px; margin-top: 22px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--grey); cursor: pointer; transition: background .2s, width .2s; border: none; padding: 0; }
.dot.active { background: var(--orange); width: 22px; border-radius: 5px; }

/* ---------- Process ---------- */
.process { padding: 100px 0; background: #fff; }
.process.compact { padding: 70px 0; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-step { text-align: center; padding: 0 18px; position: relative; }
.process-step:not(:last-child)::after { content: ""; position: absolute; top: 34px; left: calc(50% + 44px); right: calc(-50% + 44px); height: 2px; background: repeating-linear-gradient(90deg, var(--grey) 0 8px, transparent 8px 14px); }
.step-num { width: 68px; height: 68px; border-radius: 50%; background: var(--bg-light); border: 2px solid var(--grey); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; position: relative; z-index: 2; }
.step-num i { font-size: 24px; color: var(--orange-dark); }
.step-badge { position: absolute; top: -8px; right: -4px; width: 24px; height: 24px; border-radius: 50%; background: var(--orange); color: #fff; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 12px; display: flex; align-items: center; justify-content: center; }
.process-step h4 { font-size: 16.5px; margin-bottom: 8px; }
.process-step p { font-size: 13.5px; }

/* ---------- CTA banner ---------- */
.cta-banner { background: linear-gradient(120deg, var(--charcoal), var(--charcoal-2)); padding: 64px 0; position: relative; overflow: hidden; }
.cta-arc { position: absolute; border-radius: 50%; border: 2px solid rgba(238,108,31,0.3); }
.cta-arc1 { width: 420px; height: 420px; bottom: -260px; left: -140px; }
.cta-arc2 { width: 280px; height: 280px; bottom: -160px; left: -40px; border-color: rgba(255,158,82,0.25); }
.cta-banner .container { display: flex; justify-content: space-between; align-items: center; gap: 30px; position: relative; z-index: 2; flex-wrap: wrap; }
.cta-banner h2 { color: #fff; font-size: 28px; font-weight: 700; }
.cta-banner h2 span { color: var(--orange-light); }
.cta-banner p { color: #b9bbc2; margin-top: 8px; font-size: 15px; }
.cta-banner-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- FAQ + contact card ---------- */
.faq-section { padding: 100px 0; background: var(--bg-light); }
.faq-section .container { display: grid; grid-template-columns: 1.3fr 0.9fr; gap: 50px; align-items: start; }
.faq-section.full .container { grid-template-columns: 1fr; max-width: 820px; }
.faq-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 30px; }
.faq-header h2 { font-size: 30px; font-weight: 700; }
.faq-header a { font-family: 'Poppins', sans-serif; font-weight: 600; color: var(--orange-dark); font-size: 14px; display: flex; align-items: center; gap: 6px; }
.faq-search { position: relative; margin-bottom: 30px; }
.faq-search input { width: 100%; padding: 16px 20px 16px 48px; border-radius: 50px; border: 1px solid var(--grey); font-family: 'Inter', sans-serif; font-size: 15px; background: #fff; }
.faq-search input:focus { border-color: var(--orange); outline: none; }
.faq-search i { position: absolute; left: 20px; top: 50%; transform: translateY(-50%); color: var(--muted); }
.faq-category { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 15px; color: var(--charcoal); margin: 30px 0 16px; }
.faq-category:first-of-type { margin-top: 0; }
.faq-item { background: #fff; border-radius: 14px; margin-bottom: 14px; border: 1px solid var(--grey); overflow: hidden; }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; cursor: pointer; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 15px; color: var(--charcoal); background: none; border: none; width: 100%; text-align: left; }
.faq-q i { color: var(--orange-dark); transition: transform .3s; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 24px 20px; font-size: 14.5px; }
.faq-item.no-match { display: none; }
.faq-empty { text-align: center; padding: 40px 0; display: none; }
.faq-empty.show { display: block; }

.contact-card { background: var(--charcoal); border-radius: var(--radius-lg); padding: 36px 30px; color: #fff; }
.contact-card .logo-mark-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.contact-card h3 { color: #fff; font-size: 19px; margin-bottom: 8px; }
.contact-card p { color: #a9abb2; font-size: 14px; margin-bottom: 26px; }
.contact-card .btn { width: 100%; justify-content: center; margin-bottom: 12px; }

/* ---------- Generic content sections (About / Privacy / POPIA) ---------- */
.content-section { padding: 90px 0; background: #fff; }
.content-section.alt { background: var(--bg-light); }
.content-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.content-columns .placeholder-image { border-radius: var(--radius-lg); aspect-ratio: 4/3; overflow: hidden; box-shadow: var(--shadow-soft); }
.content-columns .placeholder-image img { width: 100%; height: 100%; object-fit: cover; }
.prose-centered { max-width: 720px; margin: 0 auto; text-align: center; }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 36px; }
.mission-card { background: #fff; border-radius: var(--radius-lg); padding: 40px 34px; box-shadow: var(--shadow-soft); text-align: center; }
.mission-card .service-icon { margin: 0 auto 20px; width: 64px; height: 64px; }
.mission-card .service-icon i { font-size: 24px; }
.mission-card h3 { font-size: 21px; margin-bottom: 12px; }
.mission-card p { font-size: 15px; color: var(--muted); }
.prose h2 { font-size: 28px; margin-bottom: 18px; }
.prose h3 { font-size: 20px; margin: 30px 0 12px; }
.prose p { margin-bottom: 16px; font-size: 15.5px; }
.prose ul { margin: 0 0 16px; }
.prose ul li { position: relative; padding-left: 22px; margin-bottom: 10px; font-size: 15px; color: var(--muted); }
.prose ul li::before { content: ""; position: absolute; left: 0; top: 9px; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }
.legal-doc { max-width: 820px; margin: 0 auto; }
.legal-doc .updated { font-size: 13px; color: var(--muted); margin-bottom: 30px; font-style: italic; }

.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 20px; }
.value-card { background: var(--bg-light); border-radius: var(--radius-md); padding: 26px 22px; text-align: center; }
.value-card .service-icon { margin: 0 auto 16px; }
.value-card h4 { font-size: 15.5px; margin-bottom: 8px; }
.value-card p { font-size: 13.5px; }

/* ---------- Contact page ---------- */
.contact-layout { display: grid; grid-template-columns: 1fr 1.15fr; gap: 50px; align-items: start; }
.contact-info-card { background: var(--bg-light); border-radius: var(--radius-lg); padding: 34px 30px; }
.contact-info-card h3 { font-size: 20px; margin-bottom: 20px; }
.contact-info-row { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
.contact-info-row .icon-badge { width: 44px; height: 44px; border-radius: 12px; background: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: var(--shadow-card); }
.contact-info-row .icon-badge i { color: var(--orange-dark); }
.contact-info-row strong { display: block; font-family: 'Poppins', sans-serif; font-size: 14.5px; color: var(--charcoal); margin-bottom: 3px; }
.contact-info-row span, .contact-info-row a { font-size: 14px; }
.map-embed { margin-top: 26px; border-radius: var(--radius-md); aspect-ratio: 16/10; overflow: hidden; box-shadow: var(--shadow-soft); }
.map-embed iframe { display: block; }

.contact-form-card { background: #fff; border: 1px solid var(--grey); border-radius: var(--radius-lg); padding: 38px 34px; box-shadow: var(--shadow-card); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 13.5px; color: var(--charcoal); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 16px; border-radius: 10px; border: 1px solid var(--grey);
  font-family: 'Inter', sans-serif; font-size: 14.5px; color: var(--text); background: var(--bg-light);
  transition: border-color .2s, background .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--orange); background: #fff; outline: none; }
.form-group textarea { resize: vertical; min-height: 120px; }
.field-validation-error, .validation-summary-errors { color: #C0392B; font-size: 12.5px; margin-top: 6px; display: block; }
.validation-summary-errors ul { list-style: disc; padding-left: 18px; }
.alert { border-radius: 12px; padding: 16px 20px; font-size: 14.5px; margin-bottom: 24px; display: flex; align-items: flex-start; gap: 12px; }
.alert-success { background: #EAF7EE; color: #1E7A3D; }
.alert-danger { background: #FCEAE8; color: #C0392B; }
.alert i { margin-top: 2px; }
.consent-line { font-size: 12.5px; color: var(--muted); margin-top: -6px; margin-bottom: 20px; }

/* ---------- Footer ---------- */
footer { background: var(--charcoal-2); color: #a9abb2; padding-top: 70px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand p { color: #8e9096; font-size: 13.5px; margin: 16px 0 20px; }
.footer-social { display: flex; gap: 10px; }
footer h5 { font-family: 'Poppins', sans-serif; color: #fff; font-size: 14.5px; margin-bottom: 18px; letter-spacing: 0.3px; }
footer ul li { margin-bottom: 11px; font-size: 13.8px; }
footer ul li a:hover { color: var(--orange-light); }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; }
.footer-contact i { color: var(--orange); margin-top: 3px; }
.footer-bottom { padding: 26px 0; display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; color: #75777d; flex-wrap: wrap; gap: 12px; }
.footer-bottom a { color: #a9abb2; }
.ncr-footer-badge { color: #fff; font-weight: 700; display: flex; align-items: center; gap: 6px; }
.ncr-footer-badge i { color: var(--orange); }
.popia-strip { background: var(--charcoal); border-top: 1px solid rgba(255,138,61,0.25); padding: 14px 0; }
.popia-strip .container { display: flex; gap: 12px; align-items: flex-start; font-size: 12.5px; color: #9a9ca3; }
.popia-strip i { color: var(--orange); margin-top: 2px; }
.popia-strip a { color: var(--orange-light); text-decoration: underline; }

/* ---------- 404 / Error pages ---------- */
.error-page { padding: 140px 0; text-align: center; background: var(--bg-light); }
.error-page .error-code { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 96px; color: var(--orange); line-height: 1; }
.error-page h1 { font-size: 28px; margin: 16px 0 12px; }
.error-page p { max-width: 460px; margin: 0 auto 30px; }

/* ---------- Scroll reveal ---------- */
[data-animate] { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
[data-animate].in { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .service-grid.grid-4 { grid-template-columns: repeat(2, 1fr); }
  .why .container, .content-columns, .contact-layout { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
  .process-step::after { display: none; }
  .faq-section .container { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .mission-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .utility-bar { display: none; }
  .nav-links { position: absolute; top: 78px; left: 0; right: 0; background: #fff; flex-direction: column; align-items: flex-start; padding: 20px 32px; gap: 16px; box-shadow: var(--shadow-soft); display: none; }
  .nav-links.mobile-open { display: flex; }
  .burger { display: block; }
  .trust-bar .container { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .service-grid, .service-grid.grid-4 { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 34px; }
  .page-hero h1 { font-size: 28px; }
  .cta-banner .container { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .error-page .error-code { font-size: 64px; }
}
