/* ==================== 369NEXUS LUXURY GRADIENT THEME ==================== */
:root {
  --bg-darkest: #040d13;
  --bg-navy-dark: #081822;
  --bg-blue-light: #1d628c;
  --gold-primary: #dfbe79;
  --gold-gradient: linear-gradient(135deg, #dfbe79 0%, #c5a059 100%);
  --text-main: #ffffff;
  --text-muted: #b0c4de;
  --border-gold: rgba(223, 190, 121, 0.25);
}

body {
  background: var(--bg-navy-dark);
  color: var(--text-muted);
}

/* ==================== HERO IMAGE SLIDER ==================== */
.hero-slider-section {
  position: relative;
  width: 100%;
  margin-top: 108px;
  background: #051118;
  overflow: hidden;
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.hero-slider-viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.hero-slide-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateX(100%);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s ease;
}

.hero-slide-item.active {
  transform: translateX(0);
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}

.hero-slide-item.exit-left {
  transform: translateX(-100%);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-slide-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  display: block;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(5, 17, 24, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(223, 190, 121, 0.45);
  color: #dfbe79;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
  user-select: none;
}

.slider-arrow:hover {
  background: linear-gradient(135deg, #dfbe79 0%, #c5a059 100%);
  color: #051118;
  border-color: #dfbe79;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 22px rgba(223, 190, 121, 0.35);
}

.slider-arrow.prev { left: 24px; padding-right: 2px; }
.slider-arrow.next { right: 24px; padding-left: 2px; }

.slider-pagination {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
  background: rgba(5, 17, 24, 0.55);
  padding: 6px 14px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(223, 190, 121, 0.2);
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.35s ease;
}

.slider-dot.active {
  background: #dfbe79;
  width: 26px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(223, 190, 121, 0.5);
}

/* ==================== DYNAMIC REVERSE GRADIENT SECTIONS ==================== */
.intro,
.what,
.difference,
.strategy,
.statement,
.grand-summary-banner,
.contact,
.industries,
.platforms,
.experience,
.insights {
  position: relative;
  overflow: hidden;
  padding: 75px 8.5vw 70px !important;
  border-bottom: 1px solid rgba(223, 190, 121, 0.2);
  z-index: 1;
}

.intro::before,
.what::before,
.difference::before,
.strategy::before,
.statement::before,
.grand-summary-banner::before,
.contact::before,
.industries::before,
.platforms::before,
.experience::before,
.insights::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #081822 0%, #0f354e 55%, #1d628c 100%);
  z-index: -2;
  transition: opacity 0.6s ease;
  opacity: 1;
}

.intro::after,
.what::after,
.difference::after,
.strategy::after,
.statement::after,
.grand-summary-banner::after,
.contact::after,
.industries::after,
.platforms::after,
.experience::after,
.insights::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #1d628c 0%, #0f354e 45%, #081822 100%);
  z-index: -1;
  transition: opacity 0.6s ease;
  opacity: 0;
}

.section-reverse::before {
  opacity: 0 !important;
}

.section-reverse::after {
  opacity: 1 !important;
}

/* Base Typographic Hierarchy on Content */
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7vw;
}

.intro h2, .sectionhead h2, .top h2, .experience h2, .contact h2, .statement h2 {
  font: 300 clamp(43px, 5.4vw, 76px) 'Montserrat', sans-serif;
  line-height: .98;
  letter-spacing: -.065em;
  margin: 0;
  color: #ffffff;
}

h2 em, h3 em {
  font-style: normal;
  color: var(--gold-primary);
}

.sectionhead label, .intro label, .statement label, .difference label, .strategy label, .contact label, .industry-copy label, .brands-proof label, .top label, .experience label {
  color: var(--gold-primary) !important;
  font: 600 11px 'Montserrat', sans-serif;
  letter-spacing: 0.18em;
  display: block;
  margin-bottom: 12px;
}

.sectionhead {
  max-width: 700px;
  margin-bottom: 45px !important;
}

.sectionhead h2,
.intro h2 {
  margin-bottom: 18px !important;
}

.copy {
  max-width: 575px;
  padding-top: 35px;
}

.copy p, .sectionhead p, .contact > div > p, .experience p {
  font-size: 15px;
  line-height: 1.9;
  color: #b0c4de;
  margin: 0 0 18px;
}

.copy a, .experience a {
  font: 600 9px 'Montserrat', sans-serif;
  letter-spacing: .12em;
  color: #dfbe79;
}

/* Philosophy Statement */
.statement {
  padding: 75px 8.5vw 75px !important;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.statement h2 {
  margin-bottom: 35px;
  color: #dfbe79;
}

.statement hr {
  max-width: 720px;
  margin: 0;
  border: 0;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.statement p {
  max-width: 580px;
  color: #b0c4de;
  font-size: 14px;
  line-height: 1.9;
  margin-top: 25px;
}


/* ==================== SECTION HEADER TOP BAR ==================== */
.top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 45px;
}

.top > a,
.top-link {
  display: inline-block;
  font: 600 11px 'Montserrat', sans-serif !important;
  letter-spacing: 0.12em;
  color: #dfbe79 !important;
  text-decoration: none;
  padding-bottom: 8px;
  white-space: nowrap;
  transition: color 0.3s ease, transform 0.3s ease;
}

.top > a:hover,
.top-link:hover {
  color: #ffffff !important;
  transform: translateX(4px);
}


/* ==================== PROOF STATS BAR ==================== */
.proof {
  background: linear-gradient(135deg, #dfbe79 0%, #c5a059 100%);
  color: #051118;
  padding: 0 8.5vw;
}

.proof > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof article {
  min-height: 140px;
  padding: 30px 25px;
  border-right: 1px solid rgba(5, 17, 24, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.proof article:last-child { border: 0; }
.proof small { font: 700 10px 'Montserrat', sans-serif; color: #051118; }
.proof strong {
  font: 700 20px 'Montserrat', sans-serif;
  letter-spacing: -0.02em;
  margin: 6px 0 2px;
  color: #051118;
}
.proof span { font-size: 12px; font-weight: 500; }

/* ==================== CARDS & CONTAINERS ==================== */
.metrics-highlight-box,
.thirty-min-card,
.ramp-showcase-box,
.film-section-box,
.diff-card,
.services article,
.strategy-card,
.future article,
.insightgrid article,
.question-box,
.opportunity-item,
.agenda-row {
  background: rgba(8, 24, 34, 0.82) !important;
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-gold) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

/* Services Grid (What We Do & Focus Sectors) */
.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.services article {
  min-height: 310px;
  padding: 30px 25px;
  border-right: 1px solid rgba(212, 175, 55, 0.2);
}

.services article:last-child { border-right: 0; }
.services small { font: 600 9px 'Montserrat', sans-serif; color: #dfbe79; }
.services b {
  display: block;
  font: 300 38px 'Montserrat', sans-serif;
  color: #dfbe79;
  margin: 43px 0 22px;
}
.services h3 {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.25;
  margin: 0 0 15px;
  color: #fff;
}
.services p {
  font-size: 12px;
  line-height: 1.7;
  color: #b0c4de;
}

/* Strategy Grid */
.strategy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.strategy-card {
  padding: 40px 30px;
  border-top: 3px solid var(--gold-primary) !important;
  color: #fff;
}

.strategy-card small {
  font: 600 9px 'Montserrat', sans-serif;
  letter-spacing: .14em;
  color: #dfbe79;
  display: block;
  margin-bottom: 15px;
}

.strategy-card h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  margin: 0 0 15px;
  color: #fff;
}

.strategy-card p {
  font-size: 13px;
  line-height: 1.75;
  color: #b0c4de;
  margin: 0;
}

.strategy-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.strategy-card li {
  font-size: 12px;
  line-height: 1.8;
  color: #b0c4de;
  margin-bottom: 8px;
}

.strategy-card li b { color: #dfbe79; }

/* ==================== INDUSTRIES WE SERVE GRID ==================== */
.industries {
  padding: 85px 8.5vw 90px !important;
  display: block !important;
  min-height: auto !important;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 cards per row */
  gap: 28px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(8, 24, 34, 0.7);
  border: 1px solid var(--border-gold, rgba(223, 190, 121, 0.25));
  padding: 12px 12px 18px;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-5px);
  border-color: #dfbe79;
  box-shadow: 0 12px 30px rgba(223, 190, 121, 0.2);
}

.industry-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 2px;
  background: #040d13;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.industry-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.industry-card:hover .industry-img-wrap img {
  transform: scale(1.06);
}

.industry-card h3 {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  color: #dfbe79 !important;
  margin: 14px 0 0 !important;
  text-transform: uppercase;
  line-height: 1.2;
}

.feature {
  display: grid;
  grid-template-columns: 45px 1fr 30px;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid rgba(223, 190, 121, 0.3);
  border-bottom: 1px solid rgba(223, 190, 121, 0.3);
  color: #fff;
}

.feature small { color: #dfbe79; font-weight: 600; }
.feature strong { font: 500 20px 'Montserrat', sans-serif; }
.feature span { color: #dfbe79; font-size: 20px; }

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 25px;
}

.tags span, .category-pills span {
  font-size: 11px;
  background: var(--bg-darkest);
  border: 1px solid var(--border-gold);
  border-left: 3px solid var(--gold-primary);
  color: #fff;
  padding: 9px 14px;
}

.industry-copy {
  max-width: 700px;
}

.industry-copy h2 {
  font: 300 clamp(48px, 5.4vw, 76px) 'Montserrat', sans-serif;
  line-height: .94;
  letter-spacing: -.065em;
  margin: 0 0 40px;
  color: #fff;
}

/* ==================== PLATFORMS & FEATURED HERO CARD ==================== */
.platforms {
  padding: 85px 8.5vw 90px !important;
  display: block !important;
}

.featured {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  align-items: center;
  background: rgba(8, 24, 34, 0.85) !important;
  border: 1px solid var(--border-gold, rgba(223, 190, 121, 0.25)) !important;
  border-top: 3px solid #dfbe79 !important;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45);
}

.feature-img {
  position: relative;
  width: 100%;
  aspect-ratio: 675 / 380; /* Enforces the exact 675x380 aspect ratio */
  display: block;
  background: #040d13;
  border-right: 1px solid rgba(223, 190, 121, 0.2);
  overflow: hidden;
}

.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Fills the exact 675x380 frame 1:1 without cutting edges */
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.featured:hover .feature-img img {
  transform: scale(1.02);
}

.feature-copy {
  padding: 35px 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.feature-copy label {
  font: 600 10px 'Montserrat', sans-serif !important;
  letter-spacing: 0.18em !important;
  color: #dfbe79 !important;
  margin-bottom: 12px !important;
}

.feature-copy h3 {
  font: 300 clamp(36px, 4.2vw, 56px) 'Montserrat', sans-serif !important;
  line-height: 0.95 !important;
  letter-spacing: -0.05em !important;
  margin: 0 !important;
  color: #ffffff !important;
}

.feature-copy h3 em {
  font-style: normal;
  color: #dfbe79;
}

.feature-copy h4 {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.16em !important;
  color: #dfbe79 !important;
  margin: 18px 0 16px !important;
  text-transform: uppercase;
}

.feature-copy p {
  font-size: 13.5px !important;
  line-height: 1.8 !important;
  color: #b0c4de !important;
  max-width: 500px;
  margin: 0 0 10px !important;
}

/* Future Platforms 4-Grid */
.future {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 35px;
}

.future article {
  background: rgba(8, 24, 34, 0.75) !important;
  border: 1px solid var(--border-gold, rgba(223, 190, 121, 0.25)) !important;
  border-top: 2px solid #dfbe79 !important;
  padding: 28px 22px;
  min-height: 160px;
  border-radius: 3px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.future article:hover {
  transform: translateY(-4px);
  border-color: #dfbe79 !important;
}

.future small {
  font: 600 8.5px 'Montserrat', sans-serif;
  color: #dfbe79;
  letter-spacing: 0.14em;
  display: block;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.future h3 {
  font: 500 16px 'Montserrat', sans-serif;
  color: #ffffff;
  margin: 0 0 10px;
  line-height: 1.3;
}

.future p {
  font-size: 12px;
  line-height: 1.65;
  color: #b0c4de;
  margin: 0;
}

/* Experience Section */
.experience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: center;
}

.experience article {
  padding: 40px 0;
}

/* Diff Cards */
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.diff-card {
  color: #ffffff;
  padding: 45px 35px;
  border-top: 2px solid rgba(212, 175, 55, 0.3) !important;
}

.diff-card.highlight {
  border-top: 2px solid #dfbe79 !important;
}

.diff-card small {
  font: 600 9px 'Montserrat', sans-serif;
  letter-spacing: .14em;
  color: #dfbe79;
  display: block;
  margin-bottom: 15px;
}

.diff-card h3 {
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 20px;
}

.diff-card ul { list-style: none; padding: 0; margin: 0; }
.diff-card li { font-size: 13px; line-height: 2.2; color: #b0c4de; }

/* ==================== BRANDS PROOF SECTION ==================== */

.brands-proof {
  background: rgba(4, 13, 19, 0.95);
  color: #fff;
  padding: 60px 8.5vw;
  text-align: center !important; /* Centers inline/text elements */
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}

.brands-proof label {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
}

.brands-proof small {
  display: block !important;
  text-align: center !important;
  margin: 25px auto 0 !important;
  max-width: 900px;
  font-size: 12px;
  line-height: 1.7;
  color: #b0c4de;
  letter-spacing: 0.03em;
}

.brands-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  max-width: 1250px;
  margin: 35px auto 30px;
}

.brand-item {
  width: 100%;
  aspect-ratio: 2 / 1; /* Matches 400x200 px exactly */
  padding: 0 !important; /* Removes outer patch margins */
  margin: 0;
  background: transparent !important;
  border: 1px solid rgba(223, 190, 121, 0.35);
  border-radius: 4px;
  overflow: hidden; /* Clips image edges cleanly inside the rounded border */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.brand-item:hover {
  border-color: #dfbe79;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(223, 190, 121, 0.25);
}

.brand-item img {
  width: 100%;
  height: 100%;
  object-fit: fill; /* Fills edge-to-edge eliminating all borders/patches */
  display: block;
}


/* ==================== BRANDS PROOF NOTIFICATION BAR ==================== */
.brands-proof-notice {
  max-width: 1200px; /* Matches the exact width of your 6x2 logo grid */
  margin: 28px auto 0 auto;
  padding: 14px 20px;
  background: rgba(0, 30, 43, 0.45);
  border: 1px solid rgba(223, 190, 121, 0.2);
  border-left: 3px solid #dfbe79; /* Gold accent indicator line */
  border-radius: 4px;
  text-align: left;
  box-sizing: border-box;
}

.notice-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  line-height: 1.6;
  color: #d1dbe3;
  margin: 0;
}

.notice-item + .notice-item {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.notice-dot {
  width: 5px;
  height: 5px;
  background-color: #dfbe79;
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

.notice-item strong {
  color: #dfbe79;
  font-weight: 600;
}


/* Insights Grid */
.insightgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.insightgrid article {
  padding: 30px;
  min-height: 260px;
}

.insightgrid small {
  font: 600 8px 'Montserrat', sans-serif;
  color: #dfbe79;
  letter-spacing: .14em;
}

.insightgrid h3 {
  font: 500 20px 'Montserrat', sans-serif;
  line-height: 1.25;
  margin: 18px 0 12px;
  color: #fff;
}

.insightgrid p {
  font-size: 12px;
  line-height: 1.75;
  color: #b0c4de;
}

.insightgrid a {
  font: 600 9px 'Montserrat', sans-serif;
  color: #dfbe79;
}

/* ==================== SANGAM 2026 SPECIFIC BLOCKS ==================== */
.metrics-highlight-box {
  border-left: 4px solid var(--gold-primary) !important;
  padding: 35px 40px;
  margin: 35px 0;
  color: #fff;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 35px;
  align-items: center;
}

.metrics-highlight-box h3 {
  font: 500 24px 'Montserrat', sans-serif;
  color: var(--gold-primary);
  margin: 0 0 12px;
}

.metrics-highlight-box p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0;
}

.metrics-kpi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  border-left: 1px solid var(--border-gold);
  padding-left: 25px;
}

.metric-kpi-card {
  background: rgba(5, 17, 24, 0.6);
  border: 1px solid var(--border-gold);
  padding: 18px 15px;
  text-align: center;
}

.metric-kpi-card strong {
  display: block;
  font: 700 32px 'Montserrat', sans-serif;
  color: var(--gold-primary);
  line-height: 1;
  margin-bottom: 6px;
}

.metric-kpi-card span {
  font: 500 11px 'Montserrat', sans-serif;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  line-height: 1.3;
  display: block;
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.list-check li {
  font-size: 14px;
  color: #d0d9e2;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}

.list-check li b {
  color: var(--gold-primary);
  font-size: 16px;
  line-height: 1.4;
}

.thirty-min-card, .ramp-showcase-box, .film-section-box {
  color: #fff;
  padding: 50px 45px;
  border-top: 3px solid var(--gold-primary) !important;
  margin-top: 35px;
}

.session-points {
  list-style: none;
  padding: 0;
  margin: 25px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 30px;
}

.session-points li {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted);
  position: relative;
  padding-left: 20px;
}

.session-points li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold-primary);
  font-size: 20px;
  line-height: 1;
}

.ramp-grid, .film-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.ramp-feature, .film-card {
  background: rgba(5, 17, 24, 0.65);
  border: 1px solid var(--border-gold);
  border-top: 2px solid var(--gold-primary);
  padding: 24px;
}

.ramp-feature b, .film-card b {
  display: block;
  color: var(--gold-primary);
  font: 600 14px 'Montserrat', sans-serif;
  margin-bottom: 8px;
}

.ramp-feature p, .film-card p {
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

.film-metrics-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 25px 0;
}

.film-badge {
  background: rgba(223, 190, 121, 0.12) !important;
  border: 1px solid #dfbe79 !important;
  color: #dfbe79 !important;
  padding: 8px 16px;
  font: 500 12px 'Montserrat', sans-serif;
  border-radius: 2px;
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.market-questions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 35px 0;
}

.question-box {
  padding: 20px 24px;
  border-left: 3px solid var(--gold-primary) !important;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
}

.agenda-timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
  max-width: 1100px;
}

.agenda-row {
  display: grid;
  grid-template-columns: 190px 1fr;
  padding: 26px 30px;
  border-left: 4px solid rgba(223, 190, 121, 0.4) !important;
  transition: 0.3s ease;
}

.agenda-row:hover {
  border-left-color: var(--gold-primary) !important;
  transform: translateX(4px);
}

.agenda-time {
  font: 600 14px 'Montserrat', sans-serif;
  color: var(--gold-primary);
}

.agenda-desc h4 {
  margin: 0 0 8px;
  font-size: 16px;
  color: #ffffff;
  font-weight: 600;
}

.agenda-desc p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.agenda-row.agenda-highlight-gold {
  background: linear-gradient(135deg, #dfbe79 0%, #d4af37 50%, #c5a059 100%) !important;
  border: 1px solid #ebd193 !important;
  border-left: 6px solid #051118 !important;
  box-shadow: 0 10px 30px rgba(223, 190, 121, 0.25) !important;
  transform: scale(1.02);
  position: relative;
  z-index: 2;
}

.agenda-row.agenda-highlight-gold .agenda-time { color: #051118 !important; }
.agenda-row.agenda-highlight-gold .agenda-time strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #051118 !important;
  margin-top: 4px;
}

.agenda-badge-prime {
  display: inline-block;
  background: #051118;
  color: #dfbe79;
  font: 700 8px 'Montserrat', sans-serif;
  letter-spacing: 0.12em;
  padding: 3px 7px;
  border-radius: 2px;
  margin-bottom: 4px;
}

.agenda-row.agenda-highlight-gold .agenda-desc h4 {
  color: #051118 !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
}

.agenda-row.agenda-highlight-gold .agenda-desc p {
  color: #1a2a34 !important;
  font-weight: 500 !important;
  font-size: 13.5px !important;
  line-height: 1.65 !important;
}

.opportunity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 35px;
}

.opportunity-item {
  padding: 26px;
  border-top: 2px solid var(--gold-primary) !important;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.6;
}

.opportunity-item b {
  display: block;
  color: var(--gold-primary);
  font-size: 16px;
  margin-bottom: 8px;
}

.grand-summary-banner {
  color: #fff;
  padding: 90px 8.5vw;
  text-align: center;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}

.grand-summary-banner h2 {
  font: 300 clamp(32px, 4vw, 56px) 'Montserrat', sans-serif;
  line-height: 1.15;
  margin: 0 0 25px;
}

.curated-badges {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 25px 0 35px;
}

.curated-badges span {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  color: #051118 !important;
  background: linear-gradient(135deg, #dfbe79 0%, #c5a059 100%) !important;
  padding: 8px 18px !important;
  border-radius: 2px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* ==================== CONTACT FORM & SELECT ==================== */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
  border-top: 2px solid rgba(212, 175, 55, 0.25);
}

.contact h2 { color: #fff; }
.contact > div > p {
  color: #b0c4de;
  max-width: 530px;
  margin-top: 30px;
}

.contact form {
  display: grid;
  gap: 12px;
  align-content: center;
}

.contact form input,
.contact form textarea,
.contact form select {
  width: 100% !important;
  box-sizing: border-box !important;
  background: #081822 !important;
  color: #ffffff !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(223, 190, 121, 0.35) !important;
  padding: 14px 12px !important;
  transition: border-color 0.3s ease, background 0.3s ease;
  font: 400 13px 'Open Sans', sans-serif !important;
  outline: 0;
  border-radius: 2px;
}

.contact form select {
  cursor: pointer;
  line-height: 1.4 !important;
  height: 48px !important;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23dfbe79'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
  background-size: 20px !important;
  padding-right: 38px !important;
}

.contact form select option {
  background-color: #081822 !important;
  color: #ffffff !important;
  padding: 12px;
  font-size: 13px;
}

.contact form input::placeholder,
.contact form textarea::placeholder {
  color: #738a9c;
}

.contact form input:focus,
.contact form textarea:focus,
.contact form select:focus {
  border-bottom-color: #dfbe79 !important;
  background: #0b2230 !important;
}

.contact small {
  color: #dfbe79;
  margin-top: 8px;
  font-size: 12px;
}

/* ==================== RESPONSIVE OVERHAUL ==================== */
@media (max-width: 1050px) {
  .services, .diff-grid, .strategy-grid, .insightgrid, .future, .proof > div {
    grid-template-columns: 1fr 1fr;
  }
  .services article:nth-child(2) { border-right: 0; }
  .services article { border-bottom: 1px solid rgba(212, 175, 55, 0.2); }
  .industries-grid {
    grid-template-columns: repeat(2, 1fr) !important; /* 2 cards per row (3 rows) */
    gap: 20px 16px;
  }
  .featured {
    grid-template-columns: 1fr;
  }
  .feature-img {
    min-height: 300px;
    border-right: 0;
    border-bottom: 1px solid rgba(223, 190, 121, 0.2);
  }
  .future {
    grid-template-columns: repeat(2, 1fr);
  }
  .brands-logo-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 14px;
  }
}

@media (max-width: 760px) {
  .hero-slider-section { margin-top: 72px !important; }
  .slider-arrow { width: 32px !important; height: 32px !important; font-size: 15px !important; }
  .slider-arrow.prev { left: 10px !important; }
  .slider-arrow.next { right: 10px !important; }

  .slider-pagination { bottom: 10px !important; padding: 4px 10px !important; gap: 6px !important; }
  .slider-dot { width: 6px !important; height: 6px !important; }
  .slider-dot.active { width: 18px !important; }

  .intro,
  .what,
  .strategy,
  .difference,
  .statement,
  .industries,
  .platforms,
  .experience,
  .insights,
  .contact {
    padding: 45px 16px 40px !important;
  }

/* ==================== REDUCE HEADING TO BODY TEXT GAP ON MOBILE ==================== */
  .intro {
    gap: 12px !important;
  }

  .intro h2 {
    margin-bottom: 0 !important;
  }

  .intro .copy {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  .intro .copy p:first-child {
    margin-top: 6px !important;
  }

  .top {
    flex-direction: column;
    align-items: center !important;
    text-align: center !important;
    gap: 18px;
    margin-bottom: 35px;
  }

  .industries {
    padding: 50px 18px 55px !important;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px 12px !important;
  }

  .industry-card {
    padding: 8px 8px 14px !important;
  }

  .industry-card h3 {
    font-size: 11px !important;
    letter-spacing: 0.08em !important;
    margin-top: 10px !important;
  }

  .platforms {
    padding: 50px 18px 55px !important;
  }
  .feature-copy {
    padding: 35px 20px !important;
    align-items: center !important;
    text-align: center !important;
  }
  .feature-copy p {
    text-align: justify !important;
  }
  .future {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }

/* ==================== 3-COLUMN COMPACT MOBILE LOGO GRID ==================== */
  .brands-proof {
    padding: 42px 14px 35px !important;
    box-sizing: border-box !important;
    text-align: center !important;
  }

  .brands-proof label {
    font-size: 10px !important;
    letter-spacing: 0.16em !important;
    margin-bottom: 20px !important;
    display: block !important;
  }

  .brands-logo-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    column-gap: 6px !important; /* Shorter horizontal gap between columns */
    row-gap: 8px !important;    /* Vertical gap between rows */
    width: 100% !important;
    max-width: 340px !important; /* Centers and constrains the total width */
    margin: 0 auto 18px auto !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }

  .brand-item {
    width: 100% !important;
    aspect-ratio: 2 / 1 !important;
    border-radius: 3px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35) !important;
  }

  .brand-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: fill !important;
    display: block !important;
  }

  .brands-proof small {
    display: block !important;
    font-size: 11px !important;
    line-height: 1.6 !important;
    max-width: 320px !important;
    margin: 16px auto 0 auto !important;
    padding: 0 8px !important;
  }

  .brands-proof-notice {
    max-width: 340px !important;
    padding: 12px 14px !important;
    margin: 20px auto 0 auto !important;
  }

  .notice-item {
    font-size: 10.5px !important;
    line-height: 1.5 !important;
    gap: 8px !important;
  }

  .notice-dot {
    margin-top: 6px !important;
  }


  .sectionhead, .intro > div:first-child, .statement, .grand-summary-banner, .top > div {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .sectionhead label, .intro label, .statement label, .difference label, .strategy label, .contact label, .industry-copy label, .brands-proof label, .top label, .experience label {
    text-align: center !important;
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .intro h2, .sectionhead h2, .statement h2, .grand-summary-banner h2, .contact h2, .top h2, .experience h2, .industry-copy h2 {
    text-align: center !important;
    font-size: clamp(26px, 7.5vw, 34px) !important;
    line-height: 1.18 !important;
  }

  .copy p, .sectionhead p, .statement p, .intro .copy p, .contact > div > p, .experience p {
    text-align: justify !important;
    text-justify: inter-word !important;
    font-size: 13.5px !important;
    line-height: 1.75 !important;
  }

  .intro .copy .btn-primary, .btn-register-action {
    display: table !important;
    margin: 25px auto 0 !important;
    text-align: center !important;
  }

  .category-pills, .curated-badges, .film-metrics-banner, .tags {
    justify-content: center !important;
    text-align: center !important;
  }

  .intro, .diff-grid, .services, .market-questions, .opportunity-grid, .metrics-highlight-box, .ramp-grid, .film-grid, .strategy-grid, .insightgrid, .future, .proof > div, .featured, .experience {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }

  .feature-copy { padding: 40px 20px !important; }
  .feature-img { min-height: 250px; }

  .services article { 
    border-right: 0 !important; 
    border-bottom: 1px solid rgba(212, 175, 55, 0.2) !important; 
    padding: 30px 20px !important;
    text-align: center !important;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .metrics-highlight-box { padding: 24px 18px !important; }
  .metrics-kpi-grid {
    grid-template-columns: 1fr 1fr !important;
    border-left: 0 !important;
    border-top: 1px solid var(--border-gold) !important;
    padding-left: 0 !important;
    padding-top: 18px !important;
  }

  .thirty-min-card, .ramp-showcase-box, .film-section-box { padding: 28px 18px !important; }
  .session-points { grid-template-columns: 1fr !important; gap: 10px !important; }

  .agenda-row { grid-template-columns: 1fr !important; padding: 18px 16px !important; gap: 8px !important; }
  .contact { grid-template-columns: 1fr !important; gap: 30px !important; }
  .contact-details { text-align: center !important; }
  .contact form button {
    height: 48px !important;
    font-size: 13px !important;
    letter-spacing: 0.1em !important;
    margin-top: 6px !important;
  }



/* ==================== PROOF STATS 2-COLUMN MOBILE ==================== */
  .proof {
    padding: 0 16px !important;
  }

  .proof > div {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important; /* 2 equal columns */
    gap: 0 !important;
  }

  .proof article {
    min-height: 120px !important;
    padding: 20px 12px !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    border-right: 1px solid rgba(5, 17, 24, 0.2) !important;
    border-bottom: 1px solid rgba(5, 17, 24, 0.2) !important;
  }

  /* Remove right border on 2nd and 4th cards (right column) */
  .proof article:nth-child(2),
  .proof article:nth-child(4) {
    border-right: none !important;
  }

  /* Remove bottom border on 3rd and 4th cards (bottom row) */
  .proof article:nth-child(3),
  .proof article:nth-child(4) {
    border-bottom: none !important;
  }

  .proof strong {
    font-size: 17px !important;
    margin: 4px 0 2px !important;
  }

  .proof span {
    font-size: 11px !important;
    line-height: 1.3 !important;
  }

}