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

:root {
  --green-deep: #0b3d2e;
  --green-mid: #155c42;
  --green-light: #1e7a54;
  --gold: #c9a84c;
  --gold-light: #e2c47a;
  --cream: #f7f2e8;
  --cream-dark: #ede6d6;
  --text-dark: #0d1f17;
  --text-mid: #3a5244;
  --text-light: #7a9b8c;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── NOISE TEXTURE OVERLAY ── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
  padding: 1.25rem 5%;
  background: rgba(11, 61, 46, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.nav-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--gold-light);
}

.nav-cta {
  background: var(--gold);
  color: var(--green-deep) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 2px;
  font-weight: 600 !important;
  color: var(--text-dark) !important;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}

/* ── LOGO INTRO ── */
.logo-intro {
  min-height: 100vh;
  background: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.logo-intro-inner {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInUp 1s ease-out;
}

.logo-intro-img {
  width: 100vw;
  height: 100vh;
  min-width: 100vw;
  min-height: 100vh;
  object-fit: cover;
  object-position: center;
  display: block;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--green-deep);
  display: flex;
  align-items: center;
  padding: 8rem 5% 5rem;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease both;
}

.hero-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s 0.1s ease both;
}

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

.hero-sub {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}

.btn-primary {
  background: var(--gold);
  color: var(--green-deep);
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 2px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 0.9rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition:
    border-color 0.2s,
    color 0.2s;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  animation: fadeUp 0.6s 0.4s ease both;
}

.stat-item {
  text-align: left;
}

.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
}

.hero-visual {
  position: relative;
  animation: fadeIn 0.8s 0.3s ease both;
}

.hero-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 4px;
  padding: 2rem;
  backdrop-filter: blur(8px);
}

.hero-card-title {
  font-family: "Cormorant Garamond", serif;
  color: var(--gold-light);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.session-preview {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.session-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.2s;
}

.session-item:hover {
  border-color: rgba(201, 168, 76, 0.3);
}

.session-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-mid), var(--green-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

.session-info {
  flex: 1;
}

.session-name {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
}

.session-role {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
  margin-top: 0.1rem;
}

.session-badge {
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.3rem 0.6rem;
  border-radius: 2px;
  letter-spacing: 0.04em;
}

/* ── HOW IT WORKS ── */
.how {
  background: var(--cream);
  padding: 6rem 5%;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 300;
  max-width: 520px;
  margin-bottom: 3.5rem;
}

.steps-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--cream-dark);
  border: 1.5px solid var(--cream-dark);
}

.step {
  background: var(--cream);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background 0.2s;
}

.step:hover {
  background: var(--white);
}

.step-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--cream-dark);
  line-height: 1;
  margin-bottom: 1.25rem;
}

.step-icon {
  width: 44px;
  height: 44px;
  background: var(--green-deep);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.step-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
}

.step-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.step-desc {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.65;
  font-weight: 300;
}

/* ── CONSULTANTS ── */
.consultants {
  background: var(--green-deep);
  padding: 6rem 5%;
  position: relative;
  overflow: hidden;
}

.consultants::before {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.consultants .section-label {
  color: var(--gold);
}
.consultants .section-title {
  color: var(--white);
}
.consultants .section-sub {
  color: rgba(255, 255, 255, 0.55);
}

.consultants-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.consultants-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.consultant-card {
  background: var(--green-deep);
  padding: 2.25rem 1.75rem;
  border: 1px solid rgba(201, 168, 76, 0.1);
  transition:
    background 0.25s,
    border-color 0.25s;
  position: relative;
}

.consultant-card:hover {
  background: var(--green-mid);
  border-color: rgba(201, 168, 76, 0.3);
}

.consultant-card:hover .card-cta {
  opacity: 1;
  transform: translateY(0);
}

.consultant-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-mid), var(--green-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.25rem;
  border: 2px solid rgba(201, 168, 76, 0.2);
}

.consultant-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.consultant-role {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.1rem;
}

.consultant-exp {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1rem;
}

.consultant-bio {
  font-size: 0.855rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.consultant-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.tag {
  background: rgba(201, 168, 76, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  letter-spacing: 0.04em;
}

.card-cta {
  display: block;
  text-align: center;
  background: var(--gold);
  color: var(--green-deep);
  padding: 0.7rem 1.25rem;
  border-radius: 2px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  opacity: 0;
  transform: translateY(4px);
  transition:
    opacity 0.2s,
    transform 0.2s,
    background 0.2s;
}

.card-cta:hover {
  background: var(--gold-light);
}

/* ── PRICING ── */
.pricing {
  background: var(--cream);
  padding: 6rem 5%;
}

.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--cream-dark);
  border: 1.5px solid var(--cream-dark);
}

.price-card {
  background: var(--cream);
  padding: 2.5rem 2rem;
  transition: background 0.2s;
  position: relative;
}

.price-card:hover {
  background: var(--white);
}

.price-card.featured {
  background: var(--green-deep);
}

.price-card.featured:hover {
  background: var(--green-mid);
}

.price-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--green-deep);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

.price-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.price-card:not(.featured) .price-name {
  color: var(--text-dark);
}
.price-card.featured .price-name {
  color: var(--white);
}

.price-amount {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.price-card:not(.featured) .price-amount {
  color: var(--green-deep);
}
.price-card.featured .price-amount {
  color: var(--gold);
}

.price-currency {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  vertical-align: top;
  margin-top: 0.5rem;
  display: inline-block;
}

.price-duration {
  font-size: 0.8rem;
  margin-bottom: 1.75rem;
}

.price-card:not(.featured) .price-duration {
  color: var(--text-light);
}
.price-card.featured .price-duration {
  color: rgba(255, 255, 255, 0.5);
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.price-card:not(.featured) .price-features li {
  color: var(--text-mid);
}
.price-card.featured .price-features li {
  color: rgba(255, 255, 255, 0.75);
}

.price-features li::before {
  content: "✓";
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.price-btn {
  display: block;
  text-align: center;
  padding: 0.85rem;
  border-radius: 2px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s;
}

.price-card:not(.featured) .price-btn {
  background: transparent;
  border: 1.5px solid var(--green-deep);
  color: var(--green-deep);
}

.price-card:not(.featured) .price-btn:hover {
  background: var(--green-deep);
  color: var(--white);
}

.price-card.featured .price-btn {
  background: var(--gold);
  color: var(--green-deep);
  border: 1.5px solid var(--gold);
}

.price-card.featured .price-btn:hover {
  background: var(--gold-light);
}

/* ── MPESA ── */
.mpesa {
  background: var(--green-deep);
  padding: 5rem 5%;
}

.mpesa-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.mpesa .section-label {
  color: var(--gold);
}
.mpesa .section-title {
  color: var(--white);
}
.mpesa .section-sub {
  color: rgba(255, 255, 255, 0.55);
  max-width: 100%;
}

.mpesa-steps {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.mpesa-step {
  background: rgba(255, 255, 255, 0.03);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border: 1px solid rgba(201, 168, 76, 0.08);
  transition: background 0.2s;
}

.mpesa-step:hover {
  background: rgba(255, 255, 255, 0.06);
}

.mpesa-step-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
  width: 28px;
}

.mpesa-step-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
}

.mpesa-step-text strong {
  color: var(--white);
  font-weight: 500;
}

.mpesa-detail {
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 3px;
  padding: 1.25rem 1.5rem;
  margin-top: 1.25rem;
}

.mpesa-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.mpesa-detail-row:last-child {
  border-bottom: none;
}

.mpesa-key {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mpesa-val {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}

/* ── TRUST ── */
.trust {
  background: var(--cream-dark);
  padding: 4rem 5%;
}

.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: rgba(11, 61, 46, 0.1);
}

.trust-item {
  background: var(--cream-dark);
  padding: 2rem 1.5rem;
  text-align: center;
}

.trust-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.trust-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.trust-desc {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.55;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--gold);
  padding: 4rem 5%;
  text-align: center;
}

.cta-banner h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.cta-banner p {
  color: rgba(11, 61, 46, 0.7);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.cta-banner .btn-dark {
  background: var(--green-deep);
  color: var(--white);
  padding: 0.9rem 2.25rem;
  border: none;
  border-radius: 2px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}

.cta-banner .btn-dark:hover {
  background: var(--green-mid);
}

/* ── FOOTER ── */
footer {
  background: var(--text-dark);
  padding: 3rem 5% 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer-brand-name span {
  color: var(--gold);
}

.footer-brand-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  max-width: 280px;
}

.footer-col-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

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

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.25);
}

.footer-tagline {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(201, 168, 76, 0.45);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  nav {
    padding: 1rem 5%;
  }
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  .logo-intro {
    min-height: 50vh;
    padding: 0;
  }

  .logo-intro-inner {
    height: 50vh;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .logo-intro-img {
    width: 90%;
    height: auto;
    max-width: 90%;
    max-height: 40vh;
    object-fit: contain;
  }

  .hero {
    padding: 2rem 5% 4rem;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-visual {
    display: none;
  }
  .hero-stats {
    gap: 1.5rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }
  .consultants-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .mpesa-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .trust-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .card-cta {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .trust-inner {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    flex-wrap: wrap;
  }
}

.logo-img {
  /* Increase this number until the logo looks right to you */
  height: auto;
  width: 220px; /* Increased from 180px for better visibility */
  display: block;
  object-fit: contain;
}

/* On mobile, we usually want it slightly smaller to save screen space */
@media (max-width: 768px) {
  .logo-img {
    height: 100px;
    width: 180px; /* Increased from 135px proportionally */
  }
}

/* Modal Overlay */
.modal-overlay {
  display: none; /* Hidden by default */
  position: fixed;
  inset: 0;
  background: rgba(11, 61, 46, 0.9);
  backdrop-filter: blur(8px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

/* Modal Box */
.modal-content {
  background: var(--cream);
  padding: 2.5rem;
  width: 90%;
  max-width: 400px;
  border-radius: 4px;
  position: relative;
  border: 1px solid var(--gold);
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--green-deep);
}

.modal-content h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem;
  color: var(--green-deep);
  margin-bottom: 0.5rem;
}

.input-group {
  margin: 1.5rem 0;
}

.input-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
}

.input-group input {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--cream-dark);
  background: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
}

.payment-summary {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-top: 1px solid var(--cream-dark);
  margin-bottom: 1.5rem;
}

.status-msg {
  margin-top: 1rem;
  font-size: 0.85rem;
  text-align: center;
}
