/* ============================================================
   CHARIZMA DIGITAL AGENCY — styles.css
   Consolidated stylesheet for all 6 pages.
   Previously 1317 lines of per-page duplications.
   ============================================================ */

/* ── 0. CUSTOM FONTS ──────────────────────────────────────── */
@font-face {
  font-family: "Clash Display";
  src: url("../fonts/ClashDisplay-Regular.ttf") format("truetype");
  font-weight: 300 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Clash Display";
  src: url("../fonts/ClashDisplay-Semibold.ttf") format("truetype");
  font-weight: 600 900;
  font-style: normal;
  font-display: swap;
}

/* ── 1. RESET & VARIABLES ─────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --purple: #7c3aed;
  --purple-light: #ede9fe;
  --purple-dark: #5b21b6;
  --pink: #ec4899;
  --amber: #f59e0b;
  --dark: #0d0d0d;
  --text: #1e293b;
  --gray: #64748b;
  --border: #e2e8f0;
  --light: #f8fafc;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.08);
  --shadow-lg: 0 10px 25px rgb(0 0 0 / 0.12);
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  padding-top: 69px;
}
.svg-icons {
  display: none;
}

/* ── 2. TYPOGRAPHY ────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Clash Display", sans-serif;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
}
h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -0.03em;
}
h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: -0.02em;
}
h3 {
  font-size: 1.3rem;
}
p {
  color: var(--gray);
  line-height: 1.75;
}
a {
  text-decoration: none;
  color: inherit;
}

/* ── 3. LAYOUT ────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 96px 0;
}

/* ── 4. NAVIGATION ────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: transform 0.35s ease;
}
.nav.nav--hidden {
  transform: translateY(-100%);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Clash Display", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
}
.nav-logo .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient);
  flex-shrink: 0;
}
.lottie-logo {
  height: 40px;
  width: 148px;
  flex-shrink: 0;
  display: block;
}
/* Footer keeps the static white logo */
.footer-brand .lottie-logo {
  filter: brightness(0) invert(1);
}
.logo-fallback {
  display: none;
  align-items: center;
  gap: 8px;
  font-family: "Clash Display", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
}
.logo-fallback.is-visible {
  display: flex;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav-links a {
  padding: 7px 13px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray);
  transition: all 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--dark);
  background: var(--light);
}
.nav-links a.active {
  font-weight: 600;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  background: white;
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
}
.mobile-menu.open {
  display: block;
}
.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

/* ── 5. BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 8px;
  font-family: "Clash Display", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
}
.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
  border-radius: 10px;
}
.btn-dark {
  background: var(--dark);
  color: white;
}
.btn-dark:hover {
  background: var(--purple);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgb(124 58 237 / 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--dark);
  transform: translateY(-2px);
}
.btn-white {
  background: white;
  color: var(--dark);
}
.btn-white:hover {
  background: var(--purple);
  color: white;
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.btn-ghost:hover {
  border-color: white;
  transform: translateY(-2px);
}

/* ── 6. FLOATING SOCIAL ───────────────────────────────────── */
.floating-social {
  position: fixed;
  right: 20px;
  bottom: 90px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.floating-social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark);
  color: white;
  box-shadow: var(--shadow-lg);
  transition: all 0.25s;
}
.floating-social a:hover {
  transform: scale(1.1) translateX(-4px);
}
.floating-social a.tw:hover {
  background: #1da1f2;
}
.floating-social a.ig:hover {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
}
.floating-social a.wa:hover {
  background: #25d366;
}
.floating-social a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.floating-tooltip {
  display: none;
  position: absolute;
  right: 54px;
  background: var(--dark);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
}
.floating-social a:hover .floating-tooltip {
  display: block;
}

/* ── 7. SECTION LABELS & HEADERS ──────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--purple);
  margin-bottom: 16px;
}
.section-label::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--purple);
}
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}
.section-header h2 {
  margin-bottom: 14px;
}
.section-label-center {
  justify-content: center;
}

/* ── 8. INDEX HERO ────────────────────────────────────────── */
.hero {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(236, 72, 153, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--purple-light);
  color: var(--purple);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
}
.hero-label span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
}
.hero h1 .highlight {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.15rem;
  max-width: 560px;
  margin: 24px 0 40px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-stat-num {
  font-family: "Clash Display", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark);
}
.hero-stat-num span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat-label {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 2px;
}
.hero-stat-divider {
  width: 1px;
  background: var(--border);
}

/* Hero Visual */
.hero-visual {
  position: relative;
}
.hero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}
.hero-float-badge {
  position: absolute;
  bottom: 28px;
  left: -20px;
  background: white;
  border-radius: 14px;
  padding: 14px 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  min-width: 150px;
}
.hero-float-badge-num {
  font-family: "Clash Display", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}
.hero-float-badge-label {
  font-size: 0.72rem;
  color: var(--gray);
  margin-top: 3px;
}
.hero-float-badge2 {
  position: absolute;
  top: 28px;
  right: -20px;
  background: var(--gradient);
  color: white;
  border-radius: 12px;
  padding: 12px 18px;
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.5);
  font-family: "Clash Display", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ── 9. MARQUEE ───────────────────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  background: var(--dark);
  padding: 16px 0;
}
.marquee-track {
  display: flex;
  animation: marquee 20s linear infinite;
  width: max-content;
}
.marquee-item {
  padding: 0 32px;
  font-family: "Clash Display", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 16px;
}
.marquee-item .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--purple);
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ── 10. ABOUT SECTION ────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text h2 {
  margin-bottom: 20px;
}
.about-text p {
  margin-bottom: 16px;
}
.about-features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.about-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--purple-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-visual {
  position: relative;
}
.about-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}
.about-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}
.about-img-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(124, 58, 237, 0.3) 0%,
    rgba(13, 13, 13, 0.8) 100%
  );
  border-radius: 24px;
}
.about-stats-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.astat {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  border-radius: 12px;
  padding: 14px 16px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.astat-num {
  font-family: "Clash Display", sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1;
}
.astat-label {
  font-size: 0.72rem;
  opacity: 0.75;
  margin-top: 3px;
}
/* ── 11. SERVICES PREVIEW (index.html) ────────────────────── */
.services-bg {
  background-image: url("../images/home/We.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.team-bg {
  background-image: url("../images/home/Unleashing_Digital_Magic-.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.team-bg .section-header h2,
.team-bg .section-header p,
.team-bg .team-name,
.team-bg .team-role {
  color: #000000;
}
.services-bg .section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 60px;
}
.services-bg .section-header h2 {
  color: #000000;
}
.services-bg .section-header p {
  color: #000000;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s;
  cursor: default;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--purple);
}
.service-card:hover .service-icon {
  background: var(--gradient);
  color: white;
}
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--purple-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all 0.3s;
}
.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.9rem;
}
.services-cta {
  text-align: center;
  margin-top: 44px;
}

/* ── 12. PACKAGES TEASER (index.html) ─────────────────────── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pkg-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 22px;
  transition: all 0.3s;
  position: relative;
  background: white;
}
.pkg-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.pkg-card.featured {
  background: var(--dark);
  border-color: var(--dark);
  color: white;
}
.pkg-card.featured h3,
.pkg-card.featured .pkg-num {
  color: white;
}
.pkg-card.featured p {
  color: rgba(255, 255, 255, 0.6);
}
.pkg-card.grad {
  background: var(--gradient);
  border-color: transparent;
  color: white;
}
.pkg-card.grad h3,
.pkg-card.grad .pkg-num {
  color: white;
}
.pkg-card.grad p {
  color: rgba(255, 255, 255, 0.8);
}
.pkg-card.grad .pkg-unit {
  color: rgba(255, 255, 255, 0.7);
}
.pkg-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.pkg-num {
  font-family: "Clash Display", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--purple);
  line-height: 1;
  margin-bottom: 6px;
}
.pkg-unit {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 14px;
}
.pkg-card h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}
.pkg-tier {
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--gray);
  margin-bottom: 10px;
}
.pkg-card.featured .pkg-tier {
  color: rgba(255, 255, 255, 0.75);
}
.pkg-card p {
  font-size: 0.85rem;
}

/* ── 13. TEAM ─────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.team-card {
  text-align: center;
}
.team-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
}
.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 50%;
}
.team-name {
  font-family: "Clash Display", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.team-role {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.4;
}
.team-dept {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 100px;
}

/* ── 14. CTA BANNER ───────────────────────────────────────── */
.cta-banner {
  background-image: url("../images/home/purple-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 24px;
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.3) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.cta-banner::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(236, 72, 153, 0.25) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.cta-banner h2 {
  color: white;
  margin-bottom: 16px;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.6);
  max-width: 500px;
  margin: 0 auto 36px;
  font-size: 1.05rem;
}
.cta-banner-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── 15. FOOTER ───────────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo {
  color: white;
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 0.9rem;
}
.footer h5 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 16px;
}
.footer ul {
  list-style: none;
}
.footer ul li {
  margin-bottom: 10px;
}
.footer ul li a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}
.footer ul li a:hover {
  color: white;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}
.social-links {
  display: flex;
  gap: 10px;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.65);
  transition: all 0.2s;
}
.social-link:hover {
  background: var(--purple);
  border-color: var(--purple);
  color: white;
  transform: translateY(-2px);
}
.social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.footer-brand .logo-fallback {
  color: white;
}

/* ── 16. ANIMATIONS ───────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.d1 {
  transition-delay: 0.1s;
}
.fade-up.d2 {
  transition-delay: 0.2s;
}
.fade-up.d3 {
  transition-delay: 0.3s;
}
.fade-up.d4 {
  transition-delay: 0.4s;
}
.fade-up.d5 {
  transition-delay: 0.5s;
}
.fade-up.d6 {
  transition-delay: 0.6s;
}

/* ── 17. PAGE HERO (services / packages / clients / contact) ─ */
.page-hero {
  background: linear-gradient(135deg, #0d0d0d 0%, #2d1b69 50%, #0d0d0d 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.25) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(236, 72, 153, 0.2) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.page-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124, 58, 237, 0.2);
  color: #a78bfa;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}
.page-hero-label-icon {
  flex-shrink: 0;
  vertical-align: middle;
}
.page-hero h1 {
  color: white;
  margin-bottom: 16px;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ── 18. SERVICES PAGE ────────────────────────────────────── */
.services-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.service-main-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.service-main-card[style*="background-image"] {
  border: none;
}
.service-main-card[style*="background-image"]::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.30) 100%
  );
  border-radius: 24px;
  pointer-events: none;
  mix-blend-mode: multiply;
}
.service-main-card[style*="background-image"] > * {
  position: relative;
  z-index: 1;
}
.service-main-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}
.service-main-card[style*="background-image"]:hover {
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.28);
}
.service-main-card:hover .svc-icon {
  background: var(--gradient);
  color: white;
}
.svc-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.35s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.service-main-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.service-main-card[style*="background-image"] h3 {
  color: #ffffff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.18);
}
.service-main-card[style*="background-image"] p {
  color: rgba(255, 255, 255, 0.9);
}
.service-main-card p {
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.svc-tag {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray);
}
.service-main-card[style*="background-image"] .svc-tag {
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
  font-weight: 600;
}
/* Process steps (services page) */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: "Clash Display", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--purple);
  transition: all 0.3s;
}
.process-step:hover .step-num {
  background: var(--gradient);
  color: white;
  border-color: transparent;
}
.step-title {
  font-family: "Clash Display", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.step-desc {
  font-size: 0.8rem;
  color: var(--gray);
}
/* Why Us (services page) */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--light);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
}
.why-num {
  font-family: "Clash Display", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.why-card h4 {
  margin-bottom: 8px;
}

/* ── 19. CAMPAIGNS PAGE ───────────────────────────────────── */
.campaign-hero {
  background-image: url("../images/home/compaign-hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.campaign-hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.25) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.campaign-hero::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(236, 72, 153, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.campaign-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124, 58, 237, 0.2);
  color: #a78bfa;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}
.campaign-hero h1 {
  color: white;
  max-width: 700px;
  margin-bottom: 16px;
}
.campaign-hero h1 .grad {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.campaign-hero p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 36px;
}
/* Campaign type cards */
.campaign-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ctype-card {
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.ctype-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.ct-1 {
  background: #f5f0ff;
  border: 1px solid #d8b4fe;
}
.ct-2 {
  background: #fff0f5;
  border: 1px solid #fbcfe8;
}
.ct-3 {
  background: #fffbeb;
  border: 1px solid #fde68a;
}
.ct-4 {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}
.ct-5 {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
}
.ct-6 {
  background: #fff7ed;
  border: 1px solid #fed7aa;
}
.ctype-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.ctype-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.ctype-card p {
  font-size: 0.88rem;
}
/* Results */
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.result-card {
  background: var(--dark);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
}
.result-num {
  font-family: "Clash Display", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}
.result-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}
/* Process timeline (campaigns page) */
.process-timeline {
  display: flex;
  flex-direction: column;
  position: relative;
}
.process-timeline::before {
  content: "";
  position: absolute;
  left: 31px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-item {
  display: flex;
  gap: 24px;
  padding-bottom: 36px;
  position: relative;
}
.timeline-item:last-child {
  padding-bottom: 0;
}
.tl-dot {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: "Clash Display", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--purple);
  z-index: 1;
  transition: all 0.3s;
}
.timeline-item:hover .tl-dot {
  background: var(--gradient);
  color: white;
  border-color: transparent;
}
.tl-content {
  padding-top: 12px;
}
.tl-content h4 {
  margin-bottom: 6px;
  font-size: 1.05rem;
}
.tl-content p {
  font-size: 0.9rem;
}
/* Platforms */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.platform-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s;
  cursor: default;
}
.platform-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.platform-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.platform-name {
  font-family: "Clash Display", sans-serif;
  font-weight: 700;
  margin-bottom: 4px;
}
.platform-desc {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ── 20. CLIENTS PAGE ─────────────────────────────────────── */
.projects-section {
  background: linear-gradient(170deg, #0a0a1a, #0f0a2e);
}
.projects-label {
  color: #a78bfa;
}
.projects-heading {
  color: white;
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  background: #0f172a;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.client-tile {
  background: #0f172a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
  gap: 12px;
  transition: all 0.25s;
  min-height: 130px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.client-tile:hover {
  background: linear-gradient(135deg, #1e1b4b, #2d1b69);
  transform: scale(1.03);
  z-index: 2;
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.3);
}
.client-tile img {
  max-width: 120px;
  max-height: 55px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: all 0.3s;
}
.client-tile:hover img {
  opacity: 1;
  filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(210deg);
}
.client-social {
  display: flex;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.2s;
}
.client-tile:hover .client-social {
  opacity: 1;
}
.client-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  min-height: 24px;
  font-size: 0.7rem;
  color: white;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  padding: 2px 8px;
  backdrop-filter: blur(4px);
}
.client-social-link:hover {
  background: var(--gradient);
  border-color: transparent;
}
.client-social-link svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}
.client-instagram-link svg {
  width: 15px;
  height: 15px;
}
.stats-banner {
  background: var(--gradient);
  border-radius: 24px;
  padding: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item-num {
  font-family: "Clash Display", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}
.stat-item-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 8px;
}

/* ── 21. CONTACT PAGE ─────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 {
  margin-bottom: 14px;
}
.contact-info p {
  margin-bottom: 32px;
}
.info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--light);
  border-radius: 14px;
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.info-card:hover {
  border-color: var(--purple);
  background: var(--purple-light);
}
.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}
.info-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray);
  margin-bottom: 4px;
}
.info-value {
  font-family: "Clash Display", sans-serif;
  font-weight: 700;
  color: var(--dark);
  font-size: 0.95rem;
}
.info-value a {
  color: var(--dark);
  transition: color 0.2s;
}
.info-value a:hover {
  color: var(--purple);
}
.social-connect {
  margin-top: 28px;
}
.social-connect h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray);
  margin-bottom: 14px;
}
.social-connect-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.social-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 12px;
  font-family: "Clash Display", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  border: 1px solid var(--border);
  background: white;
  transition: all 0.2s;
  cursor: pointer;
}
.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.social-btn.tw:hover {
  background: #e8f5fe;
  border-color: #1da1f2;
  color: #1da1f2;
}
.social-btn.ig:hover {
  background: #fff0f8;
  border-color: #e1306c;
  color: #e1306c;
}
.social-btn.wa:hover {
  background: #e8f8f0;
  border-color: #25d366;
  color: #25d366;
}
.social-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
/* Contact form */
.contact-form-wrap {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color 0.2s;
  background: var(--light);
  outline: none;
  resize: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--purple);
  background: white;
}
.form-group textarea {
  min-height: 120px;
}
.form-group select {
  cursor: pointer;
}
.form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.submit-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 10px;
  background: var(--dark);
  color: white;
  font-family: "Clash Display", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
}
.submit-btn:hover {
  background: var(--purple);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgb(124 58 237 / 0.3);
}
.form-note {
  font-size: 0.82rem;
  color: var(--gray);
}
.success-msg {
  display: none;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 10px;
  padding: 16px 20px;
  color: #166534;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 16px;
  align-items: center;
  gap: 10px;
}
.success-msg.show {
  display: flex;
}
.error-msg {
  display: none;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 10px;
  padding: 16px 20px;
  color: #991b1b;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 16px;
}
.error-msg a {
  color: #7c3aed;
  text-decoration: underline;
}
.error-msg.show {
  display: block;
}

/* ── 22. PACKAGES PAGE ────────────────────────────────────── */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.pkg-full {
  border: none;
  border-radius: 24px;
  padding: 40px;
  transition: all 0.3s;
  position: relative;
  background: white;
}
.pkg-full:hover {
  box-shadow: var(--shadow-lg);
}
.pkg-full.featured {
  background: var(--dark);
  border-color: var(--dark);
  color: white;
}
.pkg-full.featured h3,
.pkg-full.featured .pkg-title {
  color: white;
}
.pkg-full.featured .pkg-price-note,
.pkg-full.featured li {
  color: rgba(255, 255, 255, 0.65);
}
.pkg-full.featured .pkg-divider {
  border-color: rgba(255, 255, 255, 0.15);
}
.pkg-full.featured .pkg-feat-check {
  color: #a78bfa;
}
.pkg-full .pkg-badge {
  left: 32px;
  transform: none;
}
.pkg-number {
  font-family: "Clash Display", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray);
  margin-bottom: 6px;
}
.pkg-full.featured .pkg-number {
  color: rgba(255, 255, 255, 0.4);
}
.pkg-title {
  font-family: "Clash Display", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
}
.pkg-subtitle {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 20px;
}
.pkg-posts {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 16px 0 4px;
}
.pkg-posts-num {
  font-family: "Clash Display", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--purple);
  line-height: 1;
}
.pkg-full.featured .pkg-posts-num {
  color: #a78bfa;
}
.pkg-posts-label {
  font-family: "Clash Display", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray);
}
.pkg-price-note {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 24px;
}
.pkg-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 24px 0;
}
.pkg-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.pkg-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}
.pkg-feat-check {
  color: var(--purple);
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.pkg-btn-full {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px;
  border-radius: 10px;
  font-family: "Clash Display", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid #000000;
  background: transparent;
  color: var(--dark);
  transition: all 0.25s;
}
.pkg-btn-full:hover {
  background: var(--dark);
  color: white;
  border-color: var(--dark);
}
.pkg-full.featured .pkg-btn-full {
  background: var(--gradient);
  color: white;
  border: none;
}
.pkg-full.featured .pkg-btn-full:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
/* Comparison table */
.compare-table {
  width: 100%;
  border-collapse: collapse;
}
.compare-table th,
.compare-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.compare-table th {
  font-family: "Clash Display", sans-serif;
  font-weight: 700;
  color: var(--dark);
  background: var(--light);
}
.compare-table th:first-child,
.compare-table td:first-child {
  font-weight: 600;
  color: var(--text);
}
.compare-table tbody tr:hover {
  background: var(--light);
}
.check {
  color: var(--purple);
  font-weight: 700;
  text-align: center;
}
.x-mark {
  color: var(--border);
  font-weight: 700;
}
.compare-table .featured-col {
  background: rgba(124, 58, 237, 0.05);
  font-weight: 700;
  color: var(--purple);
}
/* ── 23. UTILITY CLASSES (from former inline styles) ──────── */
.u-style-001 {
  vertical-align: middle;
  flex-shrink: 0;
}
.u-style-002 {
  justify-content: center;
}
.u-style-003 {
  background: var(--dark);
}
.u-style-004 {
  justify-content: center;
  color: #a78bfa;
}
.u-style-005 {
  background: #a78bfa;
}
.u-style-006 {
  color: white;
}
.u-style-007 {
  color: rgba(255, 255, 255, 0.6);
}
.u-style-008 {
  background: var(--light);
}
.u-style-009 {
  padding-top: 0;
}
.u-style-010 {
  margin-bottom: 16px;
  opacity: 0.7;
}
.u-style-014 {
  margin-bottom: 8px;
}
.u-style-015 {
  margin-bottom: 28px;
  font-size: 0.9rem;
}
.u-style-016 {
  flex-shrink: 0;
}
.u-style-017 {
  font-size: 0.88rem;
  color: var(--gray);
}
.u-style-018 {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.u-style-019 {
  color: #fcd34d;
}
.u-style-020 {
  color: #34d399;
}
.u-style-021 {
  color: #f9a8d4;
}
.u-style-022 {
  color: rgba(255, 255, 255, 0.5);
}
.u-style-023 {
  background: var(--purple-light);
  border-color: var(--purple);
}
.u-style-024 {
  color: var(--purple);
}
.u-style-025 {
  background: linear-gradient(135deg, #7c3aed, #ec4899);
}
.u-style-026 {
  background: #ede9fe;
  color: #7c3aed;
}
.u-style-027 {
  background: linear-gradient(135deg, #ec4899, #f59e0b);
}
.u-style-028 {
  background: #fdf2f8;
  color: #ec4899;
}
.u-style-029 {
  background: linear-gradient(135deg, #0ea5e9, #7c3aed);
}
.u-style-030 {
  background: #e0f2fe;
  color: #0284c7;
}
.u-style-031 {
  background: linear-gradient(135deg, #10b981, #0ea5e9);
}
.u-style-032 {
  background: linear-gradient(135deg, #7c3aed, #10b981);
}
.u-style-033 {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
}
.u-style-034 {
  background: #fef3c7;
  color: #d97706;
}
.u-style-035 {
  background: linear-gradient(135deg, #5b21b6, #ec4899);
}
.u-style-036 {
  background: linear-gradient(135deg, #6366f1, #ec4899);
}
.u-style-036 img {
  object-position: center 20%;
}
.u-style-037 {
  background: #eef2ff;
  color: #6366f1;
}
.u-style-040 {
  background: var(--light);
  padding-top: 0;
}
.u-style-041 {
  max-width: 100%;
  margin-bottom: 40px;
}
.u-style-042 {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid var(--border);
}
.u-style-043 {
  vertical-align: middle;
}
.cta-section {
  padding-top: 0;
}

/* ── 24. RESPONSIVE ───────────────────────────────────────── */

/* Tablet (≤1024px) */
@media (max-width: 1024px) {
  .services-bg {
    background-image: url("../images/home/We.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .team-bg {
    background-image: url("../images/home/Unleashing_Digital_Magic-.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  /* Hero — stack vertically, keep image visible */
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-visual {
    max-width: 560px;
    margin: 0 auto;
  }
  .hero-float-badge2 {
    right: 0;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* Services preview */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Packages teaser */
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Team stays 3-col on tablet */
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  /* Campaign page */
  .campaign-types {
    grid-template-columns: repeat(2, 1fr);
  }
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .platforms-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Clients page */
  .clients-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .stats-banner {
    grid-template-columns: 1fr 1fr;
  }

  /* Contact page */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Packages page */
  .pkg-grid {
    grid-template-columns: 1fr;
  }
  .compare-table th,
  .compare-table td {
    padding: 10px 12px;
    font-size: 0.82rem;
  }

  /* Services page */
  .services-main-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .process-steps::before {
    display: none;
  }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
  .services-bg {
    background-image: url("../images/home/We.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .team-bg {
    background-image: url("../images/home/Unleashing_Digital_Magic-.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  /* Nav */
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  /* Section padding */
  .section {
    padding: 64px 0;
  }

  /* Index hero */
  .hero {
    padding: 64px 0 48px;
  }
  .hero-stats {
    gap: 24px;
  }
  .hero-stat-divider {
    display: none;
  }
  .hero-float-badge {
    left: 0;
  }
  .hero-float-badge2 {
    right: 0;
    top: 16px;
  }

  /* Services preview */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Packages teaser */
  .packages-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  /* Team */
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* CTA Banner */
  .cta-banner {
    padding: 40px 24px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  /* About */
  .about-img {
    height: 360px;
  }

  /* Campaign */
  .campaign-types {
    grid-template-columns: 1fr;
  }
  .process-timeline::before {
    display: none;
  }

  /* Clients */
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .stats-banner {
    grid-template-columns: 1fr;
    padding: 36px 24px;
  }

  /* Contact form */
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Services page */
  .why-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  /* Page hero */
  .page-hero {
    padding: 56px 0;
  }
  .campaign-hero {
    padding: 56px 0 40px;
  }
}

/* Small mobile (≤480px) */
@media (max-width: 480px) {
  /* Hero */
  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-float-badge,
  .hero-float-badge2 {
    display: none;
  }

  /* Packages teaser */
  .packages-grid {
    grid-template-columns: 1fr;
  }

  /* Team */
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .team-avatar {
    width: 80px;
    height: 80px;
  }

  /* Clients */
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── CAMPAIGNS PAGE — CTA banner text override ─────────────── */
.campaign-page-cta.cta-banner h2,
.campaign-page-cta.cta-banner p {
  color: #000000;
}
