/* ========================================
   Fonts
======================================== */
@font-face {
  font-family: 'MTN Brighter Sans';
  src: url('../fonts/MTNBrighterSans-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'MTN Brighter Sans';
  src: url('../fonts/MTNBrighterSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'MTN Brighter Sans';
  src: url('../fonts/MTNBrighterSans-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'MTN Brighter Sans';
  src: url('../fonts/MTNBrighterSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ========================================
   Reset & Base
======================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'MTN Brighter Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
  background: #fff;
}

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

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

ul {
  list-style: none;
}

/* ========================================
   Accessibility
======================================== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: #9E005D;
  color: #fff;
  padding: 8px 16px;
  border-radius: 0 0 8px 8px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 10000;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

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

:focus-visible {
  outline: 2px solid #9E005D;
  outline-offset: 2px;
}

/* ========================================
   Utilities
======================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-badge {
  display: inline-block;
  background: #f3e5f5;
  color: #9E005D;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 20px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.section-badge--light {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.3;
  margin-bottom: 16px;
}

.section-title--center {
  text-align: center;
}

.section-title--accent {
  color: #9E005D;
}

.section-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
  max-width: 600px;
}

.section-description--center {
  text-align: center;
  margin: 0 auto 16px;
}

.section-badge--center {
  display: block;
  text-align: center;
  width: fit-content;
  margin: 0 auto 16px;
}

/* ========================================
   Buttons
======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn__icon {
  width: 14px;
  height: 14px;
  filter: brightness(0) invert(1);
}

.btn--primary {
  background: #9E005D;
  color: #fff;
}

.btn--primary:hover {
  background: #6e1470;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(139, 26, 139, 0.3);
}

.btn--outline {
  background: #fff;
  color: #333;
  border: 1px solid #ddd;
}

.btn--outline:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
}

.btn--white {
  background: #fff;
  color: #9E005D;
}

.btn--white:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
}

.btn--white .btn__icon {
  filter: none;
}

/* ========================================
   Navbar
======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar__logo img {
  height: 65px;
}

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

.navbar__link {
  font-size: 0.92rem;
  font-weight: 500;
  color: #555;
  transition: color 0.3s;
  position: relative;
}

.navbar__link:hover,
.navbar__link.active {
  color: #9E005D;
}

.navbar__link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: #9E005D;
  border-radius: 1px;
}

.navbar__cta {
  padding: 10px 24px;
  font-size: 0.88rem;
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.navbar__hamburger span {
  width: 24px;
  height: 2px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ========================================
   Hero
======================================== */
.hero {
  padding-top: 72px;
  background: #fff;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, #7b1a7b, #9b2d9b);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 38% 100%);
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: stretch;
  gap: 24px;
  padding: 36px 0 0;
}

.hero__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero__content {
  flex: 1;
}

.hero__title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.2;
  margin-bottom: 12px;
}

.hero__title--accent {
  color: #9E005D;
}

.hero__subtitle {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 420px;
}

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

.hero__image {
  flex: 1.2;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero__image-wrapper {
  position: relative;
  width: 100%;
  max-width: 540px;
}

.hero__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
  display: block;
}

.hero__stats {
  display: flex;
  gap: 40px;
  padding: 28px 0 36px;
  border-top: 1px solid #eee;
}

.hero__stat {
  display: flex;
  flex-direction: column;
}

.hero__stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #9E005D;
}

.hero__stat-label {
  font-size: 0.88rem;
  color: #888;
  margin-top: 4px;
}

/* ========================================
   About
======================================== */
.about {
  padding: 80px 0;
  background: #f9f5fb;
}

.about__header {
  display: flex;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}

.about__header-text {
  flex: 1;
}

.about__header-images {
  flex: 1;
  position: relative;
  min-height: 380px;
}

.about__img {
  border-radius: 16px;
  object-fit: cover;
  position: absolute;
}

.about__img--1 {
  width: 34%;
  height: auto;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
}

.about__img--2 {
  width: 68%;
  height: 100%;
  top: 0;
  right: 12%;
  z-index: 1;
}

.about__stat-badge {
  position: absolute;
  bottom: 18%;
  left: 22%;
  z-index: 3;
  background: linear-gradient(135deg, #6B003F, #9E005D);
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about__stat-number {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.about__stat-label-badge {
  font-size: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}

.about__quote {
  border-left: 3px solid #9E005D;
  padding-left: 16px;
  margin-bottom: 20px;
  font-size: 0.95rem;
  color: #555;
  font-style: italic;
  line-height: 1.6;
}

.about__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about__card {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.about__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.about__card-icon {
  width: 48px;
  height: 48px;
  background: #f3e5f5;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.about__card-icon--blue {
  background: #e3f2fd;
}

.about__card-icon--purple {
  background: #f3e5f5;
}

.about__card-icon--pink {
  background: #fce4ec;
}

.about__card-icon img {
  width: 24px;
  height: 24px;
}

.about__card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.about__card-text {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

/* ========================================
   Team
======================================== */
.team {
  padding: 80px 0;
  background: #fff;
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.team__member {
  position: relative;
  background: #f5eef8;
  border-radius: 16px;
  border: 1px solid #f0e0f0;
  box-shadow: 0 2px 12px rgba(139, 26, 139, 0.06);
  overflow: hidden;
  height: 360px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.team__member:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(139, 26, 139, 0.12);
}

.team__photo {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.team__photo img {
  width: 94%;
  height: auto;
  object-fit: contain;
  object-position: bottom;
}

.team__member:last-child .team__photo img {
  width: 65%;
}

.team__info {
  position: relative;
  z-index: 1;
  width: calc(100% - 24px);
  margin: 0 12px 12px;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.team__name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 6px;
}

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

.team__role {
  font-size: 0.78rem;
  color: #888;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team__socials {
  display: flex;
  gap: 8px;
}

.team__socials a {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(243, 229, 245, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.team__socials a:hover {
  background: #e1bee7;
}

.team__socials img {
  width: 16px;
  height: 16px;
}

/* ========================================
   Solutions
======================================== */
.solutions {
  padding: 80px 0;
  background: #f9f5fb;
}

/* Featured service */
.solutions__featured {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-top: 40px;
  margin-bottom: 48px;
}

.solutions__featured-image {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
}

.solutions__featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.solutions__featured-content {
  flex: 1;
}

.solutions__featured-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #9E005D;
  margin-bottom: 8px;
}

.solutions__featured-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.solutions__featured-text {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.solutions__featured-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.solutions__featured-point {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: #555;
  line-height: 1.4;
}

.solutions__featured-point img {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.solutions__featured-cta .btn__icon {
  filter: brightness(0) invert(1);
  width: 16px;
  height: 16px;
}

/* Service cards grid */
.solutions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
  padding-top: 24px;
}

.solutions__card {
  position: relative;
  background: #fff;
  padding: 32px 24px 24px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.solutions__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.solutions__card--active {
  background: #9E005D;
}

.solutions__card--active .solutions__card-title {
  color: #fff;
}

.solutions__card--active .solutions__card-text {
  color: rgba(255, 255, 255, 0.7);
}

.solutions__card--active .solutions__card-icon {
  background: #fff;
}

.solutions__card--active .solutions__card-icon img {
  filter: none;
}

.solutions__card-icon {
  position: absolute;
  top: -20px;
  left: 20px;
  width: 44px;
  height: 44px;
  background: #9E005D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solutions__card-icon img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.solutions__card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.solutions__card-text {
  font-size: 0.85rem;
  color: #888;
  line-height: 1.6;
}

/* ========================================
   PrimeApps
======================================== */
.primeapps {
  padding: 80px 0;
}

.primeapps__inner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  padding: 60px;
  background: linear-gradient(135deg, #7b1a7b, #9b2d9b);
}

.primeapps__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.primeapps__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.primeapps__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.primeapps__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.primeapps__description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 28px;
}

.primeapps__features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.primeapps__feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.primeapps__feature-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.primeapps__feature-icon img {
  width: 20px;
  height: 20px;
}

.primeapps__feature-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.primeapps__feature-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* ========================================
   Advantages
======================================== */
.advantages {
  padding: 80px 0;
  background: #f0eff5;
}

.advantages__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.advantages__card {
  padding: 12px 8px;
  text-align: center;
}

.advantages__card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #7b1a7b, #c56ac5);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.advantages__card-icon img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}

.advantages__card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 10px;
}

.advantages__card-text {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.7;
}

/* ========================================
   Testimonials
======================================== */
.testimonials {
  padding: 80px 0;
  background: #fff;
}

.testimonials__track-wrapper {
  margin-top: 40px;
}

.testimonials__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 4px 0;
}

.testimonials__track::-webkit-scrollbar {
  display: none;
}

.testimonials__card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid #e8e4ec;
  flex: 0 0 calc(40% - 12px);
  scroll-snap-align: start;
}

.testimonials__author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.testimonials__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonials__avatar--initials {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
}

.testimonials__avatar--bf { background: linear-gradient(135deg, #d4608a, #e8a0b8); }
.testimonials__avatar--df { background: linear-gradient(135deg, #4a9b7f, #7bc4a8); }
.testimonials__avatar--ao { background: linear-gradient(135deg, #7b6db0, #a99bd4); }
.testimonials__avatar--jm { background: linear-gradient(135deg, #c47a3a, #e0a96e); }

.testimonials__author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonials__author-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a2e;
}

.testimonials__author-location {
  font-size: 0.82rem;
  color: #888;
  font-weight: 400;
}

.testimonials__text {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
}

.testimonials__nav {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 40px;
}

.testimonials__nav-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  padding: 0;
}

.testimonials__nav-btn--prev {
  background: #fff;
  border: 1.5px solid #d0c8d8;
}

.testimonials__nav-btn--prev img {
  width: 18px;
  height: 18px;
  opacity: 0.5;
}

.testimonials__nav-btn--next {
  background: #9E005D;
}

.testimonials__nav-btn--next img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

/* ========================================
   Newsletter
======================================== */
.newsletter {
  padding: 60px 0;
  background: linear-gradient(135deg, #7b1a7b, #9b2d9b);
  color: #fff;
}

.newsletter__inner {
  padding: 48px 0;
  text-align: center;
}

.newsletter__title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.newsletter__description {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 28px;
}

.newsletter__form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter__input {
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.92rem;
  outline: none;
}

.newsletter__input::placeholder {
  color: #aaa;
}

.newsletter__btn {
  white-space: nowrap;
  padding: 12px 24px;
  background: transparent;
  color: #fff;
  border: 1.5px solid #fff;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.newsletter__btn:hover {
  background: #fff;
  color: #9E005D;
}

/* ========================================
   Contact
======================================== */
.contact {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.4);
}

.contact > .container {
  position: relative;
  z-index: 1;
}

.contact__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.contact__inner {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 48px;
  align-items: flex-start;
  margin-top: 32px;
}

.contact__info {
  flex: 1;
}

.contact__title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.contact__description {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 32px;
}

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

.contact__detail {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #333;
  font-size: 0.92rem;
}

.contact__detail img {
  width: 20px;
  height: 20px;
}

.contact__form {
  flex: 0 0 380px;
}

.contact__form-group {
  margin-bottom: 16px;
}

.contact__form-group input,
.contact__form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.3s;
  resize: vertical;
}

.contact__form-group input:focus,
.contact__form-group textarea:focus {
  border-color: #9E005D;
}

.contact__form-group input::placeholder,
.contact__form-group textarea::placeholder {
  color: #aaa;
}

.contact__submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #7b1a7b, #c56ac5);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.3s;
}

.contact__submit:hover {
  opacity: 0.9;
}

/* ========================================
   Footer
======================================== */
.footer {
  position: relative;
  background: #f2f0f4;
  padding: 60px 0 0;
  overflow: hidden;
}

.footer__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.footer__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
}

.footer__inner {
  position: relative;
  z-index: 1;
}

.footer__top {
  display: flex;
  gap: 60px;
  padding-bottom: 40px;
}

.footer__brand {
  flex: 1;
}

.footer__logo {
  height: 70px;
  margin-bottom: 16px;
}

.footer__tagline {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 20px;
}

.footer__socials {
  display: flex;
  gap: 16px;
}

.footer__socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s;
}

.footer__socials a:hover {
  border-color: #9E005D;
}

.footer__socials img {
  width: 18px;
  height: 18px;
}

.footer__link-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 4px;
}

.footer__link {
  font-size: 0.88rem;
  color: #666;
  transition: color 0.3s;
}

.footer__link:hover {
  color: #9E005D;
}

.footer__contact-text {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.6;
}

.footer__bottom {
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid #ddd;
  margin-top: 8px;
}

.footer__copyright {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
  color: #888;
}

.footer__copyright-icon {
  width: 14px;
  height: 14px;
  opacity: 0.6;
}

/* ========================================
   WhatsApp Floating Button
======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
}

/* ========================================
   Animations
======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   Responsive
======================================== */
@media (max-width: 992px) {
  .hero__inner {
    flex-direction: column;
    gap: 32px;
    padding: 40px 0 24px;
  }

  .hero__title {
    font-size: 2.2rem;
  }

  .hero__image-wrapper {
    max-width: 400px;
  }

  .hero__stats {
    gap: 32px;
  }

  .about__header {
    flex-direction: column;
    gap: 32px;
  }

  .about__cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .team__grid {
    flex-wrap: wrap;
  }

  .solutions__featured {
    flex-direction: column;
  }

  .solutions__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .advantages__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .testimonials__card {
    flex: 0 0 calc(44% - 12px);
  }

  .contact__inner {
    flex-direction: column;
  }

  .contact__form {
    flex: unset;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }

  .footer__top {
    flex-direction: column;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .navbar__nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  }

  .navbar__nav.open {
    display: flex;
  }

  .navbar__cta {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

  .navbar__hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .navbar__hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .navbar__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero__title {
    font-size: 1.85rem;
  }

  .hero__stats {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
  }

  .section-title {
    font-size: 1.6rem;
  }

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

  .team__grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 40px auto 0;
  }

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

  .testimonials__card {
    flex: 0 0 85%;
  }

  .newsletter__form {
    flex-direction: column;
  }

  .newsletter__inner {
    padding: 32px 24px;
  }

  .primeapps__inner {
    padding: 40px 24px;
  }

  .primeapps__title {
    font-size: 1.75rem;
  }

  /* Hero: hide broken diagonal clip-path on mobile */
  .hero::before {
    display: none;
  }

  .hero__inner {
    padding: 24px 16px 0;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__image {
    display: none;
  }

  /* About: switch images from absolute overlap to stacked flow */
  .about__header-images {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .about__img {
    position: static;
    width: 100%;
    height: auto;
    transform: none;
  }

  .about__stat-badge {
    display: none;
  }

}
