/* ============================================================
   Go2Comply — Professional Redesign
   Design direction: Deep navy authority + gold accent, 
   clean serif display, premium legal/compliance feel
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  /* Core palette */
  --navy:       #0d1b2a;
  --navy-mid:   #16293d;
  --navy-light: #1e3a52;
  --gold:       #c8962a;
  --gold-light: #e8b84b;
  --gold-pale:  #fdf6e3;
  --cream:      #fafaf7;
  --white:      #ffffff;
  --ink:        #0d1b2a;
  --muted:      #5a6a7a;
  --line:       #e4e8ed;
  --soft:       #f3f6f9;
  --green:      #12684a;
  --green-dark: #0b4e38;
  --blue:       #1d5c8f;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', ui-sans-serif, system-ui, sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(13,27,42,0.08);
  --shadow:    0 8px 32px rgba(13,27,42,0.12);
  --shadow-lg: 0 20px 60px rgba(13,27,42,0.18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

h1, h2, h3, p { overflow-wrap: anywhere; }

/* ---- Typography ---- */
h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  max-width: 820px;
  margin: 0;
  color: var(--navy);
}

h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--navy);
}

h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 8px;
  color: var(--navy);
}

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(18px, 5vw, 72px);
  height: 68px;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
}

.brand-text {
  display: grid;
  gap: 2px;
  line-height: 1.1;
}

.brand-tagline {
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.9rem;
  font-weight: 600;
}

.site-nav a {
  padding: 8px 14px;
  border-radius: 8px;
  color: var(--muted);
  transition: color 0.18s, background 0.18s;
}

.site-nav a:hover {
  color: var(--navy);
  background: var(--soft);
}

.nav-cta {
  padding: 10px 20px !important;
  border-radius: 8px;
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%) !important;
  font-weight: 700;
  transition: opacity 0.18s !important;
}

.nav-cta:hover {
  opacity: 0.88;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%) !important;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  border-radius: 2px;
}

/* ---- Hero ---- */
.hero {
  display: grid;
  grid-template-columns: minmax(0,1.04fr) minmax(320px,0.96fr);
  gap: clamp(28px,5vw,70px);
  align-items: center;
  padding: clamp(56px,8vw,100px) clamp(18px,5vw,72px) 52px;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(200,150,42,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(30,58,82,0.6) 0%, transparent 60%);
  pointer-events: none;
}

.hero-solo {
  grid-template-columns: minmax(0, 880px);
  padding-bottom: 38px;
}

/* ---- Two-column homepage hero ---- */
.hero-main {
  grid-template-columns: 1fr minmax(280px, 0.65fr);
  align-items: center;
  padding-bottom: 60px;
  min-height: 600px;
}

.hero-image-panel {
  position: relative;
  min-height: 460px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.1);
  background: var(--navy-light);
}

.hero-image-panel img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(0.92) saturate(1.05);
}

.hero-image-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(13,27,42,0.55) 75%, rgba(13,27,42,0.85) 100%);
  pointer-events: none;
}

.hero-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(13,27,42,0.82);
  border: 1px solid rgba(200,150,42,0.45);
  border-radius: 12px;
  backdrop-filter: blur(14px);
  color: var(--white);
  max-width: 260px;
}

.hero-badge-icon {
  font-size: 1.1rem;
  color: var(--gold-light);
  flex-shrink: 0;
  line-height: 1;
}

.hero-badge strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.2;
}

.hero-badge span {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
  margin-top: 2px;
  line-height: 1.3;
}

.hero-float-card {
  position: absolute;
  bottom: 22px;
  left: 20px;
  right: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(13,27,42,0.88);
  border: 1px solid rgba(200,150,42,0.3);
  border-radius: 12px;
  backdrop-filter: blur(14px);
  color: var(--white);
}

.hero-float-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.25);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.25); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0.12); }
}

.hero-float-card strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.hero-float-card span {
  display: block;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.65);
  margin-top: 2px;
}

.hero-copy { position: relative; z-index: 1; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
}

.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}

.hero h1 {
  color: var(--white);
}

.hero h1 em {
  font-style: normal;
  color: var(--gold-light);
}

.hero-text {
  max-width: 620px;
  margin: 20px 0 0;
  color: rgba(255,255,255,0.72);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.65;
}

.hero-actions, .trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 32px;
}

/* ---- Buttons ---- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 24px;
  border: 0;
  border-radius: 10px;
  font: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
}

.button:hover { transform: translateY(-1px); }

.primary {
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  box-shadow: 0 4px 18px rgba(200,150,42,0.35);
}

.primary:hover {
  box-shadow: 0 8px 28px rgba(200,150,42,0.45);
}

.secondary {
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}

.secondary:hover {
  background: rgba(255,255,255,0.18);
}

.trust-row {
  margin-top: 28px;
  gap: 10px;
}

.trust-row span {
  padding: 7px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

/* ---- Hero Panel ---- */
.hero-panel {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  background: var(--navy-light);
  z-index: 1;
}

.hero-panel img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.status-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: min(330px, calc(100% - 36px));
  padding: 18px 20px;
  border: 1px solid rgba(200,150,42,0.3);
  border-radius: 12px;
  color: var(--white);
  background: rgba(13,27,42,0.88);
  backdrop-filter: blur(14px);
}

.status-card strong, .status-card span { display: block; }
.status-card strong { color: var(--gold-light); font-size: 0.95rem; }
.status-card span { margin-top: 5px; opacity: 0.8; font-size: 0.85rem; }

/* ---- Metrics bar ---- */
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0 clamp(18px, 5vw, 72px);
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--line);
  box-shadow: var(--shadow-sm);
}

.metrics div {
  padding: 28px 24px;
  background: var(--white);
  text-align: center;
}

.metrics strong {
  display: block;
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.1;
}

.metrics span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
}

/* ---- Sections ---- */
.metrics,
.section,
.process,
.compliance-preview,
.trust-section,
.contact-section,
.faq {
  padding-inline: clamp(18px, 5vw, 72px);
}

.section,
.process,
.trust-section,
.faq {
  padding-top: clamp(64px, 8vw, 100px);
}

.compliance-preview {
  padding-top: clamp(40px, 6vw, 72px);
}

.compliance-preview .hero-panel {
  max-width: 980px;
  border: 1px solid var(--line);
}

/* ---- Section headings ---- */
.section-heading { max-width: 760px; margin-bottom: 32px; }

.center-heading {
  max-width: none;
  text-align: center;
}

.center-heading .eyebrow {
  justify-content: center;
  color: var(--gold);
  font-size: 0.75rem;
}

.center-heading .eyebrow::before {
  background: var(--gold);
}

.center-heading h2 {
  max-width: 680px;
  margin: 14px auto 0;
}

/* ---- Service grid ---- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(200,150,42,0.3);
}

.service-photo {
  position: relative;
  overflow: hidden;
  margin: 0 0 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--soft);
  aspect-ratio: 1.38;
}

.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-photo span {
  position: absolute;
  left: 18%;
  right: 18%;
  top: 51%;
  transform: translateY(-50%);
  color: var(--navy);
  font-size: clamp(0.78rem, 1.1vw, 1rem);
  font-weight: 800;
  line-height: 1.12;
  text-align: center;
}

.service-card p,
.steps p,
.pricing p,
.pricing li,
.contact-section p,
details p,
.site-footer p {
  color: var(--muted);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 38px;
  margin-bottom: 16px;
  border-radius: 8px;
  color: var(--gold);
  background: var(--gold-pale);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  border: 1px solid rgba(200,150,42,0.2);
}

.service-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 36px;
  margin-top: auto;
  padding-top: 16px;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--navy);
  background: transparent;
  border: 1.5px solid var(--navy);
  font-size: 0.88rem;
  font-weight: 700;
  transition: background 0.18s, color 0.18s;
  margin-top: auto;
}

.service-link:hover {
  background: var(--navy);
  color: var(--white);
}

/* ---- Process ---- */
.process {
  padding-bottom: clamp(48px, 6vw, 80px);
  background: var(--navy);
  padding-top: clamp(64px, 8vw, 100px);
  margin-top: clamp(64px, 8vw, 100px);
}

.process .section-heading .eyebrow {
  color: var(--gold-light);
}

.process .section-heading .eyebrow::before {
  background: var(--gold);
}

.process .section-heading h2 {
  color: var(--white);
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: process;
}

.process-flow article {
  position: relative;
  min-height: 210px;
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  transition: background 0.2s, border-color 0.2s;
}

.process-flow article:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(200,150,42,0.3);
}

.process-flow article:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -18px;
  transform: translateY(-50%);
  z-index: 2;
  font-size: 1.2rem;
  color: var(--gold);
}

.process-flow strong {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 10px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
}

.process-flow h3 { color: var(--white); }
.process-flow p { color: rgba(255,255,255,0.62); }

.mini-flow { grid-template-columns: repeat(5, 1fr); }
.mini-flow article { min-height: 190px; }

/* ---- Trust / Testimonials ---- */
.trust-section {
  padding-bottom: clamp(64px, 8vw, 100px);
  background: var(--cream);
}

.trust-section .metrics {
  margin: 0 0 36px;
}

.testimonial-grid, .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 24px;
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--gold-light);
  opacity: 0.5;
}

.testimonial-card p {
  margin-top: 20px;
  color: var(--ink);
  font-size: 0.97rem;
  line-height: 1.7;
}

.testimonial-card strong {
  display: block;
  margin-top: 18px;
  color: var(--navy);
  font-weight: 700;
}

.testimonial-card span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.85rem;
}

/* ---- Blog ---- */
.blog-section {
  padding-bottom: clamp(64px, 8vw, 100px);
  background: var(--soft);
}

.blog-grid article {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.blog-grid article:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.blog-grid span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--gold-pale);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 1px solid rgba(200,150,42,0.2);
}

.blog-grid p { color: var(--muted); }

.blog-grid a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 1px;
  transition: color 0.18s;
}

.blog-grid a:hover { color: var(--gold); }

/* ---- Pricing ---- */
.pricing {
  padding-bottom: clamp(64px, 8vw, 100px);
  background: var(--cream);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pricing-grid article {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 30px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-grid article:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.pricing-grid .featured {
  border-color: var(--navy);
  border-width: 2px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.pricing-grid .featured h3 { color: var(--white); }
.pricing-grid .featured p,
.pricing-grid .featured li { color: rgba(255,255,255,0.65) !important; }
.pricing-grid .featured a {
  color: var(--gold-light) !important;
  border-bottom-color: var(--gold) !important;
}

.pricing ul {
  padding-left: 20px;
  margin: 16px 0;
}

.pricing li { color: var(--muted); margin-bottom: 6px; font-size: 0.95rem; }

.pricing a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  color: var(--navy);
  font-weight: 700;
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 1px;
  font-size: 0.95rem;
  transition: color 0.18s;
}

.pricing a:hover { color: var(--gold); }

/* ---- Contact ---- */
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 48px;
  padding-top: clamp(64px, 8vw, 100px);
  padding-bottom: clamp(64px, 8vw, 100px);
  background: var(--navy);
  color: var(--white);
}

.contact-section .eyebrow {
  color: var(--gold-light);
}

.contact-section .eyebrow::before {
  background: var(--gold);
}

.contact-section h2 { color: var(--white); }

.contact-section > div > p {
  color: rgba(255,255,255,0.65);
  margin-top: 16px;
  font-size: 1rem;
  line-height: 1.7;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-lg);
}

label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}

input, select, textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--soft);
  transition: border-color 0.18s, box-shadow 0.18s;
  outline: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(13,27,42,0.08);
  background: var(--white);
}

textarea { resize: vertical; }

.contact-form .button {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(13,27,42,0.25);
}

.contact-form .button:hover {
  box-shadow: 0 8px 24px rgba(13,27,42,0.35);
}

.form-note { min-height: 24px; margin: 0; font-size: 0.88rem; color: var(--muted); }

/* ---- FAQ ---- */
.faq {
  padding-bottom: clamp(64px, 8vw, 100px);
  background: var(--soft);
}

details {
  max-width: 880px;
  margin-bottom: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  overflow: hidden;
  transition: border-color 0.18s;
}

details[open] {
  border-color: rgba(13,27,42,0.2);
  box-shadow: var(--shadow-sm);
}

summary {
  cursor: pointer;
  font-weight: 700;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.97rem;
  list-style: none;
  color: var(--navy);
}

summary::-webkit-details-marker { display: none; }

summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--muted);
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform 0.2s;
}

details[open] summary::after {
  content: '−';
}

details p {
  padding: 0 22px 20px;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

/* ---- Footer ---- */
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 32px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--white);
}

.site-footer strong { color: var(--navy); font-weight: 800; }
.site-footer p { margin: 4px 0 0; color: var(--muted); font-size: 0.88rem; }

.site-footer a {
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 1px;
}

/* ---- Floating actions ---- */
.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.whatsapp-float, .enquiry-float {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(13,27,42,0.25);
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.18s, box-shadow 0.18s;
}

.whatsapp-float:hover, .enquiry-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(13,27,42,0.32);
}

.whatsapp-float { background: linear-gradient(135deg, #25d366, #128c4a); }
.enquiry-float { background: linear-gradient(135deg, var(--navy), var(--navy-light)); }

/* ---- Service pages ---- */
.service-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  padding: clamp(46px, 7vw, 86px) clamp(18px, 5vw, 72px);
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy-light) 100%);
}

.service-hero h1 { color: var(--white); }
.service-hero .hero-text { color: rgba(255,255,255,0.7); }

.business-registration-hero {
  grid-template-columns: minmax(0, 940px);
  justify-content: center;
  text-align: center;
  padding-top: clamp(38px, 6vw, 72px);
  padding-bottom: clamp(22px, 4vw, 40px);
}

.business-registration-hero .hero-text,
.business-registration-hero .service-intro { margin-inline: auto; }

.business-registration-hero .hero-actions,
.business-registration-hero .button { justify-self: center; }

.service-intro {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.service-hero .button { margin-top: 24px; }

.service-summary {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-summary ul, .detail-card ul {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

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

.detail-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.registration-option-grid, .advantage-grid {
  display: grid;
  gap: 14px;
}

.registration-option-grid { grid-template-columns: repeat(2, 1fr); }
.advantage-grid { grid-template-columns: repeat(3, 1fr); }

.registration-option-grid a, .advantage-grid div {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-height: 76px;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  text-align: center;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
}

.registration-option-grid a span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
}

.registration-option-grid a:hover {
  border-color: rgba(200,150,42,0.4);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.registration-detail-hero h1 { font-size: clamp(2.2rem, 5vw, 4.8rem); }

.registration-page .registration-detail-hero { grid-template-columns: minmax(0, 1fr); text-align: center; }
.registration-page .registration-detail-hero .hero-text { margin-inline: auto; }
.registration-page .registration-detail-hero .hero-actions { justify-content: center; }
.registration-page .service-summary { max-width: 720px; margin: 0 auto; text-align: left; }
.registration-page .detail-card h3 { text-align: center; }

.package-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
  gap: 22px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid rgba(13,27,42,0.15);
  border-radius: 16px;
  padding: clamp(24px, 4vw, 40px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.package-card span { color: var(--gold); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.package-card h3 { margin-top: 8px; font-size: clamp(1.45rem, 2.5vw, 2.3rem); font-family: var(--font-display); }
.package-card strong { display: block; margin-top: 12px; color: var(--navy); font-size: clamp(1.65rem, 3vw, 2.8rem); line-height: 1.05; font-family: var(--font-display); }
.package-card p, .package-card li { color: var(--muted); }
.package-card ul { margin: 0; padding: 20px 20px 20px 38px; border-radius: 10px; background: var(--soft); }
.package-card .button { grid-column: 1 / -1; width: fit-content; justify-self: center; }

.detail-section, .package-section, .advantages-section, .reviews-section {
  padding-top: clamp(38px, 6vw, 70px);
}

.advantage-grid div {
  justify-content: center;
  min-height: 92px;
  text-align: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border: none;
}

.service-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: clamp(50px, 7vw, 80px) clamp(18px, 5vw, 72px);
  padding: 32px 36px;
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  box-shadow: var(--shadow-lg);
}

.service-contact h2 { color: var(--white); font-size: clamp(1.3rem, 2.2vw, 1.8rem); margin: 0; }
.service-contact p { margin: 6px 0 0; color: rgba(255,255,255,0.7); }

/* ---- Responsive ---- */
@media (max-width: 1060px) {
  .service-grid, .process-flow, .testimonial-grid, .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-flow article:not(:last-child)::after { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-main { grid-template-columns: 1fr; }
  .hero-image-panel { min-height: 360px; order: -1; }
  .hero-image-panel img { min-height: 360px; }
  .service-hero, .detail-grid, .package-card, .advantage-grid {
    grid-template-columns: 1fr;
  }
  .hero-panel { min-height: 360px; }
  .hero-panel img { min-height: 360px; }
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }

  .site-nav {
    position: absolute;
    inset: 69px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
  }

  .site-nav.open { display: flex; }
  .site-nav a { padding: 13px 14px; color: var(--navy); }
  .nav-cta { text-align: center; background: var(--navy) !important; color: var(--white) !important; border-radius: 10px; margin-top: 6px; }

  .hero { padding-top: 40px; }
  .hero-actions .button { width: 100%; }

  .metrics, .pricing-grid, .contact-section { grid-template-columns: 1fr; }
  .metrics { margin-inline: 18px; }

  .service-grid, .process-flow, .testimonial-grid, .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer { align-items: flex-start; flex-direction: column; }
  .service-contact { align-items: stretch; flex-direction: column; padding: 24px 20px; }

  .floating-actions { left: 18px; right: 18px; }
  .service-contact .button, .whatsapp-float, .enquiry-float { width: calc(100% - 36px); }
  .whatsapp-float, .enquiry-float { width: 100%; }
}

@media (max-width: 430px) {
  .brand { font-size: 0.92rem; }
  .brand-tagline { font-size: 0.6rem; }
  h1 { font-size: 2.3rem; }
  .service-grid { gap: 10px; }
  .service-card { padding: 14px; }
  .service-card h3 { font-size: 0.95rem; }
  .service-card p { font-size: 0.83rem; line-height: 1.4; }
  .service-link { width: 100%; min-height: 36px; padding: 8px; font-size: 0.83rem; }
  .service-photo { margin-bottom: 12px; }
  .service-photo span { left: 14%; right: 14%; font-size: 0.68rem; }
  .hero-panel, .hero-panel img { min-height: 300px; }
}

/* ---- Centered service hero (all service landing pages) ---- */
.service-hero.registration-detail-hero {
  grid-template-columns: minmax(0, 860px);
  justify-content: center;
  text-align: center;
  padding-top: clamp(52px, 7vw, 88px);
  padding-bottom: clamp(36px, 5vw, 60px);
}

.service-hero.registration-detail-hero .hero-text {
  margin-inline: auto;
}

.service-hero.registration-detail-hero .hero-actions {
  justify-content: center;
}

.service-hero.registration-detail-hero .eyebrow {
  justify-content: center;
}

/* Expert card spacing */
main > div[style*="border-left"] {
  margin-top: -1px;
}

/* Service icon wrap */
.service-icon-wrap { margin-bottom: 14px; }
.svc-cat {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 8px;
}

/* ============================================================
   Go2Comply — Enhanced Components (v2 update)
   ============================================================ */

/* ---- Enhanced Footer ---- */
.enhanced-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 0;
  margin-top: 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 40px;
  padding: clamp(40px,5vw,72px) clamp(18px,5vw,72px) 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  display: block;
  margin-bottom: 10px;
}
.footer-brand p { font-size: 0.85rem; line-height: 1.7; margin:0 0 6px; }
.footer-col h4 {
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin: 0 0 14px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col ul li { margin-bottom: 6px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.62);
  font-size: 0.82rem;
  transition: color 0.18s;
}
.footer-col ul li a:hover, .footer-col ul li a.active-link {
  color: var(--gold-light);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(18px,5vw,72px);
}
.footer-bottom p { margin: 0; font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.back-top {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.18s;
}
.back-top:hover { color: var(--gold-light); }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; gap: 20px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

/* ---- Process Flowchart ---- */
.process-chart-section { background: var(--navy); }
.process-chart-section .eyebrow::before { background: var(--gold); }
.process-chart-section h2 { color: var(--white); }
.process-flow-chart {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 36px;
  overflow-x: auto;
  padding-bottom: 8px;
}
.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  min-width: 130px;
  max-width: 160px;
}
.flow-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(200,150,42,0.35);
  margin-bottom: 14px;
}
.flow-content {
  text-align: center;
  padding: 0 8px;
}
.flow-content h3 {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.flow-content p {
  color: rgba(255,255,255,0.58);
  font-size: 0.78rem;
  line-height: 1.45;
  margin: 0;
}
.flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.4rem;
  padding: 0 6px;
  margin-top: -32px;
  align-self: flex-start;
  padding-top: 14px;
}

@media (max-width: 700px) {
  .process-flow-chart { flex-direction: column; align-items: stretch; gap: 0; }
  .flow-step { flex-direction: row; max-width: 100%; min-width: 0; align-items: flex-start; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .flow-num { margin-bottom: 0; flex-shrink: 0; }
  .flow-content { text-align: left; }
  .flow-arrow { display: none; }
}

/* ---- Deliverables Section ---- */
.deliverables-section { background: var(--gold-pale); }
.deliverables-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 40px;
  max-width: 680px;
  margin: 32px auto 0;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.deliverables-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
}
.deliverables-list li {
  color: var(--navy);
  font-size: 0.93rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.deliverables-list li::before { content: none; }

@media (max-width: 560px) {
  .deliverables-list { grid-template-columns: 1fr; }
  .deliverables-card { padding: 24px 20px; }
}

/* ---- AI Agent Chat Widget ---- */
.ai-agent-section { background: var(--soft); }
.ai-chat-widget {
  max-width: 680px;
  margin: 32px auto 0;
  background: var(--white);
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.ai-chat-messages {
  padding: 24px 20px 16px;
  max-height: 380px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--soft);
}
.ai-msg {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.ai-msg-user {
  flex-direction: row-reverse;
}
.ai-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--gold-light);
  font-weight: 800;
  font-size: 0.85rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.ai-bubble {
  background: var(--white);
  border-radius: 14px 14px 14px 4px;
  padding: 12px 16px;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--ink);
  max-width: 80%;
  box-shadow: var(--shadow-sm);
}
.ai-bubble-user {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  border-radius: 14px 14px 4px 14px;
}
.ai-quick-questions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 20px 0;
}
.ai-quick-btn {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 7px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.ai-quick-btn:hover {
  background: var(--gold-pale);
  color: var(--gold);
  border-color: var(--gold);
}
.ai-chat-input-row {
  display: flex;
  gap: 10px;
  padding: 14px 20px;
  border-top: 1px solid var(--line);
  background: var(--white);
}
.ai-chat-input {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--soft);
  outline: none;
  transition: border-color 0.18s;
}
.ai-chat-input:focus { border-color: var(--gold); background: var(--white); }
.ai-send-btn {
  padding: 10px 22px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-weight: 700;
  font-size: 0.88rem;
  border: none;
  cursor: pointer;
  transition: opacity 0.18s;
  white-space: nowrap;
}
.ai-send-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.ai-send-btn:hover:not(:disabled) { opacity: 0.88; }
.ai-disclaimer {
  padding: 0 20px 14px;
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0;
}
.dots span {
  animation: blink 1.2s infinite;
  font-size: 1.4rem;
  line-height: 1;
}
.dots span:nth-child(2) { animation-delay: 0.2s; }
.dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes blink { 0%,80%,100% { opacity: 0; } 40% { opacity: 1; } }

/* ---- YouTube Button ---- */
.youtube-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ff0000 !important;
  color: #fff !important;
  border-color: #ff0000 !important;
  margin-top: 12px !important;
}
.youtube-btn:hover { background: #cc0000 !important; }

/* ---- Package section heading fix ---- */
.package-section .section-heading h2 {
  text-align: center;
}

/* ---- H1 always centered on service pages ---- */
.registration-detail-hero h1 {
  margin-inline: auto;
  text-align: center;
}

/* ============================================================
   Go2Comply v2.1 — Layout Fixes
   ============================================================ */

/* ---- H1 HEADING FIX: Force center on all service pages ---- */
.service-hero.registration-detail-hero h1 {
  text-align: center;
  margin-inline: auto;
  width: 100%;
}

.service-hero.registration-detail-hero > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* ---- DELIVERABLES: Parallel grid boxes ---- */
.deliverables-section {
  background: var(--gold-pale);
}
.deliverables-section .section-heading h2 {
  text-align: center;
  margin-inline: auto;
}
.deliverables-card {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  max-width: 860px;
  margin: 32px auto 0;
}
.deliverables-list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)) !important;
  gap: 16px !important;
}
.deliverables-list li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  display: flex !important;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 8px rgba(13,27,42,0.06);
  transition: transform 0.18s, box-shadow 0.18s;
  line-height: 1.4;
}
.deliverables-list li:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13,27,42,0.12);
}
/* The ✓ check is already in the text, style it gold */
.deliverables-list li {
  border-left: 3px solid var(--gold);
}

/* ---- PROCESS FLOWCHART: Proper horizontal connected boxes ---- */
.process-chart-section {
  background: var(--navy);
  overflow: hidden;
}
.process-chart-section .section-heading h2 {
  color: var(--white);
  text-align: center;
}
.process-flow-chart {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  justify-content: center !important;
  gap: 0 !important;
  margin: 36px auto 0;
  max-width: 1100px;
  padding: 0 clamp(18px, 4vw, 60px) 8px;
  overflow-x: auto;
}

/* Each step is a box + arrow connector */
.flow-step {
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch !important;
  min-width: 0;
  flex: 1;
}

/* The actual content box */
.flow-content-box {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  flex: 1;
  min-width: 110px;
  transition: background 0.2s;
}
.flow-content-box:hover {
  background: rgba(200,150,42,0.12);
  border-color: var(--gold);
}

/* Arrow connector between boxes */
.flow-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  flex-shrink: 0;
}
.flow-connector-arrow {
  color: var(--gold);
  font-size: 1.3rem;
  line-height: 1;
}

/* Step number badge */
.flow-num {
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: var(--navy) !important;
  font-weight: 800 !important;
  font-size: 0.95rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  box-shadow: 0 3px 10px rgba(200,150,42,0.4) !important;
  margin-bottom: 0 !important;
}

/* Step title */
.flow-content h3 {
  color: var(--white) !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  margin: 4px 0 !important;
  line-height: 1.3 !important;
}

/* Step description */
.flow-content p {
  color: rgba(255,255,255,0.55) !important;
  font-size: 0.74rem !important;
  line-height: 1.4 !important;
  margin: 0 !important;
}

/* Hide the old standalone arrow div */
.flow-arrow {
  display: none !important;
}

/* Mobile: stack vertically */
@media (max-width: 768px) {
  .process-flow-chart {
    flex-direction: column !important;
    align-items: stretch !important;
    overflow-x: visible;
    gap: 0 !important;
    padding: 0 clamp(18px, 5vw, 32px) 8px;
  }
  .flow-step {
    flex-direction: column !important;
    align-items: stretch !important;
  }
  .flow-content-box {
    flex-direction: row !important;
    text-align: left !important;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    border-radius: 12px;
  }
  .flow-connector {
    padding: 4px 0;
    justify-content: flex-start;
    padding-left: 32px;
  }
  .flow-connector-arrow {
    transform: rotate(90deg);
    font-size: 1.1rem;
  }
  .flow-content { text-align: left !important; }
}

/* ============================================================
   Go2Comply v2.2 — H1 Centering FINAL FIX
   ============================================================ */
.registration-page .service-hero h1,
.service-hero.registration-detail-hero h1,
body.registration-page h1 {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  width: 100% !important;
  max-width: 100% !important;
}

.service-hero.registration-detail-hero,
.service-hero.registration-detail-hero > div {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  width: 100%;
}

/* ============================================================
   Section heading hierarchy flip: label = big, subtitle = small
   ============================================================ */

h2.section-big-label {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 6px;
}

/* On dark backgrounds (process section) */
.process-chart-section h2.section-big-label {
  color: var(--white);
}

p.section-sub-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 24px;
}

/* On dark backgrounds */
.process-chart-section p.section-sub-label {
  color: rgba(255,255,255,0.55);
}

/* ---- Section woman image strip ---- */
.section-woman-wrap {
  display: flex;
  align-items: flex-start;
  gap: clamp(24px, 4vw, 56px);
  margin-bottom: 36px;
}

.section-woman-wrap .section-heading-block {
  flex: 1;
  min-width: 0;
}

.section-woman-img {
  flex-shrink: 0;
  width: clamp(90px, 12vw, 140px);
  height: clamp(110px, 15vw, 175px);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 3px solid var(--gold-pale);
  align-self: center;
}

.section-woman-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

@media (max-width: 600px) {
  .section-woman-wrap { flex-direction: column; }
  .section-woman-img { width: 80px; height: 100px; align-self: center; }
  .hero-image-panel, .hero-image-panel img { min-height: 300px; }
}

/* ============================================================
   Index page — Hero enquiry form panel
   ============================================================ */

.hero-form-panel {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.97);
  padding: 28px 24px 80px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 60px;
}

.hero-enquiry-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 5px;
  margin-top: 14px;
}

.hero-enquiry-form label:first-child { margin-top: 0; }

.hero-enquiry-form input,
.hero-enquiry-form select,
.hero-enquiry-form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--navy);
  background: var(--soft);
  transition: border-color 0.18s;
  outline: none;
}

.hero-enquiry-form input:focus,
.hero-enquiry-form select:focus,
.hero-enquiry-form textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}

.hero-enquiry-form textarea { resize: none; }

.hero-enquiry-form .button {
  margin-top: 16px;
  width: 100%;
  justify-content: center;
}

/* Badge sits at top of the form panel */
.hero-form-panel .hero-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  max-width: none;
  background: var(--navy);
  border-color: rgba(200,150,42,0.5);
}

/* Float card sits at bottom */
.hero-form-panel .hero-float-card {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
}

/* ---- Section heading refinements (Process, FAQ, What You Get) ---- */
/* Match the refined "Advantages" style from service pages */
.section .section-heading h2,
.process .section-heading h2,
.faq .section-heading h2,
.trust-section .section-heading h2,
.blog-section .section-heading h2,
.pricing .section-heading h2,
.contact-section h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
  letter-spacing: -0.005em;
}

/* Keep process white override intact */
.process .section-heading h2 { color: var(--white); }

/* ---- Global mobile overflow fix ---- */
html, body { overflow-x: hidden; }

.hero-main {
  overflow-x: hidden;
}

@media (max-width: 1060px) {
  .hero-form-panel {
    padding: 24px 20px 72px;
  }
  .hero-enquiry-form { margin-top: 56px; }
}

@media (max-width: 760px) {
  .hero-form-panel {
    padding: 20px 16px 68px;
    border-radius: 14px;
  }
  .hero-enquiry-form { margin-top: 50px; }
  .hero-form-panel .hero-badge { top: 14px; left: 14px; right: 14px; }
  .hero-form-panel .hero-float-card { bottom: 14px; left: 14px; right: 14px; }

  /* Prevent process-flow and other grids from causing horizontal scroll */
  .process-flow, .service-grid, .pricing-grid, .testimonial-grid, .blog-grid, .metrics {
    min-width: 0;
    max-width: 100%;
  }
}

@media (max-width: 430px) {
  .hero-form-panel { padding: 18px 14px 64px; }
  .hero-enquiry-form { margin-top: 46px; }
  .hero-enquiry-form input,
  .hero-enquiry-form select,
  .hero-enquiry-form textarea { font-size: 0.84rem; }
}

/* ============================================================
   Package card — layout fix + price styling
   ============================================================ */

/* Centre the whole package card and remove side gaps */
.package-section {
  padding-left: clamp(18px, 5vw, 72px);
  padding-right: clamp(18px, 5vw, 72px);
}

.package-card {
  /* Switch to single-column stacked layout for clean centering */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 44px) clamp(24px, 4vw, 48px);
}

/* Package card button row */
.package-card .button,
.package-card a.button {
  /* reset the old grid-column span */
  grid-column: unset;
  align-self: center;
  width: fit-content;
  justify-self: unset;
  margin: 0 auto;
}

/* Both buttons centered, stacked nicely */
.package-card-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin-top: 4px;
}

/* For pages where buttons sit directly inside .package-card (no wrapper) */
.package-card > a.button {
  display: block;
  width: fit-content;
  align-self: center;
}

/* Price (strong tag) — smaller than h3, gold accent */
.package-card strong {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);   /* smaller than h3 */
  font-weight: 700;
  line-height: 1.2;
  margin-top: 8px;
  /* Gold gradient text */
  color: var(--gold);
  background: linear-gradient(135deg, var(--gold) 0%, #b07d18 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Fallback for browsers that don't support background-clip text */
@supports not (-webkit-background-clip: text) {
  .package-card strong { color: var(--gold); background: none; }
}

/* h3 keeps its larger display size */
.package-card h3 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-family: var(--font-display);
  margin-top: 6px;
  color: var(--navy);
}

/* Section heading for packages — centered, tighter */
.package-section .section-heading {
  text-align: center;
  margin-bottom: 28px;
}

@media (max-width: 600px) {
  .package-card {
    padding: 22px 18px;
  }
  .package-card strong {
    font-size: 1.1rem;
  }
}

/* ============================================================
   Hero Form Panel — Full Redesign (visible fields + mobile)
   ============================================================ */

/* Outer panel: sits in the hero grid, no background of its own */
.hero-form-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  /* Override old image-panel background */
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
  padding: 0 !important;
  min-height: unset !important;
}

/* Badge stays at very top */
.hero-form-panel .hero-badge {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  max-width: none;
  width: 100%;
  margin-bottom: 8px;
  background: rgba(13,27,42,0.75);
  border: 1px solid rgba(200,150,42,0.5);
}

/* White card that holds the form */
.hero-form-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.12);
  padding: 24px 24px 20px;
  width: 100%;
}

/* Form heading inside the card */
.hero-form-header {
  margin-bottom: 16px;
  border-bottom: 2px solid #f3f6f9;
  padding-bottom: 14px;
}

.hero-form-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #0d1b2a;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}

.hero-form-sub {
  font-size: 0.78rem;
  color: #5a6a7a;
  margin: 0;
  line-height: 1.4;
}

/* Form fields — crisp white background, clearly visible */
.hero-enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 0;
}

.hero-enquiry-form label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: #0d1b2a;
  margin: 10px 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-enquiry-form label:first-child { margin-top: 0; }

.hero-enquiry-form input,
.hero-enquiry-form select,
.hero-enquiry-form textarea {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid #d0d8e2;
  border-radius: 9px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: #0d1b2a;
  background: #f8fafc;
  transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.hero-enquiry-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6a7a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

.hero-enquiry-form input:focus,
.hero-enquiry-form select:focus,
.hero-enquiry-form textarea:focus {
  border-color: #c8962a;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(200,150,42,0.15);
}

.hero-enquiry-form input::placeholder,
.hero-enquiry-form textarea::placeholder {
  color: #a0aab4;
  font-size: 0.84rem;
}

.hero-enquiry-form textarea {
  resize: none;
  line-height: 1.5;
}

.hero-form-btn {
  margin-top: 14px;
  width: 100%;
  text-align: center;
  justify-content: center;
  font-size: 0.95rem;
  padding: 13px 20px;
  border-radius: 10px;
}

/* Float card at bottom */
.hero-form-panel .hero-float-card {
  position: relative !important;
  bottom: auto !important;
  left: auto !important;
  right: auto !important;
  margin-top: 8px;
}

/* ---- Mobile: show form below hero copy ---- */
@media (max-width: 1060px) {
  .hero-main {
    grid-template-columns: 1fr !important;
  }

  .hero-form-panel {
    /* Show on mobile — was potentially hidden before */
    display: flex !important;
    order: 2;  /* appears after hero copy */
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
  }

  .hero-form-card {
    padding: 20px 20px 18px;
  }
}

@media (max-width: 760px) {
  .hero-form-panel {
    max-width: 100%;
  }

  .hero-form-card {
    border-radius: 12px;
    padding: 18px 16px 16px;
  }

  .hero-form-title { font-size: 1.15rem; }

  .hero-enquiry-form input,
  .hero-enquiry-form select,
  .hero-enquiry-form textarea {
    font-size: 16px; /* prevents iOS zoom */
    padding: 11px 12px;
  }

  .hero-form-btn { padding: 13px; font-size: 0.92rem; }
}

@media (max-width: 430px) {
  .hero-form-card { padding: 16px 14px 14px; }
  .hero-form-title { font-size: 1.05rem; }
}

/* ============================================================
   Process Flow Chart — Always horizontal with scroll
   ============================================================ */

/* Section wrapper: allow horizontal overflow */
.process-chart-section {
  overflow: hidden !important;
  padding-bottom: clamp(40px, 6vw, 72px) !important;
}

/* Scroll container */
.process-flow-chart {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
  gap: 0 !important;
  overflow-x: auto !important;
  overflow-y: visible !important;
  -webkit-overflow-scrolling: touch !important;
  scroll-snap-type: x mandatory !important;
  scroll-padding: 0 clamp(18px, 4vw, 40px) !important;
  max-width: none !important;
  width: 100% !important;
  padding: 8px clamp(18px, 5vw, 60px) 20px !important;
  margin-top: 32px !important;
  /* Hide scrollbar on Webkit but keep it functional */
  scrollbar-width: thin;
  scrollbar-color: rgba(200,150,42,0.4) rgba(255,255,255,0.08);
}

.process-flow-chart::-webkit-scrollbar {
  height: 5px;
}
.process-flow-chart::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
}
.process-flow-chart::-webkit-scrollbar-thumb {
  background: rgba(200,150,42,0.45);
  border-radius: 10px;
}

/* Each step box: fixed width, never shrinks, snaps */
.process-flow-chart > div[style*="flex:1"],
.process-flow-chart > div[style*="flex: 1"],
.flow-content-box,
.flow-step > div:not([style*="padding:0 6px"]) {
  flex: 0 0 150px !important;
  min-width: 150px !important;
  max-width: 150px !important;
  scroll-snap-align: start !important;
}

/* Arrow connector: never shrinks */
.process-flow-chart > div[style*="padding:0 6px"],
.flow-connector {
  flex-shrink: 0 !important;
  flex: 0 0 auto !important;
}

/* Override the bad mobile media queries that stack vertically */
@media (max-width: 768px) {
  .process-flow-chart {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    padding: 8px 18px 20px !important;
  }

  /* Each step stays as a column (number on top, text below) */
  .process-flow-chart > div[style*="flex:1"],
  .process-flow-chart > div[style*="flex: 1"],
  .flow-step,
  .flow-content-box {
    flex-direction: column !important;
    flex: 0 0 140px !important;
    min-width: 140px !important;
    max-width: 140px !important;
    text-align: center !important;
    align-items: center !important;
  }

  /* Arrow stays horizontal */
  .process-flow-chart > div[style*="padding:0 6px"],
  .flow-connector,
  .flow-arrow {
    display: flex !important;
    flex-direction: row !important;
    flex: 0 0 auto !important;
  }
}

@media (max-width: 700px) {
  .process-flow-chart {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
  }
  /* Override the old column stacking rule */
  .flow-step {
    flex-direction: column !important;
    max-width: 135px !important;
    min-width: 135px !important;
    align-items: center !important;
    text-align: center !important;
    padding: 16px 0 !important;
    border-bottom: none !important;
  }
  .flow-content { text-align: center !important; }
  .flow-arrow { display: flex !important; }
}

/* Mobile scroll hint label */
.process-chart-section::after {
  content: '← Scroll to see all steps →';
  display: block;
  text-align: center;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
  padding-bottom: clamp(20px, 3vw, 36px);
}

@media (min-width: 900px) {
  /* Hide scroll hint on large screens if all steps fit */
  .process-chart-section::after {
    display: none;
  }
}
