/* ============================================
   Media Blend - Design System
   ============================================ */

:root {
  --purple-dark: #3d1a6e;
  --purple: #6b2fa0;
  --purple-light: #9d4edd;
  --pink: #e91e8c;
  --pink-light: #f06292;
  --orange: #ff6b35;
  --orange-light: #ffa726;
  --blue: #2196f3;
  --blue-light: #64b5f6;
  --dark: #1a1a2e;
  --dark-footer: #0f0f23;
  --white: #ffffff;
  --gray-50: #f8f9fc;
  --gray-100: #f0f2f8;
  --gray-200: #e2e6ef;
  --gray-400: #9ca3b8;
  --gray-600: #5a6178;
  --gray-800: #2d3142;
  --gradient-hero: linear-gradient(135deg, #3d1a6e 0%, #5b2c8e 40%, #2196f3 100%);
  --gradient-btn: linear-gradient(135deg, var(--pink) 0%, var(--orange) 100%);
  --gradient-newsletter: linear-gradient(135deg, var(--pink) 0%, var(--purple) 60%, var(--purple-dark) 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 60px rgba(61, 26, 110, 0.15);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 80px;
  --container: 1200px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: 'Cairo', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section--light {
  background: var(--gray-50);
}

.section-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--pink);
  background: rgba(233, 30, 140, 0.1);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.3;
  color: var(--dark);
  margin-bottom: 20px;
}

.section-title--center { text-align: center; }

.section-desc {
  font-size: 16px;
  color: var(--gray-600);
  max-width: 560px;
  margin-bottom: 40px;
}

.section-desc--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-desc {
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
}

.btn--gradient {
  background: var(--gradient-btn);
  color: var(--white);
}

.btn--outline-pink {
  background: transparent;
  color: var(--pink);
  border: 2px solid var(--pink);
  padding: 12px 24px;
}

.btn--outline-pink:hover {
  background: var(--pink);
  color: var(--white);
}

/* ============================================
   Header
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: background var(--transition), box-shadow var(--transition);
}

.header--scrolled {
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--gradient-btn);
  color: var(--white);
  font-weight: 800;
  font-size: 14px;
  border-radius: var(--radius-sm);
}

.header__logo-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}

.header__nav { flex: 1; display: flex; justify-content: center; }

.header__menu {
  display: flex;
  gap: 32px;
}

.header__link {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 4px 0;
}

.header__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--pink);
  transition: width var(--transition);
}

.header__link:hover,
.header__link.active {
  color: var(--white);
}

.header__link:hover::after,
.header__link.active::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__search {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 8px;
  opacity: 0.85;
  transition: opacity var(--transition);
}

.header__search:hover { opacity: 1; }

.header__cta {
  padding: 10px 22px;
  font-size: 14px;
}

.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.header__burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__burger.active span:nth-child(2) { opacity: 0; }

.header__burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--gradient-hero);
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(233, 30, 140, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(33, 150, 243, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: calc(100vh - var(--header-height) - 80px);
  padding: 60px 24px 120px;
}

.hero__content { position: relative; z-index: 2; }

.hero__title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 24px;
}

.hero__title-accent {
  background: linear-gradient(90deg, var(--pink-light), var(--orange-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero__btn {
  padding: 16px 32px;
  font-size: 16px;
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero__image {
  width: 100%;
  max-width: 420px;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.hero__easel {
  position: absolute;
  bottom: 40px;
  left: -30px;
  width: 100px;
  height: 120px;
  background: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.hero__easel-logo {
  font-size: 28px;
  font-weight: 800;
  background: var(--gradient-btn);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__stats-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero__avatars {
  display: flex;
}

.hero__avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-right: -10px;
  object-fit: cover;
}

.hero__stats-info strong {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
}

.hero__stats-info span {
  font-size: 12px;
  color: var(--gray-600);
}

.wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
}

.wave-divider svg {
  width: 100%;
  height: 80px;
}

/* ============================================
   About
   ============================================ */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.about__features li {
  display: flex;
  align-items: center;
  gap: 16px;
}

.about__feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.about__feature-icon--purple { background: var(--purple); }
.about__feature-icon--pink { background: var(--pink); }
.about__feature-icon--orange { background: var(--orange); }

.about__features strong {
  display: block;
  font-size: 15px;
  color: var(--dark);
}

.about__features span {
  font-size: 13px;
  color: var(--gray-600);
}

.about__progress-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}

.about__progress-circle {
  position: relative;
  width: 90px;
  height: 90px;
  flex-shrink: 0;
}

.about__progress-circle svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.about__progress-bg {
  fill: none;
  stroke: var(--gray-200);
  stroke-width: 8;
}

.about__progress-fill {
  fill: none;
  stroke: url(#progressGradient);
  stroke: var(--pink);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 264;
  stroke-dashoffset: 264;
  transition: stroke-dashoffset 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about__progress-value {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--pink);
}

.about__progress-label strong {
  display: block;
  font-size: 15px;
  color: var(--dark);
}

.about__progress-label span {
  font-size: 13px;
  color: var(--gray-600);
}

.about__visual {
  position: relative;
}

.about__blob {
  position: relative;
  z-index: 2;
  border-radius: 60% 40% 55% 45% / 45% 55% 45% 55%;
  overflow: hidden;
  border: 6px solid var(--pink-light);
  box-shadow: var(--shadow-lg);
}

.about__blob img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about__decor {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.about__decor--1 {
  width: 120px;
  height: 120px;
  background: rgba(233, 30, 140, 0.15);
  top: -20px;
  left: -20px;
}

.about__decor--2 {
  width: 80px;
  height: 80px;
  background: rgba(255, 107, 53, 0.2);
  bottom: 40px;
  right: -30px;
}

/* ============================================
   Services
   ============================================ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -40px;
  left: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--gray-100);
  opacity: 0.6;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card__icon {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 20px;
}

.service-card__icon--purple { background: linear-gradient(135deg, var(--purple), var(--purple-light)); }
.service-card__icon--pink { background: linear-gradient(135deg, var(--pink), var(--pink-light)); }
.service-card__icon--orange { background: linear-gradient(135deg, var(--orange), var(--orange-light)); }
.service-card__icon--blue { background: linear-gradient(135deg, var(--blue), var(--blue-light)); }

.service-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.service-card__desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(233, 30, 140, 0.1);
  color: var(--pink);
  border-radius: 50%;
  transition: background var(--transition), color var(--transition);
}

.service-card__link:hover {
  background: var(--pink);
  color: var(--white);
}

/* ============================================
   Why Us
   ============================================ */
.why-us__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-us__gallery {
  position: relative;
  height: 480px;
}

.why-us__img {
  position: absolute;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.why-us__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-us__img--1 {
  width: 260px;
  height: 200px;
  top: 0;
  right: 0;
  z-index: 3;
}

.why-us__img--2 {
  width: 220px;
  height: 180px;
  top: 120px;
  left: 0;
  z-index: 2;
}

.why-us__img--3 {
  width: 280px;
  height: 220px;
  bottom: 0;
  right: 40px;
  z-index: 1;
}

.progress-bars {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.progress-bar__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}

.progress-bar__percent {
  color: var(--pink);
}

.progress-bar__track {
  height: 8px;
  background: var(--gray-200);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-bar__fill {
  height: 100%;
  width: 0;
  border-radius: var(--radius-full);
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-bar__fill--orange { background: linear-gradient(90deg, var(--orange), var(--orange-light)); }
.progress-bar__fill--pink { background: linear-gradient(90deg, var(--pink), var(--pink-light)); }
.progress-bar__fill--purple { background: linear-gradient(90deg, var(--purple), var(--purple-light)); }

.why-us__cta {
  padding: 14px 28px;
}

/* ============================================
   Portfolio
   ============================================ */
.portfolio-swiper {
  overflow: visible;
  padding-bottom: 60px;
}

.portfolio-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.portfolio-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-card:hover img {
  transform: scale(1.05);
}

.portfolio-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: var(--white);
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition);
}

.portfolio-card:hover .portfolio-card__overlay {
  transform: translateY(0);
  opacity: 1;
}

.portfolio-card__overlay h3 {
  font-size: 18px;
  font-weight: 700;
}

.portfolio-card__overlay span {
  font-size: 13px;
  opacity: 0.85;
}

.portfolio-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}

.portfolio-nav__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--pink);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), background var(--transition);
}

.portfolio-nav__btn:hover {
  transform: scale(1.1);
  background: var(--purple);
}

/* ============================================
   Process
   ============================================ */
.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.process__line {
  position: absolute;
  top: 50px;
  right: 15%;
  left: 15%;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--purple), var(--blue));
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.process-step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.process-step__circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--white);
  position: relative;
}

.process-step__circle::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 3px solid;
  opacity: 0.3;
}

.process-step__circle--orange {
  background: var(--orange);
}

.process-step__circle--orange::before { border-color: var(--orange); }

.process-step__circle--purple {
  background: var(--purple);
}

.process-step__circle--purple::before { border-color: var(--purple); }

.process-step__circle--blue {
  background: var(--blue);
}

.process-step__circle--blue::before { border-color: var(--blue); }

.process-step__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.process-step__desc {
  font-size: 14px;
  color: var(--gray-600);
  max-width: 240px;
  margin: 0 auto;
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials-swiper {
  padding-bottom: 20px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.testimonial-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-card__text {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-card__author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card__author strong {
  display: block;
  font-size: 15px;
  color: var(--dark);
}

.testimonial-card__author span {
  font-size: 13px;
  color: var(--gray-400);
}

.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}

.testimonials-pagination {
  display: flex;
  gap: 8px;
}

.testimonials-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--gray-200);
  border-radius: 50%;
  opacity: 1;
  cursor: pointer;
  transition: background var(--transition), width var(--transition);
}

.testimonials-pagination .swiper-pagination-bullet-active {
  background: var(--pink);
  width: 28px;
  border-radius: var(--radius-full);
}

.testimonials-arrows {
  display: flex;
  gap: 10px;
}

.testimonials-nav__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.testimonials-nav__btn:hover {
  border-color: var(--pink);
  color: var(--pink);
}

/* ============================================
   Newsletter
   ============================================ */
.newsletter__banner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background: var(--gradient-newsletter);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
}

.newsletter__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.newsletter__content {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.newsletter__title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 12px;
}

.newsletter__desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
}

.newsletter__input-wrap {
  display: flex;
  background: var(--white);
  border-radius: var(--radius-full);
  padding: 6px;
  max-width: 440px;
}

.newsletter__input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 20px;
  font-family: inherit;
  font-size: 14px;
  background: transparent;
  direction: rtl;
}

.newsletter__submit {
  background: var(--gradient-btn);
  color: var(--white);
  border: none;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity var(--transition);
  white-space: nowrap;
}

.newsletter__submit:hover { opacity: 0.9; }

.newsletter__error {
  color: #ffcdd2;
  font-size: 13px;
  margin-top: 8px;
}

.newsletter__success {
  color: #a5d6a7;
  font-size: 14px;
  margin-top: 8px;
  font-weight: 600;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--dark-footer);
  color: rgba(255, 255, 255, 0.7);
  position: relative;
}

.footer__wave {
  line-height: 0;
}

.footer__wave svg {
  width: 100%;
  height: 60px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding: 60px 24px 40px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer__about {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background var(--transition);
}

.footer__social a:hover {
  background: var(--pink);
}

.footer__heading {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  font-size: 14px;
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--pink); }

.footer__contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 12px;
}

.footer__contact svg {
  flex-shrink: 0;
  color: var(--pink);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__payments {
  display: flex;
  gap: 10px;
}

.footer__payment-badge {
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}

.footer__copy {
  font-size: 13px;
}

.footer__top {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--pink);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), background var(--transition);
  opacity: 0;
  visibility: hidden;
}

.footer__top.is-visible {
  opacity: 1;
  visibility: visible;
}

.footer__top:hover {
  transform: translateY(-3px);
  background: var(--purple);
}

/* ============================================
   Scroll Animations
   ============================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card[data-animate] {
  transition-delay: calc(var(--delay, 0) * 100ms);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }

  .header__nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    background: rgba(26, 26, 46, 0.98);
    padding: 24px;
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
  }

  .header__nav.is-open {
    transform: translateY(0);
    opacity: 1;
  }

  .header__menu {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .header__burger { display: flex; }
  .header__search { display: none; }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: 100px;
  }

  .hero__desc { margin-left: auto; margin-right: auto; }
  .hero__visual { order: -1; }
  .hero__stats-card { right: 10px; bottom: -10px; }

  .about__inner,
  .why-us__inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about__visual { order: -1; }
  .why-us__gallery { height: 360px; margin: 0 auto; max-width: 360px; }

  .services__grid { grid-template-columns: 1fr; }

  .process__steps { grid-template-columns: 1fr; gap: 50px; }
  .process__line { display: none; }

  .newsletter__banner { grid-template-columns: 1fr; }
  .newsletter__visual { max-height: 200px; overflow: hidden; }
  .newsletter__content { padding: 32px 24px; }

  .footer__inner { grid-template-columns: 1fr; text-align: center; }
  .footer__social { justify-content: center; }
  .footer__contact li { justify-content: center; }
  .footer__bottom-inner { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
  .header__cta { display: none; }
  .hero__image { height: 380px; }
  .newsletter__input-wrap { flex-direction: column; border-radius: var(--radius-md); }
  .newsletter__submit { border-radius: var(--radius-sm); }
}
