/* ==========================================================================
   Zen Corp — Professional Services & Corporate Compliance Stylesheet
   ========================================================================== */

:root {
  --accent: #0f52ba;
  --accent-hover: #0d449b;
  --accent-light: #e8f0fe;
  --accent-text: #ffffff;
  --fg: #131b23;
  --fg-muted: #536270;
  --fg-subtle: #798b9c;
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-alt: #f1f5f9;
  --surface-dark: #0f172a;
  --surface-dark-card: #1e293b;
  --line: #e2e8f0;
  --line-dark: #334155;
  --line-strong: #cbd5e1;
  --success: #059669;
  --success-light: #ecfdf5;
  --maxw: 1120px;
  --maxw-wide: 1240px;
  --maxw-narrow: 760px;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --font-display: 'Chivo', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Asap', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --step-h1: clamp(2.3rem, 4.8vw, 3.4rem);
  --step-h2: clamp(1.6rem, 3.2vw, 2.2rem);
  --step-h3: clamp(1.15rem, 1.8vw, 1.35rem);
  --step-lead: clamp(1.05rem, 1.5vw, 1.22rem);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(15,23,42,0.06), 0 1px 3px rgba(15,23,42,0.04);
  --shadow-lg: 0 12px 32px rgba(15,23,42,0.08), 0 2px 6px rgba(15,23,42,0.04);
  --motion-fast: 0.16s ease;
  --space-section: clamp(48px, 6vw, 84px);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: var(--fg);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.wrap-wide {
  max-width: var(--maxw-wide);
}

.wrap-narrow {
  max-width: var(--maxw-narrow);
}

section {
  padding: var(--space-section) 0;
  position: relative;
}

/* Typography */
h1, h2, h3, h4 {
  margin: 0 0 0.45em;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.18;
  color: var(--fg);
  text-wrap: balance;
}

h1 {
  font-size: var(--step-h1);
  letter-spacing: -0.025em;
}

h2 {
  font-size: var(--step-h2);
  letter-spacing: -0.02em;
}

h3 {
  font-size: var(--step-h3);
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1em;
}

.lead {
  font-size: var(--step-lead);
  color: var(--fg-muted);
  line-height: 1.55;
  text-wrap: pretty;
}

.muted {
  color: var(--fg-muted);
}

.center {
  text-align: center;
}

/* Skip link */
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  background: var(--surface-dark);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  transform: translateY(-180%);
  transition: transform var(--motion-fast);
  text-decoration: none;
  font-weight: 600;
}

.skip-link:focus {
  transform: translateY(0);
}

/* Interactive Elements */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: var(--accent-text);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  min-height: 46px;
  line-height: 1.2;
  transition: all var(--motion-fast);
  box-shadow: var(--shadow-sm);
}

.btn:hover {
  background: var(--accent-hover);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(0);
}

.btn-secondary {
  background: var(--surface);
  color: var(--fg);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--surface-alt);
  color: var(--accent);
  border-color: var(--accent);
}

.btn-whatsapp {
  background: #075e54;
  color: #ffffff;
  border: 1px solid transparent;
}

.btn-whatsapp:hover {
  background: #128c7e;
  color: #ffffff;
}

.btn-white {
  background: #ffffff;
  color: var(--accent);
  border: 1px solid transparent;
}

.btn-white:hover {
  background: #f8fafc;
  color: var(--accent-hover);
}

.btn-outline-white {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.4);
}

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

.btn-sm {
  padding: 8px 16px;
  font-size: 0.88rem;
  min-height: 38px;
}

.ic {
  flex-shrink: 0;
  vertical-align: -0.15em;
}

/* Badges & Trust Tags */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent-light);
  color: var(--accent);
}

.tag-success {
  background: var(--success-light);
  color: var(--success);
}

.tag-outline {
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--fg-muted);
}

/* Grid & Cards */
.grid {
  display: grid;
  gap: 20px;
}

.g2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.g3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.g4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--motion-fast), box-shadow var(--motion-fast);
}

.card:hover {
  border-color: color-mix(in srgb, var(--accent) 35%, var(--line));
  box-shadow: var(--shadow-md);
}

.card-highlight {
  border-color: var(--accent);
  background: linear-gradient(180deg, #ffffff, var(--accent-light) 140%);
}

.card-dark {
  background: var(--surface-dark-card);
  border-color: var(--line-dark);
  color: #f8fafc;
}

.card-dark h3, .card-dark h2, .card-dark strong {
  color: #ffffff;
}

.card-dark .muted {
  color: #94a3b8;
}

/* Media Cards & Images */
.media-feature-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  margin-bottom: 16px;
  display: block;
}

.media-split-img {
  width: 100%;
  height: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  display: block;
}

/* Header & Navigation (Identical Across All Pages) */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--motion-fast);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 20px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--fg);
}

.brand-logo {
  height: 38px;
  width: auto;
  display: block;
}

.brand-meta {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1.1;
  color: var(--fg);
}

.brand-sub {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--fg-subtle);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  color: var(--fg);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--motion-fast);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-link:hover {
  color: var(--accent);
  background: var(--accent-light);
}

.nav-item-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 300px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  display: none;
  flex-direction: column;
  gap: 2px;
  z-index: 100;
}

.nav-item-dropdown:hover .dropdown-menu,
.nav-item-dropdown:focus-within .dropdown-menu {
  display: flex;
}

.dropdown-link {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--fg);
  transition: background var(--motion-fast);
}

.dropdown-link:hover {
  background: var(--accent-light);
}

.dropdown-link strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--fg);
}

.dropdown-link span {
  display: block;
  font-size: 0.76rem;
  color: var(--fg-muted);
  line-height: 1.3;
  margin-top: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  color: var(--fg);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
}

/* Accreditation Logos Section */
.accreditation-banner {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}

.accreditation-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.accreditation-title {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-subtle);
  max-width: 220px;
  line-height: 1.3;
}

.accreditation-logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.accreditation-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--motion-fast);
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}

.accreditation-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.accreditation-card img {
  height: 44px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  display: block;
}

/* Hero Base */
.page-hero {
  padding: clamp(56px, 7vw, 96px) 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.hero-content h1 {
  margin-bottom: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.hero-trust-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--fg-muted);
}

.trust-item svg {
  color: var(--accent);
}

/* Trust Metric Highlights */
.metrics-strip {
  background: var(--surface-dark);
  color: #ffffff;
  padding: 36px 0;
}

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

.metric-card {
  border-left: 2px solid var(--accent);
  padding-left: 18px;
}

.metric-value {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

.metric-label {
  font-size: 0.84rem;
  color: #94a3b8;
  margin-top: 4px;
  line-height: 1.35;
}

/* Section Header */
.section-header {
  margin-bottom: clamp(32px, 4vw, 52px);
}

.section-header.center {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

/* Process Roadmap */
.roadmap-line {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  position: relative;
}

.roadmap-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
}

.roadmap-badge-stage {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.roadmap-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 14px;
}

.roadmap-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

/* Service Deliverable Matrix / Checklist */
.deliverable-matrix {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}

.matrix-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 20px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.matrix-row:last-child {
  border-bottom: 0;
}

.matrix-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: 8px;
}

.matrix-desc {
  font-size: 0.92rem;
  color: var(--fg-muted);
  margin: 0;
}

/* Case Study / Testimonials */
.case-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.case-quote {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--fg);
  font-style: italic;
  margin-bottom: 20px;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
}

.author-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--fg);
}

.author-role {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

.case-metric-tag {
  display: inline-block;
  background: var(--success-light);
  color: var(--success);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

/* Practice Profile Cards */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.team-badge {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: var(--accent);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.team-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
}

.team-bio {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.5;
  margin: 0;
}

.team-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

/* FAQs */
.faq-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}

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

details.faq-item:last-child {
  border-bottom: 0;
}

details.faq-item summary {
  padding: 20px 24px;
  font-weight: 700;
  font-size: 1.02rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--fg);
  transition: background var(--motion-fast);
}

details.faq-item summary::-webkit-details-marker {
  display: none;
}

details.faq-item summary:hover {
  background: var(--surface-alt);
}

details.faq-item summary svg {
  transition: transform var(--motion-fast);
}

details.faq-item[open] summary svg {
  transform: rotate(180deg);
}

details.faq-item .faq-body {
  padding: 0 24px 22px;
  color: var(--fg-muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

details.faq-item .faq-body p:last-child {
  margin-bottom: 0;
}

/* Forms & Capture */
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-md);
}

form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field-wide, form > .btn, form .form-consent, form > p:last-of-type {
  grid-column: 1 / -1;
}

form label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: 0.01em;
}

form input, form select, form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  color: var(--fg);
  min-height: 46px;
  transition: border-color var(--motion-fast), box-shadow var(--motion-fast);
}

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

form input:focus, form select:focus, form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(15, 82, 186, 0.15);
  outline: none;
}

form input.field-error, form select.field-error, form textarea.field-error {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.18) !important;
}

.service-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  margin-top: 4px;
}

.service-checkbox-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-alt);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--fg);
  transition: all var(--motion-fast);
  margin: 0;
  user-select: none;
}

.service-checkbox-pill:hover {
  border-color: var(--accent);
  background: #f0f7ff;
}

.service-checkbox-pill input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 0;
  accent-color: var(--accent);
  cursor: pointer;
}

.service-checkbox-pill:has(input:checked) {
  background: var(--accent-light);
  border-color: var(--accent);
  color: var(--accent-strong);
}

.hero-visual-wrapper {
  margin-top: clamp(32px, 5vw, 56px);
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}

.hero-visual-img {
  width: 100%;
  height: auto;
  max-height: 540px;
  object-fit: cover;
  display: block;
}

.hero-visual-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.hero-visual-badge strong {
  display: block;
  font-size: 0.95rem;
  color: #ffffff;
}

.hero-visual-badge span {
  display: block;
  font-size: 0.78rem;
  color: #94a3b8;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.4;
  margin: 4px 0 12px;
}

.form-consent input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  accent-color: var(--accent);
  margin-top: 2px;
}

.form-status {
  grid-column: 1 / -1;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
}

.form-status:empty {
  display: none;
}

/* Call to Action Band */
.cta-band {
  background: var(--surface-dark);
  color: #ffffff;
  padding: clamp(56px, 7vw, 88px) 0;
  position: relative;
  overflow: hidden;
}

.cta-band h2, .cta-band p {
  color: #ffffff;
}

.cta-band .lead {
  color: #cbd5e1;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Modern Statement Footer */
.site-footer {
  background: #0b1120;
  color: #94a3b8;
  padding: clamp(56px, 7vw, 84px) 0 28px;
  border-top: 1px solid #1e293b;
  font-size: 0.92rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: 48px;
  border-bottom: 1px solid #1e293b;
}

.footer-statement h3 {
  color: #ffffff;
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.footer-statement p {
  line-height: 1.6;
  max-width: 34ch;
  color: #94a3b8;
}

.footer-col-title {
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color var(--motion-fast);
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: #cbd5e1;
}

.footer-contact-list a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color var(--motion-fast);
}

.footer-contact-list a:hover {
  color: #ffffff;
}

.footer-reg-box {
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: var(--radius);
  padding: 18px 24px;
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-reg-box p {
  margin: 0;
  font-size: 0.84rem;
  color: #cbd5e1;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  font-size: 0.82rem;
  color: #64748b;
}

/* WhatsApp Floating Button */
.wa-fab {
  position: fixed;
  right: 20px;
  bottom: calc(20px + env(safe-area-inset-bottom));
  z-index: 99;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #075e54;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  transition: all var(--motion-fast);
}

.wa-fab:hover {
  background: #128c7e;
  transform: translateY(-2px);
  color: #ffffff;
}

/* Service Matrix */
.service-matrix-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-pillar-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--motion-fast);
}

.service-pillar-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

/* Contact Studio Layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.contact-direct-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 24px;
}

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

.contact-method:last-child {
  margin-bottom: 0;
}

.method-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.method-details h4 {
  margin: 0 0 2px;
  font-size: 0.95rem;
}

.method-details p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--fg-muted);
}

.method-details a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

/* Responsive Media Queries */
@media (max-width: 980px) {
  .hero-grid, .contact-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .cta-inner > div:last-child {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
  }

  .service-matrix-grid, .g3, .g4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }

  .mobile-toggle {
    display: inline-flex;
    align-items: center;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    padding: 16px 24px;
    align-items: stretch;
    gap: 8px;
  }

  .main-nav.open {
    display: flex;
  }

  .nav-item-dropdown:hover .dropdown-menu {
    display: none;
  }

  .nav-item-dropdown.mobile-open .dropdown-menu {
    display: flex;
    position: static;
    width: 100%;
    box-shadow: none;
    border: 1px solid var(--line);
    margin-top: 6px;
  }
}

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

  .service-matrix-grid, .g2, .g3, .g4, .metrics-grid, form, .footer-top {
    grid-template-columns: 1fr;
  }

  .field-wide, form > .btn {
    grid-column: auto;
  }

  .matrix-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .accreditation-inner {
    flex-direction: column;
    text-align: center;
  }

  .accreditation-title {
    max-width: 100%;
  }

  .accreditation-logos-row {
    justify-content: center;
    gap: 12px;
  }

  .accreditation-card {
    padding: 10px 14px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .hero-visual-badge {
    position: static;
    margin: 12px;
    border-radius: var(--radius-sm);
  }

  .cta-inner > div:last-child .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .service-checkbox-grid {
    grid-template-columns: 1fr;
  }

  .cf-turnstile {
    max-width: 100%;
    overflow-x: auto;
  }

  .footer-reg-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .wa-fab span {
    display: none;
  }

  .wa-fab {
    padding: 14px;
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 380px) {
  .wrap {
    padding: 0 12px;
  }

  .brand-meta {
    display: none;
  }

  .header-actions .btn-sm {
    padding: 6px 10px;
    font-size: 0.8rem;
  }

  .site-header {
    padding: 8px 0;
  }

  .hero-actions .btn, .cta-inner .btn {
    font-size: 0.88rem;
    padding: 10px 16px;
  }
}

/* Print Styles */
@media print {
  body { background: #ffffff !important; color: #000000 !important; }
  .site-header, .wa-fab, .btn, .cta-band { display: none !important; }
  section { padding: 12mm 0 !important; }
  .card { border: 1px solid #cccccc !important; box-shadow: none !important; }
}
