    :root {
  --accent: #ff4d1a;
  --pink: #fd506c;
  --ink: #0b0b0c;
  --header-h: 88px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: clip;
  width: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--ink);
  background: #ffffff;
  overflow-x: clip;
  width: 100%;
}

a {
  text-decoration: none;
}

/* =====================================================
   HEADER
===================================================== */
.hx-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding-top: 22px;
  pointer-events: none;
  transition: padding-top .45s cubic-bezier(.4, 0, .2, 1);
}

.hx-header-inner {
  pointer-events: auto;
  width: 88%;
  max-width: 1360px;
  background: #ffffff;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .07);
  transition: width .45s cubic-bezier(.4, 0, .2, 1),
    border-radius .45s cubic-bezier(.4, 0, .2, 1),
    padding .45s cubic-bezier(.4, 0, .2, 1),
    box-shadow .45s cubic-bezier(.4, 0, .2, 1);
}

.hx-header.is-scrolled {
  padding-top: 0;
}

.hx-header.is-scrolled .hx-header-inner {
  width: 100%;
  max-width: 100%;
  border-radius: 0;
  padding: 12px 42px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .09);
}

.hx-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.hx-logo img {
  height: 54px;
  width: auto;
  display: block;
}

.hx-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.hx-nav a {
  color: #000;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .2px;
  position: relative;
  padding: 4px 0;
}

.hx-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width .3s ease;
}

.hx-nav a:hover::after {
  width: 100%;
}

.hx-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.hx-btn {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  padding: 12px 24px;
  border-radius: 10px;
  border: 2px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  white-space: nowrap;
  transition: background .3s ease, color .3s ease, transform .2s ease;
}
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}


.hx-btn:hover {
  background: #fff;
  color: var(--accent);
  transform: translateY(-2px);
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.hx-btn-call {
  background: #ffffff;
  border: 2px solid #ffffff;
  color: #000000;
  border-radius: 10px;
  border-color: #FD506C;
}

.hx-btn-call:hover {
  background: #FD506C;
  border-color: #FD506C;
  color: #ffffff;
  transform: translateY(-2px);
}

.hx-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hx-toggle span {
  width: 24px;
  height: 2px;
  background: #000;
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}

.hx-header.menu-open .hx-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hx-header.menu-open .hx-toggle span:nth-child(2) {
  opacity: 0;
}

.hx-header.menu-open .hx-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

@media (max-width:960px) {
  .hx-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 78%;
    max-width: 340px;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 26px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, .12);
  }

  .hx-header.menu-open .hx-nav {
    transform: translateX(0);
  }

  .hx-nav a {
    font-size: 18px;
  }

  .hx-nav .hx-actions {
    display: flex;
    margin-top: 10px;
  }

  .hx-header-inner>.hx-actions {
    display: none;
  }

  .hx-toggle {
    display: flex;
  }
}
.ft-logo {
  margin-bottom: 24px;
}




/* =====================================================
   HERO
===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 60px) 24px 70px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgb(0 0 0 / 0%) 0%, rgba(11, 11, 12, .85) 75%, rgba(11, 11, 12, 1) 100%), linear-gradient(120deg, rgba(253, 80, 108, .35) 0%, rgba(253, 80, 108, 0) 55%);
    
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 980px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pink);
  border: 1px solid rgba(253, 80, 108, .5);
  background: rgba(253, 80, 108, .08);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .3px;
  padding: 9px 20px;
  border-radius: 30px;
  margin-bottom: 26px;
}

.hero-title {
  font-weight: 800;
  line-height: 1.08;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title .line-accent {
  display: block;
  color: var(--pink);
  font-size: clamp(30px, 5.4vw, 56px);
  letter-spacing: -.5px;
}

.hero-title .line-white {
  display: block;
  color: #fff;
  font-size: clamp(30px, 5.4vw, 56px);
  letter-spacing: -.5px;
}

.hero-desc {
  color: #d1d5dc;
  font-size: 16px;
  line-height: 1.7;
  max-width: 760px;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 44px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  padding: 16px 30px;
  border-radius: 10px;
  border: 2px solid var(--accent);
  transition: background .3s ease, color .3s ease, transform .2s ease;
}

.btn-primary:hover {
  background: #fff;
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #000;
  font-weight: 600;
  font-size: 15px;
  padding: 16px 32px;
  border-radius: 10px;
  border: 2px solid #fff;
  transition: background .3s ease, color .3s ease, transform .2s ease;
}

.btn-secondary:hover {
  background: transparent;
  color: #fff;
  transform: translateY(-2px);
}

.hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-badges img {
  height: 60px;
  width: auto;
  border-radius: 10px;
  background: #fff;
  padding: 8px;
}

.hero-divider {
  width: 100%;
  max-width: 760px;
  height: 1px;
  background: rgba(255, 255, 255, .15);
  margin-bottom: 44px;
}

.hero-stats {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-num,
.stat-plus {
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 40px);
  color: #fff;
}

.stat-label {
  display: block;
  color: #9aa1ac;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

@media (max-width:640px) {
  .hero-stats {
    gap: 32px;
  }

  .hero-badges img {
    height: 46px;
  }
}
/* =====================================================
   HERO LEAD FORM CARD
===================================================== */
.hero-form-card {
  margin-top: 80px;
  margin-right: 40px;
  position: absolute;
  top: calc(var(--header-h) + 60px);
  right: 40px;
  z-index: 2;
  width: 350px;
  background: #fd506c;
  border: none;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 25px 60px rgba(253, 80, 108, .35), 0 8px 20px rgba(0, 0, 0, .25);
  text-align: left;
  animation: heroFormIn .6s ease .2s both;
}

@keyframes heroFormIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-form-title {
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  line-height: 1.35;
  margin-bottom: 10px;
  text-align: left;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.lead-field {
  position: relative;
}

.lead-field svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  color: #9aa1ac;
  pointer-events: none;
  transition: color .2s ease;
}

.lead-input,
.lead-textarea {
  width: 100%;
  background: #fff;
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 13px 14px 13px 38px;
  font-family: inherit;
  font-size: 14px;
  color: #111;
  box-sizing: border-box;
  text-align: left;
  transition: border-color .2s ease, transform .15s ease, box-shadow .2s ease;
}

.lead-textarea {
  padding-left: 14px; /* no icon on the textarea */
}

.lead-input::placeholder,
.lead-textarea::placeholder {
  color: #9aa1ac;
}

.lead-input:hover,
.lead-textarea:hover {
  transform: translateY(-1px);
}

.lead-input:focus,
.lead-textarea:focus {
  outline: none;
  border-color: #111;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
}

.lead-field:focus-within svg {
  color: #fd506c;
}

.lead-textarea {
  resize: none;
  min-height: 56px;
}

.lead-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(255, 255, 255, .92);
  font-size: 11px;
  line-height: 1.5;
  text-align: left;
}

.lead-consent input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: #fff;
}

.lead-consent a {
  color: #fff;
  text-decoration: underline;
}

.lead-submit {
  background: #fff;
  color: #fd506c;
  font-weight: 700;
  font-size: 15px;
  border: none;
  border-radius: 10px;
  padding: 14px;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, transform .2s ease, box-shadow .2s ease;
}

.lead-submit:hover {
  background: #111;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .3);
}

.lead-submit:active {
  transform: translateY(0);
}

@media (max-width: 1200px) {
  .hero {
    flex-direction: column;
  }

  .hero-form-card {
    position: static;
    margin: 32px auto 0;
    width: 100%;
    max-width: 380px;
  }
}



/* =====================================================
   BRAND MARQUEE
===================================================== */
.brand-marquee {
  background: #f4f5f7;
  padding: 48px 0;
  overflow: hidden;
  width: 100%;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 22s linear infinite; /* 22s is just a fallback */
}

.brand-marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.marquee-group img {
  height: 44px;
  width: auto;
  object-fit: contain;
  margin: 0 70px;
  opacity: .85;
  transition: opacity .3s ease, transform .3s ease;
}

.marquee-group img:hover {
  opacity: 1;
  transform: scale(1.06);
}

/* Distance travelled per loop — set precisely by JS once logos load,
   but falls back to -50% (correct for exactly 2 groups) if JS hasn't run yet */
@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(var(--marquee-distance, -50%));
  }
}

/* =====================================================
    CREATIVE STUDIO SECTION - FINAL FIXED VERSION
===================================================== */
.creative-studio-section {
  background: #ffffff;
  padding: 110px 24px;
  overflow: hidden;
  box-sizing: border-box;
}

.cs-container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 70px;
  width: 100%;
}

/* Left - Single Image */
.cs-graphic-wrapper {
  flex: 1.1;
  min-width: 0;
}

.cs-showcase-card {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: transparent;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cs-portfolio-hero-img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.cs-showcase-card:hover {
  transform: translateY(-6px);
}

/* Right - Content */
.cs-content {
  flex: 0.9;
  max-width: 580px;
  min-width: 0;
}

.cs-badge {
  display: inline-block;
  color: var(--pink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.cs-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  color: #000000;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.cs-title .text-pink {
  color: var(--pink);
}

.cs-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #555c66;
  margin-bottom: 36px;
}

/* Features */
.cs-features-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.cs-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.cs-feat-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(253, 80, 108, 0.08);
  color: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cs-feat-icon svg {
  width: 18px;
  height: 18px;
}

.cs-feat-text h3 {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 4px;
}

.cs-feat-text p {
  font-size: 14px;
  color: #666c75;
  line-height: 1.4;
}

/* Button */
.cs-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 700;
  font-size: 14.5px;
  padding: 16px 36px;
  border-radius: 8px;
  border: 2px solid var(--accent);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cs-btn:hover {
  background: #ffffff;
  color: var(--accent);
  transform: translateY(-2px);
}

/* ================================================
   RESPONSIVE
================================================ */
@media (max-width: 1024px) {
  .cs-container {
    flex-direction: column-reverse;
    gap: 50px;
  }
  .cs-content,
  .cs-graphic-wrapper {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 540px) {
  .creative-studio-section {
    padding: 60px 16px;
  }
  .cs-title {
    font-size: clamp(28px, 5.5vw, 42px);
  }
}

/* =====================================================
   FEATURED WORK SHOWCASE SECTION
===================================================== */
.sw-head {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 0 2rem 0; 
  
  /* --- EDITED PROPERTIES --- */
  font-size: clamp(40px, 5vw, 60px); /* Increased font size range */
  text-align: center;                /* Aligned text to center */
  color: #fd506c;                    /* Updated hex color */
  /* ------------------------- */

  font-weight: 800;
  font-family: inherit;
}

.sw-section {
  background: #ffffff;
  padding: 100px 24px 90px;
}

.sw-container {
  max-width: 1300px;
  margin: 0 auto;
}

/* ---------- Single Merged Card ---------- */
.sw-gallery-card {
  position: relative;
  width: 100%;
  height: 560px;
  display: flex;
  align-items: stretch;
  gap: 50px;
  border-radius: 28px;
  padding: 45px 65px;
  background: radial-gradient(
    circle at var(--mx, 30%) var(--my, 30%),
    #da516e 0%,
    #ee4065 45%,
    #a00121 100%
  );
  transition: background 0.5s ease;
  overflow: hidden;
}

/* ---------- Left: Arched Brand Image ---------- */
.sw-arch-frame {
  flex: 0 0 300px;
  border-radius: 200px 200px 0 0;
  padding: 5px;
}

.sw-arch-inner {
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 11px;
  overflow: hidden;
}

.sw-arch-inner img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
  transition: opacity 0.3s ease;
}

.sw-arch-inner img.sw-fade {
  opacity: 0;
}

/* ---------- Right: Content Column (label + mosaic) ---------- */
.sw-content-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.sw-portfolio-label {
  flex: 0 0 auto;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}

.sw-portfolio-badge {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.sw-portfolio-name {
  color: #ffffff;
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  transition: opacity 0.25s ease;
}

.sw-portfolio-name.sw-fade {
  opacity: 0;
}

/* Mosaic grid: tall vertical tile left, wide horizontal tile top-right, two small tiles bottom-right */
.sw-mosaic-grid {
  flex: 1 1 auto;
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  width: 100%;
  transition: opacity 0.2s ease;
}

.sw-mosaic-grid.sw-fade {
  opacity: 0;
}

.sw-tile {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  min-height: 0;
}

/* Generic rule for tiles with a single, normal (non-scrolling) image */
.sw-tile img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
  background-color: #ffffff;
}

.sw-tile-horizontal {
  grid-column: 2 / span 2;
  grid-row: 1;
}

.sw-tile-small {
  grid-column: span 1;
  grid-row: 2;
}

/* ---------- Vertical tile: ONE long image, scrollable on hover ---------- */
.sw-tile-vertical {
  grid-column: 1;
  grid-row: 1 / span 2;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE */
}

.sw-tile-vertical::-webkit-scrollbar {
  width: 6px;
}

.sw-tile-vertical::-webkit-scrollbar-track {
  background: transparent;
}

.sw-tile-vertical::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 10px;
}

.sw-tile-vertical:hover::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.4);
}

.sw-tile-vertical img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* ---------- Prev / Next Arrows ---------- */
.sw-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  color: #000000;
  z-index: 3;
  transition: transform 0.2s ease, background 0.2s ease;
}

.sw-nav-arrow svg {
  width: 16px;
  height: 16px;
}

.sw-nav-arrow:hover {
  background: var(--pink, #b23a55);
  color: #ffffff;
  transform: translateY(-50%) scale(1.08);
}

.sw-nav-prev {
  left: 20px;
}

.sw-nav-next {
  right: 20px;
}

/* ---------- Footer CTA ---------- */
.sw-footer-action {
  text-align: center !important;
  margin-top: 50px !important;
}

.sw-footer-action a.sw-view-portfolio-btn {
  display: inline-block !important;
  border: 2px solid var(--pink, #b23a55) !important;
  color: var(--pink, #b23a55) !important;
  background: transparent !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  padding: 14px 34px !important;
  border-radius: 40px !important;
  transition: background 0.25s ease, color 0.25s ease !important;
}

.sw-footer-action a.sw-view-portfolio-btn:hover {
  background: var(--pink, #b23a55) !important;
  color: #ffffff !important;
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .sw-gallery-card {
    flex-direction: column;
    padding: 40px 30px;
  }

  .sw-arch-frame {
    flex: 0 0 300px;
    border-radius: 15px;
    padding: 5px;
  }
}

/* HIDE FEATURED WORK SECTION ON MOBILE (767px and below) */
@media (max-width: 767px) {
  #featured-work {
    display: none !important;
  }
}

/* =====================================================
   MARKETPLACE OPTIMIZATION
===================================================== */
.marketplace-opt {
  background: #ffffff;
  padding: 100px 24px;
  overflow: hidden;
}

.mkt-container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.mkt-content {
  flex: 1;
  max-width: 620px;
}

.mkt-graphic {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mkt-graphic img {
  width: 100%;
  max-width: 640px;
  height: auto;
  object-fit: contain;
}

.mkt-badge {
  display: inline-block;
  color: var(--pink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.mkt-title {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.05;
  color: #000000;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}

.mkt-title .text-pink {
  color: var(--pink);
}

.mkt-title .text-dot {
  color: #000000;
}

.mkt-desc {
  font-size: 16px;
  line-height: 1.65;
  color: #555c66;
  margin-bottom: 36px;
}

.mkt-features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mkt-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #1a1a1c;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.mkt-icon {
  color: var(--pink);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: inline-flex;
  margin-top: 2px;
}

.mkt-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 36px;
  border-radius: 8px;
  border: 2px solid var(--accent);
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}

.mkt-btn:hover {
  background: #ffffff;
  color: var(--accent);
  transform: translateY(-2px);
}
/* ==================== ACCOUNT MANAGEMENT SECTION ==================== */
.acc-mgmt-section {
  background-color: #ffffff;
  padding: 8rem 2rem;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.acc-mgmt-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
  width: 100%;
}

/* ---------- Laptop Device Mockup Styling ---------- */
.acc-mgmt-visual {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.laptop-wrapper {
  width: 100%;
  max-width: 580px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Laptop Screen Display Frame */
.laptop-screen {
  width: 82%;
  background: #000000;
  border: 12px solid #000000;
  border-bottom-width: 16px;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  position: relative;
  aspect-ratio: 16 / 10;
  box-sizing: border-box;
}

/* Webcam dot */
.screen-webcam {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #1a1a1a;
  z-index: 2;
}

.screen-display {
  width: 100%;
  height: 100%;
  background-color: #111936;
  overflow: hidden;
  position: relative;
}

.screen-display img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Realistic 3D Laptop Base */
.laptop-base {
  width: 100%;
  height: 12px;
  background: linear-gradient(to bottom, #dedede 0%, #b5b5b5 100%);
  border-radius: 2px 2px 8px 8px;
  position: relative;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
}

/* Display hinge indentation */
.base-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 4px;
  background-color: #555555;
  border-radius: 0 0 6px 6px;
}

/* ---------- Content Typography ---------- */
.acc-mgmt-content {
  display: flex;
  flex-direction: column;
}

.acc-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fd506c;
  display: block;
  margin-bottom: 0.75rem;
}

.acc-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 850;
  color: #000000;
  line-height: 1.1;
  margin: 0 0 1.5rem 0;
  letter-spacing: -0.5px;
}

.acc-title .acc-highlight {
  color: #fd506c;
  display: block;
}

.acc-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.75);
  margin: 0 0 2rem 0;
}

/* ---------- Feature Bullets List ---------- */
.acc-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.acc-features-list li {
  font-family: 'Poppins', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  color: #000000;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Custom Brand Bullet Markers */
.acc-features-list li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #fd506c;
  border-radius: 50%;
  box-shadow: 0 0 8px #fd506c;
  flex-shrink: 0;
}

/* ---------- Bright Call To Action Button ---------- */
.acc-cta-btn {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  color: #ffffff;
  background: #ff4d1a;
  border: 2px solid #ff4d1a;
  border-radius: 8px;
  padding: 1rem 2rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(253, 80, 108, 0.25);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  box-sizing: border-box;
}

.acc-cta-btn svg {
  transition: transform 0.3s ease;
}

.acc-cta-btn:hover {
  background: #ffffff;
  color: #fd506c;
  border-color: #fd506c;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(253, 80, 108, 0.4);
} 

.acc-cta-btn:hover svg {
  transform: translateX(4px);
}


/* ==================== PPC MANAGEMENT SECTION ==================== */
.ppc-mgmt-section {
  background-color: #ffffff;
  padding: 8rem 2rem;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.ppc-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 5rem;
  align-items: center;
  width: 100%;
}

/* ---------- Left Side: Typography & Content ---------- */
.ppc-content {
  display: flex;
  flex-direction: column;
}

.ppc-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fd506c;
  display: block;
  margin-bottom: 0.75rem;
}

.ppc-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 850;
  color: #000000;
  line-height: 1.1;
  margin: 0 0 1.5rem 0;
  letter-spacing: -0.5px;
}

.ppc-title .ppc-highlight {
  color: #fd506c;
  display: block;
}

.ppc-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.7);
  margin: 0 0 2rem 0;
}

/* Feature Bullet List */
.ppc-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ppc-features-list li {
  font-family: 'Poppins', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  color: #000000;
  display: flex;
  align-items: center;
  gap: 12px;
}

.ppc-features-list li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #fd506c;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(253, 80, 108, 0.6);
  flex-shrink: 0;
}

/* Brand Colored CTA Button */
.ppc-cta-btn {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  color: #ffffff;
  background: #ff4d1a;
  border: 2px solid #ff4d1a;
  border-radius: 8px;
  padding: 1rem 2rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(253, 80, 108, 0.25);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  box-sizing: border-box;
}

.ppc-cta-btn svg {
  transition: transform 0.3s ease;
}

.ppc-cta-btn:hover {
  background: #ffffff;
  color: #fd506c;
  border-color: #fd506c;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(253, 80, 108, 0.35);
}

.ppc-cta-btn:hover svg {
  transform: translateX(4px);
}

/* ---------- Right Side: 3D Laptop Device Mockup ---------- */
.ppc-visual {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.ppc-laptop-wrapper {
  width: 100%;
  max-width: 580px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Laptop Screen Display */
.ppc-laptop-screen {
  width: 82%;
  background: #000000;
  border: 12px solid #000000;
  border-bottom-width: 16px;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  position: relative;
  aspect-ratio: 16 / 10;
  box-sizing: border-box;
}

.ppc-screen-webcam {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #1a1a1a;
  z-index: 2;
}

.ppc-screen-display {
  width: 100%;
  height: 100%;
  background-color: #16161a;
  overflow: hidden;
  position: relative;
}

.ppc-screen-display img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Metallic Keyboard Base */
.ppc-laptop-base {
  width: 100%;
  height: 12px;
  background: linear-gradient(to bottom, #dedede 0%, #b5b5b5 100%);
  border-radius: 2px 2px 8px 8px;
  position: relative;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
}

.ppc-base-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 4px;
  background-color: #555555;
  border-radius: 0 0 6px 6px;
}


/* ==================== RESPONSIVE LAYOUTS ==================== */
@media (max-width: 992px) {
  /* Account Management Mobile Adjustments */
  .acc-mgmt-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .acc-mgmt-content {
    align-items: center;
    text-align: center;
  }
  .acc-features-list {
    align-items: flex-start;
    text-align: left;
    margin: 0 auto 2.5rem auto;
  }
  .acc-features-list li {
    margin-bottom: 0.25rem;
  }

  /* PPC Mobile Adjustments */
  .ppc-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .ppc-content {
    align-items: center;
    text-align: center;
    order: 1;
  }
  .ppc-visual {
    order: 2;
  }
  .ppc-features-list {
    align-items: flex-start;
    text-align: left;
    margin: 0 auto 2.5rem auto;
  }
  .ppc-features-list li {
    margin-bottom: 0.25rem;
  }
}

@media (max-width: 580px) {
  .acc-mgmt-section,
  .ppc-mgmt-section {
    padding: 5rem 1.5rem;
  }
  .laptop-screen,
  .ppc-laptop-screen {
    border-width: 8px;
    border-bottom-width: 12px;
  }
}


/* ==================== RESPONSIVE LAYOUTS ==================== */
@media (max-width: 992px) {
  /* Account Management Mobile Adjustments */
  .acc-mgmt-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .acc-mgmt-content {
    align-items: center;
    text-align: center;
  }
  .acc-features-list {
    align-items: flex-start;
    text-align: left;
    margin: 0 auto 2.5rem auto;
  }
  .acc-features-list li {
    margin-bottom: 0.25rem;
  }

  /* PPC Mobile Adjustments */
  .ppc-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .ppc-content {
    align-items: center;
    text-align: center;
    order: 1;
  }
  .ppc-visual {
    order: 2;
  }
  .ppc-features-list {
    align-items: flex-start;
    text-align: left;
    margin: 0 auto 2.5rem auto;
  }
  .ppc-features-list li {
    margin-bottom: 0.25rem;
  }
}

@media (max-width: 580px) {
  .acc-mgmt-section,
  .ppc-mgmt-section {
    padding: 5rem 1.5rem;
  }
  .laptop-screen,
  .ppc-laptop-screen {
    border-width: 8px;
    border-bottom-width: 12px;
  }
}
/* ===== Unified Button Styles ===== */
.cs-btn,
.mkt-btn,
.acc-cta-btn,
.ppc-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #ff4d1a;
  color: #ffffff;
  border: 2px solid #ff4d1a;
  border-radius: 6px;
  padding: 12px 28px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

.cs-btn svg,
.mkt-btn svg,
.acc-cta-btn svg,
.ppc-cta-btn svg {
  fill: currentColor;
  stroke: currentColor;
  transition: fill 0.3s ease, stroke 0.3s ease;
}

.cs-btn:hover,
.mkt-btn:hover,
.acc-cta-btn:hover,
.ppc-cta-btn:hover {
  background-color: #ffffff;
  color: #ff4d1a;
  border-color: #ff4d1a;
}
/* =====================================================
   WEB DEVELOPMENT SECTION
===================================================== */
.web-dev-section {
  background: #fdfdfd;
  padding: 100px 24px;
  overflow: hidden;
  margin-top: 70px;
}

.wd-container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
}

.wd-header {
  text-align: center;
  margin-bottom: 50px;
}

.wd-badge {
  display: inline-block;
  color: var(--pink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.wd-main-title {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  color: #000000;
  letter-spacing: -0.5px;
}

.wd-main-title .text-pink {
  color: var(--pink);
}

/* Rounded Dual Border Container Box */
.wd-grid-box {
  width: 100%;
  background: #fafafa;
  border: 1px solid #e3e6eb;
  border-radius: 24px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.wd-col {
  flex: 1;
  padding: 70px 60px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Central Divider Border Line */
.wd-shopify {
  border-right: 1px solid #e3e6eb;
}
/* =====================================================
   RECENT PROJECTS SECTION
===================================================== */
.rp-section {
  background: #ffffff;
  padding: 100px 24px 110px;
}

.rp-container {
  max-width: 1300px;
  margin: 0 auto;
}

.rp-header {
  text-align: center;
  margin-bottom: 50px;
}

.rp-badge {
  display: inline-block;
  color: var(--pink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.rp-title {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.rp-title .text-pink {
  color: var(--pink);
}

/* Grid Layout */
.rp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

/* Card */
.rp-card {
  display: flex;
  flex-direction: column;
}

.rp-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 11;
  border-radius: 16px;
  overflow: hidden;
  background: #f2f2f4;
  margin-bottom: 24px;
}

.rp-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.rp-card:hover .rp-img-wrap img {
  transform: scale(1.03);
}

.rp-card-title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.25;
  color: #0b0b0c;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.rp-card-title .text-pink {
  color: var(--pink);
}

.rp-view-link {
  display: inline-block;
  width: fit-content;
  color: var(--pink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity 0.25s ease;
}

.rp-view-link:hover {
  opacity: 0.7;
}

/* Footer CTA button */
.rp-footer-action {
  text-align: center;
}

.rp-schedule-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 40px;
  border-radius: 10px;
  border: 2px solid var(--accent);
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.rp-schedule-btn:hover {
  background: #ffffff;
  color: var(--accent);
  transform: translateY(-2px);
}

/* Responsive Breakpoints */
@media (max-width: 900px) {
  .rp-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .rp-section {
    padding: 70px 16px 80px;
  }

  .rp-card-title {
    font-size: 20px;
  }
}





/* Content Element Styles */
.wd-icon-box {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  overflow: hidden;
}

.wd-icon-img {
  width: 125px;
  height: 125px;
  object-fit: contain;
}


.wd-icon-box.pink-bg {
  background: rgba(253, 80, 109, 0);
  
}

.wd-icon-box svg {
  width: 18px;
  height: 18px;
}

.wd-title {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.15;
  color: #000000;
  margin-bottom: 22px;
}

.wd-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #555c66;
  margin-bottom: 34px;
  max-width: 440px;
}

.wd-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.wd-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1a1a1c;
  font-size: 14.5px;
  font-weight: 600;
}

.wd-bullet {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 2px solid var(--pink);
  background: transparent;
  flex-shrink: 0;
}

/* Call to Action Button Configuration */
.wd-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 700;
  font-size: 14.5px;
  padding: 15px 34px;
  border-radius: 8px;
  border: 2px solid var(--accent);
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}

.wd-btn:hover {
  background: #ffffff;
  color: var(--accent);
  transform: translateY(-2px);
}

/* =====================================================
    CREATIVE STUDIO SECTION (REDESIGNED)
===================================================== */
.creative-studio-section {
  background: #ffffff;
  padding: 110px 24px;
  overflow: hidden;
}

.cs-container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 70px;
}

/* ---------- Left: Image Grid ---------- */
.cs-grid-wrapper {
  flex: 1.1;
  width: 100%;
}

.cs-image-grid {
  display: flex;
  gap: 20px;
  width: 100%;
}

.cs-grid-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* stagger second column for a masonry-style look */
.cs-grid-col:nth-child(2) {
  margin-top: 60px;
}

.cs-img-card {
  border-radius: 16px;
  overflow: hidden;
  background: #f4f4f4;
}

.cs-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cs-img-card:hover img {
  transform: scale(1.05);
}

.tall-card {
  aspect-ratio: 3 / 4;
}

.short-card {
  aspect-ratio: 4 / 3;
}

.tall-card-ui {
  aspect-ratio: 3 / 4;
  background: #ffffff;
  border: 1px solid #eee;
}

.tall-card-ui img {
  object-fit: contain;
  padding: 12px;
}

/* ---------- Right: Content ---------- */
.cs-content {
  flex: 0.9;
  max-width: 580px;
}

.cs-badge {
  display: inline-block;
  color: var(--pink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.cs-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  color: #000000;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.cs-title .text-pink {
  color: var(--pink);
}

.cs-title .text-dot {
  color: var(--pink);
}

.cs-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #555c66;
  margin-bottom: 36px;
}

/* Feature Point List */
.cs-features-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.cs-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.cs-feat-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(253, 80, 108, 0.08);
  color: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cs-feat-icon svg {
  width: 18px;
  height: 18px;
}

.cs-feat-text h3 {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 4px;
}

.cs-feat-text p {
  font-size: 14px;
  color: #666c75;
  line-height: 1.4;
}

/* Action Button UI */
.cs-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 700;
  font-size: 14.5px;
  padding: 16px 36px;
  border-radius: 8px;
  border: 2px solid var(--accent);
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}

.cs-btn:hover {
  background: #ffffff;
  color: var(--accent);
  transform: translateY(-2px);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .cs-container {
    flex-direction: column-reverse; /* content on top, image grid below on mobile */
    gap: 50px;
  }
  .cs-content,
  .cs-grid-wrapper {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .cs-image-grid {
    flex-direction: column;
  }
  .cs-grid-col:nth-child(2) {
    margin-top: 0;
  }
}

@media (max-width: 540px) {
  .creative-studio-section {
    padding: 60px 16px;
  }
}

/* =====================================================
   PROVEN FRAMEWORK (TIMELINE) SECTION
   Full stylesheet — includes original layout rules plus
   the parallax/scroll-progress additions.
===================================================== */

:root {
  --pink: #fd506c;
  --accent: #ff6a3d;
  --ink: #000000;
}

.framework-section {
  background: #ffffff;
  padding: 120px 24px;
  position: relative;
}

.fw-container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

/* Left Panel Sticky Implementation
   NOTE: position:sticky only works if no ancestor of .fw-left-panel has
   overflow:hidden (or overflow:auto/scroll) set — that's the #1 reason
   sticky silently fails to "stick". */
.fw-left-panel {
  flex: 0.9;
  position: sticky;
  top: 140px; /* accounts for header container spacing */
  max-width: 480px;
}

.fw-badge {
  display: inline-block;
  color: var(--pink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.fw-title {
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  color: #000000;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.fw-title .text-pink {
  color: var(--pink);
}

.fw-title .text-dot {
  color: var(--ink);
}

.fw-desc {
  font-size: 15.5px;
  line-height: 1.65;
  color: #555c66;
  margin-bottom: 30px;
}

.fw-meta-tag {
  font-size: 12px;
  font-weight: 800;
  color: #000000;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  padding-bottom: 4px;
  margin-bottom: 34px;
  padding-right: 20px;
}

.fw-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 700;
  font-size: 14.5px;
  padding: 15px 36px;
  border-radius: 8px;
  border: 2px solid var(--accent);
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}

.fw-btn:hover {
  background: #ffffff;
  color: var(--accent);
  transform: translateY(-2px);
}

/* Right Panel Timeline Section */
.fw-right-panel {
  flex: 1.1;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-left: 50px; /* space out cards from the absolute path line */
}

/* Center vertical timeline guideline (static, always fully visible) */
.fw-timeline-line {
  position: absolute;
  left: 20px;
  top: 40px;
  bottom: 40px;
  width: 1px;
  background: #e3e6eb;
  z-index: 1;
}

/* Pink progress line — starts at 0% height, GSAP animates it to 100%
   as the user scrolls through the right panel, so it "fills in" behind
   the static gray line above. */
.fw-timeline-progress {
  position: absolute;
  left: 20px;
  top: 40px;
  width: 1px;
  height: 0%;
  background: var(--pink);
  z-index: 1;
}

.fw-step-item {
  position: relative;
  display: flex;
  align-items: center;
}

/* Rounded step number badge */
.fw-node {
  position: absolute;
  left: -50px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e3e6eb;
  color: #000000;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

/* Active state — JS toggles .is-active on the .fw-step-item while its
   card is roughly centered in the viewport */
.fw-step-item.is-active .fw-node {
  background: var(--pink);
  border-color: var(--pink);
  color: #ffffff;
  transform: scale(1.08);
}

/* Framework content cards */
.fw-card {
  width: 100%;
  background: #fafafa;
  border: 1px solid #e9ecef;
  border-radius: 20px;
  padding: 38px 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fw-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
  background: #ffffff;
}

.fw-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 12px;
}

.fw-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #555c66;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .fw-container {
    flex-direction: column;
    gap: 60px;
  }
  .fw-left-panel {
    position: relative;
    top: 0;
    max-width: 100%;
    width: 100%;
  }
  .fw-right-panel {
    width: 100%;
    padding-left: 45px;
  }
  .fw-node {
    left: -45px;
  }
}

/* =====================================================
   PORTFOLIO (PROVEN MARKETPLACE OPTIMISATIONS)
===================================================== */
.portfolio-section {
  background: #ffffff;
  padding: 100px 24px 120px;
}

.pf-container {
  max-width: 1400px;
  margin: 0 auto;
}

.pf-header {
  text-align: center;
  margin-bottom: 40px;
}

.pf-badge {
  display: inline-block;
  color: var(--pink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pf-title {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.pf-title .text-pink {
  color: var(--pink);
}

/* Category Filter Tabs Styling */
.pf-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.pf-tab-btn {
  font-family: 'Poppins', sans-serif;
  background: var(--pink);
  color: #ffffff;
  border: none;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 28px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pf-tab-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* CORRECTED: Removed selector bugs pinning "all" button to permanently black color state */
.pf-tab-btn.active {
  background: #000000 !important;
  color: #ffffff !important;
}

/* Grid Wrapper Layout - Explicit 4-Column Setup */
.pf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  transition: opacity 0.3s ease;
}

/* Single Portfolio Box Block Container */
.pf-item {
  width: 100%;
  display: block;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dynamic filter layout hide modifier */
.pf-item.pf-hidden {
  display: none !important;
  opacity: 0;
  transform: scale(0.8);
}

.pf-card-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  background: #f7f7f9;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  cursor: pointer;
}

.pf-card-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* Hover Interaction Overlays */
.pf-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 11, 12, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.pf-overlay span {
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid #ffffff;
  padding: 10px 24px;
  border-radius: 8px;
  transform: translateY(15px);
  transition: transform 0.35s ease;
}

.pf-item:hover .pf-card-inner img {
  transform: scale(1.06);
}

.pf-item:hover .pf-overlay {
  opacity: 1;
}

.pf-item:hover .pf-overlay span {
  transform: translateY(0);
}

/* Footer See More Box Elements */
.pf-footer-action {
  text-align: center;
  margin-top: 50px;
}

.pf-see-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #000000;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 40px;
  border-radius: 10px;
  border: 2px solid var(--accent);
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}

.pf-see-more-btn:hover {
  background: #ffffff;
  color: var(--accent);
  transform: translateY(-2px);
}

/* Responsive Fluidity Breakpoints */
@media (max-width: 1100px) {
  .pf-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .pf-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .pf-tabs {
    gap: 8px;
  }

  .pf-tab-btn {
    padding: 10px 20px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .pf-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-section {
    padding: 70px 16px 80px;
  }
}

/* Safeguard selector framework */
.empire-cta {
  position: relative;
  width: 100%;
}


@media (max-width: 480px) {
  .pf-grid {
    grid-template-columns: 1fr;
    /* Clean full-screen 1 column block sequence on standard mobile screen tracking */
  }

  .pf-section {
    padding: 70px 16px 80px;
  }
}

/* Scroll box: shows first 12 items, scrolls for the rest */
#portfolioGrid {
  transition: max-height 0.35s ease;
}

#portfolioGrid.pf-scrollable {
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 10px; /* keeps scrollbar off the images */
}

/* Custom scrollbar to match your brand */
#portfolioGrid.pf-scrollable::-webkit-scrollbar {
  width: 8px;
}

#portfolioGrid.pf-scrollable::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

#portfolioGrid.pf-scrollable::-webkit-scrollbar-thumb {
  background: var(--pink);
  border-radius: 10px;
}

#portfolioGrid.pf-scrollable::-webkit-scrollbar-thumb:hover {
  background: #000000;
}

/* Firefox scrollbar styling */
#portfolioGrid.pf-scrollable {
  scrollbar-width: thin;
  scrollbar-color: var(--pink) #f1f1f1;
}

/* =====================================================
   SERVICE PACKAGES SECTION
===================================================== */
.packages-section {
  background: #f8f9fa;
  /* Light clean backdrop to lift dark cards */
  padding: 120px 24px;
}

.pk-container {
  max-width: 1320px;
  margin: 0 auto;
}

.pk-header {
  text-align: center;
  margin-bottom: 70px;
}

.pk-badge {
  display: inline-block;
  color: var(--pink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.pk-title {
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  color: #000000;
  letter-spacing: -0.5px;
}

.pk-title .text-pink {
  color: var(--pink);
}

.pk-title .text-dot {
  color: var(--accent);
}

/* 3-Column Layout Grid */
.pk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

/* Individual Package Card Structure */
.pk-card {
  background: #000000;
  border-radius: 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: visible;
  /* Allows button drop placement overlap */
}

.pk-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.18);
}

/* Floating Pink Header Tabs */
.pk-card-header {
  background: var(--pink);
  padding: 16px 24px;
  border-radius: 14px;
  margin: -20px 30px 0 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(253, 80, 108, 0.3);
  position: relative;
  z-index: 2;
}

.pk-card-header h3 {
  color: #ffffff;
  font-size: clamp(16px, 1.8vw, 21px);
  font-weight: 700;
  margin: 0;
  white-space: normal;
}

/* Content Frame & Checked List Configuration */
.pk-card-body {
  padding: 50px 36px 75px 36px;
  flex-grow: 1;
}

.pk-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pk-features-list li {
  color: #ffffff;
  font-size: 14.5px;
  line-height: 1.45;
  font-weight: 500;
  position: relative;
  padding-left: 28px;
}

/* Custom Checkmark implementation matching layout screenshots */
.pk-features-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='%23ff4d1a'%3E%3Cpath d='M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM369 209L241 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L335 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Centered Overlapping Orange Action Button */
.pk-card-footer {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 100%;
  text-align: center;
  z-index: 3;
}

.pk-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 32px;
  border-radius: 8px;
  border: 2px solid var(--accent);
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 6px 18px rgba(255, 77, 26, 0.3);
}

.pk-btn:hover {
  background: #ffffff;
  color: var(--accent);
  transform: translateY(-2px);
}

/* Responsive Fluid Viewport Adaptations */
@media (max-width: 1024px) {
  .pk-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 45px 30px;
  }

  .pk-card:last-child {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
  }
}

@media (max-width: 900px) {
  .packages-section {
    padding: 80px 20px 100px;
  }

  .pk-grid {
    grid-template-columns: 1fr;
    gap: 55px 0;
  }

  .pk-card:last-child {
    grid-column: auto;
    max-width: 100%;
  }

  .pk-card-body {
    padding: 45px 24px 70px 24px;
  }
}

@media (max-width: 520px) {
  .fw-card {
    padding: 30px 24px;
  }

  .fw-right-panel {
    padding-left: 35px;
  }

  .fw-node {
    left: -35px;
    width: 34px;
    height: 34px;
    font-size: 12px;
  }

  .fw-timeline-line {
    left: 17px;
  }
}

/* Responsive Grid Adapters */
@media (max-width: 960px) {
  .wd-grid-box {
    flex-direction: column;
  }

  .wd-shopify {
    border-right: none;
    border-bottom: 1px solid #e3e6eb;
  }

  .wd-col {
    padding: 50px 32px;
  }

  .wd-watermark {
    width: 100px;
    height: 100px;
    top: 25px;
    right: 25px;
  }
}

/* =====================================================
   ASK THE AI SECTION (FULL WIDTH & GRID)
===================================================== */
.ai-proof-section {
  position: relative;
  width: 100%;
  background-color: #000000;
  /* Dark technical grid line canvas mapping */
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  background-position: center top;
  padding: 120px 24px 140px;
  overflow: hidden;
}

/* Ambient Crimson Core Aura Backdrop */
.ai-glow-glow {
  position: absolute;
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 350px;
  background: radial-gradient(circle, rgba(253, 80, 108, 0.22) 0%, rgba(253, 80, 108, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

.ai-container {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.ai-header {
  text-align: center;
  margin-bottom: 60px;
}

.ai-title {
  font-size: clamp(30px, 4.2vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.ai-title .text-pink {
  color: var(--pink);
}

.ai-title .text-dot {
  color: #ffffff;
}

/* 3-Column Glass Card Alignment Layout */
.ai-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Interactive Glassmorphism Card Element */
.ai-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px 28px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.ai-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(253, 80, 108, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.ai-card-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* Rounded Brand Icon Bases */
.ai-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ai-icon-box.bg-white {
  background: #ffffff;
}

.ai-icon-box.bg-orange {
  background: #d97736;
}

/* Custom stylized brand palette */
.ai-icon-box.bg-teal {
  background: #1e6b7b;
}

.ai-svg-icon {
  width: 28px;
  height: 28px;
  display: block;
}

/* Text Content Labels */
.ai-card-info h4 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 2px 0;
  letter-spacing: 0.5px;
}

.ai-card-info span {
  color: #a0aec0;
  font-size: 13px;
  font-weight: 500;
}

/* Dynamic Hover Arrow Actions */
.ai-card-arrow {
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, color 0.3s ease;
}

.ai-card:hover .ai-card-arrow {
  transform: translateX(4px);
  color: var(--pink);
}

/* Responsive Structural Breakpoints */
@media (max-width: 992px) {
  .ai-grid {
    grid-template-columns: 1fr;
    /* Switch cleanly to a vertical cascade block on smaller views */
    gap: 16px;
    max-width: 500px;
    margin: 0 auto;
  }

  .ai-proof-section {
    padding: 90px 20px 100px;
  }
}

/* =====================================================
   TRUSTED ECOMMERCE GROWTH PARTNER SECTION
===================================================== */
.partner-section {
  background: #ffffff;
  padding: 120px 24px;
  overflow: hidden;
}

.pt-container {
  max-width: 1280px;
  margin: 0 auto;
}

.pt-header {
  text-align: center;
  margin-bottom: 70px;
}

.pt-badge {
  display: inline-block;
  color: var(--pink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pt-title {
  font-size: clamp(32px, 4.5vw, 50px);
  font-weight: 800;
  line-height: 1.1;
  color: #000000;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.pt-title .text-pink {
  color: var(--pink);
}

/* Three Column Grid Setup: Left Cards, Center Badge, Right Cards */
.pt-grid {
  display: grid;
  grid-template-columns: 1fr 380px 1fr;
  align-items: center;
  gap: 20px;
  position: relative;
}

.pt-card-col {
  display: flex;
  flex-direction: column;
  gap: 80px;
  /* Space out cards vertically to frame the center circle */
  position: relative;
  z-index: 5;
}

/* Individual Feature Block Elements */
.pt-card {
  background: #000000;
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.pt-icon-box {
  width: 44px;
  height: 44px;
  background: rgba(253, 80, 108, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--pink);
}

.pt-icon-box svg {
  width: 22px;
  height: 22px;
}

.pt-card-content h3 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pt-card-content p {
  color: #a0aec0;
  font-size: 14px;
  line-height: 1.5;
}

/* Central Red Logo Core Container */
.pt-center-hub {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pt-circle-outer {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: #8b1e3f;
  /* Deep corporate solid crimson backdrop rendering */
  background: radial-gradient(circle, #a11a42 0%, #610d24 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(97, 13, 36, 0.25);
  position: relative;
  z-index: 4;
}

.pt-hero-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 180px;
}

/* SVG-Replacement Clean CSS Layout Connectors */
.pt-line-pointer {
  position: absolute;
  width: 70px;
  height: 45px;
  border-style: solid;
  border-color: #fd506c;
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
  display: block;
}

/* Left Column Anchor Pointers */
.pointer-top-left {
  top: 22%;
  left: -10px;
  border-width: 2px 0 0 2px;
  border-top-left-radius: 12px;
}

.pointer-bottom-left {
  bottom: 22%;
  left: -10px;
  border-width: 0 0 2px 2px;
  border-bottom-left-radius: 12px;
}

/* Right Column Anchor Pointers */
.pointer-top-right {
  top: 22%;
  right: -10px;
  border-width: 2px 2px 0 0;
  border-top-right-radius: 12px;
}

.pointer-bottom-right {
  bottom: 22%;
  right: -10px;
  border-width: 0 2px 2px 0;
  border-bottom-right-radius: 12px;
}

/* Responsive Fluid Breakpoints */
@media (max-width: 1200px) {
  .pt-grid {
    grid-template-columns: 1fr 300px 1fr;
  }

  .pt-circle-outer {
    width: 260px;
    height: 260px;
  }

  .pt-line-pointer {
    display: none;
  }

  /* Hide technical lines when spacing scales down */
}

@media (max-width: 992px) {
  .partner-section {
    padding: 80px 24px;
  }

  .pt-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pt-card-col {
    gap: 20px;
  }

  .pt-center-hub {
    grid-row: 1;
    /* Send logo badge to top layout position on mobile platforms */
    margin-bottom: 20px;
  }

  .pt-circle-outer {
    width: 240px;
    height: 240px;
  }
}

/* =====================================================
   INTERACTIVE METRICS COUNTER BANNER
===================================================== */
.metrics-counter-section {
  background: #0b0b0c;
  /* Deep rich dark canvas block framing */
  padding: 80px 24px;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mc-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.mc-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Number Values Configurations */
.mc-number-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 8px;
}

.mc-number {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 4.5vw, 56px);
  color: #ffffff;
  line-height: 1;
  letter-spacing: -1px;
}

.mc-suffix {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--pink);
  /* Accented branding color highlight */
  margin-left: 2px;
  line-height: 1;
}

/* Labels Formatting */
.mc-label {
  display: block;
  color: #9aa1ac;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Responsive Scaling Breakpoints */
@media (max-width: 992px) {
  .mc-container {
    grid-template-columns: repeat(2, 1fr);
    /* Forms a clean 2x2 grid pattern on small frames */
    gap: 48px 24px;
  }

  .metrics-counter-section {
    padding: 60px 24px;
  }
}

@media (max-width: 480px) {
  .mc-container {
    grid-template-columns: 1fr;
    /* Stack into a clean full vertical cascade line on micro viewports */
    gap: 40px 0;
  }
}

/* =====================================================
   CONSULTATION BOOKING & CONTACT SECTION
===================================================== */
.contact-section {
  background: #ffffff;
  padding: 100px 24px 120px;
  position: relative;
}

.ct-container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  background: #000000;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
}

/* Left Column: Cover Image Display Rules */
.ct-visual-side {
  flex: 1;
  position: relative;
  min-height: 620px;
  display: flex;
}

.ct-img-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ct-img-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Visual Overlay for Contact Details */
.ct-info-overlay {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  background: rgba(11, 11, 12, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 3;
}

.ct-info-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ct-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(253, 80, 108, 0.15);
  color: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ct-info-icon svg {
  width: 18px;
  height: 18px;
}

.ct-info-text span {
  display: block;
  font-size: 12px;
  color: #a0aec0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.ct-info-text strong {
  display: block;
  font-size: 16px;
  color: #ffffff;
  font-weight: 600;
}

/* Right Column: Dynamic Form Styling */
.ct-form-side {
  flex: 1.1;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ct-badge {
  display: inline-block;
  color: var(--pink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.ct-title {
  color: #ffffff;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.ct-title .text-pink {
  color: var(--pink);
}

.ct-desc {
  color: #a0aec0;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 36px;
  max-width: 520px;
}

/* Form Fields Infrastructure */
.ct-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ct-form-row {
  display: flex;
  gap: 20px;
}

.ct-field-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ct-field-group.full-width-field {
  flex: none;
  width: 100%;
}

.ct-field-group label {
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.ct-field-group input,
.ct-field-group select,
.ct-field-group textarea {
  font-family: 'Poppins', sans-serif;
  background: #121214;
  border: 1px solid #27272a;
  color: #ffffff;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 14.5px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}

.ct-field-group input::placeholder,
.ct-field-group textarea::placeholder {
  color: #52525b;
}

.ct-field-group input:focus,
.ct-field-group select:focus,
.ct-field-group textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(253, 80, 108, 0.15);
}
.ct-form-status--success {
  color: #ffffff;
}

.ct-form-status {
  font-size: 14px;
  font-weight: 500;
  margin-top: 4px;
}

.ct-form-status--success {
  color: #4ade80; /* soft green, reads clearly as "success" on dark bg */
}

.ct-form-status--error {
  color: #f87171; /* soft red for errors */
}

/* Clean Custom styling adjustment for system selection inputs */
.ct-field-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' fill='%2371717a'%3E%3Cpath d='M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  padding-right: 40px;
}

/* Orange Submission Action Button */
.ct-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent);
  color: #ffffff;
  border: 2px solid var(--accent);
  font-weight: 700;
  font-size: 15px;
  padding: 16px 32px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
  margin-top: 10px;
  width: fit-content;
}

.ct-submit-btn:hover {
  background: #ffffff;
  color: var(--accent);
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* Responsive Adaptive Layout Structural Collapsing */
@media (max-width: 1024px) {
  .ct-container {
    flex-direction: column;
    border-radius: 24px;
  }

  .ct-visual-side {
    min-height: 400px;
  }

  .ct-info-overlay {
    bottom: 24px;
    left: 24px;
    right: 24px;
    padding: 24px;
  }

  .ct-form-side {
    padding: 48px 32px;
  }
}

@media (max-width: 640px) {
  .ct-form-row {
    flex-direction: column;
    gap: 20px;
  }

  .ct-submit-btn {
    width: 100%;
    /* Expands button cleanly to full width on compact touch screens */
  }

  .contact-section {
    padding: 60px 16px;
  }

  .ct-visual-side {
    min-height: 320px;
  }
}



/* =====================================================
   AMAZON LISTINGS SECTION
===================================================== */
.az-listings-section {
  background: #000000;
  /* Deep pure black background */
  padding: 100px 24px 120px;
  width: 100%;

  /* ADDED: This creates the spacing between the two sections */
}

.az-container {
  max-width: 1320px;
  margin: 0 auto;
}

.az-header {
  text-align: center;
  margin-bottom: 60px;
}

.az-badge {
  display: inline-block;
  color: var(--pink, #fd506c);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.az-title {
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.az-title .text-pink {
  color: var(--pink, #fd506c);
}

.az-title .text-dot {
  color: var(--pink, #fd506c);
}

/* 3-Column Display Layout */
.az-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

/* Individual Listing Card Frame */
.az-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  /* Thin coral/pink border framing matching layout screenshots */
  border: 1px solid rgba(253, 80, 108, 0.4);
  border-radius: 16px;
  padding: 24px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.az-card:hover {
  transform: translateY(-6px);
  border-color: var(--pink, #fd506c);
  box-shadow: 0 12px 30px rgba(253, 80, 108, 0.15);
}

/* Inner Image Container White Capsule Box */
.az-img-container {
  width: 100%;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  /* Keeps white box layout aspect ratio uniform */
  margin-bottom: 20px;
}

.az-img-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Keeps product mockups cleanly centered without distortion */
  display: block;
}

/* Typography Descriptions Below Images */
.az-card-title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  margin-top: auto;
  /* Aligns shorter text strings evenly */
}

/* Responsive Adaptive Viewports */
@media (max-width: 992px) {
  .az-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .az-listings-section {
    padding: 70px 20px 80px;
    margin-bottom: 50px;
    /* ADDED: Slightly smaller spacing on mobile screens */
  }

  .az-grid {
    grid-template-columns: 1fr;
    /* Stacks nicely on phone viewports */
    gap: 24px;
  }
}


@media (max-width: 1024px) {
  .mkt-container {
    flex-direction: column;
    gap: 50px;
    text-align: left;
  }

  .mkt-content,
  .mkt-graphic {
    width: 100%;
    max-width: 100%;
  }

  .marketplace-opt {
    padding: 70px 24px;
  }
}

/* =====================================================
   GET IN TOUCH CONTACT SECTION STYLE
===================================================== */
.git-contact-section {
  background: #fdfdfd;
  /* Clean minimal light background background setup */
  padding: 100px 24px 120px;
  width: 100%;
  margin-top: 80px;
}

.git-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* Left Side Styles */
.git-content-side {
  flex: 1;
}

.git-badge {
  display: inline-block;
  color: #fd506c;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.git-title {
  color: #000000;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.git-title .text-pink {
  color: #fd506c;
}

.git-desc {
  color: #3f3f46;
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Left Communication Channel Listings */
.git-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.git-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.git-icon-wrap {
  width: 20px;
  height: 20px;
  color: #fd506c;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.git-icon-wrap svg {
  width: 100%;
  height: 100%;
}

.git-info-text span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #71717a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1px;
}

.git-info-text strong {
  display: block;
  font-size: 15px;
  color: #000000;
  font-weight: 700;
}

/* Right Side White Questionnaire Layout Block */
.git-form-side {
  flex: 1.2;
  width: 100%;
}

.git-form-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05), 0 5px 15px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.git-form-row {
  display: flex;
  gap: 20px;
  width: 100%;
}

.git-input-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.git-input-group.full-width {
  flex: none;
  width: 100%;
}

.git-input-group label {
  color: #71717a;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.git-input-group input,
.git-input-group select,
.git-input-group textarea {
  font-family: inherit;
  background: #f4f4f5;
  /* Light grey backdrop */
  border: 1px solid transparent;
  color: #000000;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 13.5px;
  outline: none;
  transition: all 0.2s ease;
  width: 100%;
}

.git-input-group input::placeholder,
.git-input-group textarea::placeholder {
  color: #a1a1aa;
}

.git-input-group input:focus,
.git-input-group select:focus,
.git-input-group textarea:focus {
  background: #ffffff;
  border-color: rgba(253, 80, 108, 0.4);
  box-shadow: 0 0 0 3px rgba(253, 80, 108, 0.1);
}

/* Dropdown Caret Icon Controls */
.git-input-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' fill='%2318181b'%3E%3Cpath d='M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 11px;
  padding-right: 36px;
}

/* Solid Black Processing Submission Button */
.git-submit-btn {
  background: #000000;
  color: #ffffff;
  border: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
  width: 100%;
  margin-top: 10px;
}

.git-submit-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* Fluid Mobile Adaptation Filters */
@media (max-width: 992px) {
  .git-container {
    flex-direction: column;
    gap: 50px;
  }

  .git-form-card {
    padding: 30px 24px;
  }
}

@media (max-width: 580px) {
  .git-form-row {
    flex-direction: column;
    gap: 20px;
  }

  .git-contact-section {
    padding: 60px 16px 80px;
  }
}


  * { box-sizing: border-box; margin: 0; padding: 0; }
  body { font-family: 'Poppins', sans-serif; }
 
 
* { box-sizing: border-box; margin: 0; padding: 0; }
  body { font-family: 'Poppins', sans-serif; }

* { box-sizing: border-box; margin: 0; padding: 0; }
  body { font-family: 'Poppins', sans-serif; }



/* =====================================================
   FREQUENTLY ASKED QUESTIONS (FAQS) SECTION
===================================================== */
.faq-section {
  background: #ffffff;
  padding: 100px 24px 120px;
  width: 100%;
}

.faq-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* Left Content Column */
.faq-header-side {
  flex: 1;
  position: sticky;
  top: 120px;
  /* Keeps left column static as users scroll through queries */
}

.faq-badge {
  display: inline-block;
  color: #fd506c;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.faq-title {
  color: #000000;
  font-size: clamp(30px, 3.8vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.faq-title .text-pink {
  color: #fd506c;
}

.faq-desc {
  color: #27272a;
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 30px;
  max-width: 440px;
}

/* Orange Interaction Anchor Action */
.faq-btn {
  display: inline-block;
  background: #ff5124;
  /* Vibrant structural matching layout fill button */
  color: #ffffff;
  font-weight: 700;
  font-size: 14.5px;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.faq-btn:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

/* Right Side Accordion Infrastructure */
.faq-accordion-side {
  flex: 1.3;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e4e4e7;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item.active {
  border-color: #d4d4d8;
}

/* Header Trigger Element */
.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  padding: 24px;
  cursor: pointer;
  outline: none;
}

.faq-trigger span {
  color: #000000;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.faq-chevron {
  width: 14px;
  height: 14px;
  color: #000000;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Interactive Accordion Rotations */
.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

/* Collapsible Panel */
.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content {
  padding: 0 24px 24px 24px;
  border-top: 1px solid #f4f4f5;
}

.faq-content p {
  color: #3f3f46;
  font-size: 14px;
  line-height: 1.6;
  margin: 16px 0 0 0;
}

/* Adaptive Breakdown Viewports */
@media (max-width: 992px) {
  .faq-container {
    flex-direction: column;
    gap: 48px;
  }

  .faq-header-side {
    position: static;
  }

  .faq-desc {
    max-width: 100%;
  }
}

@media (max-width: 580px) {
  .faq-section {
    padding: 60px 16px 80px;
  }

  .faq-trigger {
    padding: 20px 16px;
  }

  .faq-content {
    padding: 0 16px 20px 16px;
  }
}

/* =====================================================
    EMPIRE CALL TO ACTION BANNER STYLE
  ===================================================== */
.empire-cta-section {
  background: #ffffff;
  /* Sits on a clean white background canvas block */
  padding: 80px 24px;
  width: 100%;
}

.empire-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Rounded Black Capsule Container Card with Ambient Glow effect */
.empire-card {
  background: #000000;
  border-radius: 32px;
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

/* Subtle bottom crimson/pink ambient backdrop glow mimicking design precisely */
.empire-card::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 250px;
  background: radial-gradient(circle, rgba(253, 80, 108, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
}

.empire-badge {
  display: inline-block;
  color: #fd506c;
  /* Signature layout pink */
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.empire-title {
  color: #ffffff;
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1px;
  margin: 0 0 24px 0;
  text-transform: uppercase;
}

.empire-title .text-pink {
  color: #fd506c;
}

.empire-desc {
  color: #e4e4e7;
  font-size: 15px;
  line-height: 1.6;
  max-width: 760px;
  margin: 0 auto 40px auto;
  opacity: 0.9;
}

/* Dual Button Flex Mechanics */
.empire-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Primary Vibrant Orange Action Button Style */
.empire-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #ff5124;
  /* Distinct vibrant layout orange */
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.empire-btn-primary:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

.empire-btn-primary svg {
  transition: transform 0.2s ease;
}

.empire-btn-primary:hover svg {
  transform: translateX(3px);
  /* Interactive micro-motion nudge effect */
}

/* Secondary High-Contrast Solid Dark Button Style */
.empire-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #09090b;
  color: #ffffff;
  border: 1px solid #27272a;
  font-size: 14.5px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.empire-btn-secondary:hover {
  background: #18181b;
  border-color: #3f3f46;
}

/* Responsive Adaptive Layout Breakpoints */
@media (max-width: 768px) {
  .empire-cta-section {
    padding: 60px 16px;
  }

  .empire-card {
    padding: 60px 24px;
    border-radius: 24px;
  }

  .empire-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .empire-btn-primary,
  .empire-btn-secondary {
    width: 100%;
    /* Stacks beautifully for seamless phone touch targeting */
  }
}

/* =====================================================
   PREMIUM SITE FOOTER COMPONENT STYLE
===================================================== */
.site-footer {
  background: #000000;
  /* Rich layout solid black canvas */
  padding: 80px 24px;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ft-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  justify-content: space-between;
}

/* Individual Column Structure Rules */
.ft-col {
  flex: 1;
}

.ft-brand-col {
  flex: 1.8;
  /* Expands bio summary width gracefully */
  padding-right: 40px;
}

/* Header Text Matching Logo */
.ft-logo h2 {
  color: #ffffff;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 0 0 18px 0;
}

.ft-logo .logo-x {
  color: #fd506c;
  /* Standard brand pink highlight */
}
.ft-logo a.hx-logo img {
  height: 64px;
  width: auto;
  display: block;
  padding-bottom: 20px;
}

.ft-bio {
  color: #a1a1aa;
  /* Light charcoal text blend color */
  font-size: 13.5px;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 440px;
}

/* Custom Square Pink Social Media Buttons */
.ft-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #fd506c;
  /* Solid layout pink square container block */
  color: #ffffff;
  border-radius: 6px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.ft-social-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.ft-social-btn svg {
  width: 16px;
  height: 16px;
}

/* Column Title Typography Definitions */
.ft-col h3 {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.8px;
  margin: 0 0 24px 0;
  text-transform: uppercase;
}

/* Custom Navigation Dot Link Layout Lists */
.ft-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ft-links li {
  position: relative;
  padding-left: 18px;
  /* Room for the custom layout bullet point */
  display: flex;
  align-items: center;
}

/* Custom Pink Radial Concentric Micro Dot List Markers */
.ft-links li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #000000;
  border: 2px solid #fd506c;
  /* Hollow rings filled with solid core matching screenshot */
  box-shadow: 0 0 0 1px #fd506c;
}

.ft-links a {
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.ft-links a:hover {
  color: #fd506c;
}

/* Contact Details Layout Right Grid Block */
.ft-contact-col {
  display: flex;
  flex-direction: column;
}

.ft-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.ft-contact-icon {
  width: 15px;
  height: 15px;
  color: #fd506c;
  /* Standard brand pink color */
  flex-shrink: 0;
}

.ft-contact-item a {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.ft-contact-item a:hover {
  color: #fd506c;
}

/* Responsive Fluid Grid Scaling Structural Changes */
@media (max-width: 992px) {
  .ft-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }

  .ft-brand-col {
    grid-column: span 2;
    padding-right: 0;
  }
}

@media (max-width: 540px) {
  .ft-container {
    grid-template-columns: 1fr;
    /* Collapses neatly into single list rows for modern mobile devices */
    gap: 36px 0;
  }

  .ft-brand-col {
    grid-column: span 1;
  }

  .site-footer {
    padding: 60px 20px;
  }
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width:640px) {
  .marquee-group img {
    height: 32px;
    margin: 0 40px;
  }

  .marquee-track {
    animation-duration: 16s;
  }
}


/* =====================================================
   SHOPIFY SUMMARY DISPLAY STYLING
===================================================== */
.shopify-summary-section {
  width: 100%;
  background-color: #ffffff;
  padding: 80px 0;
  overflow: hidden;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.summary-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header Typography Setup */
.summary-header {
  text-align: center;
  margin-bottom: 60px;
}

.summary-title {
  color: #111111;
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.summary-title span {
  color: #fd506c; /* Core brand accent tone */
}

/* Flex Engine Split */
.summary-content-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  width: 100%;
}

/* =====================================================
   CODED FEATURE CARD STYLING
===================================================== */
.summary-left-card {
  flex: 1;
  display: flex;
  justify-content: flex-start;
}

.whats-included-card {
  width: 100%;
  max-width: 580px; /* 1. INCREASE WIDTH: Changed from 400px to 480px (or higher if needed) */
  background: linear-gradient(135deg, #e62e52 0%, #bd193c 100%);
  border-radius: 28px;
  
  /* 2. INCREASE HEIGHT: Increased top/bottom padding from 35px/40px to 55px */
  padding: 50px 35px 5px 35px; 
  
  box-shadow: 0 20px 40px rgba(189, 25, 60, 0.25);
  position: relative;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.1);
  
  /* 3. MOVE TO LEFT: Pulls the box left out of the centered grid */
  margin-left: -190px; 
}

/* White Top Badge */
.card-badge {
  background-color: #ffffff;
  color: #e62e52;
  font-weight: 900;
  font-size: 35px;
  letter-spacing: 1px;
  padding: 8px 24px;
  border-radius: 20px;
  width: fit-content;
  margin: 0 auto 30px auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
}

/* List Layout */
.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.checkmark {
  color: #ffffff;
  font-weight: 900;
  font-size: 16px;
  margin-top: 1px;
  flex-shrink: 0;
}

.feature-text {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.3px;
}

/* =====================================================
   RIGHT CANVAS ASSETS LAYOUT
===================================================== */
.summary-right-visuals {
  flex: 1.2;
  position: relative;
  height: 520px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-element {
  position: absolute;
}

.visual-element img {
  width: 100%;
  height: auto;
  display: block;
}

/* 1. The Centerpiece Girl (Floating Effect Engine) */
.main-girl-wrapper {
  z-index: 5;
  width: 600px;
  position: relative;
  animation: smoothGirlFloat 4.5s ease-in-out infinite;
}

/* 2. Floating Mobile Phone Position */
.accent-phone {
  z-index: 4;
  width: 80px;
  top: 14%;
  left: 10%;
  transform: rotate(-12deg);
}

/* 3. Floating Blue Running Shoe Position */
.accent-shoe {
  z-index: 4;
  width: 130px;
  top: 15%;
  right: 6%;
  transform: rotate(15deg);
}

/* 4. Shopify Shopping Bag Position */
.accent-shopify-bag {
  z-index: 6;
  width: 115px;
  bottom: 14%;
  left: 6%;
}

/* 5. Brown Designer Handbag Position */
.accent-brown-bag {
  z-index: 6;
  width: 150px;
  bottom: 10%;
  right: 2%;
}

/* =====================================================
   DYNAMIC FLOATING KEYFRAMES ENGINE
===================================================== */
@keyframes smoothGirlFloat {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-16px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* =====================================================
   RESPONSIVE COLLAPSE ENGINE (MOBILE)
===================================================== */
@media (max-width: 991px) {
  .summary-content-grid {
    flex-direction: column-reverse;
    gap: 60px;
  }
  
  .summary-right-visuals {
    width: 100%;
    max-width: 500px;
    height: 460px;
  }
  
  .main-girl-wrapper { width: 320px; }
  .accent-phone { width: 65px; }
  .accent-shoe { width: 110px; }
  .accent-shopify-bag { width: 95px; }
  .accent-brown-bag { width: 125px; }
}

/* Card Action Button Styling */
/* Card Action Button Styling */
.card-action-btn {
  display: block;
  width: 100%;
  background-color: #ffffff; /* Initial background: White */
  color: #e62e52; /* Initial text color: Your Pink */
  font-weight: 800;
  font-size: 26px;
  text-align: center;
  text-decoration: none;
  padding: 16px 20px;
  border-radius: 14px;
  margin-top: 30px;
  box-sizing: border-box;
  border: 2px solid transparent; 
  
  /* Set background size to 200% so we can animate the slide effect */
  background-size: 200% 100%;
  background-position: right center;
  
  transition: all 0.4s ease-in-out; /* Smooth transition speed */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Hover State with Left-to-Right Sweep Animation */
.card-action-btn:hover {
  background-image: linear-gradient(to right, #9acc4d 0%, #689f38 51%, #9acc4d 100%);
  background-position: left center; /* Shifts the gradient smoothly from right to left, making it fill left-to-right */
  color: #ffffff; /* Hover text color: White */
  border: 2px solid #ffffff; /* Hover border: 2px solid white */
}

/* =====================================================
   HEARTBEAT ANIMATION FOR ALL BUTTONS
===================================================== */
@keyframes btn-heartbeat {
  0% {
    transform: scale(1);
  }

  14% {
    transform: scale(1.08);
  }

  28% {
    transform: scale(1);
  }

  42% {
    transform: scale(1.08);
  }

  70% {
    transform: scale(1);
  }

  100% {
    transform: scale(1);
  }
}

.hx-btn,
.btn-primary,
.btn-secondary,
.mkt-btn,
.wd-btn,
.cs-btn,
.fw-btn,
.pf-see-more-btn,
.pk-btn,
.ct-submit-btn,
.faq-btn,
.empire-btn-primary,
.empire-btn-secondary,
.git-submit-btn {
  animation: btn-heartbeat 1.6s ease-in-out infinite;
}

/* Pause the heartbeat on hover so it doesn't fight with your existing hover lift/transform */
.hx-btn:hover,
.btn-primary:hover,
.btn-secondary:hover,
.mkt-btn:hover,
.wd-btn:hover,
.cs-btn:hover,
.fw-btn:hover,
.pf-see-more-btn:hover,
.pk-btn:hover,
.ct-submit-btn:hover,
.faq-btn:hover,
.empire-btn-primary:hover,
.empire-btn-secondary:hover,
.git-submit-btn:hover {
  animation-play-state: paused;
}

#cursor-trail-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  /* lets clicks pass through to your page */
  z-index: 9999;
}

.hx-btn:not(.hx-btn-call),
.btn-primary,
.btn-secondary,
.mkt-btn,
.wd-btn,
.cs-btn,
.fw-btn,
.pf-see-more-btn,
.pk-btn,
.ct-submit-btn,
.faq-btn,
.empire-btn-primary,
.empire-btn-secondary,
.git-submit-btn {
  animation: btn-heartbeat 1.6s ease-in-out infinite;

}



