/* =============================================
   0. RESET & ROOT VARIABLES
============================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-dark-blue: #0a2244;
  --color-accent: #1e56c5;
  --color-accent-light: #f0f6ff;
  --color-accent-hover: #1e4bc4;
  --color-bg-light: #f8f9fc;
  --color-white: #ffffff;
  --color-text-dark: #333333;
  --color-text-muted: #666666;
  --color-cta-bg: #0a224480;

  --color-border: #e7eaf3;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-card: 0 12px 30px rgba(10, 25, 47, 0.06);
  --shadow-card-strong: 0 24px 48px rgba(10, 25, 47, 0.14);

  --max-width: 1200px;
  --section-padding: 100px;

  --size: 200px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--color-text-dark);
  line-height: 1.6;
  background-color: var(--color-bg-light);
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  color: var(--color-dark-blue);
  font-weight: 500;
  line-height: 1.2;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

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

.container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
}
/* --------------------------------------------------------------------------
   FORM FONT INHERITANCE FIX
   -------------------------------------------------------------------------- */
/* Ensures input values, select dropdowns, and buttons use Inter/body font */
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* Ensures placeholders explicitly inherit font-family across all browsers */
input::placeholder,
textarea::placeholder {
  font-family: inherit;
  opacity: 1; /* Normalizes Firefox placeholder opacity default */
}

/* =============================================
   1. BUTTONS
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    background-color 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease;
}

button,
[type="button"],
[type="submit"],
[type="reset"],
[class*="btn"],
a[class*="btn"] {
  cursor: pointer;
}

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

.btn-accent:hover {
  background-color: transparent;
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
}

.btn-outline-accent {
  background-color: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}

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

.btn-white {
  background-color: var(--color-white);
  color: var(--color-dark-blue);
}

.btn-white:hover {
  background-color: transparent;
  border: 2px solid var(--color-white);
  color: var(--color-white);
}

.btn-outline-light {
  background-color: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.5);
}

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

/* =============================================
   2. TYPOGRAPHY HELPERS
============================================= */
.eyebrow {
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.eyebrow-accent {
  color: var(--color-white);
}

.section-description {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  max-width: 480px;
}

.section-header {
  text-align: center;
  /* max-width: 640px; */
  margin: 0 auto 106px;
}

.section-header .section-description {
  max-width: 100%;
  margin: 0 auto;
}

/* =============================================
   3. PLACEHOLDER SHAPES
============================================= */
.logo-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: var(--color-accent);
  flex-shrink: 0;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background-color: var(--color-dark-blue);
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.feature-icon-1 {
  border-radius: var(--radius-sm);
}
.feature-icon-2 {
  border-radius: var(--radius-sm);
}
.feature-icon-3 {
  border-radius: var(--radius-sm);
}
.feature-icon-4 {
  border-radius: var(--radius-sm);
}

.placeholder-arch {
  width: 100%;
  aspect-ratio: 4 / 5;
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 200px 200px 0 0;
}

.avatar {
  border-radius: 10px;
  flex-shrink: 0;
  overflow: hidden;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background-color: var(--color-dark-blue);
  display: inline-block;
}

.placeholder-video {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  /* background-color: rgba(255, 255, 255, 0.25); */
  /* border-radius: var(--radius-md); */
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 2px solid var(--color-white);
  background-color: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.play-triangle {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid var(--color-white);
  margin-left: 4px;
}

.placeholder-video {
  padding: 0;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(rgba(4, 16, 34, 0.42), rgba(4, 16, 34, 0.42)),
    url("../images/cta-bg.jpg") center / cover no-repeat;
  cursor: pointer;
  transition: filter 0.25s ease;
}

.placeholder-video:hover {
  filter: brightness(1.12);
}

.placeholder-video:focus-visible {
  outline-color: var(--color-white);
  outline-offset: -6px;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 10, 22, 0.84);
  backdrop-filter: blur(8px);
}

.video-modal-dialog {
  position: relative;
  width: min(960px, 100%);
  overflow: hidden;
  background: #07182e;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.25s ease;
}

.video-modal.active .video-modal-dialog {
  transform: translateY(0) scale(1);
}

.video-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
}

.video-modal-header h2 {
  color: var(--color-white);
  font-size: 1rem;
}

.video-modal-close {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: transparent;
  color: var(--color-white);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.video-modal-close:hover {
  background: rgba(255, 255, 255, 0.12);
}

.video-modal-player {
  display: block;
  width: 100%;
  max-height: 75vh;
  aspect-ratio: 16 / 9;
  background: #000;
}

body.video-modal-open {
  overflow: hidden;
}

/* Shared form and action modal */
.app-modal {
  position: fixed;
  inset: 0;
  z-index: 10002;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.24s ease,
    visibility 0.24s ease;
}

.app-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.app-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 16, 34, 0.68);
  backdrop-filter: blur(5px);
}

.app-modal-dialog {
  position: relative;
  width: min(420px, 100%);
  padding: 38px 32px 30px;
  text-align: center;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: 0 25px 70px rgba(3, 10, 22, 0.3);
  transform: translateY(24px) scale(0.72);
  transition: transform 0.42s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.app-modal.is-open .app-modal-dialog {
  transform: translateY(0) scale(1);
}

.app-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: var(--color-text-muted);
  font-size: 1.35rem;
  cursor: pointer;
}

.app-modal-close:hover {
  color: var(--color-dark-blue);
}

.app-modal-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 20px;
  border: 8px solid currentColor;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
}

.app-modal-title {
  margin-bottom: 10px;
  font-size: 1.35rem;
}
.app-modal-message {
  color: var(--color-text-dark);
  font-size: 0.98rem;
}
.app-modal-details {
  margin-top: 8px;
  color: var(--color-text-muted);
  font-size: 0.88rem;
}
.app-modal-error .app-modal-icon {
  color: #dc2626;
}
.app-modal-success .app-modal-icon {
  color: #16a34a;
}
.app-modal-warning .app-modal-icon {
  color: #d97706;
}
.app-modal-info .app-modal-icon {
  color: var(--color-accent);
}

.app-modal-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.app-modal-button {
  min-width: 100px;
  padding: 10px 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-dark-blue);
  font-weight: 600;
  cursor: pointer;
}

.app-modal-confirm {
  border-color: #dc2626;
  background: #dc2626;
  color: #fff;
}
.app-modal-confirm:hover {
  background: #b91c1c;
}

body.app-modal-open {
  overflow: hidden;
}

@media (max-width: 560px) {
  .video-modal {
    padding: 12px;
  }

  .video-modal-header {
    padding: 12px 14px;
  }
}

/* =============================================
   4. HERO
============================================= */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--color-white);
  padding-bottom: 100px;
}

.hero-bg {
  position: absolute;

  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  z-index: 1;
}
.hero-bg-home {
  background:
    linear-gradient(rgba(0, 0, 0, 0.555), rgba(0, 0, 0, 0.555)),
    url("../images/bg-hero.jpg");
  background-size: cover;
  background-position: center;
}
@media (min-width: 1024px) {
  .hero-bg-home {
    width: 75%;
    border-bottom-right-radius: 55%;
  }
}
.hero-bg-about {
  background:
    linear-gradient(rgba(0, 0, 0, 0.555), rgba(0, 0, 0, 0.555)),
    url("../images/hero-banner4.jpg");
  background-size: cover;
  background-position: center;
}
.feature-icon iconify-icon {
  color: var(--color-white);
}
iconify-icon {
  font-size: 30px;
}
.hero-home::after {
  content: "";
  position: absolute;
  inset: 0;

  background: var(--color-dark-blue);

  z-index: 0;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  padding-bottom: 28px;
  gap: 24px;
  z-index: 1;
}
/* =============================================
   FIXED NAVBAR & BLUR EFFECT
============================================= */

/* 1. Default state: sits at the top, scrolls away naturally */
.navbar-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: transparent;
}

/* 2. Fix the "disoriented" hero by pushing the content down manually */
.hero-content {
  padding-top: 130px !important; /* Accounts for the 40px it had, plus the navbar height */
}

/* 3. The active scrolled state */
.navbar-wrapper.scrolled {
  position: fixed;
  background-color: rgba(
    10,
    34,
    68,
    0.7
  ); /* Using your dark blue variable base */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  /* The new line underneath when the blur appears */
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);

  /* Smooth slide-down animation */
  animation: slideDown 0.4s ease-in-out forwards;
}

/* 4. Smooth padding transition on the original navbar */
.navbar {
  transition: padding 0.3s ease-in-out;
}

.navbar-wrapper.scrolled .navbar {
  padding-top: 16px;
  padding-bottom: 16px;
}

/* 5. Animation keyframes */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.15s ease;
}

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

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

.hero-content {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  height: fit-content;
  gap: 30px;
  padding-top: 40px;
}
.navbar,
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  color: var(--color-white);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  margin-bottom: 24px;
}

.hero-description {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.1rem;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero-image {
  position: relative;

  height: fit-content;
  width: 100%;
  /* border: 5px solid white; */
}
.hero-dots {
  position: absolute;

  right: -35px;
  bottom: -80px;

  width: 120px;
  height: 120px;

  z-index: 1;

  background-image: radial-gradient(
    rgba(255, 255, 255, 0.75) 2px,
    transparent 2px
  );

  background-size: 20px 20px;
}

.slider-container {
  border-radius: 181px 181px 0 181px;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 500px;
  z-index: 4;
}
.slider-container > img {
  width: 100%;
}

.slide {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  opacity: 0;

  animation: slider 4s infinite;
}

.slide1 {
  animation-delay: 0s;
}

.slide2 {
  animation-delay: 1s;
}

.slide3 {
  animation-delay: 2s;
}

.slide4 {
  animation-delay: 3s;
}
@keyframes slider {
  0% {
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  35% {
    opacity: 1;
  }

  45% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}
/* =============================================
   5. FEATURES
============================================= */
.features {
  position: relative;
  background-color: var(--color-bg-light);
  padding: var(--section-padding) 0;
  overflow: hidden;
}

.features-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}

.features-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.feature-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-card);
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.features-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.features-intro h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 16px;
}

.features-intro .section-description {
  margin-bottom: 32px;
}

/* =============================================
   6. PROCESS
============================================= */
.process {
  background-color: var(--color-bg-light);
  padding: var(--section-padding) 0;
  overflow: hidden;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 16px;
}

/* Process header: left-aligned and sitting close to the
   diagram (above where step 1 begins) instead of centered
   across the full section width like Pricing's header. */
.process-section-header {
  text-align: left;
  max-width: 520px;
  margin: 0 0 12px;
}

.process-section-header .section-description {
  margin: 0;
}

.process-path {
  position: relative;
  height: 480px;
}
@media (min-width: 1024px) {
  .process-section-header {
    margin: 0 0 0;
  }
  .process-path {
    margin-top: -200px;
  }
}

.process-blob {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(157, 172, 235, 0.28);
  z-index: 0;
  pointer-events: none;
}

/* Sized and positioned to overlap step 1's dot/card directly
   (rather than sitting fully behind it, hidden) while still
   bleeding past the section's left edge. */
.process-blob-1 {
  width: 340px;
  height: 340px;
  left: -190px;
  top: -5%; /* was 38% — moved down to sit behind dot 1 */
}

.process-blob-2 {
  width: 320px;
  height: 320px;
  right: -200px;
  top: -10%; /* was -20px — moved down slightly to sit behind dot 3 */
}

.process-line {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: fill; /* stretches to fill container exactly like the old SVG did */
  pointer-events: none;

  user-select: none;
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */

  /* Prevents dragging the element */
  user-drag: none;
  -webkit-user-drag: none;
}

.process-line path {
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 7;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

/* Dots — positioned in the exact same 0-100 percentage
   space as the SVG path points above, so they always
   land exactly on the curve. */
.step-dot {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-dark-blue);
  border: 10px solid var(--color-bg-light);
  z-index: 3;
  transform: translate(-50%, -50%);
}

.step-dot-1 {
  left: 10.6%;
  top: 94%;
}

.step-dot-2 {
  left: 40%;
  top: 40%;
}

.step-dot-3 {
  left: 80%;
  top: 15%;
}

/* Step cards — anchored just below/right of their dot
   with a fixed pixel gap (calc mixes % + px safely). */
.process-step {
  position: absolute;
  z-index: 2;
  max-width: 230px;
}

.process-step-1 {
  left: 9%;
  top: calc(75% + 26px);
}

.process-step-2 {
  left: 38%;
  top: calc(30% + 26px);
  max-width: 300px;
}

.process-step-3 {
  left: 79%;
  top: calc(0% + 26px);
  max-width: 400px;
}

.process-number {
  display: block;
  font-size: 6.5rem;
  font-weight: 800;
  color: rgba(213, 213, 213, 1);
  line-height: 1;
  margin-bottom: -12px;
  user-select: none;
  text-align: right;
}

.process-step-2 .process-number {
  padding-right: 50px;
}

.process-step h3 {
  position: relative;
  font-size: 1.1rem;
  margin-bottom: 8px;
  z-index: 1;
}

.process-step p {
  position: relative;
  color: var(--color-text-muted);
  font-size: 0.92rem;
  z-index: 1;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .process-path {
    height: auto;
    padding-top: 8px;
  }

  .process-line,
  .process-blob,
  .step-dot {
    display: none;
  }

  .process-step {
    position: relative;
    left: auto !important;
    top: auto !important;
    max-width: 100%;
    padding-left: 30px;
    padding-bottom: 40px;
  }

  .process-step::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 6px;
    bottom: -4px;
    width: 2px;
    background-color: var(--color-border);
  }

  .process-step:last-child::before {
    display: none;
  }

  .process-step::after {
    content: "";
    position: absolute;
    left: 3px;
    top: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--color-dark-blue);
    border: 3px solid var(--color-bg-light);
  }

  .process-number {
    display: none;
  }

  .process-step h3 {
    font-size: 1.05rem;
  }
}

/* =============================================
   7. PRICING
============================================= */
.pricing {
  background-color: var(--color-bg-light);
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
}

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

.price-desc {
  background-color: var(--color-accent-light);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
}

.price-desc > h3 {
  font-size: 30px !important;
}
.price-amount {
  font-size: 60px;
}
.slash {
  font-size: 30px;
}
.price-period {
  font-size: 16px;
}
.pricing-card {
  position: relative;
  background-color: var(--color-bg-light);
  border-top-right-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border-bottom-left-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.price-content {
  padding: 40px 32px;
}

.pricing-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.pricing-card .price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 16px;
}

.price-amount {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--color-dark-blue);
}

.price-period {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.pricing-description {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
  min-height: 66px;
}

.pricing-card .btn {
  width: 100%;
  margin-bottom: 28px;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-features li {
  position: relative;
  padding-left: 26px;
  font-size: 0.95rem;
  color: var(--color-text-dark);
}

.pricing-features li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-left: 0;
  font-size: 0.95rem;
  color: var(--color-text-dark);
}

.pricing-features li iconify-icon {
  flex-shrink: 0;
  font-size: 18px;
  color: var(--color-accent);
  margin-top: 1px;
}

.pricing-card-highlight {
  background-color: var(--color-white);

  transform: translateY(-50px);
  border: 1px solid var(--color-border);
}

.badge {
  background-color: var(--color-white);
  color: var(--color-text-dark);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 10px;
  border-radius: var(--radius-sm);
  width: fit-content;
  margin-bottom: 20px;
  white-space: nowrap;
}

.inc {
  margin-bottom: 20px;
}

/* =============================================
   8. TESTIMONIALS
============================================= */
.testimonials {
  background-color: var(--color-bg-light);
  padding: var(--section-padding) 0;
}

.testimonials-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 56px;
}

.testimonials-header h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.2rem);
  max-width: 480px;
}

.testimonials-header .section-description {
  max-width: 360px;
  text-align: left;
}

.testimonials-viewport {
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc((100% - 48px) / 3);
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.quote-icon {
  font-family: Georgia, serif;
  font-size: 3.5rem;
  color: rgba(0, 0, 0, 0.6);
  height: fit-content;
  line-height: 0.5;
}

.quotes {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonial-text {
  color: var(--color-text-muted);
  font-size: 0.98rem;
  margin-bottom: 28px;
  flex-grow: 1;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-name {
  font-weight: 600;
  color: var(--color-dark-blue);
  font-size: 0.95rem;
}

.testimonial-title {
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.testimonial-controls {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  margin-top: 40px;
}

.control-btn {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--color-border);
  background-color: var(--color-white);
  color: var(--color-dark-blue);
  cursor: pointer;
  transition:
    background-color 0.15s ease,
    color 0.15s ease,
    opacity 0.15s ease;

  display: flex;
  justify-content: center;
  align-items: center;
}
.control-btn iconify-icon {
  font-size: 16px;
}
.control-btn:hover {
  background-color: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.control-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background-color: var(--color-white);
  color: var(--color-dark-blue);
  border-color: var(--color-border);
}

/* =============================================
   9. CTA BANNER
============================================= */
.cta-section {
  background-color: var(--color-white);
  padding: var(--section-padding) 0;
}

.cta-banner {
  background-color: var(--color-cta-bg);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  overflow: hidden;
}

.cta-text {
  padding: 64px 0 64px 64px;
}

.cta-text h2 {
  color: var(--color-white);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  margin-bottom: 20px;
}

.cta-text p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  max-width: 440px;
}

.cta-media {
  width: 100%;
  background:
    linear-gradient(rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.64)),
    url(../images/cta-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

/* =============================================
  10. FOOTER
============================================= */
.site-footer {
  background-color: var(--color-dark-blue);
  color: rgba(255, 255, 255, 0.75);
  padding-top: var(--section-padding);
  padding-bottom: 48px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
}

.footer-brand p {
  margin-top: 20px;
  font-size: 0.95rem;
  max-width: 320px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.footer-links-group h4 {
  color: var(--color-white);
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer-links-group ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links-group a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.15s ease;
}

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

.footer-newsletter h4 {
  color: var(--color-white);
  font-size: 1rem;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-form input {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgb(255, 255, 255);
  color: rgba(0, 0, 0, 0.5);
  font-size: 0.95rem;
}

.newsletter-form input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.newsletter-form .btn {
  cursor: pointer;
  width: 100%;
}

.footer-bottom {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 18px;
}
/* ===========================
   DIAMOND COMPONENT
=========================== */

.diamond {
  --size: 273px;

  position: absolute;
  top: 0;
  right: 0;
  width: var(--size);
  height: var(--size);
}

.diamond span {
  position: absolute;
  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%) rotate(45deg);
}

.features .diamond-sm {
  left: 0;
}

.features .diamond-sm.down {
  left: 90%;
  top: 80%;
  right: 0;
  bottom: 0;
}
.pricing .diamond-lg.left {
  left: -40%;
  top: 25%;
}
.pricing .diamond-lg.right {
  right: -40%;
  top: 25%;
}

/* Outer */

.diamond-1 {
  width: 100%;
  height: 100%;
  background-color: #72a6ff1a;
}

/* Middle */

.diamond-2 {
  width: 76%;
  height: 76%;
  background-color: #5877a30d;
}

/* Inner */

.diamond-3 {
  width: 52%;
  height: 52%;
  background-color: #d1aeff1a;
}

/* ===========================
   SIZES
=========================== */

.diamond-lg {
  --size: 732px;
}

.diamond-md {
  --size: 273px;
}

.diamond-sm {
  --size: 125px;
}

.diamond-xs {
  --size: 76px;
}
/* ============================
  Animate
============================ */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}
@keyframes pulse {
  0%,
  100% {
    scale: 1;
  }

  50% {
    scale: 1.04;
  }
}

.features .diamond {
  animation:
    float 8s ease-in-out infinite,
    pulse 9s ease-in-out infinite;
}
.features .diamond-md {
  animation-duration: 10s, 12s;
  animation-delay: -2s;
  top: -160px;
}

.features .diamond-sm {
  animation-duration: 7s, 9s;
  animation-delay: -5s;
}

.features .diamond.down {
  animation-duration: 11s, 14s;
  animation-delay: -8s;
}
.diamond {
  position: absolute;
  pointer-events: none;
}

.diamond span {
  position: absolute;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%) rotate(45deg);
}
.features:hover .diamond {
  animation-duration: 5s, 7s;
}
/* ===========
line thingy
=========== */
.pointer {
  display: flex;
  align-items: center;
}
.pointer > hr {
  height: 0;
  width: 29px;
  border-width: 1px;
  border-color: #4489ffab;
}
.pointer .block {
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  background-color: #4489ffab;
  border-radius: 50%;
}
.pointer-holder {
  display: flex;
  gap: 10px;
}
/* ======
center
====== */
.center {
  display: flex;
  justify-content: center;
  align-items: center;
}
/* =============================================
   11. ABOUT PAGE STYLES
============================================= */

.hero-about {
  height: 420px;
  display: flex;
  align-items: flex-end;
}

.hero-about-content {
  padding-bottom: 48px;
}

.hero-about-content h1 {
  font-size: clamp(1.7rem, 4vw, 2.1rem);
  color: var(--color-white);
  font-weight: 600;
}

/* Section 2: About Intro */
.about-intro {
  padding: var(--section-padding) 0;
  background-color: var(--color-bg-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-images {
  position: relative;
  min-height: 420px;
}

.about-images::before {
  content: "";
  position: absolute;
  top: 6%;
  left: 60%;
  width: 130px;
  height: 90px;
  background-image: radial-gradient(
    rgba(30, 86, 197, 0.35) 2px,
    transparent 2px
  );
  background-size: 16px 16px;
  z-index: 0;
  pointer-events: none;
}

.img-back {
  position: relative;
  z-index: 1;
  width: 80%;
  height: 400px;
  border-radius: 0 28px 28px 28px;
  overflow: hidden;
  background-color: var(--color-dark-blue);
  background-size: cover;
  background-position: center;
}

.img-back::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 52px;
  height: 52px;
  background-color: var(--color-bg-light);
  background-image: radial-gradient(
    rgba(30, 86, 197, 0.4) 1.6px,
    transparent 1.6px
  );
  background-size: 14px 14px;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.img-front {
  width: 55%;
  height: 260px;
  border-radius: var(--radius-md);
  position: absolute;
  bottom: -20px;
  right: 0;
  z-index: 2;
  background-color: var(--color-cta-bg);
  background-size: cover;
  background-position: center;
  border: 6px solid var(--color-white);
  box-shadow: var(--shadow-card-strong);
}

.about-text h2 {
  font-size: clamp(1.8rem, 1.4vw, 2.4rem);
  margin-bottom: 20px;
}

.about-text .section-description {
  max-width: 100%;
  margin-bottom: 16px;
}

/* Section 3: Value Prop (Overlapping Component) */
.value-prop {
  padding: var(--section-padding) 0;
  background-color: var(--color-bg-light);
}

.overlap-container {
  /* max-width: 1000px; */
  /* margin: 0 auto; */
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.dark-box {
  background-color: var(--color-dark-blue);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: relative;
  z-index: 2;
  margin-bottom: -11%;
  box-shadow: var(--shadow-card-strong);
  width: 80%;
}

.val-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-weight: 200;
  font-size: 1rem;
}

.val-item .icon-badge {
  /* width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: var(--color-white); */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.val-item .icon-badge iconify-icon {
  font-size: 24px;
  color: var(--color-white);
}
@media (min-width: 1024px) {
  .val-item .icon-badge iconify-icon {
    font-size: 47.54px;
  }
  .val-item {
    font-size: 24px;
  }
  .val-item:nth-child(1),
  .val-item:nth-child(4) {
    transform: translateY(-45px);
  }
  .dark-box {
    padding-top: 85px;
  }
}

.white-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 20% 82px 10%;
  display: flex;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  position: relative;
  z-index: 1;
}

.card-col {
  flex: 1;
  padding: 0 24px;
}

.mission-col {
  border-right: 1px solid var(--color-border);
}

.col-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.col-icon {
  /* width: 40px;
  height: 40px;
  border-radius: 50%; */
  /* background-color: var(--color-accent); */
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.col-icon iconify-icon {
  font-size: 20px;
}
iconify-icon[icon="lucide:shrink"] {
  transform: rotate(45deg);
}
@media (min-width: 1024px) {
  .col-icon iconify-icon {
    font-size: 44.5px;
  }
}

.card-col p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* Section 4: Demographics & Impact */
.impact {
  padding: var(--section-padding) 0;
  background-color: var(--color-bg-light);
}

.impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.demographics h2 {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  margin-bottom: 28px;
}

.progress-bars {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-dark-blue);
}

.progress-track {
  width: 100%;
  height: 6px;
  background-color: var(--color-border);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background-color: var(--color-dark-blue);
  border-radius: var(--radius-pill);
  transition: width 1s ease-in-out;
}

.impact-stats {
  background-color: var(--color-white);
  padding: 48px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.impact-stats h2 {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  margin-bottom: 32px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.stat-number {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--color-dark-blue);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Section 5: Why Choose Us (Seam Split Layout) */
.why-choose {
  display: flex;
  width: 100%;
}

.split-left {
  flex: 1;
  background-color: #0a2244cc;
  color: var(--color-white);
  padding: 80px 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: flex-end;
  text-align: right; */
}

.split-left h2 {
  color: var(--color-white);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.3;
  margin-bottom: 20px;
}

.split-left p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  max-width: 320px;
}

.split-right {
  flex: 1 1 20%;
  background-color: var(--color-white);
  padding: 80px 5% 80px 0;
  display: flex;
  align-items: center;
}

.steps-list {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.step-item {
  position: relative;
  padding-left: 60px;
}

.step-circle {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  background-color: var(--color-accent);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: var(--shadow-card-strong);
  border: 5px solid var(--color-border);
  z-index: 3;
}

.step-content h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.step-content p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* Section 6: FAQ */
.faq-section {
  padding: var(--section-padding) 0;
  background-color: var(--color-bg-light);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 64px;
  align-items: start;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: #d9d9d94d;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.faq-item.active {
  box-shadow: var(--shadow-card);
}

.faq-toggle {
  width: 100%;
  text-align: left;
  background-color: #d9d9d94d;
  border: none;
  padding: 20px 24px;
  font-size: 1.05rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--color-dark-blue);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
}

.icon-plus {
  color: var(--color-accent);
  font-size: 1.4rem;
  font-weight: 700;
  transition: transform 0.2s ease;
}

.faq-item.active .icon-plus {
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
  padding: 0 24px;
}

.faq-item.active .faq-content {
  max-height: 180px;
  padding-bottom: 20px;
}

.faq-content p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.faq-text h2 {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
}

.faq-text .section-description {
  margin-bottom: 28px;
}

/* RESPONSIVE ADJUSTMENTS FOR ABOUT PAGE */
@media (max-width: 1024px) {
  .about-grid,
  .impact-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-about {
    height: 320px;
  }

  .about-images {
    min-height: 360px;
    max-width: 460px;
    margin: 0 auto;
  }

  .white-card {
    flex-direction: column;
    padding-top: 80px;
  }

  .mission-col {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 24px;
    margin-bottom: 24px;
  }

  .why-choose {
    flex-direction: column;
  }

  .split-left {
    align-items: flex-start;
    text-align: left;
    padding: 60px 24px;
  }

  .split-right {
    padding: 60px 24px;
  }

  .step-circle {
    transform: none;
    left: 0;
  }

  .step-item {
    padding-left: 64px;
  }
}

@media (max-width: 560px) {
  .about-images::before {
    display: none;
  }

  .img-back {
    height: 320px;
  }

  .img-front {
    height: 200px;
  }

  .dark-box {
    grid-template-columns: 1fr 1fr;
    display: grid;
    gap: 24px;
    margin-bottom: -40px;
  }

  .white-card {
    padding: 60px 20px 24px;
  }

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

/* =============================================
  12. PRICING PAGE — INNER HERO
============================================= */
.hero-pricing {
  height: 420px;
  display: flex;
  align-items: flex-end;
}

.hero-bg-pricing {
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("../images/hero-banner5.jpg");
  background-size: cover;
  background-position: center;
}

.hero-pricing-content {
  padding-bottom: 48px;
}

.hero-pricing-content h1 {
  color: var(--color-white);
  font-size: clamp(1.7rem, 4vw, 2.1rem);
  font-weight: 600;
}

/* =============================================
  13. PRICING PAGE — PLAN COMPARISON TABLE
============================================= */
.pricing-compare {
  background-color: var(--color-bg-light);
  padding-bottom: var(--section-padding);
}

.compare-table-wrap {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
}

.compare-table thead th {
  background-color: var(--color-accent-light);
  color: var(--color-dark-blue);
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  padding: 22px 24px;
  white-space: nowrap;
}

.compare-table thead th.compare-feature-head {
  width: 28%;
}

.compare-table tbody td {
  text-align: center;
  padding: 18px 24px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-dark);
  font-size: 0.95rem;
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-feature {
  text-align: left;
  padding-left: 64px !important;
  color: var(--color-dark-blue);
  font-weight: 500;
}

.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--color-border);
  border-radius: 5px;
  color: transparent;
}

.check.checked {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.check iconify-icon {
  font-size: 14px;
}

@media (max-width: 768px) {
  .compare-table-wrap {
    overflow-x: auto;
  }

  .compare-table {
    min-width: 620px;
  }

  .hero-pricing {
    height: 320px;
  }
}

/* =============================================
  14. CONTACT PAGE — INNER HERO
============================================= */
.hero-contact {
  height: 420px;
  display: flex;
  align-items: flex-end;
}

.hero-bg-contact {
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("../images/contact-bg.jpg");
  background-size: cover;
  background-position: center;
}

.hero-contact-content {
  padding-bottom: 48px;
}

.hero-contact-content h1 {
  color: var(--color-white);
  font-size: clamp(1.7rem, 4vw, 2.1rem);
  font-weight: 600;
}

/* =============================================
  15. CONTACT PAGE — INFO + FORM
============================================= */
.contact-section {
  background-color: var(--color-bg-light);
  padding: var(--section-padding) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 64px;
  align-items: start;
}

.contact-intro .eyebrow {
  margin-bottom: 20px;
}

.contact-intro h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  margin-bottom: 44px;
  line-height: 1.35;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-icon {
  width: 56px;
  height: 56px;
  border-top-right-radius: var(--radius-md);
  border-bottom-left-radius: var(--radius-md);
  background-color: var(--color-dark-blue);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon iconify-icon {
  font-size: 24px;
}

.contact-info-item h4 {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}

.contact-info-item p {
  color: var(--color-dark-blue);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

.contact-form-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 40px;
}

.contact-form-header {
  padding-bottom: 20px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--color-border);
}

.contact-form-header .eyebrow {
  margin-bottom: 0;
  text-transform: none;
  letter-spacing: normal;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-dark-blue);
}

.contact-form-header .eyebrow .pointer > hr {
  border-color: var(--color-accent);
}

.contact-form-header .eyebrow .block {
  background-color: var(--color-accent);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 28px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.95rem;
  color: var(--color-dark-blue);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background-color: var(--color-white);
  color: var(--color-text-dark);
  font-size: 0.95rem;
  font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9aa3b2;
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  color: #9aa3b2;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23666666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.form-group select:valid {
  color: var(--color-text-dark);
}

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

.contact-form-card .btn {
  margin-top: 8px;
  align-self: flex-start;
}

.btn-dark {
  background-color: var(--color-dark-blue);
  color: var(--color-white);
}

.btn-dark:hover {
  background-color: transparent;
  border: 2px solid var(--color-dark-blue);
  color: var(--color-dark-blue);
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-contact {
    height: 320px;
  }
}

@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 28px 20px;
  }
}
/* ========================================================================== */
/* 16. AUTHENTICATION / LOGIN PAGE STYLES                                     */
/* ========================================================================== */

.auth-body {
  margin: 0;
  padding: 0;
  font-family: "Manrope", sans-serif;
  background-color: #081427;
  overflow-x: hidden;
}

.auth-wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* High quality office background image matching Figma context */
  background: url("../images/login-bg.png") center/cover no-repeat;
  padding: 2rem 1.5rem;
}

.auth-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 35, 70, 0.5);
  z-index: 1;
}

.auth-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1180px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 3rem;
}

/* Left Section: Branding & Welcome */
.auth-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem 0;
  color: #ffffff;
}

.auth-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: -0.02em;
}

.auth-brand .brand-name span {
  color: #ffffff;
}

.auth-welcome {
  margin-top: auto;
  padding-bottom: 1.5rem;
}

.auth-welcome h1 {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #ffffff;
}

.auth-welcome p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 440px;
  line-height: 1.6;
}

/* Right Section: Login Modal Card */
.auth-card {
  width: 100%;
  max-width: 600px;
  background: rgba(10, 35, 70, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 24px;
  padding: 2.75rem 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.auth-title {
  color: #ffffff;
  font-size: 1.65rem;
  font-weight: 600;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.login-error-message {
  background-color: rgba(220, 38, 38, 0.12);
  border: 1px solid rgba(220, 38, 38, 0.4);
  color: #fca5a5;
  font-size: 0.9rem;
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 1.25rem;
}

/* Form Controls */
.auth-form .form-group {
  margin-bottom: 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.auth-form label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
}

.auth-form input[type="text"],
.auth-form input[type="password"] {
  width: 100%;
  background: #050d1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 0.9rem 1.1rem;
  color: #ffffff;
  font-size: 0.95rem;
  font-family: inherit;
  box-sizing: border-box;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.auth-form input[type="text"]:focus,
.auth-form input[type="password"]:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.auth-form input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.password-field-wrapper {
  position: relative;
  width: 100%;
}

.btn-toggle-password {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  padding: 0;
  transition: color 0.2s;
}

.btn-toggle-password:hover {
  color: #ffffff;
}

/* Options (Remember Me & Forgot Password) */
.auth-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1.25rem 0 1.75rem;
  font-size: 0.875rem;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  user-select: none;
}

.remember-me input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #3b82f6;
  border-radius: 4px;
  cursor: pointer;
}

.forgot-password {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.forgot-password:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Submit Button */
.btn-auth-submit {
  width: 100%;
  background: #d8dde3;
  color: #0b1727;
  border: none;
  border-radius: 12px;
  padding: 0.95rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background-color 0.2s,
    transform 0.1s;
  font-family: inherit;
}

.btn-auth-submit:hover {
  background: #ffffff;
}

.btn-auth-submit:active {
  transform: scale(0.99);
}

/* Divider */
.auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 1.75rem 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.auth-divider::before {
  margin-right: 0.85rem;
}

.auth-divider::after {
  margin-left: 0.85rem;
}

/* Social Buttons Grid */
.social-login-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.btn-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: #050d1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition:
    background-color 0.2s,
    border-color 0.2s;
  font-family: inherit;
}

.btn-social:hover {
  background: #09172c;
  border-color: rgba(255, 255, 255, 0.2);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .auth-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
  }

  .auth-left {
    align-items: center;
    text-align: center;
    padding: 0;
  }

  .auth-welcome {
    margin-top: 1.5rem;
  }

  .auth-welcome p {
    margin: 0 auto;
  }

  .auth-card {
    max-width: 100%;
  }
}

/* ========================================================================== */
/* 17. SIGN UP / REGISTER ORGANISATION MULTI-STEP STYLES                      */
/* ========================================================================== */

/* Reuses the site's existing .hero, .navbar-wrapper, .navbar, .container,
   .eyebrow/.pointer, and .site-footer components — no page-specific navbar
   or footer classes needed here. */

.hero-signup {
  height: 460px;
  display: flex;
  align-items: flex-end;
}

.hero-bg-signup {
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("../images/create_organization.jpg");
  background-size: cover;
  background-position: center 20%;
}

.hero-signup-content {
  padding-bottom: 48px;
}

.hero-signup-content h1 {
  color: var(--color-white);
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  font-weight: 700;
}

.signup-section {
  position: relative;
  background-color: var(--color-bg-light);
  padding: var(--section-padding) 0 calc(var(--section-padding) + 40px);
  overflow: hidden;
}

.signup-corner-shape {
  position: absolute;
  background-color: var(--color-dark-blue);
  pointer-events: none;
  z-index: 0;
}

.signup-corner-top {
  top: 0;
  right: 0;
  width: 30%;
  height: 240px;
  clip-path: polygon(100% 0, 100% 100%, 0 0);
}

.signup-corner-bottom {
  bottom: 0;
  left: 0;
  width: 36%;
  height: 320px;
  clip-path: polygon(0 100%, 0 0, 100% 100%);
}

.signup-intro {
  margin-bottom: 40px;
}

.signup-intro h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
  font-weight: 600;
  max-width: 620px;
  margin: 0;
}

.signup-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card-strong);
  overflow: hidden;
  max-width: 1000px;
}

.signup-card-header {
  background-color: var(--color-accent-light);
  padding: 36px 40px 24px;
}

.stepper-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 24px;
  max-width: 180px;
}

.stepper-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--color-border);
  transform: translateY(-50%);
  z-index: 1;
}

.stepper-step {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  box-sizing: content-box;
  width: 32px;
  height: 32px;
  padding: 0;
  margin: 0;
  border-radius: 50%;
  background-color: var(--color-white);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.stepper-step.active {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.step-title-wrap {
  display: inline-block;
}

.step-title {
  color: var(--color-dark-blue);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.step-title-underline {
  display: block;
  width: 48px;
  height: 2px;
  background-color: var(--color-accent);
}

.signup-card-body {
  padding: 40px;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeInStep 0.35s ease-in-out;
}

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

.signup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
}

.signup-card .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.signup-card label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.signup-card label .required {
  color: #ef4444;
}

.signup-card input[type="text"],
.signup-card input[type="email"],
.signup-card input[type="tel"],
.signup-card input[type="number"],
.signup-card input[type="password"],
.signup-card select {
  width: 100%;
  padding: 13px 16px;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--color-text-dark);
  font-family: inherit;
}

.signup-card select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  color: #9aa3b2;
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23666666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.signup-card select:valid {
  color: var(--color-text-dark);
}

.signup-card input:focus,
.signup-card select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(30, 86, 197, 0.12);
}

.signup-card input::placeholder {
  color: #b6bcc8;
}

.step-actions {
  display: flex;
  align-items: center;
  margin-top: 36px;
}

.step-actions.right-only {
  justify-content: flex-end;
}

.step-actions.space-between {
  justify-content: space-between;
}

.btn-step-next,
.btn-step-submit {
  background-color: #6b8cee;
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 12px 36px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.15s ease;
  font-family: inherit;
}

.btn-step-next:hover,
.btn-step-submit:hover {
  background-color: var(--color-accent);
}

.btn-step-back {
  background-color: var(--color-white);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 12px 32px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.15s ease;
  font-family: inherit;
}

.btn-step-back:hover {
  background-color: var(--color-bg-light);
}

@media (max-width: 1024px) {
  .hero-signup {
    height: 340px;
  }

  .signup-corner-top {
    width: 40%;
    height: 180px;
  }

  .signup-corner-bottom {
    width: 44%;
    height: 240px;
  }
}

@media (max-width: 768px) {
  .signup-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .signup-card-body {
    padding: 24px;
  }

  .signup-card-header {
    padding: 24px 24px 16px;
  }

  .signup-corner-shape {
    display: none;
  }

  .step-actions.space-between,
  .step-actions.right-only {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 12px;
  }

  .btn-step-back,
  .btn-step-next,
  .btn-step-submit {
    width: 100%;
    text-align: center;
  }
}

/* =============================================
  18. TESTIMONIALS CAROUSEL — RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .testimonial-card {
    flex-basis: calc((100% - 24px) / 2);
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    flex-basis: 100%;
  }

  .testimonials-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .testimonials-header .section-description {
    text-align: left;
  }
}

/* =============================================
  19. RESPONSIVE
============================================= */
@media (min-width: 1024px) {
  .feature-card:nth-child(1) {
    border-radius: 30px 0 0 0;
    transform: translateY(-30px);
  }
  .feature-card:nth-child(2) {
    border-radius: 0 30px 0 0;
  }
  .feature-card:nth-child(3) {
    border-radius: 0 0 0 30px;
    transform: translateY(-30px);
  }
  .feature-card:nth-child(4) {
    border-radius: 0 0 30px 0;
  }
  .feature-icon-1 {
    border-radius: 20px 0 0 0;
  }
  .feature-icon-2 {
    border-radius: 0 20px 0 0;
  }
  .feature-icon-3 {
    border-radius: 0 0 0 20px;
  }
  .feature-icon-4 {
    border-radius: 0 0 20px 0;
  }
}
@media (max-width: 1024px) {
  :root {
    --section-padding: 72px;
  }
  .hero-about {
    height: 300px;
  }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-image {
    display: none;
  }

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

  .features-intro {
    order: -1;
    align-items: flex-start;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }

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

  .cta-banner {
    grid-template-columns: 1fr;
    /* padding: 40px; */
  }

  .cta-text {
    padding: 40px 40px 0 40px;
  }

  .cta-media {
    /* max-width: 420px; */
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .navbar {
    justify-content: space-between;
  }

  .hero {
    padding-bottom: 64px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 560px) {
  .container {
    padding: 0 18px;
    padding-bottom: 18px;
  }

  .features-cards {
    grid-template-columns: 1fr;
  }

  .hero-cta,
  .nav-actions {
    width: 100%;
  }

  .hero-cta .btn {
    flex: 1;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
/* =============================================
  20. MOBILE MENU — UNIQUE TOGGLE & SLIDE PANEL
============================================= */

.menu-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 10001;
}

/* 2x2 dot grid — each dot positioned individually so it can travel
   to the center and become one arm of the X on open */
.menu-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-white);
  transition:
    transform 0.35s cubic-bezier(0.65, 0, 0.35, 1),
    width 0.3s ease,
    height 0.3s ease,
    border-radius 0.3s ease,
    background-color 0.3s ease;
}

.menu-dot-1 {
  top: 14px;
  left: 14px;
}
.menu-dot-2 {
  top: 14px;
  right: 14px;
  /* background-color: var(--color-accent); */
}
.menu-dot-3 {
  bottom: 14px;
  left: 14px;
  /* background-color: var(--color-accent); */
}
.menu-dot-4 {
  bottom: 14px;
  right: 14px;
}

/* Open state: dots stretch and rotate into an X made of two crossing bars */
.menu-toggle.active .menu-dot {
  width: 18px;
  height: 2px;
  border-radius: var(--radius-pill);
  background-color: var(--color-white);
}

.menu-toggle.active .menu-dot-1 {
  top: 21px;
  left: 13px;
  transform: rotate(45deg);
}

.menu-toggle.active .menu-dot-2 {
  top: 21px;
  right: 13px;
  transform: rotate(-45deg);
}

.menu-toggle.active .menu-dot-3 {
  bottom: 21px;
  left: 13px;
  transform: rotate(-45deg);
}

.menu-toggle.active .menu-dot-4 {
  bottom: 21px;
  right: 13px;
  transform: rotate(45deg);
}

/* Slide-in panel */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(340px, 82vw);
  height: 100vh;
  background-color: var(--color-dark-blue);
  z-index: 10000;
  padding: 100px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateX(0);
}

/* Dot-grid texture, echoing .hero-dots, tucked in the top-left corner */
.mobile-menu-dots {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 70px;
  height: 70px;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.35) 2px,
    transparent 2px
  );
  background-size: 14px 14px;
  pointer-events: none;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-links li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 4px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 1.15rem;
  transition:
    color 0.15s ease,
    padding-left 0.2s ease;
}

/* Accent dot appears before the link on hover — same pointer motif as desktop eyebrows */
.mobile-nav-links a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-accent);
  opacity: 0;
  transform: scale(0);
  transition: all 0.2s ease;
}

.mobile-nav-links a:hover,
.mobile-nav-links a:focus-visible {
  color: var(--color-white);
  padding-left: 8px;
}

.mobile-nav-links a:hover::before,
.mobile-nav-links a:focus-visible::before {
  opacity: 1;
  transform: scale(1);
}

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: auto;
}

.mobile-menu-actions .btn {
  width: 100%;
}

/* Dark overlay behind the panel */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(6, 12, 24, 0.6);
  backdrop-filter: blur(2px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

body.mobile-menu-open {
  overflow: hidden;
}

/* Show toggle, hide desktop nav below 768px */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-actions {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }
}
