/* =========================================================
   iBrands – Main Stylesheet
   Brand: Purple #673990 | Yellow #F4B928
   Fonts: Playfair Display (headings) + Poppins (body)
   ========================================================= */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --primary:       #673990;
  --primary-dark:  #4e2a6e;
  --primary-light: #8a52b8;
  --secondary:     #F4B928;
  --secondary-dark:#d9a010;
  --dark:          #1a1028;
  --text:          #3d3d3d;
  --text-light:    #6b6b6b;
  --white:         #ffffff;
  --light-bg:      #f9f6ff;
  --light-gray:    #f4f4f8;
  --border:        #e8e1f5;
  --font-heading:  'Playfair Display', Georgia, serif;
  --font-body:     'Poppins', sans-serif;
  --shadow-sm:     0 2px 12px rgba(103,57,144,0.08);
  --shadow-md:     0 8px 32px rgba(103,57,144,0.14);
  --shadow-lg:     0 20px 60px rgba(103,57,144,0.18);
  --radius:        10px;
  --radius-lg:     18px;
  --transition:    all 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--dark);
  line-height: 1.25;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: clamp(1rem, 2vw, 1.3rem); font-weight: 600; }

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

img { max-width: 100%; height: auto; display: block; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Skip Link ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--primary);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  z-index: 9999;
  font-size: 0.85rem;
}
.skip-link:focus { top: 1rem; }

/* ═══════════════════════════════════════════
   TOPBAR
═══════════════════════════════════════════ */
.topbar {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
  padding: 0.45rem 0;
  border-bottom: 2px solid var(--primary);
}

.topbar a {
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
}
.topbar a:hover { color: var(--secondary); }

.topbar .topbar-left,
.topbar .topbar-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.topbar .topbar-right { justify-content: flex-end; }

.topbar .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: rgba(255,255,255,0.8);
  font-size: 0.7rem;
  transition: var(--transition);
}
.topbar .social-icons a:hover {
  background: var(--secondary);
  color: var(--dark);
}

.topbar-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.2);
}

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.main-navbar {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(103,57,144,0.1);
  padding: 0.6rem 0;
  transition: var(--transition);
  position: sticky;
  top: 0;
  z-index: 1030;
}

.main-navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}

.navbar-brand img {
  height: 50px;
  width: auto;
  transition: var(--transition);
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text) !important;
  padding: 0.5rem 0.9rem !important;
  position: relative;
  letter-spacing: 0.02em;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after { width: 70%; }

.nav-link:hover,
.nav-link.active {
  color: var(--primary) !important;
}

.nav-cta {
  background: var(--primary);
  color: var(--white) !important;
  border-radius: 25px;
  padding: 0.45rem 1.3rem !important;
  margin-left: 0.5rem;
  font-weight: 500;
}
.nav-cta::after { display: none; }
.nav-cta:hover {
  background: var(--primary-dark) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}

.navbar-toggler {
  border: 1.5px solid var(--primary);
  border-radius: 6px;
  padding: 0.3rem 0.6rem;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23673990' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ═══════════════════════════════════════════
   OFF-CANVAS SIDE DRAWER (Mobile Menu)
═══════════════════════════════════════════ */
.offcanvas-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background: var(--dark);
  z-index: 9999;
  transition: right 0.38s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: -6px 0 40px rgba(0,0,0,0.35);
}
.offcanvas-menu.open { right: 0; }

.offcanvas-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(3px);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.38s ease;
}
.offcanvas-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
}
.offcanvas-header img { height: 38px; }

.offcanvas-close {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.offcanvas-close:hover {
  background: var(--secondary);
  color: var(--dark);
  border-color: var(--secondary);
}

.offcanvas-nav {
  list-style: none;
  padding: 1.5rem 0;
  margin: 0;
  flex: 1;
}
.offcanvas-nav li a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.85rem 1.5rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  font-weight: 500;
  border-left: 3px solid transparent;
  transition: var(--transition);
  text-decoration: none;
}
.offcanvas-nav li a:hover,
.offcanvas-nav li a.active {
  color: var(--secondary);
  border-left-color: var(--secondary);
  background: rgba(255,255,255,0.05);
  padding-left: 2rem;
}
.offcanvas-nav li a i {
  width: 20px;
  text-align: center;
  font-size: 1rem;
}

.offcanvas-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
}
.offcanvas-footer .social-row {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
}
.offcanvas-footer .social-row a {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  border: 1px solid rgba(255,255,255,0.12);
  transition: var(--transition);
}
.offcanvas-footer .social-row a:hover {
  background: var(--secondary);
  color: var(--dark);
  border-color: var(--secondary);
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn-primary-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: var(--white);
  padding: 0.75rem 2rem;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid var(--primary);
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
}
.btn-primary-brand:hover {
  background: transparent;
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(103,57,144,0.3);
}

.btn-outline-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  padding: 0.75rem 2rem;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.7);
  transition: var(--transition);
  cursor: pointer;
}
.btn-outline-brand:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--dark);
  transform: translateY(-2px);
}

.btn-secondary-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--secondary);
  color: var(--dark);
  padding: 0.75rem 2rem;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid var(--secondary);
  transition: var(--transition);
  cursor: pointer;
}
.btn-secondary-brand:hover {
  background: transparent;
  color: var(--secondary);
  transform: translateY(-2px);
}

.btn-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  background: none;
  padding: 0;
  transition: var(--transition);
}
.btn-text-link:hover {
  color: var(--primary-dark);
  gap: 0.7rem;
}

/* ═══════════════════════════════════════════
   SECTION UTILITY CLASSES
═══════════════════════════════════════════ */
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-heading);
  color: var(--dark);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 620px;
  line-height: 1.8;
}

.divider-accent {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
  margin: 1rem 0 1.5rem;
}

.divider-accent.centered { margin: 1rem auto 1.5rem; }

.bg-light-purple { background: var(--light-bg); }
.bg-dark-brand   { background: var(--dark); }
.text-primary-brand { color: var(--primary) !important; }
.text-secondary-brand { color: var(--secondary) !important; }

/* ═══════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ═══════════════════════════════════════════
   PAGE HERO (INNER PAGES)
═══════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 50%, var(--primary) 100%);
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
/* No bottom curve – full gradient block */
.page-hero .page-title {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  position: relative;
  z-index: 2;
}
.page-hero .page-desc {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  max-width: 650px;
  position: relative;
  z-index: 2;
}
.breadcrumb { background: none; padding: 0; margin-bottom: 1rem; position: relative; z-index: 2; }
.breadcrumb-item { font-size: 0.82rem; }
.breadcrumb-item a { color: var(--secondary); }
.breadcrumb-item.active { color: rgba(255,255,255,0.6); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ═══════════════════════════════════════════
   HOME HERO
═══════════════════════════════════════════ */
.hero-section {
  position: relative;
  height: 750px;            /* Fixed 750px as requested */
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);  /* Fallback */
}

/* Background photo – full image centred so atrium & people fill the frame */
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../../images/hero-bg-sharp.jpg') center center / cover no-repeat;
  background-size: cover;
  transform-origin: center center;
}

/* Overlay: solid deep-purple on left, fading to transparent on right */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(28, 8, 52, 0.97)   0%,
    rgba(75, 28, 115, 0.90) 30%,
    rgba(103, 57, 144, 0.65) 55%,
    rgba(10, 0, 20, 0.20)   100%
  );
}

/* Geometric star / diamond decoration – bottom-right corner */
.hero-geo {
  position: absolute;
  right: 3%;
  bottom: 8%;
  width: 160px;
  height: 160px;
  z-index: 2;
  opacity: 0.5;
  pointer-events: none;
}
.hero-geo::before,
.hero-geo::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1.5px solid rgba(255,255,255,0.30);
  transform: rotate(45deg);
}
.hero-geo::after {
  inset: 22px;
  border-color: rgba(255,255,255,0.15);
  transform: rotate(45deg);
}
/* Inner 4-pointed star */
.hero-geo-star {
  position: absolute;
  right: 3.2%;
  bottom: 7%;
  width: 160px;
  height: 160px;
  z-index: 3;
  opacity: 0.55;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-geo-star::before {
  content: '✦';
  font-size: 4.5rem;
  color: rgba(255,255,255,0.40);
  line-height: 1;
}

/* Dark right-edge vignette */
.hero-grid-lines {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 22%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to left, rgba(5,0,15,0.78) 0%, transparent 100%);
}

.hero-content { position: relative; z-index: 4; padding: 80px 0 60px; }

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--secondary);
  margin-bottom: 1.6rem;
}
.hero-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--secondary);
  flex-shrink: 0;
}

/* Title: first & third lines white, second line (Businesses.) yellow */
.hero-title {
  color: var(--white);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 1.2rem;
  font-family: var(--font-heading);
}
.hero-title .line-yellow { color: var(--secondary); display: block; }
.hero-title .line-white  { color: var(--white);     display: block; }

/* Subtitle: italic Playfair */
.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  color: rgba(255,255,255,0.88);
  font-style: italic;
  font-family: var(--font-heading);
  margin-bottom: 1.3rem;
  font-weight: 400;
}

.hero-desc {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.72);
  max-width: 550px;
  line-height: 1.9;
  margin-bottom: 2.6rem;
}

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Filled purple CTA (left button) */
.hero-cta .btn-hero-filled {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(103,57,144,0.85);
  border: 2px solid rgba(103,57,144,0.9);
  color: var(--white);
  padding: 0.75rem 2rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-body);
  transition: var(--transition);
  backdrop-filter: blur(6px);
}
.hero-cta .btn-hero-filled:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(103,57,144,0.4);
}

/* Outlined CTA (right button) */
.hero-cta .btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  padding: 0.75rem 2rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-body);
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.hero-cta .btn-hero-outline:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--dark);
  transform: translateY(-2px);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  animation: bounce 2s infinite;
}
.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 11px;
  position: relative;
}
.scroll-mouse::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 7px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  animation: scroll-dot 2s infinite;
}

@keyframes scroll-dot {
  0%,100% { opacity: 1; top: 5px; }
  50%      { opacity: 0; top: 14px; }
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ═══════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════ */
.trust-bar { background: var(--light-bg); padding: 70px 0; }

.trust-bar .section-title { text-align: center; }

.video-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--dark);
  position: relative;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  text-decoration: none;
}
.video-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.video-card-thumb {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--dark));
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-play-btn {
  width: 72px;
  height: 72px;
  background: rgba(244,185,40,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 1.6rem;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(244,185,40,0.4);
}
.video-card:hover .video-play-btn {
  transform: scale(1.12);
  background: var(--secondary);
}
.video-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.2rem 1.5rem;
  background: linear-gradient(to top, rgba(26,16,40,0.95), transparent);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   SERVICE CARDS (HOME)
═══════════════════════════════════════════ */
.services-home { background: var(--white); padding: 90px 0; }

.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--light-bg);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 1.4rem;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--primary);
  color: var(--white);
}

.service-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: var(--dark);
}
.service-card p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 1.5rem; }

/* ═══════════════════════════════════════════
   METHODOLOGY PREVIEW
═══════════════════════════════════════════ */
.methodology-preview {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.methodology-preview::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(244,185,40,0.07) 0%, transparent 70%);
}

.method-steps {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
}

.method-step {
  display: flex;
  align-items: center;
  gap: 0;
}

.method-step-inner {
  text-align: center;
  padding: 1.5rem 1.8rem;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
  cursor: default;
  min-width: 140px;
}
.method-step-inner:hover {
  background: rgba(244,185,40,0.12);
  border-color: rgba(244,185,40,0.4);
  transform: translateY(-4px);
}

.method-step-num {
  width: 38px;
  height: 38px;
  background: var(--secondary);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  margin: 0 auto 0.8rem;
}
.method-step-label {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.method-arrow {
  color: rgba(244,185,40,0.5);
  font-size: 1.4rem;
  padding: 0 0.6rem;
}

/* ═══════════════════════════════════════════
   CASE STUDIES PREVIEW
═══════════════════════════════════════════ */
.case-studies-preview { padding: 90px 0; background: var(--light-bg); }

.case-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.case-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.case-card-header {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}
.case-card-header::after {
  content: attr(data-category);
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.25);
}
.case-card-icon {
  font-size: 2.2rem;
  color: var(--secondary);
  margin-bottom: 0.8rem;
}
.case-card-header h4 {
  color: var(--white);
  font-size: 1.2rem;
}

.case-card-body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.case-card-body p { font-size: 0.9rem; color: var(--text-light); flex: 1; }

.case-tag {
  display: inline-block;
  background: var(--light-bg);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.main-footer {
  background: var(--dark);
  padding: 80px 0 0;
  color: rgba(255,255,255,0.7);
}

.footer-col h5 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.8rem;
}
.footer-col h5::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 36px; height: 2px;
  background: var(--secondary);
}

.footer-col p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-links a::before {
  content: '›';
  color: var(--secondary);
  font-size: 1rem;
}
.footer-links a:hover { color: var(--secondary); padding-left: 4px; }

.footer-social { display: flex; gap: 0.8rem; margin-top: 1.5rem; }
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}
.footer-social a:hover {
  background: var(--secondary);
  color: var(--dark);
  border-color: var(--secondary);
  transform: translateY(-3px);
}

.footer-contact-info { list-style: none; padding: 0; margin: 0; }
.footer-contact-info li {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  align-items: flex-start;
}
.footer-contact-info i {
  color: var(--secondary);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 60px;
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-logo { height: 42px; width: auto; margin-bottom: 1.2rem; }

/* ═══════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════ */
.about-mission { padding: 90px 0; background: var(--white); }

.team-section { padding: 90px 0; background: var(--light-bg); }

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}
.team-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.team-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--light-bg);
}
.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}
.team-card:hover .team-card-img img { transform: scale(1.05); }

.team-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(26,16,40,0.9) 0%, transparent 100%);
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  transform: translateY(100%);
  transition: var(--transition);
}
.team-card:hover .team-card-overlay { transform: translateY(0); }
.team-card-overlay a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 0.8rem;
  border: 1px solid rgba(255,255,255,0.3);
  transition: var(--transition);
}
.team-card-overlay a:hover {
  background: var(--secondary);
  color: var(--dark);
  border-color: var(--secondary);
}

.team-card-body { padding: 1.5rem 1.2rem 1.8rem; }
.team-card-body h4 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 0.3rem;
}
.team-card-body .designation {
  font-size: 0.82rem;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 1rem;
}

.strength-section {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  position: relative;
  overflow: hidden;
}
.strength-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(244,185,40,0.1), transparent 70%);
}
.strength-section h2 { color: var(--white); }
.strength-section h3 { color: var(--secondary); font-style: italic; }
.strength-section p { color: rgba(255,255,255,0.78); font-size: 1rem; }

/* ═══════════════════════════════════════════
   TEAM MEMBER PAGES
═══════════════════════════════════════════ */
.team-member-section { padding: 80px 0; }

.member-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
  background: var(--light-bg);
}
.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.member-info h2 { margin-bottom: 0.3rem; }
.member-role {
  font-size: 1rem;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.expertise-list { list-style: none; padding: 0; margin: 0; }
.expertise-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text);
}
.expertise-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  flex-shrink: 0;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.pillar-item {
  background: var(--light-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--primary);
  transition: var(--transition);
}
.pillar-item:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-3px);
}

/* ═══════════════════════════════════════════
   METHODOLOGY PAGE
═══════════════════════════════════════════ */
.methodology-section { padding: 90px 0; }
.method-card {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}
.method-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
}
.method-card-num {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(103,57,144,0.12);
  line-height: 1;
  min-width: 70px;
  transition: var(--transition);
}
.method-card:hover .method-card-num { color: rgba(103,57,144,0.25); }
.method-card-content h3 { margin-bottom: 0.8rem; }
.method-card-content p { font-size: 0.95rem; color: var(--text-light); margin: 0; }

.method-feature {
  background: linear-gradient(135deg, var(--dark), var(--primary-dark));
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.method-feature::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(244,185,40,0.12), transparent 70%);
}
.method-feature h2 { color: var(--white); margin-bottom: 0.8rem; }
.method-feature h3 { color: var(--secondary); font-style: italic; margin-bottom: 1.5rem; }
.method-feature p { color: rgba(255,255,255,0.75); font-size: 1rem; margin-bottom: 2rem; }

/* Feature item boxes inside method-feature */
.method-feature-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 0.9rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 54px;
  transition: var(--transition);
  height: 100%;
}
.method-feature-item:hover {
  background: rgba(244,185,40,0.1);
  border-color: rgba(244,185,40,0.35);
}
.method-feature-item span {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.35;
  word-break: break-word;
  overflow-wrap: break-word;
  min-width: 0;
}


/* ═══════════════════════════════════════════
   SERVICES PAGE
═══════════════════════════════════════════ */
.services-full { padding: 90px 0; }

.service-full-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-full-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.service-num {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: rgba(103,57,144,0.1);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
  transition: var(--transition);
}
.service-full-card:hover .service-num { color: rgba(103,57,144,0.2); }
.service-full-icon {
  width: 60px; height: 60px;
  background: var(--light-bg);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}
.service-full-card:hover .service-full-icon {
  background: var(--primary);
  color: var(--white);
}
.service-full-card h4 { font-size: 1.15rem; margin-bottom: 0.8rem; }
.service-full-card p { font-size: 0.9rem; color: var(--text-light); margin: 0; }

/* ═══════════════════════════════════════════
   CASE STUDIES
═══════════════════════════════════════════ */
.case-studies-section { padding: 90px 0; }

.filter-tabs {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.filter-tab {
  padding: 0.5rem 1.4rem;
  border-radius: 25px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}
.filter-tab:hover,
.filter-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.case-study-full {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
}
.case-study-full-header {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 2.5rem 3rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}
.case-study-full-header .cs-num {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(255,255,255,0.15);
  line-height: 1;
  flex-shrink: 0;
}
.case-study-full-header h3 { color: var(--white); margin-bottom: 0.5rem; }
.case-study-full-header p { color: rgba(255,255,255,0.75); margin: 0; font-size: 0.9rem; }

.case-study-full-body { padding: 3rem; }
.case-study-full-body h5 {
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}
.case-study-full-body p { font-size: 0.95rem; line-height: 1.85; color: var(--text); }

/* ═══════════════════════════════════════════
   INSIGHTS PAGE
═══════════════════════════════════════════ */
.insights-section { padding: 90px 0; }

.insight-profile {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 0;
  margin-bottom: 2.5rem;
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.insight-profile:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.insight-profile:nth-child(even) { flex-direction: row-reverse; }

.insight-profile-img {
  width: 280px;
  flex-shrink: 0;
  background: var(--light-bg);
  position: relative;
  overflow: hidden;
}
.insight-profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.insight-profile-content {
  padding: 3rem 2.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.insight-profile-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}
.insight-role {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.insight-role::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--secondary);
}
.insight-profile-content p {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--text-light);
}

/* ═══════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════ */
.contact-section { padding: 90px 0; }

.contact-info-card {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  height: 100%;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(244,185,40,0.12), transparent 70%);
}
.contact-info-card h3 { color: var(--white); margin-bottom: 0.8rem; }
.contact-info-card p { color: rgba(255,255,255,0.75); margin-bottom: 2rem; }

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.8rem;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--secondary);
  font-size: 1rem;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.15);
}
.contact-detail-text span {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.2rem;
}
.contact-detail-text strong {
  font-size: 0.92rem;
  color: var(--white);
  font-weight: 400;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-md);
  height: 100%;
}
.contact-form-card h3 { margin-bottom: 0.5rem; }
.contact-form-card p { color: var(--text-light); margin-bottom: 2rem; font-size: 0.9rem; }

.form-group { margin-bottom: 1.4rem; }
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(103,57,144,0.12);
}
textarea.form-control { resize: vertical; min-height: 140px; }

.form-msg {
  padding: 0.8rem 1.2rem;
  border-radius: var(--radius);
  font-size: 0.88rem;
  margin-top: 1rem;
  display: none;
}
.form-msg.success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
  display: block;
}
.form-msg.error {
  background: #fce4ec;
  color: #c62828;
  border: 1px solid #ef9a9a;
  display: block;
}

/* ═══════════════════════════════════════════
   QUOTE / STAT BARS
═══════════════════════════════════════════ */
.quote-block {
  border-left: 4px solid var(--secondary);
  padding: 1.5rem 2rem;
  background: var(--light-bg);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--dark);
  margin: 2rem 0;
}

/* ═══════════════════════════════════════════
   LOADING SPINNER
═══════════════════════════════════════════ */
.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ═══════════════════════════════════════════
   RESPONSIVE OVERRIDES
═══════════════════════════════════════════ */
@media (max-width: 991.98px) {
  .topbar { display: none; }
  .main-navbar { padding: 0.8rem 0; }


  /* Methodology steps: 3-column grid at tablet */
  .method-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    justify-items: center;
    align-items: start;
  }
  .method-step { width: 100%; display: block; }
  .method-step-inner { min-width: unset; width: 100%; padding: 1.2rem 1rem; }
  .method-step:nth-child(4) { grid-column: 1 / 2; justify-self: end; }
  .method-step:nth-child(5) { grid-column: 2 / 3; justify-self: start; }
  .method-arrow { display: none; }


  .insight-profile,
  .insight-profile:nth-child(even) { flex-direction: column; }
  .insight-profile-img { width: 100%; height: 280px; }
  .insight-profile-content { padding: 2rem; }

  .case-study-full-header { padding: 2rem; flex-direction: column; gap: 1rem; }
  .case-study-full-body { padding: 2rem; }

  .method-feature { padding: 2.5rem 2rem; }
}

@media (max-width: 767.98px) {
  .section-pad { padding: 60px 0; }
  .section-pad-sm { padding: 40px 0; }

  /* ── Hero mobile fixes ── */
  .hero-section {
    height: auto;
    min-height: 100svh;
    align-items: flex-start;
  }
  .hero-content {
    padding: 110px 1.5rem 80px;   /* side padding so text never bleeds to edge */
  }
  .hero-label {
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    margin-bottom: 1.1rem;
  }
  .hero-title {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
    line-height: 1.15;
    margin-bottom: 1rem;
  }
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  .hero-desc {
    font-size: 0.9rem;
    max-width: 100%;
    margin-bottom: 2rem;
    line-height: 1.75;
  }
  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .hero-cta .btn-hero-filled,
  .hero-cta .btn-hero-outline {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .method-card { flex-direction: column; gap: 0.5rem; padding: 1.8rem; }
  .method-card-num { font-size: 2.5rem; min-width: auto; }

  .contact-info-card,
  .contact-form-card { padding: 2rem 1.5rem; }

  .team-member-section .row { gap: 2rem; }
  .member-photo { max-width: 300px; margin: 0 auto; }

  /* Feature boxes: tighter padding, ensure text wraps */
  .method-feature-item {
    padding: 0.75rem 0.6rem;
    gap: 0.5rem;
    align-items: flex-start;
  }
  .method-feature-item span {
    font-size: 0.8rem;
  }
}

/* Very small phones: switch feature grid to single column */
@media (max-width: 480px) {
  .method-feature-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    padding: 0.75rem;
  }
  .method-feature-item i {
    font-size: 1.1rem !important;
  }
  .method-feature-item span {
    font-size: 0.78rem;
  }
}

@media (max-width: 575.98px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.6rem; }

  .filter-tabs { gap: 0.4rem; }
  .filter-tab { font-size: 0.78rem; padding: 0.4rem 1rem; }

  /* Methodology grid on small phones: 3-col grid, tighter spacing */
  .method-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
    justify-items: center;
    align-items: start;
  }

  /* Hide flex arrows */
  .method-arrow { display: none; }

  /* Centre the 4th and 5th items within the 3-col grid */
  .method-step:nth-child(4) { grid-column: 1 / 2; justify-self: end; }
  .method-step:nth-child(5) { grid-column: 2 / 3; justify-self: start; }

  .method-step { width: 100%; display: block; }

  .method-step-inner {
    min-width: unset;
    width: 100%;
    padding: 1rem 0.6rem;
  }
}

/* ═══════════════════════════════════════════
   VIDEO SECTION (Home)
═══════════════════════════════════════════ */
.video-section { background: var(--light-bg); padding: 80px 0; }

.native-video-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  position: relative;
}
.native-video-card:hover { transform: translateY(-5px); box-shadow: 0 25px 70px rgba(0,0,0,0.4); }

.native-video-card video {
  width: 100%;
  display: block;
  border-radius: var(--radius-lg);
  background: #000;
}

.video-label {
  padding: 1rem 1.5rem;
  background: rgba(255,255,255,0.05);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
}
.video-label i { color: var(--secondary); }

/* ── Hide hamburger toggler on desktop; show offcanvas toggle only on mobile ── */
@media (min-width: 992px) {
  .offcanvas-menu,
  .offcanvas-overlay,
  .navbar-toggler { display: none !important; }
}

@media (max-width: 991.98px) {
  /* Hide Bootstrap's default collapse on mobile – we use our own drawer */
  .navbar-collapse { display: none !important; }
}


