/* ============================================================
   CARGONXT WEST INDIA EDITION · MUMBAI 2026
   The World's Best Conference Website
   
   Vision: Editorial luxury meets kinetic energy.
   Like Wallpaper* magazine crashed into Davos.
   
   Typography: Plus Jakarta Sans + Playfair Display
   — Readable, elegant, unmistakably premium
============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand palette */
  --blue:        #1A4F9C;
  --blue-deep:   #0D3370;
  --blue-mid:    #1566B0;
  --teal:        #0C8F74;
  --teal-light:  #15AB8C;
  --green:       #0A7A5A;
  --red:         #C0212B;
  --gold:        #C4973A;
  --gold-light:  #DEB85A;
  --gold-pale:   #F5EED8;

  /* Neutrals */
  --white:   #FFFFFF;
  --cream:   #F7F5F0;
  --cream-2: #EEE9DF;
  --navy:    #050D1C;
  --navy-2:  #081425;
  --slate:   #2C3E58;
  --text:    #16202E;
  --muted:   #5A6B80;
  --light:   #8A9BB0;

  /* Typography */
  --serif:   'Playfair Display', Georgia, serif;
  --sans:    'Plus Jakarta Sans', sans-serif;

  /* Layout */
  --container: 1280px;
  --section:   7rem;
  --r:         3px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: var(--container); margin: 0 auto; padding: 0 2.5rem; }

/* ============================================================
   NAVIGATION
============================================================ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
}

#nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  backdrop-filter: blur(0px);
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
}

#nav.s::before {
  background: rgba(5,13,28,0.95);
  backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05), 0 4px 30px rgba(0,0,0,0.3);
}

.nav-w {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2.5rem;
  height: 74px;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-logo img { height: 44px; display: block; }

.nav-menu {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  gap: 0.25rem;
}

.nav-menu a {
  display: block;
  padding: 0.45rem 1rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
  border-radius: 3px;
}
.nav-menu a:hover { color: #fff; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--red);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.58rem 1.4rem;
  border-radius: var(--r);
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.2s;
}
.nav-cta:hover { background: #a01820; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-burger span { display: block; width: 22px; height: 1.5px; background: #fff; transition: all 0.3s; }
.nav-burger.o span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.o span:nth-child(2) { opacity: 0; }
.nav-burger.o span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mob {
  position: fixed;
  top: 74px; left: 0; right: 0;
  background: rgba(5,13,28,0.98);
  backdrop-filter: blur(24px);
  z-index: 999;
  padding: 1.5rem 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-mob.o { opacity: 1; visibility: visible; transform: translateY(0); }

.nav-ml {
  display: block;
  padding: 0.9rem 0;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.2s;
}
.nav-ml:hover { color: #fff; }

.nav-mcta {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem;
  border-radius: var(--r);
  text-decoration: none;
  margin-top: 1.2rem;
}

/* ============================================================
   HERO — Cinematic, Immersive
============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1920&q=80') center/cover no-repeat;
}

.hero-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    155deg,
    rgba(5,13,28,0.85) 0%,
    rgba(13,51,112,0.78) 30%,
    rgba(12,143,116,0.7) 62%,
    rgba(10,122,90,0.82) 100%
  );
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

/* Hexagonal pattern — top right */
.hero-hex {
  position: absolute;
  top: -30px; right: -30px;
  width: 520px; height: 520px;
  z-index: 2;
  pointer-events: none;
}

/* Subtle horizontal rule */
.hero-rule {
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08) 30%, rgba(255,255,255,0.08) 70%, transparent);
  z-index: 2;
}

/* Minimal transport icons — elegant, large, dim */
.hero-transport {
  position: absolute;
  bottom: 60px; left: 0; right: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  padding: 0 8%;
  pointer-events: none;
}

.hero-transport svg {
  fill: rgba(255,255,255,0.07);
  transition: fill 0.3s;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 100px 0 140px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: center;
}

/* Left */
.hero-left {}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid rgba(255,255,255,0.16);
  padding: 0.32rem 0.9rem;
  margin-bottom: 2rem;
  border-radius: 2px;
  opacity: 0;
  animation: up 1s 0.1s ease forwards;
}

.hero-tag span {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.hero-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold-light);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.3;transform:scale(0.7)} }

/* Summit logo — large, prominent */
.hero-logo-wrap {
  margin-bottom: 2rem;
  opacity: 0;
  animation: up 1s 0.2s ease forwards;
}

.hero-logo-wrap img {
  height: 180px;
  width: auto;
  display: block;
  filter: drop-shadow(0 6px 24px rgba(0,0,0,0.35)) brightness(1.08);
}

.hero-theme {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: 1.2rem;
  color: #ffffff;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 520px;
  opacity: 0;
  animation: up 1s 0.3s ease forwards;
  border-left: 3px solid var(--gold-light);
  padding-left: 1.2rem;
}

.hero-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 2rem;
  opacity: 0;
  animation: up 1s 0.4s ease forwards;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  padding-right: 1.4rem;
  margin-right: 1.4rem;
  border-right: 1px solid rgba(255,255,255,0.14);
}
.hero-meta-item:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.hero-meta-item svg { fill: var(--gold-light); flex-shrink: 0; }

.hero-kp {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: #ffffff;
  padding: 0.55rem 1.1rem;
  opacity: 0;
  animation: up 1s 0.5s ease forwards;
}
.hero-kp span {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-kp img {
  height: 52px;
  filter: none;
  opacity: 1;
}

/* Right — countdown card */
.hero-right {
  opacity: 0;
  animation: up 1s 0.3s ease forwards;
}

.hero-cd {
  background: rgba(5,13,28,0.55);
  backdrop-filter: blur(28px);
  border: 1px solid rgba(255,255,255,0.09);
  padding: 2.5rem;
}

.hero-cd-lbl {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-align: center;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}
.hero-cd-lbl::before, .hero-cd-lbl::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: rgba(196,151,58,0.4);
}

.hero-cd-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.hero-cd-unit {
  text-align: center;
  padding: 1.2rem 0.4rem;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.03);
}

.hero-cd-num {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 3.2rem;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.02em;
}

.hero-cd-sublbl {
  display: block;
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-top: 0.4rem;
}

.hero-cd-date {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.hero-cd-btns {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

/* ============================================================
   BUTTON SYSTEM
============================================================ */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 1.6rem;
  border-radius: var(--r);
  text-decoration: none;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(26,79,156,0.35);
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 8px 28px rgba(26,79,156,0.45); }

.btn-partner {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}
.btn-partner:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.4); }

.btn-nominate {
  background: var(--red);
  color: #fff;
}
.btn-nominate:hover { background: #a01820; }

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.12);
}
.btn-ghost:hover { color: #fff; border-color: rgba(255,255,255,0.3); }

.btn-dark {
  background: var(--navy);
  color: #fff;
}
.btn-dark:hover { background: var(--blue-deep); }

.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid rgba(26,79,156,0.25);
}
.btn-outline-blue:hover { background: var(--blue); color: #fff; border-color: var(--blue); }

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover { background: var(--gold-light); }

/* ============================================================
   3 OPTIONS STRIP
============================================================ */
.opt-strip {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.opt-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
}

.opt-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2.4rem 2.8rem;
  text-decoration: none;
  border-right: 1px solid rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}
.opt-item:last-child { border-right: none; }
.opt-item:hover { background: rgba(255,255,255,0.03); }

.opt-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.opt-nominate::after { background: var(--gold-light); }
.opt-partner::after  { background: linear-gradient(90deg, var(--blue), var(--teal)); }
.opt-delegate::after { background: rgba(255,255,255,0.18); }
.opt-item:hover::after { transform: scaleX(1); }

/* Nominate — gold, most prominent */
.opt-nominate { background: rgba(196,151,58,0.07); }
.opt-nominate .opt-icon { background: rgba(196,151,58,0.14); border-color: rgba(196,151,58,0.28); }
.opt-nominate .opt-icon svg { fill: var(--gold-light); }
.opt-nominate .opt-title { color: var(--gold-light); font-size: 1rem; }

/* Partner */
.opt-partner .opt-icon { background: rgba(21,102,176,0.14); border-color: rgba(21,102,176,0.28); }
.opt-partner .opt-icon svg { fill: #79BAEC; }
.opt-partner .opt-title { color: #fff; }

/* Delegate */
.opt-delegate .opt-icon { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); }
.opt-delegate .opt-icon svg { fill: rgba(255,255,255,0.45); }
.opt-delegate .opt-title { color: rgba(255,255,255,0.65); }

.opt-icon {
  width: 52px; height: 52px;
  border-radius: var(--r);
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.opt-title {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 0.2rem;
}

.opt-sub { font-size: 0.74rem; color: rgba(255,255,255,0.28); font-weight: 400; }

.opt-arr {
  margin-left: auto;
  fill: rgba(255,255,255,0.15);
  flex-shrink: 0;
  transition: fill 0.2s, transform 0.2s;
}
.opt-item:hover .opt-arr { fill: rgba(255,255,255,0.5); transform: translateX(4px); }

/* ============================================================
   SHARED SECTION STYLES
============================================================ */
section { padding: var(--section) 0; }

.eyebrow {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}
.eyebrow::before { content: ''; width: 18px; height: 1.5px; background: var(--teal); flex-shrink: 0; }
.eyebrow-c { justify-content: center; }
.eyebrow-c::before { display: none; }
.eyebrow-gold { color: var(--gold-light); }
.eyebrow-gold::before { background: var(--gold-light); }

.sh {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.2rem;
  letter-spacing: 0.01em;
}
.sh span { color: var(--blue); }
.sh-light { color: #fff; }
.sh-light span { color: var(--gold-light); }
.sh-c { text-align: center; }

.sb {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--muted);
  font-weight: 400;
  margin-bottom: 1.2rem;
}

/* ============================================================
   ABOUT
============================================================ */
#about {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin: 1.8rem 0 2.2rem;
}

.about-check {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
}
.about-check svg { fill: var(--teal); flex-shrink: 0; margin-top: 2px; }

.about-img {
  position: relative;
  padding-bottom: 2rem;
  padding-right: 2rem;
}

.about-img-main {
  width: 100%;
  height: 430px;
  object-fit: cover;
  display: block;
  box-shadow: 0 24px 60px rgba(0,0,0,0.14);
}

.about-img-sm {
  position: absolute;
  bottom: 0; right: 0;
  width: 200px; height: 200px;
  object-fit: cover;
  border: 5px solid var(--cream);
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.about-badge {
  position: absolute;
  top: 2.5rem; left: -2rem;
  background: var(--navy);
  padding: 1.2rem 1.6rem;
  text-align: center;
  border-left: 3px solid var(--gold);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.about-badge span {
  display: block;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 3rem;
  color: var(--gold-light);
  line-height: 1;
}

.about-badge p {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 0.3rem;
}

/* ============================================================
   NUMBERS
============================================================ */
.numbers {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-mid) 35%, var(--teal) 70%, var(--green) 100%);
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}

.numbers::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 30px 30px;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  position: relative;
  z-index: 1;
}

.num-item {
  text-align: center;
  padding: 1.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.num-item:last-child { border-right: none; }

.num-val {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 5.5rem;
  line-height: 0.9;
  color: #fff;
  letter-spacing: 0.01em;
  margin-bottom: 0.5rem;
}

.num-plus {
  font-family: var(--sans);
  font-size: 2rem;
  color: var(--gold-light);
  vertical-align: super;
  font-weight: 300;
}

.num-lbl {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ============================================================
   KEY DISCUSSION TOPICS — Beautiful editorial cards
============================================================ */
#topics {
  background: #fff;
}

.topics-header {
  text-align: center;
  margin-bottom: 5rem;
}

.topics-header .sh {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0;
  border: 1px solid rgba(0,0,0,0.08);
}

.topic-card {
  padding: 3rem 2.5rem;
  border-right: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}

.topic-card:nth-child(3n) { border-right: none; }
.topic-card:nth-child(4), .topic-card:nth-child(5) { border-bottom: none; }

/* Bottom row — 2 cards centred */
.topics-bottom {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  border: 1px solid rgba(0,0,0,0.08);
  border-top: none;
  max-width: 66.67%;
  margin-left: auto;
  margin-right: auto;
}

.topics-bottom .topic-card { border-right: 1px solid rgba(0,0,0,0.08); border-bottom: none; }
.topics-bottom .topic-card:last-child { border-right: none; }

.topic-card:hover { background: var(--cream); }

/* Left accent bar */
.topic-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: linear-gradient(180deg, var(--blue), var(--teal));
  transition: height 0.5s cubic-bezier(0.4,0,0.2,1);
}
.topic-card:hover::before { height: 100%; }

.topic-num {
  font-family: var(--serif);
  font-size: 6rem;
  font-weight: 300;
  color: rgba(12,143,116,0.06);
  position: absolute;
  top: 0; right: 1.2rem;
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.02em;
}

/* Icon — large, distinctive SVG for each topic */
.topic-icon-wrap {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(26,79,156,0.08) 0%, rgba(12,143,116,0.08) 100%);
  border: 1px solid rgba(12,143,116,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.35s ease;
}
.topic-icon-wrap svg { fill: var(--teal); transition: fill 0.3s; }
.topic-card:hover .topic-icon-wrap {
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(12,143,116,0.3);
}
.topic-card:hover .topic-icon-wrap svg { fill: #fff; }

.topic-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--text);
  margin-bottom: 0.8rem;
  line-height: 1.25;
  transition: color 0.3s;
}
.topic-card:hover .topic-title { color: var(--blue-deep); }

.topic-desc {
  font-size: 0.9rem;
  line-height: 1.78;
  color: var(--muted);
  font-weight: 400;
}

/* ============================================================
   RECOGNITIONS
============================================================ */
#recognitions {
  background: var(--navy-2);
  position: relative;
  overflow: hidden;
}

#recognitions::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 20% 50%, rgba(26,79,156,0.2) 0%, transparent 55%),
    radial-gradient(ellipse 40% 45% at 80% 30%, rgba(12,143,116,0.12) 0%, transparent 50%);
}

/* Diagonal stripe */
#recognitions::after {
  content: '';
  position: absolute;
  top: -100%; right: -5%;
  width: 50%; height: 300%;
  background: rgba(196,151,58,0.03);
  transform: rotate(-12deg);
  pointer-events: none;
}

.reco-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}

.reco-stats {
  display: flex;
  gap: 3rem;
  margin: 2.5rem 0;
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.reco-stat span {
  display: block;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 3rem;
  color: var(--gold-light);
  line-height: 1;
  letter-spacing: 0.01em;
}

.reco-stat p {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-top: 0.35rem;
}

.reco-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.reco-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.reco-trophy {
  width: 230px; height: auto;
  filter: drop-shadow(0 24px 60px rgba(196,151,58,0.45));
  animation: levitate 5s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

@keyframes levitate { 0%,100%{transform:translateY(0) rotate(-1deg)} 50%{transform:translateY(-20px) rotate(1deg)} }

.reco-glow {
  position: absolute;
  width: 320px; height: 90px;
  bottom: -10px;
  background: radial-gradient(ellipse, rgba(196,151,58,0.4) 0%, transparent 70%);
  filter: blur(20px);
  border-radius: 50%;
}

/* ============================================================
   PEOPLE (Advisory + Speakers)
============================================================ */
.people-section { padding: var(--section) 0; }
.people-adv { background: var(--cream); }
.people-spk { background: #fff; }

.people-header { margin-bottom: 3.5rem; }

.people-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: rgba(0,0,0,0.06);
  margin-bottom: 2.5rem;
}

.person-card {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  cursor: pointer;
}
.people-spk .person-card { background: #fff; }

.person-img-wrap {
  position: relative;
  overflow: hidden;
}

.person-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.person-card:hover .person-img { transform: scale(1.03); }


/* Name bar — bottom, always visible */
.person-bar {
  background: var(--navy);
  padding: 0.9rem 1.1rem;
  border-top: 2px solid var(--blue);
}

.person-name {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.2rem;
}

.person-role {
  font-size: 0.67rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  font-weight: 400;
  line-height: 1.35;
}

/* Hover: thin gold top line */
.person-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.person-card:hover::after { transform: scaleX(1); }

.people-va-wrap {
  text-align: center;
  margin-top: 1rem;
}

/* ============================================================
   PARTNERS
============================================================ */
#partners {
  background: var(--cream);
}

.partners-header { text-align: center; margin-bottom: 3.5rem; }

.logos-grid {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 1px;
  background: rgba(0,0,0,0.07);
  border: 1px solid rgba(0,0,0,0.07);
  margin-bottom: 4rem;
}

.logos-grid-4 { grid-template-columns: repeat(4,1fr); }

.logo-cell {
  background: #fff;
  padding: 2.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.logos-grid-4 .logo-cell { background: var(--cream); }

.logo-cell img {
  height: 38px; width: auto;
  object-fit: contain;
  /* FULL opacity — no tint, no greyscale */
  opacity: 1;
  filter: none;
  transition: transform 0.2s ease;
}
.logo-cell:hover img { transform: scale(1.05); }
.logo-cell:hover { background: #f0f9f6; }

.partners-subtitle {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--slate);
  text-align: center;
  margin: 3.5rem 0 1.5rem;
  letter-spacing: 0.02em;
}

/* ============================================================
   AGENDA
============================================================ */
#agenda {
  background: var(--navy);
}

.agenda-header { text-align: center; margin-bottom: 4rem; }

.agenda-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid rgba(255,255,255,0.07);
}

.agenda-table thead tr {
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.agenda-table thead th {
  padding: 1.1rem 1.6rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  text-align: left;
}

.agenda-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.15s;
}
.agenda-table tbody tr:hover { background: rgba(255,255,255,0.025); }
.agenda-table tbody tr:last-child { border-bottom: none; }

.agenda-table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}

.ag-time {
  font-family: var(--serif);
  font-size: 0.92rem;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  white-space: nowrap;
  min-width: 140px;
  font-weight: 400;
}

.ag-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.25rem;
  letter-spacing: 0.01em;
}

.ag-desc { font-size: 0.78rem; color: rgba(255,255,255,0.32); line-height: 1.55; font-weight: 400; }

.ag-badge {
  display: inline-block;
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.22rem 0.65rem;
  border-radius: 2px;
}

.b-s { background: rgba(26,79,156,0.22); color: #79baec; border: 1px solid rgba(26,79,156,0.32); }
.b-b { background: rgba(12,143,116,0.14); color: #5fcfaa; border: 1px solid rgba(12,143,116,0.25); }
.b-c { background: rgba(196,151,58,0.12); color: var(--gold-light); border: 1px solid rgba(196,151,58,0.22); }
.b-e { background: rgba(192,33,43,0.14); color: #f08090; border: 1px solid rgba(192,33,43,0.22); }
.b-g { background: var(--gold); color: var(--navy); font-weight: 700; }

/* ============================================================
   ROUNDTABLE — Animated orbit
============================================================ */
#roundtable {
  background: linear-gradient(135deg, #110207 0%, #22060e 45%, #110207 100%);
  position: relative;
  overflow: hidden;
}

#roundtable::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(192,33,43,0.2) 0%, transparent 60%);
}

.rt-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.rt-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid rgba(192,33,43,0.35);
  color: rgba(240,128,144,0.85);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.32rem 0.8rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.rt-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 3.8vw, 3.8rem);
  line-height: 1.05;
  color: #fff;
  margin-bottom: 1.2rem;
  letter-spacing: 0.01em;
}
.rt-title span { color: var(--red); }

.rt-desc {
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.38);
  margin-bottom: 2rem;
  font-weight: 400;
}

.rt-perks { display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 2.5rem; }

.rt-perk {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
}
.rt-perk svg { fill: var(--red); flex-shrink: 0; }

/* Animated orbit visual */
.rt-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit-stage {
  position: relative;
  width: 320px; height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Static rings */
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(192,33,43,0.15);
}
.ring-1 { inset: 0; }
.ring-2 { inset: 25px; border-color: rgba(192,33,43,0.09); }
.ring-3 { inset: 50px; border-color: rgba(192,33,43,0.06); }

/* Center */
.orbit-center {
  width: 90px; height: 90px;
  background: rgba(192,33,43,0.12);
  border: 1px solid rgba(192,33,43,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  position: relative;
}

.orbit-center span {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.04em;
  padding: 0 0.8rem;
}

/* Orbiting logos */
.orbit-track {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: spin 16s linear infinite;
}

.orbit-track-2 {
  animation: spin 24s linear infinite reverse;
  inset: 25px;
}

@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.orbit-node {
  position: absolute;
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%; left: 50%;
  margin: -24px 0 0 -24px;
}

.orbit-node img {
  width: 32px; height: 32px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.6;
  border-radius: 50%;
}

/* Counter-rotate so logos stay upright */
.orbit-node { animation: counter 16s linear infinite; }
.orbit-track-2 .orbit-node { animation: counter 24s linear infinite reverse; }

@keyframes counter { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }

/* Position nodes around the track */
.orbit-track .orbit-node:nth-child(1) { transform: translateX(-50%) translateY(-160px) rotate(0deg); transform-origin: 50% 160px; }
.orbit-track .orbit-node:nth-child(2) { transform: translateX(-50%) translateY(-160px) rotate(120deg); transform-origin: 50% 160px; }
.orbit-track .orbit-node:nth-child(3) { transform: translateX(-50%) translateY(-160px) rotate(240deg); transform-origin: 50% 160px; }

.orbit-track-2 .orbit-node:nth-child(1) { transform: translateX(-50%) translateY(-137px) rotate(60deg); transform-origin: 50% 137px; }
.orbit-track-2 .orbit-node:nth-child(2) { transform: translateX(-50%) translateY(-137px) rotate(180deg); transform-origin: 50% 137px; }
.orbit-track-2 .orbit-node:nth-child(3) { transform: translateX(-50%) translateY(-137px) rotate(300deg); transform-origin: 50% 137px; }

/* ============================================================
   COMPANIES ATTENDING
============================================================ */
#companies {
  background: #fff;
}

.companies-hdr { text-align: center; margin-bottom: 3.5rem; }

.companies-grid {
  display: grid;
  grid-template-columns: repeat(8,1fr);
  gap: 1px;
  background: rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
}

.co-cell {
  background: var(--cream);
  padding: 1.8rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.co-cell:hover { background: #fff; }
.co-cell img {
  height: 30px; width: auto;
  object-fit: contain;
  /* FULL visibility */
  opacity: 1;
  filter: none;
  transition: transform 0.2s;
}
.co-cell:hover img { transform: scale(1.06); }

/* ============================================================
   WHO WILL ATTEND
============================================================ */
#attend {
  background: var(--cream);
}

.attend-hdr { text-align: center; margin-bottom: 4.5rem; }

.attend-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.attend-sec-lbl {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.8rem;
}
.attend-sec-lbl::before { content: ''; display: block; width: 16px; height: 1.5px; background: var(--teal); }

.attend-sectors { display: flex; flex-wrap: wrap; gap: 0.55rem; }

.sector-pill {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 0.48rem 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  transition: all 0.2s;
  cursor: default;
}
.sector-pill:hover { background: var(--teal); border-color: var(--teal); color: #fff; }

.attend-bars { display: flex; flex-direction: column; gap: 0.8rem; }

.attend-bar-item {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: border-color 0.2s;
}
.attend-bar-item:hover { border-color: rgba(12,143,116,0.25); }

.attend-bar {
  height: 5px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  flex-shrink: 0;
}

.attend-lbl { font-size: 0.88rem; font-weight: 500; color: var(--text); flex: 1; }

.attend-pct {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--blue);
  letter-spacing: 0.01em;
}

/* ============================================================
   INDUSTRIES — Clean grid
============================================================ */
#industries {
  background: #fff;
}

.ind-hdr { text-align: center; margin-bottom: 3.5rem; }

.ind-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  border: 1px solid rgba(0,0,0,0.07);
}

.ind-item {
  padding: 1.5rem 1.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  border-right: 1px solid rgba(0,0,0,0.07);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: all 0.22s ease;
  background: #fff;
}

.ind-item:nth-child(4n) { border-right: none; }
.ind-item:nth-last-child(-n+4) { border-bottom: none; }

.ind-item:hover {
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
  color: #fff;
  border-color: transparent;
}

.ind-item span { font-size: 1.15rem; }

/* ============================================================
   WHY PARTNER
============================================================ */
#why-partner {
  background: var(--navy-2);
  position: relative;
  overflow: hidden;
}

#why-partner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(12,143,116,0.07) 0%, transparent 60%);
}

.wp-hdr { text-align: center; margin-bottom: 4.5rem; position: relative; z-index: 1; }

.wp-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
  margin-bottom: 4rem;
}

.wp-card {
  border: 1px solid rgba(255,255,255,0.06);
  padding: 2.5rem 2.2rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s;
}

.wp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s ease;
}

.wp-card:hover { border-color: rgba(255,255,255,0.12); background: rgba(255,255,255,0.03); }
.wp-card:hover::before { transform: scaleX(1); }

.wp-icon {
  width: 54px; height: 54px;
  background: rgba(12,143,116,0.1);
  border: 1px solid rgba(12,143,116,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.6rem;
  transition: all 0.3s;
}
.wp-icon svg { fill: var(--teal-light); transition: fill 0.3s; }
.wp-card:hover .wp-icon { background: var(--teal); border-color: var(--teal); }
.wp-card:hover .wp-icon svg { fill: #fff; }

.wp-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.7rem;
  letter-spacing: 0.01em;
}

.wp-desc { font-size: 0.88rem; line-height: 1.82; color: rgba(255,255,255,0.32); font-weight: 400; }

.wp-cta { text-align: center; position: relative; z-index: 1; }

/* ============================================================
   CONTACT
============================================================ */
#contact {
  background: #fff;
}

.contact-card {
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.04);
  position: relative;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
}

.contact-left {
  padding: 4rem;
  border-right: 1px solid rgba(255,255,255,0.05);
}

.contact-right {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.5rem;
}

.contact-title {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}
.contact-title span { color: var(--gold-light); font-style: italic; }

.contact-sub { font-size: 0.95rem; line-height: 1.82; color: rgba(255,255,255,0.35); margin-bottom: 2rem; font-weight: 400; }

.contact-links { display: flex; flex-direction: column; gap: 0.8rem; }

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}
.contact-link svg { fill: var(--gold-light); flex-shrink: 0; }
.contact-link:hover { color: #fff; }

.contact-person {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.contact-photo {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(196,151,58,0.3);
  flex-shrink: 0;
}

.contact-p-role { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 0.3rem; }
.contact-p-name { font-family: var(--serif); font-size: 1.2rem; font-weight: 500; color: #fff; }
.contact-p-org  { font-size: 0.74rem; color: rgba(255,255,255,0.35); margin-top: 0.1rem; }

.contact-btns { display: flex; flex-direction: column; gap: 0.7rem; }

/* ============================================================
   FOOTER
============================================================ */
footer {
  background: #020810;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.foot-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.foot-brand { display: flex; align-items: center; gap: 1rem; }
.foot-brand p { font-size: 0.75rem; color: rgba(255,255,255,0.22); line-height: 1.6; font-weight: 400; }

.foot-links { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.foot-links a { font-size: 0.73rem; color: rgba(255,255,255,0.28); text-decoration: none; letter-spacing: 0.06em; transition: color 0.2s; }
.foot-links a:hover { color: var(--gold-light); }

.foot-copy p { font-size: 0.7rem; color: rgba(255,255,255,0.16); text-align: right; }

/* WhatsApp */
.wa-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 52px; height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  box-shadow: 0 4px 18px rgba(37,211,102,0.45);
  text-decoration: none;
  transition: transform 0.2s;
}
.wa-float svg { fill: #fff; }
.wa-float:hover { transform: scale(1.1); }

/* ============================================================
   ANIMATIONS
============================================================ */
@keyframes up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: 0.09s; }
.reveal:nth-child(3) { transition-delay: 0.18s; }
.reveal:nth-child(4) { transition-delay: 0.27s; }
.reveal:nth-child(5) { transition-delay: 0.36s; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
  .nav-menu { display: none; }
  .nav-burger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-right { max-width: 420px; }
  .about-grid, .reco-inner, .rt-inner { grid-template-columns: 1fr; gap: 3rem; }
  .attend-grid { grid-template-columns: 1fr; gap: 3rem; }
  .people-grid { grid-template-columns: repeat(3,1fr); }
  .topics-grid { grid-template-columns: repeat(2,1fr); }
  .topics-bottom { max-width: 100%; }
  .companies-grid { grid-template-columns: repeat(4,1fr); }
  .logos-grid { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 768px) {
  :root { --section: 5rem; }
  .numbers-grid { grid-template-columns: repeat(2,1fr); }
  .hero-logo-wrap img { height: 100px; }
  .wp-grid { grid-template-columns: 1fr 1fr; }
  .people-grid { grid-template-columns: repeat(2,1fr); }
  .opt-grid { grid-template-columns: 1fr; }
  .ind-grid { grid-template-columns: repeat(2,1fr); }
  .contact-card { grid-template-columns: 1fr; }
  .contact-left { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
}

@media (max-width: 560px) {

  /* Agenda table — stack layout on mobile */
  .agenda-table,
  .agenda-table thead,
  .agenda-table tbody,
  .agenda-table tr,
  .agenda-table td,
  .agenda-table th {
    display: block;
    width: 100%;
  }

  .agenda-table thead { display: none; }

  .agenda-table tbody tr {
    padding: 1.2rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
  }

  .agenda-table tbody td {
    padding: 0;
    border: none;
    min-width: unset;
  }

  .ag-time {
    font-size: 0.78rem;
    margin-bottom: 0.4rem;
    display: block;
  }

  .ag-title {
    font-size: 0.92rem;
    margin-bottom: 0.3rem;
  }

  .ag-desc {
    font-size: 0.75rem;
    margin-bottom: 0.6rem;
  }

  /* Badge floats to bottom right */
  .agenda-table tbody td:last-child {
    position: absolute;
    top: 1.2rem;
    right: 1rem;
    width: auto;
  }

}