.project-card-purple {
  background-color: blueviolet;
}

.project-card-blue {
  background-color: rgb(28, 147, 186);
}

.project-card-orange {
  background-color: rgb(171, 136, 71);
}

/* ------------------------------
   COSMIC VARIABLES
--------------------------------*/
:root {
  --clr-bg-deep: #050816;
  --clr-bg-card: #0b1020;
  --clr-border-soft: rgba(255, 255, 255, 0.08);
  --clr-text-main: #f5f5ff;
  --clr-text-muted: #a5a7c7;

  --clr-accent-purple: #a855f7;
  --clr-accent-blue: #38bdf8;
  --clr-accent-orange: #fb923c;

  --radius-lg: 1.25rem;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.55);
  --transition-fast: 180ms ease-out;
}

:root {
  /* Mobile-first base sizes */
  --fs-xs: clamp(0.75rem, 1vw + 0.5rem, 0.9rem);
  --fs-sm: clamp(0.9rem, 1vw + 0.6rem, 1rem);
  --fs-md: clamp(1rem, 1vw + 0.8rem, 1.25rem);
  --fs-lg: clamp(1.4rem, 2vw + 1rem, 2rem);
  --fs-xl: clamp(1.8rem, 3vw + 1rem, 2.8rem);
  --fs-xxl: clamp(2.2rem, 4vw + 1rem, 4.5rem);
}

body {
  line-height: 1.7;
  font-size: var(--fs-sm);
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #444;
  font-weight: 400;
  line-height: 1.8;
  font-size: 1rem;
  background-color: rgb(249, 249, 249);
}

/* Why work with me  */
/* ------------------------------
   SECTION WRAPPER (MOBILE FIRST)
--------------------------------*/
.why-me {
  padding: 3rem 1.25rem;
  background: radial-gradient(circle at top, #1e1b4b 0, #020617 55%, #000 100%);
  color: #f5f5ff;
}

.why-me__inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* ------------------------------
   HEADER
--------------------------------*/
.why-me__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.why-me__header h2 {
  font-size: var(--fs-lg);
  margin-bottom: 0.5rem;
}

.why-me__header p {
  color: #a5a7c7;
  font-size: 0.95rem;
  max-width: 420px;
  margin: 0.5rem auto 0;
}

/* ------------------------------
   GRID (MOBILE FIRST)
--------------------------------*/
.why-me__grid {
  display: grid;
  gap: 1.5rem;
}

/* ------------------------------
   CARDS
--------------------------------*/
.why-card {
  background: linear-gradient(
    145deg,
    rgba(15, 23, 42, 0.96),
    rgba(15, 23, 42, 0.85)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.25rem;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
  text-align: center;
  transition:
    transform 180ms ease-out,
    box-shadow 180ms ease-out;
  position: relative;
  overflow: hidden;
}

/* Cosmic glow */
.why-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  opacity: 0;
  background: radial-gradient(
    circle at top,
    rgba(168, 85, 247, 0.18),
    transparent 60%
  );
  transition: opacity 180ms ease-out;
  pointer-events: none;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.75);
}

.why-card:hover::before {
  opacity: 1;
}

/* ------------------------------
   ICONS & TEXT
--------------------------------*/
.why-card__icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.why-card__title {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.why-card__text {
  color: #a5a7c7;
  font-size: 0.9rem;
  line-height: 1.5;
}

/*  */
/* ------------------------------
   SECTION WRAPPER (MOBILE FIRST)
--------------------------------*/
.pricing-compare {
  padding: 3rem 1.25rem;
  background: radial-gradient(circle at top, #1e1b4b 0, #020617 55%, #000 100%);
  color: var(--clr-text-main);
}

.pricing-compare__inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* ------------------------------
   HEADER
--------------------------------*/
.pricing-compare__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.pricing-compare__header h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.pricing-compare__header p {
  color: var(--clr-text-muted);
  font-size: 0.95rem;
  max-width: 420px;
  margin: 0.5rem auto 0;
}

/* ------------------------------
   GRID (MOBILE FIRST: 1 COLUMN)
--------------------------------*/
.pricing-compare__grid {
  display: grid;
  gap: 1.5rem;
}

/* ------------------------------
   PRICING CARDS
--------------------------------*/
.pricing-card {
  position: relative;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    145deg,
    rgba(15, 23, 42, 0.96),
    rgba(15, 23, 42, 0.85)
  );
  border: 1px solid var(--clr-border-soft);
  box-shadow: var(--shadow-soft);
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

/* Cosmic glow */
.pricing-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  opacity: 0;
  background: radial-gradient(
    circle at top,
    rgba(168, 85, 247, 0.18),
    transparent 60%
  );
  transition: opacity var(--transition-fast);
  pointer-events: none;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.75);
}

.pricing-card:hover::before {
  opacity: 1;
}

/* Highlighted card */
.pricing-card--highlight {
  border-color: rgba(56, 189, 248, 0.7);
  background: linear-gradient(
    145deg,
    rgba(15, 23, 42, 0.98),
    rgba(30, 64, 175, 0.9)
  );
}

/* ------------------------------
   BADGES
--------------------------------*/
.pricing-card__badge {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  background: rgba(148, 163, 253, 0.12);
  border: 1px solid rgba(148, 163, 253, 0.4);
  margin-bottom: 1rem;
}

.pricing-card__badge--highlight {
  background: rgba(56, 189, 248, 0.18);
  border-color: rgba(56, 189, 248, 0.7);
}

/* ------------------------------
   TITLES & PRICE
--------------------------------*/
.pricing-card__title {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.pricing-card__price {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--clr-accent-purple);
}

.pricing-card--business .pricing-card__price {
  color: var(--clr-accent-blue);
}

.pricing-card--redesign .pricing-card__price {
  color: var(--clr-accent-orange);
}

.pricing-card__tagline {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  margin-bottom: 1.1rem;
}

/* ------------------------------
   FEATURES
--------------------------------*/
.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  color: var(--clr-text-muted);
  font-size: 0.9rem;
}

.pricing-card__features li {
  margin-bottom: 0.45rem;
  display: flex;
  gap: 0.4rem;
}

.pricing-card__features li::before {
  content: "✦";
  font-size: 0.7rem;
  color: var(--clr-accent-purple);
}

.pricing-card--business .pricing-card__features li::before {
  color: var(--clr-accent-blue);
}

.pricing-card--redesign .pricing-card__features li::before {
  color: var(--clr-accent-orange);
}

/* ------------------------------
   CTA BUTTONS
--------------------------------*/
.pricing-card__cta {
  width: 100%;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 253, 0.6);
  background: transparent;
  color: var(--clr-text-main);
  cursor: pointer;
  transition:
    background var(--transition-fast),
    box-shadow var(--transition-fast);
}

.pricing-card__cta:hover {
  background: rgba(148, 163, 253, 0.18);
  box-shadow: 0 0 18px rgba(129, 140, 248, 0.45);
}

.pricing-card__cta--primary {
  background: linear-gradient(
    135deg,
    var(--clr-accent-blue),
    var(--clr-accent-purple)
  );
  border: none;
  box-shadow: 0 0 22px rgba(56, 189, 248, 0.55);
}

/* Process */
/* ------------------------------
   SECTION WRAPPER (MOBILE FIRST)
--------------------------------*/
.process {
  padding: 3rem 1.25rem;
  background: radial-gradient(circle at top, #1e1b4b 0, #020617 55%, #000 100%);
  color: #f5f5ff;
}

.process__inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* ------------------------------
   HEADER
--------------------------------*/
.process__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.process__header h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.process__header p {
  color: #a5a7c7;
  font-size: 0.95rem;
  max-width: 420px;
  margin: 0.5rem auto 0;
}

/* ------------------------------
   GRID (MOBILE FIRST)
--------------------------------*/
.process__grid {
  display: grid;
  gap: 1.5rem;
}

/* ------------------------------
   STEP CARDS
--------------------------------*/
.process-step {
  background: linear-gradient(
    145deg,
    rgba(15, 23, 42, 0.96),
    rgba(15, 23, 42, 0.85)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.25rem;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition:
    transform 180ms ease-out,
    box-shadow 180ms ease-out;
}

/* Cosmic glow */
.process-step::before {
  content: "";
  position: absolute;
  inset: -40%;
  opacity: 0;
  background: radial-gradient(
    circle at top,
    rgba(168, 85, 247, 0.18),
    transparent 60%
  );
  transition: opacity 180ms ease-out;
  pointer-events: none;
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.75);
}

.process-step:hover::before {
  opacity: 1;
}

/* ------------------------------
   ICONS & TEXT
--------------------------------*/
.process-step__icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.process-step__title {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.process-step__text {
  color: #a5a7c7;
  font-size: 0.9rem;
  line-height: 1.5;
}

/*  */
/* ------------------------------
   RESPONSIVE BREAKPOINTS
--------------------------------*/

/* Tablet: 2 columns */
@media (min-width: 640px) {
  .why-me__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-compare__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card--highlight {
    order: -1;
  }
  .process__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop: 3 columns */
@media (min-width: 960px) {
  .why-me__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .pricing-compare__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing-card--highlight {
    order: 0;
  }
  .process__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
