/* ==========================================================================
   GLOBAL VARIABLES & BASE (Reuse from home, included for completeness)
   ========================================================================== */
:root {
  --brand-red: #ff0c07;
  --brand-red-glow: rgba(255, 12, 7, 0.4);
  --brand-black: #000000;
  --brand-black-light: #111111;
  --brand-charcoal: #1a1a24; /* Added for the deep background split */
  --bg-light: #ffffff;
  --bg-offwhite: #f8f9fa;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-gray: #666666;
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Inter", sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: "Montserrat", sans-serif;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  width: 100%;
}

/* --- Subtle Global Grid --- */
.global-bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
  pointer-events: none;
}

/* ==========================================================================
   UNIVERSAL PAGE HERO SECTION (Ultra-Premium & Architectural - 4:3 Ratio)
   ========================================================================== */
.page-hero-section {
  padding: 130px 5vw 4rem;
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

/* Subtle Technical Background Grid */
.page-hero-bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
  background-size: clamp(30px, 5vw, 50px) clamp(30px, 5vw, 50px);
  z-index: 0;
  pointer-events: none;
}

/* Fluid Ambient Glow */
.page-hero-glow-1 {
  position: absolute;
  width: 50vw;
  height: 50vw;
  max-width: 600px;
  max-height: 600px;
  background: var(--brand-red);
  border-radius: 50%;
  filter: blur(12vw);
  top: -10vw;
  left: -10vw;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr; /* Gave slightly more weight to the image column */
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 2;
}

/* --- Left Side: Content --- */
.page-hero-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Editorial-Style Indicator */
.page-hero-indicator {
  display: inline-flex;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--brand-black);
  margin-bottom: 30px;
  position: relative;
  padding-left: 50px;
}
.page-hero-indicator::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 2px;
  background: var(--brand-red);
}

/* Fluid Bold Stacked Text */
.page-hero-block-text {
  display: inline-block;
  background-color: #ffffff;
  color: var(--brand-black);
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  line-height: 1;
  padding: clamp(8px, 1.5vw, 12px) clamp(15px, 3vw, 25px);
  margin-bottom: clamp(10px, 1.5vw, 14px);
  text-transform: uppercase;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.02);
}
.page-hero-clearfix::after {
  content: "";
  clear: both;
  display: table;
}

.page-hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 600;
  color: var(--text-gray);
  margin-top: 25px;
  line-height: 1.5;
  border-left: 3px solid var(--brand-red);
  padding-left: 20px;
  max-width: 90%;
}

/* --- Right Side: Layered Architectural Image Composition (4:3 Ratio) --- */
.page-hero-visual-frame {
  position: relative;
  width: 100%;
  max-width: 650px; /* Increased max-width for a more dominant presence */
  aspect-ratio: 4/3; /* Enforced 4:3 landscape ratio */
  margin: 0 auto;
}

/* The Background Layer (Creates deep architectural offset) */
.page-hero-visual-backdrop {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 90%;
  height: 90%;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: repeating-linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.02) 0px,
    rgba(0, 0, 0, 0.02) 2px,
    transparent 2px,
    transparent 10px
  );
  z-index: 1;
}

/* The Foreground Image */
.page-hero-visual-img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 90%;
  height: 90%;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  box-shadow: -20px 30px 60px rgba(0, 0, 0, 0.12);
  z-index: 2;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.page-hero-visual-frame:hover .page-hero-visual-img {
  transform: scale(1.03) translate(-10px, -10px);
  box-shadow: -30px 40px 80px rgba(0, 0, 0, 0.15);
}

/* Gradient Mask to blend image */
.page-hero-visual-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top right,
    rgba(0, 0, 0, 0.4) 0%,
    transparent 50%
  );
  pointer-events: none;
}

/* Highly Detailed Floating Accent Box */
.page-hero-visual-accent {
  position: absolute;
  bottom: -40px;
  right: 5%; /* Positioned overlapping the bottom right edge */
  background: var(--brand-black);
  color: var(--white);
  padding: 20px 30px;
  border-radius: 12px;
  z-index: 3;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.4s ease;
}
.page-hero-visual-frame:hover .page-hero-visual-accent {
  transform: translateY(-5px);
}
.page-hero-accent-icon {
  width: 45px;
  height: 45px;
  background: rgba(255, 12, 7, 0.15);
  color: var(--brand-red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  border: 1px solid rgba(255, 12, 7, 0.3);
}
.page-hero-accent-text {
  display: flex;
  flex-direction: column;
}
.page-hero-accent-text strong {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: var(--white);
}
.page-hero-accent-text span {
  font-size: 0.75rem;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

/* --- Mobile Breakpoints --- */
@media (max-width: 992px) {
  .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .page-hero-visual-frame {
    order: -1;
    max-width: 500px;
    margin-bottom: 20px;
  }
  .page-hero-title-wrap {
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .page-hero-section {
    padding: 130px 0 60px;
    max-height: none;
  }
  .page-hero-visual-backdrop {
    top: -2%;
    right: -2%;
  }
  .page-hero-visual-accent {
    bottom: -25px;
    right: auto;
    left: 5%;
    padding: 15px 20px;
    gap: 15px;
  }
  .page-hero-accent-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  .page-hero-accent-text strong {
    font-size: 0.95rem;
  }
  .page-hero-subtitle {
    border-left: none;
    border-top: 3px solid var(--brand-red);
    padding-left: 0;
    padding-top: 15px;
  }
}

/* ==========================================================================
   ABOUT DNA SECTION (Responsive Glass Vault)
   ========================================================================== */
.about-dna-section {
  padding: clamp(60px, 10vw, 120px) 0;
  /* background-color: #0a0a0f; */
  background: url(dots.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

/* Fluid Deep Glows */
.dna-orb-1 {
  position: absolute;
  width: 80vw;
  height: 80vw;
  max-width: 800px;
  max-height: 800px;
  background: var(--brand-red);
  border-radius: 50%;
  filter: blur(15vw);
  top: -20vw;
  left: -20vw;
  opacity: 0.15;
  pointer-events: none;
}

.dna-glass-vault {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: clamp(20px, 4vw, 30px);
  padding: clamp(30px, 6vw, 80px) clamp(20px, 5vw, 60px); /* Massive padding on desktop, tight on mobile */
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  z-index: 2;
  overflow: hidden;
}

.dna-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: clamp(20px, 4vw, 40px);
  text-align: center;
}
.dna-title span {
  color: var(--brand-red);
}

.dna-content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 4vw, 50px);
  align-items: flex-start;
  position: relative;
}

.dna-lead {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.5;
}
.dna-body {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  font-weight: 300;
}

/* --- Mobile Breakpoints --- */
@media (max-width: 992px) {
  .page-hero-grid {
    grid-template-columns: 1fr;
  }
  .page-hero-visual {
    order: -1;
    max-width: 350px;
    margin-bottom: 20px;
  }
  .dna-content-split {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-hero-title-wrap {
    align-items: center;
    text-align: center;
  }
  .page-hero-subtitle {
    border-left: none;
    border-top: 3px solid var(--brand-red);
    padding-left: 0;
    padding-top: 15px;
  }
}

/* ==========================================================================
   BRAND ACTIVATION SECTION (Split Background imitating the attached image)
   ========================================================================== */
.activation-section {
  position: relative;
  /* The magic split background: Top is light, bottom is dark charcoal */
  background: linear-gradient(
    to bottom,
    var(--bg-light) 45%,
    var(--brand-charcoal) 45%
  );
  padding: 100px 0 120px;
  z-index: 2;
}

.activation-header {
  text-align: center;
  margin-bottom: 80px;
}
.activation-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--brand-black);
  line-height: 1.1;
  margin-bottom: 20px;
}
.activation-subtitle {
  font-size: 1.15rem;
  color: var(--text-gray);
  max-width: 700px;
  margin: 0 auto;
}

/* The 3 Cards Grid */
.activation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Individual Card Styling */
.act-card {
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  background-color: var(--brand-black);
}
.act-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
}

/* Top Half: Image */
.act-card-img {
  height: 260px;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Bottom Half: Gradient Content */
.act-card-content {
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
}

/* Custom Gradients for the 3 Cards using Brand Colors */
.act-card-1 .act-card-content {
  background: linear-gradient(135deg, #2a0808 0%, #ff0c07 100%);
}
.act-card-2 .act-card-content {
  background: linear-gradient(135deg, #ff0c07 0%, #8a0000 100%);
}
.act-card-3 .act-card-content {
  background: linear-gradient(135deg, #1f1f1f 0%, #000000 100%);
  border-top: 1px solid #333;
}

.act-card-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 15px;
}
.act-card-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
  line-height: 1.6;
  flex-grow: 1;
}

/* The dark button mimicking the reference image */
.act-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background-color: #1a1a24;
  color: var(--white);
  padding: 15px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}
.act-card-btn:hover {
  background-color: var(--white);
  color: var(--brand-black);
}
.act-card-btn i {
  font-size: 1.1rem;
}

/* ==========================================================================
   OUR PEOPLE FIRST APPROACH SECTION
   ========================================================================== */
.approach-section {
  padding: 4rem 0 6rem;
  background-color: var(--bg-offwhite);
  position: relative;
}
.approach-header {
  text-align: center;
  margin-bottom: 70px;
}
.approach-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand-red);
  margin-bottom: 15px;
}
.approach-eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--brand-red);
}
.approach-title {
  font-size: 3rem;
  font-weight: 900;
  color: var(--brand-black);
}

/* 2x2 Ultra Modern Grid */
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.approach-card {
  background: var(--white);
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.approach-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 20%;
  background: var(--brand-red);
  transition: height 0.4s ease;
}
.approach-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}
.approach-card:hover::before {
  height: 100%;
}

.approach-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: var(--brand-red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 25px;
  transition: var(--transition);
}
.approach-card:hover .approach-icon {
  background: var(--brand-red);
  color: var(--white);
  transform: scale(1.1);
}
.approach-card h3 {
  font-size: 1.5rem;
  color: var(--brand-black);
  margin-bottom: 15px;
  font-weight: 700;
}
.approach-card p {
  color: var(--text-gray);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ==========================================================================
   RESPONSIVE RULES FOR NEW SECTIONS
   ========================================================================== */
@media (max-width: 1024px) {
  .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .page-hero-content {
    border-left: none;
    padding-left: 0;
    border-top: 4px solid var(--brand-red);
    padding-top: 20px;
  }
  .activation-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  /* Adjust split background for stacked cards */
  .activation-section {
    background: linear-gradient(
      to bottom,
      var(--bg-light) 25%,
      var(--brand-charcoal) 25%
    );
  }
}

@media (max-width: 768px) {
  .page-hero-section {
    padding: 150px 0 60px;
  }
  .page-hero-block-text {
    font-size: 2.5rem;
    padding: 6px 15px;
  }
  .activation-title {
    font-size: 2.5rem;
  }
  .approach-grid {
    grid-template-columns: 1fr;
  }
  .approach-card {
    padding: 40px 30px;
  }
}

/* ==========================================================================
   SERVICES SECTION 1: BRAND ACTIVATIONS (Inspired by 'Awsmd' Split Cards)
   ========================================================================== */
.svc-activations-section {
  padding: 20px 7vw 120px;
  background-color: var(--bg-light);
}

.svc-activations-header {
  margin-bottom: 60px;
  max-width: 800px;
}
.svc-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand-red);
  margin-bottom: 15px;
}
.svc-section-eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--brand-red);
}
.svc-section-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--brand-black);
  line-height: 1.1;
  margin-bottom: 20px;
}

.svc-activations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.svc-split-card {
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s ease;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.03);
}
.svc-split-card:hover {
  transform: translateY(-10px);
}

/* Top Half */
.svc-split-top {
  padding: 40px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
}
.svc-split-top.bg-lime {
  background-color: #e2fbb4;
} /* Subtle aesthetic colors */
.svc-split-top.bg-sand {
  background-color: #f5f3ef;
}
.svc-split-top.bg-red {
  background-color: rgba(255, 12, 7, 0.05);
}

.svc-split-tags {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.svc-split-tag {
  background: var(--white);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--brand-black);
}
.svc-split-title {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 15px;
  color: var(--brand-black);
}
.svc-split-desc {
  font-size: 0.95rem;
  color: var(--text-gray);
  font-weight: 500;
}

/* Bottom Half Image */
.svc-split-bottom {
  height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 0 0 30px 30px;
}
.svc-split-btn {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}
.svc-split-btn:hover {
  background: var(--white);
  color: var(--brand-black);
}

/* ==========================================================================
   SERVICES SECTION 2: ROADSHOWS (Inspired by 'Banking Easier' Dark UI)
   ========================================================================== */
.svc-roadshow-section {
  padding: 6rem 0 120px;
  background-color: var(--brand-black);
  position: relative;
  overflow: hidden;
  border-radius: 40px; /* Curves the entire dark section */
  margin: 0 20px;
}

/* Concentric Background Rings */
.svc-roadshow-rings {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 1000px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  pointer-events: none;
}
.svc-roadshow-rings::before {
  content: "";
  position: absolute;
  top: 100px;
  left: 100px;
  right: 100px;
  bottom: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
.svc-roadshow-rings::after {
  content: "";
  position: absolute;
  top: 200px;
  left: 200px;
  right: 200px;
  bottom: 200px;
  border: 2px dashed rgba(255, 12, 7, 0.35);
  border-radius: 50%;
  animation: spinHolo 40s linear infinite;
}

.svc-roadshow-header {
  text-align: center;
  position: relative;
  z-index: 2;
  margin-bottom: 80px;
}
.svc-roadshow-header .svc-section-title {
  color: var(--white);
}
.svc-roadshow-header .svc-section-title span {
  color: var(--brand-red);
}

/* Staggered Light Cards */
.svc-roadshow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
  align-items: center; /* Center alignment allows staggering */
}

.svc-rs-card {
  background: var(--bg-offwhite);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.svc-rs-card.elevated {
  transform: translateY(-40px); /* Creates the staggered effect */
  background: var(--white);
}

.svc-rs-card h4 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--brand-black);
  margin-bottom: 15px;
}
.svc-rs-card p {
  font-size: 0.95rem;
  color: var(--text-gray);
  margin-bottom: 30px;
}

/* Mock UI graphic inside cards */
.svc-rs-mockup {
  width: 100%;
  max-width: 220px;
  height: 280px;
  background: #ffffff;
  border-radius: 20px;
  border: 4px solid var(--brand-black);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}
.svc-rs-mockup-header {
  height: 40px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  padding: 0 15px;
  font-weight: 700;
  font-size: 0.7rem;
}
.svc-rs-mockup-body {
  padding: 15px;
  text-align: left;
}
.svc-rs-mockup-img {
  width: 100%;
  height: 120px;
  background: #eee;
  border-radius: 10px;
  margin-bottom: 10px;
  background-size: cover;
  background-position: center;
}
.svc-rs-mockup-line {
  height: 8px;
  background: #eee;
  border-radius: 4px;
  margin-bottom: 8px;
}
.svc-rs-mockup-line.short {
  width: 60%;
}
.svc-rs-mockup-btn {
  background: var(--brand-red);
  height: 30px;
  border-radius: 15px;
  margin-top: 15px;
}

/* ==========================================================================
   SERVICES SECTION 3: PRODUCT SAMPLING (Inspired by 'Rewrd' Tall Cards)
   ========================================================================== */
.svc-sampling-section {
  padding: 4rem 0 6rem;
}

.svc-sampling-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.svc-tall-card {
  aspect-ratio: 9/16;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s ease;
}
.svc-tall-card:hover {
  transform: translateY(-10px);
}

/* Vibrant Background Variants */
.tc-bg-1 {
  background-color: #d6ff38;
} /* Lime */
.tc-bg-2 {
  background-color: var(--brand-red);
  color: var(--white);
} /* Red */
.tc-bg-3 {
  background-color: #8c52ff;
  color: var(--white);
} /* Purple */
.tc-bg-4 {
  background-color: var(--brand-black);
  color: var(--white);
} /* Black */

.svc-tc-icon {
  width: 40px;
  height: 40px;
  background: var(--white);
  color: var(--brand-black);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 30px;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
}
.svc-tall-card h3 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 15px;
  text-transform: capitalize;
}
.svc-tall-card p {
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.9;
  margin-bottom: auto;
  z-index: 2;
}

/* Floating integrated images */
.svc-tc-img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-size: cover;
  background-position: top;
  z-index: 1;
}

/* Action link at bottom */
.svc-tc-link {
  position: relative;
  z-index: 2;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}

/* ==========================================================================
   SERVICES SECTION 4: BENTO GRID (Pop-Ups, Retail, Event Production)
   ========================================================================== */
.svc-bento-section {
  padding: 60px 0 120px;
}
.svc-bento-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 20px;
}

.svc-bento-item {
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
}
.svc-bento-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
  z-index: 1;
}
.svc-bento-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}
.svc-bento-content h3 {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 10px;
}
.svc-bento-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Grid Spanning */
.bento-1 {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
} /* Large left card */
.bento-2 {
  grid-column: 2 / 4;
  grid-row: 1 / 2;
} /* Top right wide card */
.bento-3 {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  background: var(--brand-red);
} /* Bottom small 1 */
.bento-4 {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
  background: var(--brand-black);
} /* Bottom small 2 */

.bento-3::before,
.bento-4::before {
  display: none;
} /* Remove gradient from solid color cards */

/* --- Mobile Breakpoints --- */
@media (max-width: 1024px) {
  .svc-activations-grid {
    grid-template-columns: 1fr;
  }
  .svc-roadshow-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .svc-rs-card.elevated {
    transform: translateY(0);
  } /* Remove stagger on tablet */
  .svc-sampling-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .svc-bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .bento-1,
  .bento-2,
  .bento-3,
  .bento-4 {
    grid-column: auto;
    grid-row: auto;
    min-height: 300px;
  }
}
@media (max-width: 768px) {
  .svc-sampling-grid {
    grid-template-columns: 1fr;
  }
  .svc-roadshow-section {
    margin: 0;
    border-radius: 0;
    padding: 80px 20px;
  }
}
