:root {
  --eds-primary: #4f46e5;
  --eds-primary-dark: #4338ca;
  --eds-accent: #00b794;
  --eds-bg-soft: #f3f4ff;
  --eds-text-dark: #111827;

  /* Responsive spacing scale */
  --eds-spacing-xs: 0.25rem;
  --eds-spacing-sm: 0.5rem;
  --eds-spacing-md: 1rem;
  --eds-spacing-lg: 1.5rem;
  --eds-spacing-xl: 2rem;
  --eds-spacing-2xl: 3rem;
  --eds-spacing-3xl: 4rem;

  /* Responsive font sizes */
  --eds-text-xs: 0.75rem;
  --eds-text-sm: 0.875rem;
  --eds-text-base: 1rem;
  --eds-text-lg: 1.125rem;
  --eds-text-xl: 1.25rem;
  --eds-text-2xl: 1.5rem;
  --eds-text-3xl: 1.875rem;
  --eds-text-4xl: 2.25rem;
  --eds-text-5xl: 3rem;

  /* Responsive breakpoints (for reference in JS) */
  --eds-breakpoint-sm: 640px;
  --eds-breakpoint-md: 768px;
  --eds-breakpoint-lg: 1024px;
  --eds-breakpoint-xl: 1280px;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  background: #ffffff;
  color: var(--eds-text-dark);
}

.eds-landing-wrapper {
  background-color: #ffffff;
  color: var(--eds-text-dark);
}

/* NAVBAR */
.eds-navbar {
  position: sticky;
  top: 0;
  z-index: 1030;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 8px rgba(15, 23, 42, 0.06);
  padding: 0.7rem 1.25rem;
  transition: all 0.3s ease;
}

.eds-navbar.scrolled {
  box-shadow: 0 2px 15px rgba(15, 23, 42, 0.1);
  padding: 0.5rem 1.25rem;
}

.eds-navbar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, #4f46e5, #0ea5e9, #22c55e);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.eds-navbar.scrolled::after {
  opacity: 0.16;
}

.eds-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.eds-nav-brand {
  text-decoration: none;
  color: #111827;
}

.eds-nav-brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.45rem 1.2rem 0.45rem 0.5rem;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.18);
  border: 1px solid rgba(148, 163, 184, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.eds-nav-brand:hover .eds-nav-brand-pill {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.25);
  border-color: rgba(79, 70, 229, 0.55);
}

.eds-nav-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  padding: 0.25rem;
  transition: all 0.3s ease;
}

.eds-nav-brand:hover .eds-nav-logo-wrap {
  transform: rotate(5deg) scale(1.05);
}

.eds-nav-logo {
  height: 48px;
  width: auto;
  display: block;
  border-radius: 6px;
  object-fit: contain;
  max-width: 100%;
  /* height: auto; */
}

/* Responsive logo sizing */
@media (max-width: 768px) {
  .eds-nav-logo {
    height: 40px;
  }
}

@media (max-width: 480px) {
  .eds-nav-logo {
    height: 36px;
  }
}

.eds-nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.eds-nav-brand-title {
  font-weight: 800;
  letter-spacing: 0.1em;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.eds-nav-brand-sub {
  font-weight: 500;
  font-size: 0.72rem;
  color: #6b7280;
}

.eds-nav-brand-tagline {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #4f46e5;
  margin-top: 0.15rem;
}

.eds-nav-links {
  display: flex;
  gap: 1.1rem;
  align-items: center;
  font-size: 0.92rem;
}

/* Responsive navigation links */
@media (max-width: 768px) {
  .eds-nav-links {
    gap: 0.75rem;
    font-size: 0.85rem;
  }

  .eds-nav-links a:not(.eds-btn-outline) {
    display: none; /* Hide regular links on mobile, keep button */
  }

  .eds-btn-outline {
    font-size: 0.8rem;
    padding: 0.35rem 1rem;
  }
}

@media (max-width: 480px) {
  .eds-nav-brand-pill {
    padding: 0.4rem 1rem 0.4rem 0.45rem;
    gap: 0.5rem;
  }

  .eds-nav-brand-title {
    font-size: 1rem;
  }

  .eds-nav-brand-sub {
    font-size: 0.65rem;
  }

  .eds-nav-brand-tagline {
    font-size: 0.6rem;
  }
}

.eds-nav-links a {
  text-decoration: none;
  color: #4b5563;
  position: relative;
  transition: color 0.3s ease;
}

.eds-nav-links a:not(.eds-btn-outline)::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--eds-primary);
  transition: width 0.3s ease;
}

.eds-nav-links a:not(.eds-btn-outline):hover::after {
  width: 100%;
}

.eds-nav-links a:hover {
  color: var(--eds-primary);
}

.eds-btn-outline {
  border-radius: 999px;
  padding: 0.4rem 1.2rem;
  font-weight: 600;
  font-size: 0.88rem;
  border: 1px solid var(--eds-primary);
  color: var(--eds-primary);
  background: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  position: relative;
  overflow: hidden;
}

.eds-btn-outline::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 999px;
  background: var(--eds-primary);
  transition: all 0.4s ease;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.eds-btn-outline:hover::before {
  width: 300%;
  height: 300%;
}

.eds-btn-outline:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.eds-btn-primary {
  border-radius: 999px;
  padding: 0.55rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  background: linear-gradient(135deg, var(--eds-primary), var(--eds-primary-dark));
  border: none;
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.35);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  position: relative;
  overflow: hidden;
}

.eds-btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.eds-btn-primary:hover::before {
  left: 100%;
}

.eds-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(79, 70, 229, 0.45);
  color: #ffffff;
}

/* HERO */
.eds-hero {
  background: radial-gradient(circle at top left, #e0e7ff 0, #eef2ff 35%, #ffffff 75%);
  padding: 3.5rem 1.25rem 3.8rem;
  position: relative;
}

/* Responsive hero padding */
@media (max-width: 768px) {
  .eds-hero {
    padding: 2.5rem 1rem 3rem;
  }
}

@media (max-width: 480px) {
  .eds-hero {
    padding: 2rem 1rem 2.5rem;
  }
}

.eds-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 2.8rem;
}

@media (max-width: 900px) {
  .eds-hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .eds-hero-inner {
    gap: 1.5rem;
  }
}

.eds-hero-eyebrow {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b7280;
  animation: slideInDown 0.6s ease;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.eds-hero-title {
  font-weight: 800;
  font-size: clamp(1.75rem, 5vw, 3.1rem);
  line-height: 1.1;
  color: #111827;
  margin-top: 0.75rem;
  animation: slideInLeft 0.8s ease 0.2s both;
}

/* Responsive hero title */
@media (max-width: 768px) {
  .eds-hero-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
    line-height: 1.15;
  }
}

@media (max-width: 480px) {
  .eds-hero-title {
    font-size: clamp(1.35rem, 7vw, 2rem);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.eds-hero-highlight {
  color: var(--eds-primary);
  position: relative;
  display: inline-block;
}

.eds-hero-subtitle {
  margin-top: 1rem;
  max-width: 32rem;
  font-size: 1.02rem;
  color: #4b5563;
  animation: slideInLeft 0.8s ease 0.4s both;
}

/* Responsive hero subtitle */
@media (max-width: 768px) {
  .eds-hero-subtitle {
    font-size: 0.95rem;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .eds-hero-subtitle {
    font-size: 0.9rem;
    margin-top: 0.85rem;
  }
}

.eds-hero-metadata {
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: #6b7280;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  animation: slideInLeft 0.8s ease 0.6s both;
}

.eds-hero-metadata span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: transform 0.3s ease;
}

.eds-hero-metadata span:hover {
  transform: translateX(5px);
}

.eds-hero-bullet-dot {
  height: 7px;
  width: 7px;
  border-radius: 999px;
  background: var(--eds-accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
}

.eds-hero-cta {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: slideInLeft 0.8s ease 0.8s both;
}

/* Responsive hero CTA */
@media (max-width: 768px) {
  .eds-hero-cta {
    margin-top: 1.5rem;
    gap: 0.65rem;
  }
}

@media (max-width: 480px) {
  .eds-hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .eds-hero-cta .eds-btn-primary,
  .eds-hero-cta .eds-btn-outline {
    width: 100%;
    justify-content: center;
  }
}

.eds-hero-shot-card {
  border-radius: 1.25rem;
  background: #ffffff;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.15);
  padding: 1.25rem;
  border: 1px solid #e5e7eb;
  transition: all 0.4s ease;
  animation: slideInRight 0.8s ease 0.4s both;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.eds-hero-shot-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.2);
}

.eds-hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(16, 185, 129, 0.09);
  color: #047857;
  font-size: 0.8rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 0.75rem;
  gap: 0.3rem;
  transition: all 0.3s ease;
}

.eds-hero-badge:hover {
  background: rgba(16, 185, 129, 0.15);
  transform: scale(1.05);
}

.eds-hero-caption {
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: #6b7280;
  transition: color 0.3s ease;
}

/* CAROUSEL */
.eds-carousel {
  position: relative;
  margin-top: 0.5rem;
}

.eds-carousel-track {
  border-radius: 0.8rem;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  background: #f9fafb;
  position: relative;
}

.eds-carousel-slide {
  display: none;
}

.eds-carousel-slide-active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.eds-carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.8rem;
  object-fit: contain;
  max-height: 300px;
}

@media (max-width: 768px) {
  .eds-carousel-slide img {
    max-height: 250px;
  }
}

@media (max-width: 480px) {
  .eds-carousel-slide img {
    max-height: 200px;
  }
}

.eds-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: none;
  background: rgba(15, 23, 42, 0.6);
  color: #f9fafb;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.eds-carousel-nav:hover {
  background: rgba(15, 23, 42, 0.9);
  transform: translateY(-50%) scale(1.15);
}

.eds-carousel-nav-prev {
  left: 10px;
}
.eds-carousel-nav-next {
  right: 10px;
}

.eds-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 0.45rem;
}

.eds-carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  border: none;
  background: #e5e7eb;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.eds-carousel-dot:hover {
  background: #d1d5db;
  transform: scale(1.2);
}

.eds-carousel-dot-active {
  background: var(--eds-primary);
  transform: scale(1.2);
}

/* GENERIC SECTION */
.eds-section {
  padding: 3.5rem 1.25rem;
}

.eds-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Responsive section padding */
@media (min-width: 992px) {
  .eds-section {
    padding: 4rem 1.25rem;
  }
}

@media (max-width: 768px) {
  .eds-section {
    padding: 2.5rem 1rem;
  }
}

@media (max-width: 480px) {
  .eds-section {
    padding: 2rem 1rem;
  }
}

.eds-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
  color: #6b7280;
  margin-bottom: 0.6rem;
}

.eds-section-title {
  font-weight: 800;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  margin-bottom: 0.3rem;
  color: #111827;
}

.eds-section-subtitle {
  font-size: clamp(0.88rem, 2vw, 0.96rem);
  color: #6b7280;
  max-width: 40rem;
}

/* Responsive section typography */
@media (max-width: 768px) {
  .eds-kicker {
    font-size: 0.72rem;
  }

  .eds-section-title {
    font-size: clamp(1.25rem, 4vw, 1.6rem);
  }

  .eds-section-subtitle {
    font-size: 0.9rem;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .eds-kicker {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
  }

  .eds-section-title {
    font-size: clamp(1.15rem, 5vw, 1.4rem);
  }

  .eds-section-subtitle {
    font-size: 0.85rem;
  }
}

/* WHO WE SERVE */
.eds-section#who {
  background: radial-gradient(circle at top left, #eef2ff 0, #f9fafb 42%, #ffffff 100%);
}

.eds-section#who .eds-section-title {
  letter-spacing: -0.02em;
  font-size: 1.8rem;
}

.eds-section#who .eds-section-subtitle {
  font-size: 0.98rem;
  color: #4b5563;
}

.eds-section#who .eds-who-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2.3rem;
}

@media (max-width: 1100px) {
  .eds-section#who .eds-who-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .eds-section#who .eds-who-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.eds-section#who .eds-pill-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.35rem;
  padding: 1.4rem 1.6rem;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid #e5e7eb;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  backdrop-filter: blur(6px);
}

.eds-section#who .eds-pill-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  border-color: #c7d2fe;
  background: rgba(255, 255, 255, 0.98);
}

.eds-section#who .eds-pill-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border-top: 0px solid transparent;
  pointer-events: none;
  transition: border-top-width 0.3s ease;
}

.eds-section#who .eds-pill-card:hover::before {
  border-top-width: 4px;
}

.eds-section#who .eds-who-grid .eds-pill-card:nth-child(1)::before {
  border-top-color: #4f46e5;
}

.eds-section#who .eds-who-grid .eds-pill-card:nth-child(2)::before {
  border-top-color: #0ea5e9;
}

.eds-section#who .eds-who-grid .eds-pill-card:nth-child(3)::before {
  border-top-color: #22c55e;
}

.eds-section#who .eds-who-grid .eds-pill-card:nth-child(4)::before {
  border-top-color: #f97316;
}

.eds-section#who .eds-pill-title {
  font-size: 1.02rem;
  margin-bottom: 0.45rem;
  transition: color 0.3s ease;
}

.eds-section#who .eds-pill-card:hover .eds-pill-title {
  color: var(--eds-primary);
}

.eds-section#who .eds-pill-body {
  font-size: 0.93rem;
  line-height: 1.55;
  color: #4b5563;
}

/* MODULES */
.eds-products {
  background: var(--eds-bg-soft);
}

.eds-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
  margin-top: 2rem;
}

@media (max-width: 1100px) {
  .eds-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 800px) {
  .eds-product-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.eds-product-card {
  background: #ffffff;
  border-radius: 1.1rem;
  border: 1px solid #e5e7eb;
  padding: 1.25rem 1.25rem 1.4rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
  transition: all 0.3s ease;
  transform-origin: center;
}

.eds-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
  border-color: #c7d2fe;
}

.eds-product-header {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}

.eds-product-icon-badge {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.18);
  background: #eef2ff;
  transition: all 0.3s ease;
}

.eds-product-card:hover .eds-product-icon-badge {
  transform: translateY(-2px) rotate(5deg) scale(1.08);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.25);
}

.eds-product-card:nth-child(1) .eds-product-icon-badge {
  background: #eef2ff;
}
.eds-product-card:nth-child(2) .eds-product-icon-badge {
  background: #e0f2fe;
}
.eds-product-card:nth-child(3) .eds-product-icon-badge {
  background: #dcfce7;
}
.eds-product-card:nth-child(4) .eds-product-icon-badge {
  background: #fef3c7;
}
.eds-product-card:nth-child(5) .eds-product-icon-badge {
  background: #fee2e2;
}
.eds-product-card:nth-child(6) .eds-product-icon-badge {
  background: #f5f3ff;
}
.eds-product-card:nth-child(7) .eds-product-icon-badge {
  background: #e0f2fe;
}
.eds-product-card:nth-child(8) .eds-product-icon-badge {
  background: #dcfce7;
}
.eds-product-card:nth-child(9) .eds-product-icon-badge {
  background: #fef3c7;
}

.eds-product-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--eds-accent);
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.eds-product-title {
  font-weight: 700;
  font-size: 1.02rem;
  color: #111827;
  transition: color 0.3s ease;
}

.eds-product-card:hover .eds-product-title {
  color: var(--eds-primary);
}

.eds-product-body {
  font-size: 0.9rem;
  color: #4b5563;
  margin-top: 0.6rem;
}

.eds-product-body ul {
  padding-left: 1.1rem;
  margin: 0;
}

.eds-product-body li + li {
  margin-top: 0.25rem;
}

.eds-product-footer {
  margin-top: auto;
  padding-top: 0.9rem;
  font-size: 0.85rem;
}

.eds-link-chevron {
  text-decoration: none;
  font-weight: 600;
  color: var(--eds-primary);
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.eds-link-chevron:hover {
  text-decoration: none;
  gap: 0.6rem;
}

/* PLANS */
.eds-plans {
  background: #ffffff;
}

.eds-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
  margin-top: 2rem;
}

@media (max-width: 1100px) {
  .eds-plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 800px) {
  .eds-plan-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.eds-plan-card {
  border-radius: 1.2rem;
  border: 1px solid #e5e7eb;
  padding: 1.5rem 1.4rem;
  background: #ffffff;
  height: 100%;
  text-align: left;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.eds-plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.12);
}

.eds-plan-card.featured {
  border-color: var(--eds-primary);
  box-shadow: 0 18px 40px rgba(79, 70, 229, 0.25);
  transform: scale(1.02);
}

.eds-plan-card.featured:hover {
  transform: scale(1.02) translateY(-6px);
  box-shadow: 0 20px 50px rgba(79, 70, 229, 0.3);
}

.eds-plan-chip {
  position: absolute;
  top: 0.9rem;
  right: 1.1rem;
  font-size: 0.75rem;
  background: rgba(79, 70, 229, 0.1);
  color: var(--eds-primary-dark);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.eds-plan-card.featured:hover .eds-plan-chip {
  background: rgba(79, 70, 229, 0.15);
  transform: scale(1.05);
}

.eds-plan-name {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.15rem;
  transition: color 0.3s ease;
}

.eds-plan-card:hover .eds-plan-name {
  color: var(--eds-primary);
}

.eds-plan-desc {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 0.7rem;
}

.eds-plan-meta {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-bottom: 0.6rem;
}

.eds-plan-features {
  font-size: 0.9rem;
  color: #4b5563;
  padding-left: 1.1rem;
  margin-bottom: 1rem;
}

.eds-plan-features li + li {
  margin-top: 0.25rem;
}

/* CONTACT */
.eds-contact {
  background: var(--eds-bg-soft);
}

.eds-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  margin-top: 2rem;
  align-items: flex-start;
}

@media (max-width: 900px) {
  .eds-contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

.eds-contact-card {
  background: #ffffff;
  border-radius: 1.2rem;
  border: 1px solid #e5e7eb;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
  transition: all 0.3s ease;
}

.eds-contact-card:hover {
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
  transform: translateY(-4px);
}

.eds-contact-label {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.eds-contact small {
  color: #6b7280;
}

.eds-contact-card .form-control {
  width: 100%;
  padding: 0.5rem 0.6rem;
  border-radius: 0.6rem;
  border: 1px solid #d1d5db;
  font-size: 0.92rem;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.eds-contact-card .form-control:focus {
  outline: none;
  border-color: var(--eds-primary);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.eds-contact-card textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.eds-contact-card .form-row {
  margin-bottom: 0.75rem;
}

.eds-contact-card .btn-submit {
  border-radius: 999px;
  padding: 0.45rem 1.5rem;
  font-weight: 600;
  border: none;
  background: linear-gradient(135deg, var(--eds-primary), var(--eds-primary-dark));
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.35);
  font-size: 0.92rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.eds-contact-card .btn-submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.eds-contact-card .btn-submit:hover::before {
  left: 100%;
}

.eds-contact-card .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(79, 70, 229, 0.45);
}

/* FOOTER */
.eds-footer {
  background: #020617;
  color: #cbd5f5;
  padding: 2rem 1.25rem 1.5rem;
  font-size: 0.86rem;
}

/* Responsive footer */
@media (max-width: 768px) {
  .eds-footer {
    padding: 1.75rem 1rem 1.25rem;
    font-size: 0.82rem;
  }
}

@media (max-width: 480px) {
  .eds-footer {
    padding: 1.5rem 1rem 1rem;
    font-size: 0.8rem;
  }
}

.eds-footer img {
  height: 18px;
  width: auto;
  object-fit: contain;
  max-width: 100%;
}

@media (max-width: 768px) {
  .eds-footer img {
    height: 16px;
  }
}

.eds-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.8rem;
}

@media (max-width: 900px) {
  .eds-footer-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

.eds-footer h6 {
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: #e5e7eb;
  margin-bottom: 0.6rem;
}

/* Responsive footer headings */
@media (max-width: 768px) {
  .eds-footer h6 {
    font-size: 0.82rem;
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 480px) {
  .eds-footer h6 {
    font-size: 0.8rem;
  }
}

.eds-footer a {
  color: #a5b4fc;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.eds-footer a:hover {
  color: #c4b5fd;
  text-decoration: none;
  transform: translateX(5px);
}

/* SCROLL REVEAL */
.eds-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.eds-reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

html {
  scroll-behavior: smooth;
}

/* =============================================
   RESPONSIVE UTILITIES
   ============================================= */

/* Container queries support (future-proofing) */
@supports (container-type: inline-size) {
  .eds-section-inner {
    container-type: inline-size;
  }
}

/* Print styles */
@media print {
  .eds-navbar,
  .eds-footer,
  .eds-carousel-nav,
  .eds-carousel-dots {
    display: none;
  }

  .eds-section {
    page-break-inside: avoid;
  }

  .eds-hero,
  .eds-section {
    padding: 1rem 0;
  }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .eds-navbar,
  .eds-product-card,
  .eds-plan-card,
  .eds-contact-card {
    border-width: 2px;
  }

  .eds-btn-outline,
  .eds-btn-primary {
    border-width: 2px;
  }
}

/* Landscape orientation on mobile */
@media (max-width: 900px) and (orientation: landscape) {
  .eds-hero {
    padding: 1.5rem 1rem;
  }

  .eds-hero-inner {
    gap: 1.5rem;
  }

  .eds-section {
    padding: 2rem 1rem;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .eds-btn-primary,
  .eds-btn-outline,
  .eds-carousel-nav,
  .eds-carousel-dot {
    min-height: 44px; /* Apple's minimum touch target */
    min-width: 44px;
  }

  .eds-nav-links a {
    padding: 0.5rem;
  }
}

/* Small height devices (landscape phones) */
@media (max-height: 500px) {
  .eds-navbar {
    padding: 0.4rem 1rem;
  }

  .eds-hero {
    padding: 1.5rem 1rem;
  }
}

/* =============================================
   COMPREHENSIVE CSS DOCUMENTATION
   =============================================

   This CSS file implements the complete styling for the EdSpire landing page.
   It follows modern CSS best practices including:

   1. CSS Variables for theming
   2. BEM methodology for class naming
   3. Mobile-first responsive design
   4. Comprehensive animation system
   5. Accessible hover and focus states
   6. Organized component structure

   =============================================
   CSS VARIABLES (THEMING)
   =============================================

   :root {
     --eds-primary: #4f46e5;          // Primary brand color
     --eds-primary-dark: #4338ca;   // Darker variant for depth
     --eds-accent: #00b794;         // Accent color for highlights
     --eds-bg-soft: #f3f4ff;        // Soft background color
     --eds-text-dark: #111827;      // Primary text color
   }

   =============================================
   RESPONSIVE DESIGN SYSTEM
   =============================================

   Mobile-first approach with strategic breakpoints:
   - Base styles: Mobile devices
   - @media (max-width: 700px): Small tablets
   - @media (max-width: 800px): Tablets
   - @media (max-width: 900px): Small desktops
   - @media (max-width: 1100px): Medium desktops
   - @media (min-width: 992px): Large desktops

   =============================================
   ANIMATION SYSTEM
   =============================================

   Keyframe animations for smooth transitions:
   - slideInDown: Top-to-bottom entrance
   - slideInLeft: Left-to-right entrance
   - slideInRight: Right-to-left entrance
   - fadeIn: Fade entrance effect
   - pulse: Pulsing effect for attention

   =============================================
   COMPONENT ARCHITECTURE
   =============================================

   1. NAVBAR: Sticky navigation with scroll effects
   2. HERO: Main hero section with carousel
   3. SECTIONS: Generic section styling
   4. WHO WE SERVE: Pill card grid system
   5. PRODUCTS: Product card grid system
   6. PLANS: Pricing plan cards
   7. CONTACT: Contact form layout
   8. FOOTER: Footer with multi-column layout
   9. SCROLL REVEAL: Animation system

   =============================================
   BROWSER COMPATIBILITY
   =============================================

   - Chrome/Edge: Full support
   - Firefox: Full support
   - Safari: Full support
   - Mobile browsers: Full support

   =============================================
   PERFORMANCE OPTIMIZATIONS
   =============================================

   - Hardware-accelerated transforms
   - Efficient CSS selectors
   - Minimal repaints/reflows
   - Optimized transitions
   - Backdrop-filter for modern browsers

   =============================================
   END OF DOCUMENTATION
   ============================================= */
