
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --pink:        #e30044;
      --pink-hover:  #c20b42;
      --pink-soft:   rgba(210,34,93,0.06);
      --pink-mid:    rgba(210,34,93,0.12);
      --pink-light:  rgba(210,34,93,0.04);
      --white:       #ffffff;
      --off-white:   #faf9f8;
      --warm-gray:   #f5f3f0;
      --dark:        #1a1919;
      --dark-mid:    #2c2b2b;
      --gray-light:  #f7f5f2;
      --gray-mid:    #e8e4df;
      --gray-text:   #7a7674;
      --gray-subtle: #c4bfba;
      --stats-bg:        #1e1b1b;
      --stats-card-bg:   rgba(255,255,255,0.05);
      --final-cta-bg:    #1e1b1b;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Open Sans', sans-serif;
      background: var(--white);
      color: var(--dark);
      overflow-x: hidden;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: var(--bg-3); }
    ::-webkit-scrollbar-thumb { background: var(--pink); border-radius: 2px; }

    /* ===================== HEADER ===================== */
    header {
      background: var(--white);
      border-bottom: 1px solid rgba(0,0,0,0.08);
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .header-inner {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 2rem;
      height: 104px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      display: flex;
      align-items: center;
      text-decoration: none;
      flex-shrink: 0;
    }

    .logo img { height: 90px; }

    nav.desktop-nav {
      display: flex;
      align-items: center;
      gap: 2px;
    }

    .nav-link {
      position: relative;
      font-family: 'Poppins', sans-serif;
      font-size: 13.5px;
      font-weight: 500;
      letter-spacing: 0.01em;
      color: var(--dark);
      text-decoration: none;
      padding: 8px 13px;
      border-radius: 6px;
      transition: color 0.2s ease, background 0.2s ease;
      display: flex;
      align-items: center;
      gap: 4px;
      cursor: pointer;
      user-select: none;
      white-space: nowrap;
    }

    .nav-link:hover, .nav-link.active {
      color: var(--pink);
      background: var(--pink-soft);
    }

    .nav-link .ti-chevron-down {
      font-size: 11px;
      transition: transform 0.22s ease;
      margin-top: 1px;
    }

    .nav-item { position: relative; }

    .nav-item:hover > .nav-link .ti-chevron-down,
    .nav-item:focus-within > .nav-link .ti-chevron-down { transform: rotate(180deg); }

    .dropdown {
      position: absolute;
      top: calc(100% + 10px);
      left: 50%;
      transform: translateX(-50%) translateY(-6px);
      background: var(--white);
      border: 1px solid rgba(0,0,0,0.09);
      border-radius: 10px;
      padding: 6px;
      min-width: 190px;
      box-shadow: 0 10px 36px rgba(0,0,0,0.13);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.18s ease, transform 0.18s ease;
    }

    .nav-item:focus-within .dropdown {
      opacity: 1;
      pointer-events: all;
      transform: translateX(-50%) translateY(0);
    }

    .dropdown a {
      display: block;
      padding: 9px 14px;
      font-size: 13px;
      font-family: 'Open Sans', sans-serif;
      color: var(--dark);
      text-decoration: none;
      border-radius: 6px;
      transition: color 0.15s, background 0.15s;
    }

    .dropdown a:hover { color: var(--pink); background: var(--pink-soft); }

    .nav-cta {
      background: var(--pink);
      color: var(--white) !important;
      padding: 9px 22px !important;
      border-radius: 6px !important;
      margin-left: 8px;
      transition: background 0.2s ease, transform 0.15s ease !important;
    }

    .nav-cta:hover {
      background: var(--pink-hover) !important;
      color: var(--white) !important;
      transform: translateY(-1px);
    }

    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 6px;
    }

    .hamburger span {
      display: block;
      width: 23px;
      height: 2px;
      background: var(--dark);
      border-radius: 2px;
      transition: all 0.25s ease;
    }

    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-nav {
      display: none;
      background: var(--white);
      border-top: 1px solid rgba(0,0,0,0.07);
      padding: 10px 1.5rem 24px;
    }

    .mobile-nav.open { display: block; }

    .mobile-nav a {
      display: block;
      padding: 13px 0;
      font-size: 15px;
      font-weight: 500;
      font-family: 'Poppins', sans-serif;
      color: var(--dark);
      text-decoration: none;
      border-bottom: 1px solid rgba(0,0,0,0.06);
      transition: color 0.15s;
    }

    .mobile-nav a:hover { color: var(--pink); }

    .mobile-nav .mob-cta {
      display: inline-block;
      margin-top: 18px;
      background: var(--pink);
      color: var(--white) !important;
      padding: 11px 28px;
      border-radius: 6px;
      border-bottom: none;
      font-size: 14px;
    }

    .mobile-nav .mob-cta:hover { background: var(--pink-hover) !important; }

     /* ===================== ENQUIRY MODAL ===================== */
#enquiryOverlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.55);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 1rem;
}
#enquiryOverlay.active { opacity: 1; visibility: visible; }

.enquiry-form-box {
  width: 100%; max-width: 480px; padding: 40px;
  background: #fff; border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  text-align: center; position: relative; margin: auto;
}
.enquiry-form-box h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.2rem,4vw,1.6rem);
  color: var(--dark); margin-bottom: 10px;
}
.form-subtitle { font-size: 14px; color: #777; margin-bottom: 25px; }

#enquiryForm input, #enquiryForm textarea {
  width: 100%; padding: 12px 14px; margin-bottom: 12px;
  border: 1px solid #ddd; border-radius: 6px;
  font-family: 'Open Sans', sans-serif; font-size: 14px; color: var(--dark);
  outline: none; transition: border-color 0.2s ease, box-shadow 0.2s ease; display: block;
}
#enquiryForm input:focus, #enquiryForm textarea:focus {
  border-color: var(--pink); box-shadow: 0 0 0 3px rgba(227,0,68,0.08);
}
#enquiryForm input.field-error, #enquiryForm textarea.field-error {
  border-color: #e53e3e; box-shadow: 0 0 0 3px rgba(229,62,62,0.1);
}
#enquiryForm textarea { min-height: 90px; resize: vertical; }

.field-error-msg {
  display: block; font-size: 12px; color: #e53e3e;
  text-align: left; margin-top: -8px; margin-bottom: 10px;
  padding-left: 2px; opacity: 0; transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.field-error-msg.show { opacity: 1; transform: translateY(0); }

#submitEnquiryBtn {
  width: 100%; padding: 13px; border: none;
  background: var(--pink); color: #fff; border-radius: 6px;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 15px;
  cursor: pointer; transition: background 0.2s ease, transform 0.15s ease;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  position: relative; overflow: hidden;
}
#submitEnquiryBtn:hover:not(:disabled) { background: var(--pink-hover); transform: translateY(-1px); }
#submitEnquiryBtn:disabled { opacity: 0.75; cursor: not-allowed; transform: none; }
#submitEnquiryBtn.loading::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
  animation: btnShimmer 1.2s ease-in-out infinite;
}
@keyframes btnShimmer { from { transform: translateX(-100%); } to { transform: translateX(100%); } }

.btn-spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.35); border-top-color: #fff;
  border-radius: 50%; animation: spin 0.7s linear infinite; flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }

#formErrorBanner {
  display: none; background: #fff5f5; border: 1px solid #fed7d7;
  border-radius: 6px; padding: 10px 14px; font-size: 13px; color: #c53030;
  text-align: left; margin-bottom: 14px; line-height: 1.5;
}
#formErrorBanner.show { display: flex; align-items: flex-start; gap: 8px; }

#formSuccessState {
  display: none; flex-direction: column; align-items: center;
  justify-content: center; padding: 10px 0 20px;
  animation: successFadeIn 0.5s ease forwards;
}
#formSuccessState.show { display: flex; }
@keyframes successFadeIn {
  from { opacity: 0; transform: scale(0.94) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.success-icon-wrap {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, #e30044, #ff3068);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; box-shadow: 0 8px 28px rgba(227,0,68,0.3);
  animation: successPop 0.5s cubic-bezier(0.34,1.56,0.64,1) 0.15s both;
}
@keyframes successPop { from { transform: scale(0); } to { transform: scale(1); } }
.success-icon-wrap i { font-size: 32px; color: #fff; }
.success-title { font-family: 'Poppins', sans-serif; font-size: 1.35rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.success-msg { font-size: 14px; color: var(--gray-text); line-height: 1.65; max-width: 320px; text-align: center; margin-bottom: 24px; }
.success-close-btn {
  background: var(--pink); color: #fff; border: none; border-radius: 6px;
  padding: 11px 32px; font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 600;
  cursor: pointer; transition: background 0.2s, transform 0.15s;
}
.success-close-btn:hover { background: var(--pink-hover); transform: translateY(-1px); }
.close-form {
  position: absolute; top: 14px; right: 16px; background: none; border: none;
  font-size: 28px; line-height: 1; cursor: pointer; color: #888;
  padding: 4px 8px; border-radius: 4px; transition: color 0.15s, background 0.15s;
}
.close-form:hover { color: var(--pink); background: var(--pink-soft); }
.confetti-dot {
  position: absolute; width: 8px; height: 8px; border-radius: 50%;
  animation: confettiFall 0.9s ease forwards; pointer-events: none;
}
@keyframes confettiFall {
  from { opacity: 1; transform: translateY(0) rotate(0deg); }
  to   { opacity: 0; transform: translateY(60px) rotate(360deg); }
}
    /* ══ SIDE ENQUIRE ══ */
    .side-enquire {
      position: fixed; right: -2px; top: 50%;
      transform: translateY(-50%) rotate(180deg);
      writing-mode: vertical-rl;
      background: var(--pink); color: #fff;
      font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.08em;
      padding: 18px 13px; border-radius: 8px 0 0 8px;
      cursor: pointer; border: none; display: flex; align-items: center; gap: 10px;
      box-shadow: -3px 0 18px rgba(199,8,65,0.28);
      transition: padding 0.25s ease, background 0.2s ease, box-shadow 0.2s ease;
      z-index: 998; animation: side-bob 3s ease-in-out infinite;
    }
    .side-enquire:hover { background: var(--pink-hover); padding: 18px 17px; box-shadow: -5px 0 26px rgba(199,8,65,0.45); animation: none; }
    .side-enquire .dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.5); flex-shrink: 0; }

    .pulse-ring-side {
      position: fixed; right: 0; top: 50%; transform: translateY(-50%);
      width: 46px; height: 86px; border-radius: 8px 0 0 8px;
      border: 2px solid rgba(199,8,65,0.4);
      animation: pulse-side 2.2s ease-out infinite;
      pointer-events: none; z-index: 997;
    }

    @keyframes side-bob {
      0%, 100% { transform: translateY(-50%) rotate(180deg) translateX(0); }
      50%       { transform: translateY(-50%) rotate(180deg) translateX(-5px); }
    }
    @keyframes pulse-side {
      0%   { opacity: 0.7; transform: translateY(-50%) scale(1); }
      100% { opacity: 0;   transform: translateY(-50%) scale(1.3); }
    }


    /* ===================== HERO ===================== */
    .hero {
      position: relative; min-height: 100vh;
      display: flex; align-items: center; overflow: hidden;
      background: var(--dark);
    }

    .hero-bg { position: absolute; inset: 0; overflow: hidden; }
    .hero-bg-orb {
      position: absolute; border-radius: 50%;
      background: radial-gradient(circle, rgba(227,0,68,0.22) 0%, transparent 70%);
      animation: floatOrb 8s ease-in-out infinite;
    }
    .hero-bg-orb-1 { width: 600px; height: 600px; top: -100px; right: -80px; animation-delay: 0s; }
    .hero-bg-orb-2 { width: 400px; height: 400px; bottom: -60px; left: -60px; animation-delay: -4s; }
    .hero-bg-grid {
      position: absolute; inset: 0;
      background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
                        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
      background-size: 64px 64px;
    }
    .hero-bg-line {
      position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent, rgba(227,0,68,0.4), transparent);
    }

    @keyframes floatOrb {
      0%,100% { transform: translate(0,0) scale(1); }
      50% { transform: translate(20px,-30px) scale(1.05); }
    }

    .hero-inner {
      position: relative; z-index: 2;
      max-width: 1240px; margin: 0 auto; padding: 8rem 2rem 6rem;
      width: 100%;
    }

    .hero-eyebrow {
      font-family: 'Poppins', sans-serif; font-size: 11px; font-weight: 600;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--pink); margin-bottom: 28px;
      display: flex; align-items: center; gap: 12px;
    }
    .hero-eyebrow-line { display: block; width: 36px; height: 1px; background: var(--pink); }

    .hero-title {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(3.4rem, 8.5vw, 7.5rem);
      font-weight: 800; line-height: 0.95;
      color: var(--white); margin-bottom: 12px;
      letter-spacing: -0.02em;
    }

    .hero-title-accent {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(1.4rem, 3.5vw, 2.6rem);
      font-weight: 300; line-height: 1.2;
      color: rgba(255,255,255,0.65); margin-bottom: 28px;
      font-style: italic; letter-spacing: 0.01em;
    }

    .hero-desc {
      font-size: clamp(0.95rem, 1.5vw, 1.05rem);
      line-height: 1.75; color: rgba(255,255,255,0.45);
      max-width: 480px; margin-bottom: 18px;
    }

    .hero-tagline {
      font-size: clamp(0.9rem, 1.3vw, 1rem);
      line-height: 1.7; color: rgba(255,255,255,0.38);
      max-width: 440px; margin-bottom: 52px;
    }

    .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

    .btn-primary {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--pink); color: var(--white);
      font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 600;
      padding: 16px 34px; border-radius: 6px; text-decoration: none; border: none; cursor: pointer;
      transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
      letter-spacing: 0.02em;
    }
    .btn-primary:hover {
      background: var(--pink-hover); transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(227,0,68,0.35);
    }

    .btn-outline {
      display: inline-flex; align-items: center; gap: 10px;
      background: transparent; color: var(--white);
      font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 500;
      padding: 15px 34px; border-radius: 6px; text-decoration: none;
      border: 1px solid rgba(255,255,255,0.25); cursor: pointer;
      transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
      letter-spacing: 0.02em;
    }
    .btn-outline:hover {
      background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.5);
      transform: translateY(-2px);
    }

    .hero-scroll {
      position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      color: rgba(255,255,255,0.3); font-size: 11px; letter-spacing: 0.1em;
      font-family: 'Poppins', sans-serif; text-transform: uppercase;
    }
    .hero-scroll-dot {
      width: 1px; height: 48px;
      background: linear-gradient(to bottom, rgba(255,255,255,0.25), transparent);
      animation: scrollPulse 2s ease-in-out infinite;
    }
    @keyframes scrollPulse { 0%,100% { opacity: 0.3; } 50% { opacity: 0.8; } }

    .hero-animate { animation: heroFadeUp 1s ease forwards; opacity: 0; }
    .hero-animate-1 { animation-delay: 0.2s; }
    .hero-animate-2 { animation-delay: 0.45s; }
    .hero-animate-3 { animation-delay: 0.65s; }
    .hero-animate-4 { animation-delay: 0.85s; }
    .hero-animate-5 { animation-delay: 1.05s; }
    @keyframes heroFadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ===================== ABOUT ===================== */
    .about-section {
      padding: clamp(5rem, 10vw, 9rem) 2rem;
      background: var(--white); overflow: hidden;
    }
    .about-inner {
      max-width: 1240px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
    }
    .about-heading {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 700; line-height: 1.15;
      color: var(--dark); margin-bottom: 1.5rem;
      letter-spacing: -0.02em;
    }
    .about-heading em { color: var(--pink); font-style: normal; }
    .about-text {
      font-size: 15px; line-height: 1.85; color: var(--gray-text); margin-bottom: 1.2rem;
    }
    .about-philosophy {
      display: inline-block; margin: 1.5rem 0;
      font-family: 'Poppins', sans-serif; font-size: clamp(1rem, 2vw, 1.3rem);
      font-weight: 600; color: var(--dark);
      padding-left: 1.2rem; border-left: 3px solid var(--pink);
      line-height: 1.4;
    }
    .about-right { position: relative; }
    .about-visual-main {
      position: relative; width: 100%; height: 100%; min-height: 300px;
      border-radius: 28px; overflow: hidden; background: #f5f5f5;
    }
    .about-main-image { width: 100%; height: 100%; object-fit: cover; display: block; }
    .about-overlay-text {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center; pointer-events: none;
    }
    .about-overlay-text span {
      font-family: 'Poppins', sans-serif; font-size: clamp(4rem,8vw,6rem);
      font-weight: 900; color: rgba(255,255,255,0.15); letter-spacing: -0.04em; user-select: none;
    }
    .about-visual-main::before {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(135deg, var(--pink-soft) 0%, transparent 60%);
    }
    .about-badge {
      position: absolute; bottom: -20px; left: -20px;
      background: var(--white); border-radius: 12px;
      padding: 18px 24px; box-shadow: 0 16px 48px rgba(0,0,0,0.12);
      display: flex; align-items: center; gap: 14px;
    }
    .about-badge-icon {
      width: 44px; height: 44px; border-radius: 50%;
      background: var(--pink); display: flex; align-items: center; justify-content: center;
      color: white; font-size: 18px; flex-shrink: 0;
    }
    .about-badge-text p:first-child { font-family: 'Poppins', sans-serif; font-size: 18px; font-weight: 700; color: var(--dark); }
    .about-badge-text p:last-child { font-size: 12px; color: var(--gray-text); }
    .about-accent-line {
      position: absolute; top: 2rem; right: -2rem; width: 1px; height: 140px;
      background: linear-gradient(to bottom, var(--pink), transparent);
    }

    /* ===================== STATS ===================== */
    .stats-band {
      padding: clamp(4rem, 8vw, 7rem) 2rem;
      background: linear-gradient(135deg, #fdf7f7 0%, #fff5f7 40%, #fefcfc 100%);
      position: relative; overflow: hidden;
      border-top: 1px solid rgba(227,0,68,0.08);
      border-bottom: 1px solid rgba(227,0,68,0.08);
    }
    .stats-band::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse at 20% 50%, rgba(227,0,68,0.06) 0%, transparent 60%),
                  radial-gradient(ellipse at 80% 50%, rgba(227,0,68,0.04) 0%, transparent 60%);
    }
    .stats-inner {
      max-width: 1240px; margin: 0 auto; position: relative; z-index: 1;
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
    }
    .stat-card {
      background: rgba(255,255,255,0.85);
      border: 1px solid rgba(227,0,68,0.1);
      padding: 3rem 2rem; text-align: center; position: relative; overflow: hidden;
      transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
      cursor: default; border-radius: 4px;
    }
    .stat-card::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(circle at 50% 0%, rgba(227,0,68,0.07) 0%, transparent 70%);
      opacity: 0; transition: opacity 0.3s ease;
    }
    .stat-card:hover {
      background: rgba(255,255,255,1);
      border-color: rgba(227,0,68,0.25);
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(227,0,68,0.1);
    }
    .stat-card:hover::before { opacity: 1; }
    .stat-number {
      font-family: 'Poppins', sans-serif; font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 800; color: var(--dark); display: block; margin-bottom: 8px; line-height: 1;
    }
    .stat-number span { color: var(--pink); }
    .stat-label { font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 500; color: var(--gray-text); letter-spacing: 0.05em; }
    .stat-divider { width: 24px; height: 2px; background: var(--pink); margin: 14px auto; opacity: 0.5; }

    /* ===================== CASE STUDIES ===================== */
    .case-studies {
      padding: clamp(5rem, 10vw, 9rem) 2rem;
      background-image: url('/images/case-studies-bg.webp');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      background-attachment: fixed;
      position: relative;
      overflow: hidden;
    }

    .case-studies::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(250,245,245,0.93) 0%, rgba(255,248,250,0.9) 40%, rgba(250,244,247,0.92) 100%);
      z-index: 0;
    }
    .case-studies::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, transparent, var(--pink), transparent);
      z-index: 1;
    }
    .case-studies > * { position: relative; z-index: 1; }

    .section-header { max-width: 1240px; margin: 0 auto 4rem; }
    .section-title {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 700; color: var(--dark); line-height: 1.2;
      letter-spacing: -0.02em;
    }
    .section-subtitle { font-size: 15px; color: var(--gray-text); margin-top: 10px; max-width: 480px; line-height: 1.7; }

    .case-studies-logo {
      position: absolute;
      top: clamp(1.5rem, 4vw, 2.5rem);
      right: clamp(1.5rem, 4vw, 3rem);
      z-index: 2;
      pointer-events: none;
    }
    .case-studies-logo img {
      height: clamp(40px, 6vw, 70px);
      width: auto; object-fit: contain; display: block;
      opacity: 0.18; filter: saturate(0.6);
      transition: opacity 0.3s ease;
    }
    .case-studies:hover .case-studies-logo img { opacity: 0.26; }

    .cases-grid {
      max-width: 1240px; margin: 0 auto;
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
    }

    .case-card {
      position: relative; aspect-ratio: 3/4; overflow: hidden; cursor: pointer;
      border-radius: 12px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.12);
      transition: box-shadow 0.45s ease, transform 0.45s ease;
    }
    .case-card:hover {
      box-shadow: 0 24px 64px rgba(0,0,0,0.22), 0 4px 16px rgba(227,0,68,0.12);
      transform: translateY(-6px);
    }
    .case-card-bg {
      position: absolute; inset: 0;
      background-size: cover; background-position: center; background-repeat: no-repeat;
      transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .case-card:hover .case-card-bg { transform: scale(1.06); }
    .case-card-1 .case-card-bg { background: url('/assets/images/casestudies/bekaert_main.webp') center/cover no-repeat; }
    .case-card-2 .case-card-bg { background: url('/assets/images/casestudies/jeevan_jyoti_main.webp') center/cover no-repeat; }
    .case-card-3 .case-card-bg { background: url('/assets/images/casestudies/swagram_main.webp') center/cover no-repeat; }

    .case-card-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.12) 55%, transparent 100%);
    }
    .case-card-accent {
      position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--pink);
      transform: scaleX(0); transform-origin: left; transition: transform 0.5s ease;
      border-radius: 12px 12px 0 0;
    }
    .case-card:hover .case-card-accent { transform: scaleX(1); }
    .case-card-content {
      position: absolute; bottom: 0; left: 0; right: 0; padding: 2.5rem 2rem;
      transform: translateY(8px); transition: transform 0.4s ease;
    }
    .case-card:hover .case-card-content { transform: translateY(0); }

    .case-industry {
      display: inline-flex; align-items: center; justify-content: center;
      font-family: 'Poppins', sans-serif; font-size: 10px; font-weight: 600;
      letter-spacing: 0.16em; text-transform: uppercase; color: #fff;
      background: rgba(227,0,68,0.92); backdrop-filter: blur(10px);
      padding: 0.55rem 1rem; border-radius: 50px; width: fit-content; margin-bottom: 14px;
      border: 1px solid rgba(255,255,255,0.12);
      box-shadow: 0 4px 18px rgba(227,0,68,0.28), inset 0 1px 0 rgba(255,255,255,0.12);
    }

    .case-card-logo {
      position: absolute; top: 1.5rem; right: 1.5rem; z-index: 3;
      width: 72px; height: 72px;
      display: flex; align-items: center; justify-content: center;
      background: white; backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,0.08); border-radius: 16px;
      transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
    }
    .case-card-logo img {
      width: 75%; height: auto; object-fit: contain; opacity: 0.9;
      transition: transform 0.4s ease, opacity 0.4s ease;
    }
    .case-card:hover .case-card-logo { transform: translateY(-4px); background: white; border-color: rgba(255,255,255,0.16); }
    .case-card:hover .case-card-logo img { transform: scale(1.05); opacity: 1; }

    .case-title {
      font-family: 'Poppins', sans-serif; font-size: clamp(1.2rem, 2vw, 1.6rem);
      font-weight: 700; color: white; margin-bottom: 10px; line-height: 1.2;
    }
    .case-desc { font-size: 13.5px; color: rgba(255,255,255,0.55); line-height: 1.6; margin-bottom: 20px; }
    .case-cta {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: 'Poppins', sans-serif; font-size: 12.5px; font-weight: 600;
      color: white; text-decoration: none;
      opacity: 0; transform: translateY(10px);
      transition: opacity 0.4s ease 0.05s, transform 0.4s ease 0.05s, color 0.2s;
    }
    .case-card:hover .case-cta { opacity: 1; transform: translateY(0); }
    .case-cta:hover { color: var(--pink); }
    .case-cta i { transition: transform 0.2s ease; }
    .case-cta:hover i { transform: translateX(4px); }

    /* ===================== SERVICES ===================== */
    .services-section {
      padding: clamp(5rem, 10vw, 9rem) 2rem;
      background: var(--white);
    }
    .services-header { max-width: 1240px; margin: 0 auto 4rem; }
    .services-title {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(2rem, 4.5vw, 3.8rem);
      font-weight: 800; color: var(--dark);
      line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 10px;
    }
    .services-title em { color: var(--pink); font-style: normal; }
    .services-subtitle-tag { font-size: 13px; color: var(--gray-text); margin-top: 8px; letter-spacing: 0.06em; text-transform: uppercase; font-family: 'Poppins', sans-serif; }

    .services-grid {
      max-width: 1240px; margin: 0 auto;
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
    }
    .service-card {
      background: var(--warm-gray); border-radius: 3px; padding: 2rem 1.75rem;
      position: relative; overflow: hidden; cursor: default;
      transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
      border: 1px solid transparent;
    }
    .service-card::before {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
      background: var(--pink); transform: scaleX(0); transform-origin: left;
      transition: transform 0.4s ease;
    }
    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 48px rgba(0,0,0,0.1);
      background: var(--white); border-color: var(--gray-mid);
    }
    .service-card:hover::before { transform: scaleX(1); }
    .service-icon {
      margin-bottom: 1.2rem; display: flex; align-items: center;
      transition: transform 0.3s ease;
    }
    .service-icon img { width: 52px; height: 52px; object-fit: contain; display: block; }
    .service-card:hover .service-icon { transform: translateY(-2px) scale(1.05); }
    .service-name {
      font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 600;
      color: var(--dark); margin-bottom: 8px;
    }
    .service-blurb { font-size: 13px; color: var(--gray-text); line-height: 1.65; }
    .service-arrow {
      position: absolute; bottom: 1.5rem; right: 1.5rem;
      width: 28px; height: 28px; border-radius: 50%;
      background: transparent; display: flex; align-items: center; justify-content: center;
      color: var(--gray-subtle); font-size: 14px;
      transition: background 0.25s ease, color 0.25s ease;
    }
    .service-card:hover .service-arrow { background: var(--pink); color: white; }

    /* ===================== CLIENTS ===================== */
    .clients-section {
      padding: clamp(4rem, 8vw, 7rem) 0;
      background: var(--off-white); overflow: hidden;
    }
    .clients-header { max-width: 1240px; margin: 0 auto 3.5rem; padding: 0 2rem; }
    .clients-marquee-wrap { position: relative; }
    .clients-marquee-wrap::before,
    .clients-marquee-wrap::after {
      content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2;
    }
    .clients-marquee-wrap::before { left: 0; background: linear-gradient(to right, var(--off-white), transparent); }
    .clients-marquee-wrap::after  { right: 0; background: linear-gradient(to left,  var(--off-white), transparent); }

    .clients-track {
      display: flex; gap: 0; align-items: center;
      animation: marqueeScroll 78s linear infinite;
      width: max-content;
    }
    .clients-track:hover { animation-play-state: paused; }
    @keyframes marqueeScroll {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    .client-logo-slot {
      width: 240px; height: 120px; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      margin: 0 12px; border-radius: 10px;
      background: var(--white); border: 1px solid var(--gray-mid);
      transition: box-shadow 0.3s ease, border-color 0.3s ease;
      overflow: hidden; padding: 8px;
    }
    .client-logo-slot:hover {
      box-shadow: 0 8px 28px rgba(227,0,68,0.1);
      border-color: rgba(227,0,68,0.25);
    }
    .client-logo-slot img { width: 100%; height: 100%; object-fit: contain; display: block; }

    /* ══ SIDE ENQUIRE ══ */
    .side-enquire {
      position: fixed; right: -2px; top: 50%;
      transform: translateY(-50%) rotate(180deg);
      writing-mode: vertical-rl;
      background: var(--pink); color: #fff;
      font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.08em;
      padding: 18px 13px; border-radius: 8px 0 0 8px;
      cursor: pointer; border: none; display: flex; align-items: center; gap: 10px;
      box-shadow: -3px 0 18px rgba(199,8,65,0.28);
      transition: padding 0.25s ease, background 0.2s ease, box-shadow 0.2s ease;
      z-index: 998; animation: side-bob 3s ease-in-out infinite;
    }
    .side-enquire:hover { background: var(--pink-hover); padding: 18px 17px; box-shadow: -5px 0 26px rgba(199,8,65,0.45); animation: none; }
    .side-enquire .dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.5); flex-shrink: 0; }

    .pulse-ring-side {
      position: fixed; right: 0; top: 50%; transform: translateY(-50%);
      width: 46px; height: 86px; border-radius: 8px 0 0 8px;
      border: 2px solid rgba(199,8,65,0.4);
      animation: pulse-side 2.2s ease-out infinite;
      pointer-events: none; z-index: 997;
    }
    @keyframes side-bob {
      0%, 100% { transform: translateY(-50%) rotate(180deg) translateX(0); }
      50%       { transform: translateY(-50%) rotate(180deg) translateX(-5px); }
    }
    @keyframes pulse-side {
      0%   { opacity: 0.7; transform: translateY(-50%) scale(1); }
      100% { opacity: 0;   transform: translateY(-50%) scale(1.3); }
    }

    /* ===================== FINAL CTA ===================== */
    .final-cta {
      position: relative;
      padding: clamp(8rem, 16vw, 13rem) 2rem;
      overflow: hidden;
      background: #080608;
      text-align: center;
    }
    .final-cta-bg-mesh {
      position: absolute; inset: 0; pointer-events: none;
      background:
        radial-gradient(ellipse 100% 80% at 50% 110%, rgba(199,8,65,0.38) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 20% 50%,  rgba(199,8,65,0.12) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 80% 30%,  rgba(199,8,65,0.08) 0%, transparent 55%),
        radial-gradient(ellipse 80% 100% at 50% 0%,  rgba(255,255,255,0.015) 0%, transparent 60%);
    }
    .cta-orb {
      position: absolute; border-radius: 50%; pointer-events: none;
      background: radial-gradient(circle, rgba(199,8,65,0.18) 0%, transparent 70%);
      animation: ctaOrbFloat 10s ease-in-out infinite;
    }
    .cta-orb-1 { width: 700px; height: 700px; top: -200px; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
    .cta-orb-2 { width: 400px; height: 400px; bottom: -100px; left: -80px; animation-delay: -5s; opacity: 0.6; }
    .cta-orb-3 { width: 350px; height: 350px; top: 20%; right: -60px; animation-delay: -3s; opacity: 0.5; }
    @keyframes ctaOrbFloat {
      0%,100% { transform: translateX(-50%) translate(0, 0) scale(1); }
      33%  { transform: translateX(-50%) translate(30px, -40px) scale(1.04); }
      66%  { transform: translateX(-50%) translate(-20px, 20px) scale(0.97); }
    }
    .cta-orb-2, .cta-orb-3 { animation-name: ctaOrbFloat2; }
    @keyframes ctaOrbFloat2 {
      0%,100% { transform: translate(0, 0) scale(1); }
      50% { transform: translate(20px, -25px) scale(1.06); }
    }
    .final-cta-noise {
      position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    }
    .cta-shape {
      position: absolute; pointer-events: none;
      border: 1px solid rgba(199,8,65,0.12); border-radius: 50%;
      animation: ctaShapeRotate 20s linear infinite;
    }
    .cta-shape-1 { width: 500px; height: 500px; top: 50%; left: 50%; transform: translate(-50%, -50%); animation-duration: 28s; }
    .cta-shape-2 { width: 300px; height: 300px; top: 50%; left: 50%; transform: translate(-50%, -50%); border-color: rgba(199,8,65,0.07); animation-duration: 18s; animation-direction: reverse; }
    @keyframes ctaShapeRotate {
      from { transform: translate(-50%, -50%) rotate(0deg); }
      to   { transform: translate(-50%, -50%) rotate(360deg); }
    }
    .cta-scan-line {
      position: absolute; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent 0%, rgba(199,8,65,0.35) 50%, transparent 100%);
      animation: ctaScanLine 8s ease-in-out infinite; top: 50%;
    }
    @keyframes ctaScanLine {
      0%,100% { opacity: 0.3; transform: scaleX(0.6); }
      50% { opacity: 0.7; transform: scaleX(1); }
    }
    .final-cta::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, transparent, rgba(199,8,65,0.6), transparent);
    }
    .final-cta::after {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
    }
    .final-cta-inner { max-width: 820px; margin: 0 auto; position: relative; z-index: 2; }
    .final-cta-eyebrow {
      display: inline-flex; align-items: center; gap: 12px;
      font-family: 'Poppins', sans-serif; font-size: 11px; font-weight: 600;
      letter-spacing: 0.2em; text-transform: uppercase; color: rgba(199,8,65,0.9);
      margin-bottom: 2rem;
    }
    .final-cta-eyebrow::before, .final-cta-eyebrow::after {
      content: ''; display: block; width: 40px; height: 1px; background: rgba(199,8,65,0.5);
    }
    .final-cta-title {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(2.8rem, 7vw, 6rem);
      font-weight: 800; color: var(--white); line-height: 1.0;
      letter-spacing: -0.03em; margin-bottom: 1.8rem;
    }
    .final-cta-title em {
      color: transparent; font-style: normal;
      -webkit-text-stroke: 1.5px var(--pink);
      background: linear-gradient(135deg, var(--pink) 0%, #ff3068 100%);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .final-cta-sub {
      font-size: clamp(15px, 1.8vw, 17px);
      color: rgba(255,255,255,0.45);
      margin-bottom: 3.5rem; line-height: 1.8;
      max-width: 560px; margin-left: auto; margin-right: auto;
    }
    .final-cta-btn {
      display: inline-flex; align-items: center; gap: 14px;
      font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 700;
      letter-spacing: 0.08em; text-transform: uppercase; color: var(--white);
      padding: 20px 52px; border-radius: 4px; border: none; cursor: pointer;
      position: relative; overflow: hidden; background: var(--pink);
      box-shadow: 0 0 0 1px rgba(199,8,65,0.5), 0 8px 32px rgba(199,8,65,0.4), 0 24px 64px rgba(199,8,65,0.2), inset 0 1px 0 rgba(255,255,255,0.12);
      transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease, background 0.25s ease;
    }
    .final-cta-btn::before {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
      transform: translateX(-100%); transition: transform 0.55s ease;
    }
    .final-cta-btn:hover::before { transform: translateX(100%); }
    .final-cta-btn:hover {
      transform: translateY(-4px) scale(1.02);
      box-shadow: 0 0 0 1px rgba(199,8,65,0.6), 0 16px 48px rgba(199,8,65,0.55), 0 40px 80px rgba(199,8,65,0.25), inset 0 1px 0 rgba(255,255,255,0.18);
      background: #d4003c;
    }
    .final-cta-btn:active { transform: translateY(-1px) scale(1.00); }
    .final-cta-btn i { font-size: 18px; transition: transform 0.3s ease; }
    .final-cta-btn:hover i { transform: translateX(5px); }
    .final-cta-note {
      margin-top: 1.5rem;
      font-family: 'Poppins', sans-serif; font-size: 11px;
      letter-spacing: 0.1em; color: rgba(255,255,255,0.2); text-transform: uppercase;
    }
    .final-cta-note span { color: rgba(199,8,65,0.6); }
    .final-cta-bg-text {
      position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
      font-family: 'Poppins', sans-serif; font-size: clamp(7rem, 22vw, 20rem);
      font-weight: 900; color: rgba(255,255,255,0.02); white-space: nowrap;
      pointer-events: none; letter-spacing: -0.03em; user-select: none; z-index: 0;
    }

    /* ===================== TESTIMONIALS ===================== */
    .testimonials-section {
      padding: clamp(5rem, 10vw, 9rem) 2rem;
      background: var(--warm-gray);
      border-top: 1px solid var(--gray-mid);
      border-bottom: 1px solid var(--gray-mid);
    }
    .testimonials-inner { max-width: 1240px; margin: 0 auto; }
    .testimonials-header { margin-bottom: 4rem; }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .testi-card {
      background: var(--white);
      border: 1px solid var(--gray-mid);
      border-radius: 12px;
      padding: 2.2rem 2rem;
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    }
    .testi-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 16px 48px rgba(0,0,0,0.09);
      border-color: rgba(227,0,68,0.2);
    }
    .testi-stars { color: var(--pink); font-size: 16px; letter-spacing: 2px; }
    .testi-quote {
      font-size: 14.5px;
      color: var(--gray-text);
      line-height: 1.8;
      flex: 1;
      font-style: italic;
    }
    .testi-author { display: flex; align-items: center; gap: 14px; margin-top: auto; }
    .testi-avatar {
      width: 44px; height: 44px; border-radius: 50%;
      background: var(--pink);
      color: var(--white);
      font-family: 'Poppins', sans-serif;
      font-size: 13px; font-weight: 700;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .testi-name {
      font-family: 'Poppins', sans-serif;
      font-size: 13.5px; font-weight: 600; color: var(--dark);
    }
    .testi-role { font-size: 12px; color: var(--gray-text); margin-top: 2px; }
    @media (max-width: 900px) {
      .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
    }
    @media (max-width: 600px) {
      .testimonials-grid { grid-template-columns: 1fr; }
    }

    /* ===================== FOOTER ===================== */
    footer { background: #000000; color: var(--white); }
    .footer-top {
      max-width: 1240px; margin: 0 auto;
      padding: 3.5rem 2rem 2.5rem;
      display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 3rem;
    }
    .footer-brand { display: block; margin-bottom: 18px; }
    .foot-logo img { height: 120px; width: 190px; object-fit: contain; }
    .footer-tagline { font-family: 'Open Sans', sans-serif; font-size: 13.5px; line-height: 1.75; color: rgba(255,255,255,0.55); max-width: 230px; margin-bottom: 22px; }
    .footer-socials { display: flex; gap: 10px; margin-top: 16px; }
    .social-btn {
      width: 36px; height: 36px; border-radius: 50%;
      background: rgba(255,255,255,0.1);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.65); text-decoration: none; font-size: 16px;
      transition: background 0.2s, color 0.2s;
    }
    .social-btn:hover { background: var(--pink); color: var(--white); }
    .footer-col-title { font-family: 'Poppins', sans-serif; font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--pink); font-weight: 600; margin-bottom: 20px; }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
    .footer-links a { font-family: 'Open Sans', sans-serif; font-size: 13.5px; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.15s; }
    .footer-links a:hover { color: var(--white); }
    .contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 20px; }
    .contact-icon-wrap { width: 40px; height: 40px; border-radius: 50%; background: rgba(210,34,93,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--pink); font-size: 16px; }
    .contact-icon-wrap img { width: 20px; height: 20px; }
    .contact-label { font-family: 'Open Sans', sans-serif; font-size: 10.5px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 3px; }
    .contact-value { font-family: 'Open Sans', sans-serif; font-size: 14px; font-weight: 600; color: var(--white); }
    .contact-value a { color: var(--white); text-decoration: none; transition: color 0.15s; }
    .contact-value a:hover { color: var(--pink); }
    .footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); max-width: 1240px; margin: 0 auto; }
    .footer-bottom { max-width: 1240px; margin: 0 auto; padding: 1.25rem 2rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
    .footer-copy { font-family: 'Open Sans', sans-serif; font-size: 12.5px; color: rgba(255,255,255,0.38); }
    .footer-copy span { color: var(--pink); }
    .footer-legal { display: flex; gap: 22px; }
    .footer-legal a { font-family: 'Open Sans', sans-serif; font-size: 12px; color: rgba(255,255,255,0.38); text-decoration: none; transition: color 0.15s; }
    .footer-legal a:hover { color: rgba(255,255,255,0.75); }

    /* ===================== RESPONSIVE ===================== */
    @media (max-width: 1024px) {
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .cases-grid { grid-template-columns: 1fr; gap: 16px; }
      .case-card { aspect-ratio: 16/9; }
      .case-studies { background-attachment: scroll; }
    }
    @media (max-width: 900px) {
      nav.desktop-nav { display: none; }
      .hamburger { display: flex; }
      .about-inner { grid-template-columns: 1fr; gap: 3rem; }
      .about-right { display: none; }
      .stats-inner { grid-template-columns: repeat(2, 1fr); }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
      .case-studies-logo img { opacity: 0.12; }
    }
    @media (max-width: 600px) {
      .services-grid { grid-template-columns: 1fr; }
      .stats-inner { grid-template-columns: repeat(2, 1fr); }
      .hero-actions { flex-direction: column; align-items: flex-start; }
      .footer-top { grid-template-columns: 1fr; gap: 2rem; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
      .case-studies-logo { top: 1rem; right: 1rem; }
      .case-studies-logo img { height: 34px; opacity: 0.1; }
    }
    @media (max-width: 400px) {
      .enquiry-form-box { padding: 30px 16px 24px; }
    }
