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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Gilroy;
  /* background: #f9f8fc; */
  color: #1a1525;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/*  TYPOGRAPHY  */
.section-title {
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: #1a1525;
}

.section-sub {
  font-size: 1.05rem;
  color: #5b5270;
  max-width: 640px;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.accent {
  background: linear-gradient(135deg, #7c3aed, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/*  BUTTONS  */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: 60px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, #7c3aed, #d9cad1);
  color: white;
  box-shadow: 0 8px 20px -6px rgba(124, 58, 237, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px -8px rgba(117, 65, 207, 0.45);
}

.btn-outline {
  background: transparent;
  border-color: #e2d9f0;
  color: #fff;
}
.btn-outline:hover {
  border-color: #7c3aed;
  color: #7c3aed;
  background: rgba(124, 58, 237, 0.04);
}

.btn-sm {
  padding: 0.55rem 1.3rem;
  font-size: 0.95rem;
}

/*  NAVBAR  */
.top {
  position: sticky;
  top: 0;
  color: white;
  z-index: 100;
  background: black;
  backdrop-filter: blur(14px);
  padding: 1.2rem 0;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #7c3aed, #d9cad1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.brand__name {
  font-weight: 800;
  font-size: 1.6rem; /* FIX: was 2rem */
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #7c3aed, #d9cad1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.links {
  display: flex;
  gap: 1.8rem;
  font-weight: 500;
  font-size: 1rem;
  color: #fff;
}
.links a {
  transition: color 0.2s;
}
.links a:hover {
  color: #7c3aed;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle .bar {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #fff;
  margin: 5px 0;
  border-radius: 4px;
  transition: 0.25s;
}

/*  HERO  */
.hero {
  background: #0a0a1a;
  background-image:
    radial-gradient(
      circle at 15% 20%,
      rgba(124, 58, 237, 0.25),
      transparent 45%
    ),
    radial-gradient(
      circle at 85% 75%,
      rgba(236, 72, 153, 0.18),
      transparent 50%
    );
  color: white;
  padding: 5rem 0 4rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  border-bottom-left-radius: 32px;
  border-bottom-right-radius: 32px;
  overflow: hidden;
}

.hero .container {
  width: 100%;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.hero__badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #facc15;
  margin-bottom: 1.4rem;
  position: relative;
  padding-left: 1rem;
}
.hero__badge::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #facc15;
  box-shadow: 0 0 12px #facc15;
}

.hero__title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.4rem;
  color: #fff;
}
.hero__title .accent {
  background: linear-gradient(135deg, #a78bfa, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__lead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 540px;
  margin-bottom: 2rem;
  line-height: 1.65;
}

.hero__cta {
  font-size: 1rem;
  padding: 1rem 2.2rem;
}

.hero__right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__image-wrap {
  width: 100%;
  max-width: 100%;
}

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

/* BOTTOM FEATURES ROW */
.hero__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.hero__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 1.2rem;
  transition:
    background 0.2s,
    transform 0.2s,
    border-color 0.2s;
}
.hero__feature:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(167, 139, 250, 0.35);
  transform: translateY(-3px);
}
.hero__feature-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(124, 58, 237, 0.2);
  color: #a78bfa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.hero__feature-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}
.hero__feature-sub {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.45;
}

/*  SERVICE CARDS  */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.pricing-card {
  background: white;
  border-radius: 24px;
  padding: 1.5rem 1.2rem;
  text-align: center;
  box-shadow: 0 12px 30px -12px rgba(80, 40, 80, 0.1);
  border: 1px solid #f0e9f8;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 40px -18px rgba(124, 58, 237, 0.15);
}
.pricing-card__platform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #1a1525;
}
.pricing-card__price {
  font-size: 2rem;
  font-weight: 800;
  margin: 0.6rem 0;
  background: linear-gradient(135deg, #7c3aed, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pricing-card__label {
  font-size: 0.85rem;
  color: #5b5270;
  margin-bottom: 1.2rem;
}

/*  PURPLE BANNER  */
.banner-purple {
  background: linear-gradient(135deg, #7c3aed, #a855f7, #ec4899);
  border-radius: 40px;
  padding: 3.5rem 2rem;
  text-align: center;
  color: white;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}
.banner-purple h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.banner-purple p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}
.banner-purple .btn {
  background: white;
  color: #7c3aed;
  box-shadow: 0 10px 24px -8px rgba(0, 0, 0, 0.3);
}
.banner-purple .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px -10px rgba(0, 0, 0, 0.35);
}

/*  ABOUT US  */
.about-hero {
  padding: 6rem 1.5rem 0;
  text-align: center;
  color: black;
  position: relative;
  overflow: hidden;
}
.about-hero__label {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.85;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.about-hero__title {
  font-size: clamp(1.7rem, 4.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-intro {
  max-width: 780px;
  margin: 0 auto 4rem;
  text-align: center;
  padding: 0 1rem;
}
.about-intro__heading {
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #1a1525;
  margin-bottom: 1.5rem;
}
.about-intro__heading span {
  background: linear-gradient(135deg, #7c3aed, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-intro__text strong {
  color: #1a1525;
  font-weight: 700;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 3rem;
}
.about-split__image {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 50px -24px rgba(124, 58, 237, 0.35);
  background: #f3edfe;
}
.about-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  display: block;
}
.about-split__content h3 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #1a1525;
  margin-bottom: 1.2rem;
  line-height: 1.25;
}
.about-split__content p {
  font-size: 1rem;
  color: #5b5270;
  line-height: 1.75;
  margin-bottom: 1.2rem;
}
.about-split__content .btn {
  margin-top: 0.6rem;
}

/* Stats row */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 3.5rem 0 1rem;
  border-top: 1px solid #efe8f7;
}
.about-stat {
  text-align: center;
  padding: 0 0.5rem;
}
.about-stat__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ec4899;
}
.about-stat__icon svg {
  width: 56px;
  height: 56px;
}
.about-stat__value {
  font-size: 1.6rem;
  font-weight: 800;
  color: #1a1525;
  margin-bottom: 0.3rem;
  letter-spacing: -0.02em;
}
.about-stat__label {
  font-size: 0.85rem;
  color: #8b7b9b;
  font-weight: 500;
}

/*  SERVICES GRID  */
.services-section {
  padding: 4rem 0;
}

.services-header {
  text-align: center;
  margin-bottom: 3rem;
}
.services-header h2 {
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.services-header p {
  color: #5b5270;
  max-width: 560px;
  margin: 0 auto;
}

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

.service-card {
  background: white;
  border-radius: 24px;
  padding: 2rem 1.8rem;
  box-shadow: 0 12px 30px -12px rgba(80, 40, 80, 0.1);
  border: 1px solid #f0e9f8;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 40px -18px rgba(124, 58, 237, 0.15);
}
.service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  background: #f3edfe;
  color: #7c3aed;
}
.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: #1a1525;
}
.service-card p {
  font-size: 0.92rem;
  color: #5b5270;
  flex: 1;
  margin-bottom: 1.2rem;
}
.service-card .explore-link {
  font-weight: 600;
  font-size: 0.88rem;
  color: #7c3aed;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s;
}
.service-card .explore-link:hover {
  gap: 0.7rem;
}

/*  WEEKLY UPDATE  */
.weekly-update {
  background: white;
  border-radius: 32px;
  padding: 2rem;
  box-shadow: 0 12px 30px -12px rgba(80, 40, 80, 0.1);
  border: 1px solid #f0e9f8;
  margin: 3rem 0;
}
.weekly-update h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.weekly-update .date {
  font-size: 0.85rem;
  color: #8b7b9b;
  margin-bottom: 1.5rem;
}
.update-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.update-tag {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: #faf7ff;
  padding: 0.5rem 1rem;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #3d3650;
  border: 1px solid #ede6f5;
}
.update-tag i {
  color: #7c3aed;
}

/*  DASHBOARD  */
.dashboard-section {
  padding: 4rem 0;
}

.dashboard-mock {
  background: linear-gradient(145deg, #1a1525, #2d2440);
  border-radius: 32px;
  padding: 2rem;
  color: white;
  box-shadow: 0 30px 60px -24px rgba(26, 21, 37, 0.5);
  overflow: hidden;
  overflow-x: auto;
}

.dashboard-mock__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.dashboard-mock__header h3 {
  font-size: 1.2rem;
  font-weight: 700;
}
.dashboard-mock__tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.dashboard-tab {
  padding: 0.4rem 1rem;
  border-radius: 40px;
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  cursor: default;
}
.dashboard-tab.active {
  background: linear-gradient(135deg, #7c3aed, #ec4899);
  color: white;
}

.dashboard-mock__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.dash-stat {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 1rem 1.2rem;
}
.dash-stat__label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.3rem;
}
.dash-stat__value {
  font-size: 1.4rem;
  font-weight: 800;
}

.dashboard-mock__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  min-width: 600px;
}
.dashboard-mock__table th {
  text-align: left;
  padding: 0.6rem 0.4rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.dashboard-mock__table td {
  padding: 0.7rem 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
}
.dash-badge {
  padding: 0.2rem 0.7rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
}
.dash-badge--progress {
  background: rgba(251, 191, 36, 0.2);
  color: #fbbf24;
}
.dash-badge--complete {
  background: rgba(52, 211, 153, 0.2);
  color: #34d399;
}

.dashboard-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.dash-price {
  font-size: 1.3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #a78bfa, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/*  FEATURES (WHY US)  */
.features-dark {
  background: white;
  padding: 4rem 0;
  color: black;
}
.features-dark .section-title {
  color: black;
  text-align: center;
}
.features-dark .section-sub {
  color: black;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 2.5rem;
}
.feature-card {
  background: rgba(41, 30, 30, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 2rem 1.6rem;
  transition:
    background 0.2s,
    transform 0.2s;
}
.feature-card:hover {
  background: rgba(42, 38, 38, 0.08);
  transform: translateY(-4px);
  border: 1px solid rgb(225, 220, 220);
}
.feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #7c3aed, #ec4899);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  color: white;
}
.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.feature-card p {
  font-size: 0.9rem;
  color: black;
}

/*  FAQ  */
.faq-section {
  padding: 4rem 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-top: 2rem;
}
.faq-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.faq-nav__item {
  padding: 0.7rem 1rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #5b5270;
  cursor: default;
  transition: background 0.2s;
}
.faq-nav__item.active {
  background: #f3edfe;
  color: #7c3aed;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.faq-item {
  background: white;
  border-radius: 16px;
  border: 1px solid #f0e9f8;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item:hover {
  box-shadow: 0 8px 20px -10px rgba(124, 58, 237, 0.1);
}

.faq-question {
  padding: 1.1rem 1.4rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: #1a1525;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  gap: 1rem;
}
.faq-question i {
  color: #7c3aed;
  font-size: 0.85rem;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
  padding: 0 1.4rem;
  color: #5b5270;
  font-size: 0.9rem;
  line-height: 1.6;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 1.4rem 1.2rem;
}

/*  TESTIMONIALS  */
.testimonials-section {
  padding: 4rem 0;
  background: #faf7ff;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.8rem;
  margin-top: 2rem;
}
.testimonial-card {
  background: white;
  border-radius: 24px;
  padding: 2rem 1.8rem;
  box-shadow: 0 12px 30px -12px rgba(80, 40, 80, 0.1);
  border: 1px solid #f0e9f8;
}
.testimonial-card__quote {
  font-size: 2.2rem;
  line-height: 1;
  color: #7c3aed;
  margin-bottom: 0.8rem;
  font-weight: 800;
}
.testimonial-card p {
  font-size: 0.95rem;
  color: #3d3650;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed, #ec4899);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.testimonial-card__name {
  font-weight: 700;
  font-size: 0.9rem;
  color: #1a1525;
}
.testimonial-card__role {
  font-size: 0.78rem;
  color: #8b7b9b;
}

/*  BLOG  */
.blog-section {
  padding: 4rem 0;
}
.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.blog-header h2 {
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
}
.blog-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 30px -12px rgba(80, 40, 80, 0.1);
  border: 1px solid #f0e9f8;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 40px -18px rgba(124, 58, 237, 0.15);
}
.blog-card__image {
  height: 160px;
  background: linear-gradient(135deg, #7c3aed, #ec4899);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
  opacity: 0.85;
}
.blog-card__body {
  padding: 1.5rem 1.4rem;
}
.blog-card__tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #7c3aed;
  margin-bottom: 0.5rem;
}
.blog-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1a1525;
  line-height: 1.35;
}
.blog-card p {
  font-size: 0.88rem;
  color: #5b5270;
  margin-bottom: 1rem;
}
.blog-card .read-more {
  font-weight: 600;
  font-size: 0.85rem;
  color: #7c3aed;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s;
}
.blog-card .read-more:hover {
  gap: 0.7rem;
}

/*  CATEGORIES  */
.categories-section {
  background: #000;
  padding: 4rem 0;
  color: white;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
}
.categories-section h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  text-align: center;
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.2rem;
}
.category-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 1.4rem 1.2rem;
  transition:
    background 0.2s,
    transform 0.2s;
}
.category-card:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-3px);
}
.category-card__title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
}
.category-card__title i {
  color: #a78bfa;
}
.category-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.category-card li {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
  cursor: default;
}
.category-card li:hover {
  color: rgba(255, 255, 255, 0.85);
}

/*  NEWSLETTER  */
.newsletter {
  background: black;
  padding: 3rem 1.5rem; /* FIX: responsive side padding */
  text-align: center;
  color: white;
}
.newsletter h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
  color: white;
}
.newsletter p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 480px;
  margin: 0 auto 1.8rem;
  font-size: 0.95rem;
}
.newsletter-form {
  display: flex;
  gap: 0.6rem;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter-form input {
  flex: 1 1 200px;
  padding: 0.85rem 1.2rem;
  border-radius: 60px;
  border: none;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  min-width: 0;
}
.newsletter-form .btn {
  background: #1a1525;
  color: white;
  box-shadow: none;
}
.newsletter-form .btn:hover {
  background: #2d2440;
  transform: translateY(-2px);
}

/*  FOOTER  */
.footer {
  background: black;
  color: white;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(252, 247, 247, 0.08);
}
.footer__grid {
  display: grid;
  grid-template-columns: 60% 20% 20%;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer__brand-name {
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #a78bfa, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer__brand-name i {
  background: linear-gradient(135deg, #a78bfa, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.5rem;
}
.footer__brand p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  max-width: 600px;
  font-weight: 500;
}
.footer__col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1rem;
}
.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__col a {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}
.footer__col a:hover {
  color: white;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.4);
}

/*  ANIMATIONS  */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s cubic-bezier(0.2, 0.9, 0.3, 1),
    transform 0.7s cubic-bezier(0.2, 0.9, 0.3, 1);
}
.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}
.animate-delay-1 {
  transition-delay: 0.05s;
}
.animate-delay-2 {
  transition-delay: 0.1s;
}
.animate-delay-3 {
  transition-delay: 0.15s;
}
.animate-delay-4 {
  transition-delay: 0.2s;
}
.animate-delay-5 {
  transition-delay: 0.25s;
}

/*  RESPONSIVE  */
@media (max-width: 1100px) {
  .services-grid,
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1000px) {
  .hero {
    min-height: auto;
    padding: 4rem 0 3rem;
  }
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
  }
  .hero__right {
    justify-content: center;
  }
  .hero__image-wrap {
    max-width: 100%;
  }
  .hero__features {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .faq-nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

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

  .about-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 800px) {
  .container {
    padding: 0 1.5rem;
  }

  .nav-toggle {
    display: block;
  }

  .links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 0 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0.8rem;
    font-size: 1rem;
  }
  .links.active {
    display: flex;
  }

  .brand__name {
    font-size: 1.4rem;
  }
}

@media (max-width: 700px) {
  .services-grid,
  .features-grid {
    grid-template-columns: 1fr; /* FIX: stack on small screens */
  }

  .dashboard-mock {
    padding: 1.5rem 1rem;
  }
  .dashboard-mock__stats {
    grid-template-columns: 1fr 1fr;
  }
  .dashboard-mock__table {
    font-size: 0.75rem;
  }
  .dashboard-mock__table th,
  .dashboard-mock__table td {
    padding: 0.5rem 0.3rem;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 1.2rem;
  }

  .hero {
    padding: 2.5rem 0 2.5rem;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
  }
  .hero__title {
    font-size: 1.9rem;
  }
  .hero__lead {
    font-size: 0.95rem;
  }
  .hero__cta {
    width: 100%;
  }
  .hero__features {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  .hero__feature {
    padding: 1rem;
  }

  .pricing-cards {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .banner-purple {
    padding: 2.5rem 1.5rem;
    border-radius: 28px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .newsletter {
    padding: 2.5rem 1.2rem;
    border-radius: 24px;
  }

  .about-hero {
    padding: 4rem 1.2rem 0;
  }
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 2.5rem 0 0;
  }
  .about-stat__icon {
    width: 48px;
    height: 48px;
  }
  .about-stat__icon svg {
    width: 42px;
    height: 42px;
  }
  .about-stat__value {
    font-size: 1.3rem;
  }

  .dashboard-mock {
    padding: 1.2rem 0.8rem;
    border-radius: 24px;
  }
  .dashboard-mock__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .faq-nav {
    flex-direction: column;
  }

  .categories-section {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    padding: 3rem 0;
  }
}

@media (max-width: 400px) {
  .container {
    padding: 0 1rem;
  }
  .brand__name {
    font-size: 1.2rem;
  }
  .brand__icon {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
  .btn {
    padding: 0.7rem 1.4rem;
    font-size: 0.85rem;
  }
  .pricing-cards {
    grid-template-columns: 1fr;
  }
  .dashboard-mock__stats {
    grid-template-columns: 1fr;
  }
  .about-stats {
    grid-template-columns: 1fr;
  }
  .hero__title {
    font-size: 1.7rem;
  }
}
