:root {
  --navy-dark: #071528;
  --navy: #0a1f44;
  --blue: #1677ff;
  --green: #39b54a;
  --green-dark: #2d9440;
  --green-light: #5fd06e;
  --surface: #ffffff;
  --surface-muted: #f7f6f2;
  --surface-warm: #faf8f4;
  --surface-border: #e8e4dc;
  --ink: #141414;
  --ink-muted: #4a5568;
  --ink-soft: #718096;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(10, 31, 68, 0.08);
  --shadow-lg: 0 20px 60px rgba(10, 31, 68, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --max-width: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

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

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 0.75rem;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  letter-spacing: -0.02em;
}

h1 em {
  font-style: italic;
  color: var(--green);
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.25rem;
}

.lead,
.section-lead {
  font-size: 1.125rem;
  color: var(--ink-muted);
  max-width: 34rem;
}

.section-lead {
  margin-top: 1rem;
}

.section {
  padding: 5rem 0;
}

.section-head {
  margin-bottom: 3rem;
}

.section-head.centered {
  text-align: center;
}

.section-head.centered .section-lead {
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

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

.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(10, 31, 68, 0.25);
}

.btn-primary:hover {
  background: var(--navy-dark);
  box-shadow: 0 6px 20px rgba(10, 31, 68, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--surface-border);
}

.btn-ghost:hover {
  border-color: var(--blue);
  background: var(--white);
}

.btn-sm {
  padding: 0.625rem 1.125rem;
  font-size: 0.875rem;
}

.btn-full {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--surface-border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  color: var(--navy);
}

.logo-mark {
  width: 40px;
  height: 32px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}

.founder-story {
  background: var(--surface-warm);
}

.founder-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: start;
}

.founder-quote {
  margin: 0;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-left: 4px solid var(--green);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.founder-quote p {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--navy);
  margin: 0 0 1.25rem;
}

.founder-quote footer {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.founder-quote cite {
  font-style: normal;
  font-weight: 700;
  color: var(--ink);
}

.founder-quote span {
  font-size: 0.875rem;
  color: var(--ink-muted);
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  line-height: 1.1;
}

.logo-name {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo-haven {
  color: var(--navy);
}

.logo-relay {
  color: var(--green);
}

.logo-sub {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.85;
}

.logo--light .logo-haven,
.logo--light .logo-sub {
  color: var(--white);
}

.logo--light .logo-relay {
  color: var(--green-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a:not(.btn) {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink-muted);
  transition: color 0.15s;
}

.nav-links a:not(.btn):hover {
  color: var(--navy);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.hero {
  position: relative;
  padding: 4rem 0 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(22, 119, 255, 0.08), transparent),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(57, 181, 74, 0.06), transparent),
    radial-gradient(ellipse 50% 40% at 90% 90%, rgba(10, 31, 68, 0.04), transparent);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-tagline {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  margin: 1rem 0 0;
}

.hero-tagline::before,
.hero-tagline::after {
  content: "";
  flex: 1;
  max-width: 3rem;
  height: 2px;
  background: var(--green);
}

.hero-copy .lead {
  margin: 1.25rem 0 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--surface-border);
}

.hero-stats li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-stats strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
}

.hero-stats span {
  font-size: 0.8125rem;
  color: var(--ink-soft);
}

.hero-panel {
  display: flex;
  justify-content: center;
}

.panel-card {
  width: 100%;
  max-width: 380px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--surface-border);
  overflow: hidden;
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.25rem;
  background: var(--navy-dark);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.6);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.panel-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--surface-muted);
}

.panel-list li:last-child {
  border-bottom: none;
}

.badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
}

.badge-ok {
  background: #dcfce7;
  color: #166534;
}

.badge-warn {
  background: #fef3c7;
  color: #92400e;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.service-card.featured {
  border-color: var(--blue);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-muted);
  border-radius: var(--radius);
  color: var(--blue);
  margin-bottom: 1.25rem;
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  margin-bottom: 0.75rem;
}

.service-card > p {
  color: var(--ink-muted);
  font-size: 0.9375rem;
  margin: 0 0 1.25rem;
}

.service-card ul li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.875rem;
  color: var(--ink-soft);
  margin-bottom: 0.5rem;
}

.service-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.why {
  background: var(--navy);
  color: var(--white);
}

.why .eyebrow {
  color: var(--green-light);
}

.why-copy > p {
  color: rgba(255, 255, 255, 0.75);
  margin: 1rem 0 2rem;
  max-width: 32rem;
}

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.why-list li {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.why-list li:last-child {
  border-bottom: none;
}

.why-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  margin-bottom: 0.375rem;
}

.why-list li {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
}

.testimonial {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 0;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin: 2.5rem 0;
}

.pillar-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
}

.pillar-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-light);
}

.pillar-icon svg {
  width: 28px;
  height: 28px;
}

.pillar-card h3 {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.pillar-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.ghana-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 0;
}

.ghana-details li {
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--green);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
}

.ghana-details strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.375rem;
}

.why .section-lead {
  color: rgba(255, 255, 255, 0.75);
  margin-inline: auto;
}

.why .testimonial {
  max-width: 36rem;
  margin: 0 auto;
}

.subpage-hero {
  padding: 4rem 0 2rem;
  background: var(--surface-warm);
}

.subpage-hero .lead {
  max-width: 36rem;
  margin-top: 1rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
}

.about-text {
  color: var(--ink-muted);
  margin: 0 0 1rem;
}

.about-tagline {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy);
  margin: 1.5rem 0 0;
}

.about-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.about-card h3 {
  margin-bottom: 0.5rem;
}

.about-card > p {
  color: var(--ink-muted);
  font-size: 0.9375rem;
  margin: 0 0 1.25rem;
}

.about-facts li {
  padding: 0.625rem 0;
  border-top: 1px solid var(--surface-border);
  font-size: 0.9375rem;
  color: var(--ink-muted);
}

.about-facts strong {
  display: inline-block;
  min-width: 5.5rem;
  color: var(--ink);
}

.about-values {
  background: var(--surface-muted);
}

.pillars-grid--light {
  margin: 0;
}

.pillar-card--light {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  text-align: left;
  padding: 1.75rem;
}

.pillar-card--light h3 {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.pillar-card--light p {
  font-size: 0.9375rem;
  color: var(--ink-muted);
  margin: 0;
}

.cta-band {
  background: var(--navy);
  color: var(--white);
  padding: 4rem 0;
}

.cta-band-inner {
  text-align: center;
}

.cta-band h2 {
  margin-bottom: 0.75rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 1.5rem;
}

.cta-band .btn-primary {
  background: var(--green);
  box-shadow: none;
}

.cta-band .btn-primary:hover {
  background: var(--green-dark);
}

.service-detail {
  padding: 4rem 0;
}

.service-detail--alt {
  background: var(--surface-muted);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) 1.15fr;
  gap: 3rem;
  align-items: start;
}

.service-detail-aside {
  position: sticky;
  top: 6rem;
}

.service-icon--large {
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1.25rem;
}

.service-detail-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 0.5rem;
}

.service-detail-aside h2 {
  margin-bottom: 0.75rem;
}

.service-detail-intro {
  color: var(--ink-muted);
  font-size: 1rem;
  margin: 0;
}

.service-detail-body > p {
  color: var(--ink-muted);
  margin: 0 0 1.75rem;
}

.service-includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1.75rem;
}

.service-includes-grid h3 {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.service-includes {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-includes li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.625rem;
  font-size: 0.9375rem;
  color: var(--ink-muted);
}

.service-includes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.service-sla {
  padding: 1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  color: var(--ink-muted);
  margin: 0;
}

.service-detail--alt .service-sla {
  background: var(--surface-warm);
}

.service-card-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
}

.service-card-link:hover {
  color: var(--navy);
  text-decoration: underline;
}

.testimonial p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.5;
  margin: 0 0 1.5rem;
}

.testimonial cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 0.9375rem;
}

.testimonial footer span {
  display: block;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.25rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  counter-reset: step;
}

.steps li {
  position: relative;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
}

.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  border-radius: 50%;
  margin-bottom: 1.25rem;
}

.steps h3 {
  margin-bottom: 0.5rem;
}

.steps p {
  font-size: 0.9375rem;
  color: var(--ink-muted);
  margin: 0;
}

.pricing {
  background: var(--surface-muted);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.pricing-card.featured {
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}

.plan-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.375rem 0.875rem;
  border-radius: 999px;
  margin: 0;
}

.plan-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.plan-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.75rem;
  line-height: 1;
}

.plan-price span:first-child {
  font-size: 1rem;
  font-weight: 600;
  vertical-align: super;
  margin-right: 0.125rem;
}

.plan-period {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.plan-price.custom {
  font-size: 2rem;
}

.plan-desc {
  font-size: 0.9375rem;
  color: var(--ink-muted);
  margin: 0 0 1.5rem;
  flex-grow: 0;
}

.plan-features {
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.plan-features li {
  position: relative;
  padding-left: 1.375rem;
  font-size: 0.875rem;
  color: var(--ink-muted);
  margin-bottom: 0.625rem;
}

.plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-dark);
  font-weight: 700;
  font-size: 0.8125rem;
}

.pricing-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--ink-soft);
  margin: 2rem 0 0;
}

.faq-list {
  max-width: 40rem;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-item summary {
  padding: 1.125rem 1.25rem;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--blue);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 1.25rem 1.125rem;
  margin: 0;
  font-size: 0.9375rem;
  color: var(--ink-muted);
  border-top: 1px solid var(--surface-muted);
  padding-top: 1rem;
}

.contact {
  background: var(--surface-muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-copy > p {
  color: var(--ink-muted);
  margin: 1rem 0 2rem;
  max-width: 28rem;
}

.contact-details li {
  margin-bottom: 1rem;
}

.contact-details strong {
  display: block;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-bottom: 0.25rem;
}

.contact-details a:hover {
  color: var(--blue);
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.contact-form .optional {
  font-weight: 400;
  color: var(--ink-soft);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 0.375rem;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  border: 1.5px solid var(--surface-border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--green-dark);
  box-shadow: 0 0 0 3px rgba(22, 119, 255, 0.15);
}

.contact-form textarea {
  resize: vertical;
  min-height: 80px;
}

.form-note {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--ink-soft);
  margin: 0.875rem 0 0;
}

.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.9375rem;
  max-width: 22rem;
  margin: 0;
}

.footer-links h4 {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-size: 0.9375rem;
  transition: color 0.15s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  padding: 1.25rem 0;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

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

.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.thank-you {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}

.thank-you-inner {
  text-align: center;
  max-width: 32rem;
}

.thank-you-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--navy);
  color: var(--white);
  font-size: 1.75rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.thank-you h1 {
  margin-bottom: 1rem;
}

.thank-you p {
  color: var(--ink-muted);
  margin: 0 0 2rem;
}

.thank-you-logo {
  margin: 0 auto 1.5rem;
  display: block;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  justify-content: center;
}
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  justify-content: center;
}

.legal-page {
  padding: 3rem 0 5rem;
}

.legal-content {
  max-width: 40rem;
}

.legal-content h1 {
  margin-bottom: 0.5rem;
}

.legal-updated {
  font-size: 0.875rem;
  color: var(--ink-soft);
  margin: 0 0 2rem;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 2rem 0 0.75rem;
}

.legal-content p,
.legal-content li {
  color: var(--ink-muted);
  font-size: 0.9375rem;
}

.legal-content ul {
  padding-left: 1.25rem;
  margin: 0 0 1rem;
}

.legal-content li {
  margin-bottom: 0.375rem;
  list-style: disc;
}

.legal-content a {
  color: var(--blue);
}

@media (max-width: 900px) {
  .pillars-grid,
  .ghana-details {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid,
  .why-grid,
  .contact-grid,
  .service-grid,
  .steps,
  .pricing-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .founder-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-grid,
  .service-includes-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-aside {
    position: static;
  }

  .pricing-card.featured {
    transform: none;
  }

  .hero-panel {
    order: -1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

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

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--surface-border);
    padding: 1rem;
  }

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

  .nav-links li a {
    display: block;
    padding: 0.75rem 0;
  }

  .nav {
    position: relative;
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero-stats {
    gap: 1.25rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .pillars-grid,
  .ghana-details {
    grid-template-columns: 1fr;
  }
}
