:root {
  --pink: #f85c8e;
  --pink-dark: #e14a7c;
  --pink-soft: #ffe4ee;
  --navy: #2a2d5a;
  --navy-2: #23264d;
  --navy-dark: #1c1f40;
  --heading: #2a2d5a;
  --text: #6b6f8a;
  --muted: #8b90a8;
  --white: #ffffff;
  --off: #f6f7fb;
  --line: #ececf4;
  --shadow: 0 10px 40px rgba(42, 45, 90, 0.08);
  --radius: 4px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: .25s ease; }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; }
.container { width: min(1200px, calc(100% - 40px)); margin: 0 auto; }
.container-wide { width: min(1280px, calc(100% - 40px)); margin: 0 auto; }

.accent { color: var(--pink); }
.mark {
  color: var(--pink);
  position: relative;
  display: inline-block;
}
.mark::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 6px;
  height: 10px;
  background: rgba(248, 92, 142, .22);
  z-index: -1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--pink);
  color: var(--white);
  border: 0;
  min-height: 52px;
  padding: 12px 28px;
  font-weight: 600;
  letter-spacing: .4px;
  text-transform: uppercase;
  font-size: 13px;
  border-radius: 4px;
  cursor: pointer;
  transition: .25s ease;
}
.btn:hover { background: var(--navy); color: var(--white); }
.btn-outline {
  background: transparent;
  border: 1px solid var(--pink);
  color: var(--pink);
}
.btn-outline:hover { background: var(--pink); color: var(--white); }
.btn-white { background: var(--white); color: var(--pink); }
.btn-white:hover { background: var(--navy); color: var(--white); }

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 18px 0;
}
.site-header.is-sticky {
  position: fixed;
  background: var(--navy);
  box-shadow: 0 8px 30px rgba(0,0,0,.18);
  padding: 12px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: .2px;
  flex-shrink: 0;
}
.logo img { width: 42px; height: 42px; object-fit: contain; }
.logo span { font-family: "Poppins", sans-serif; }

.header-actions { display: flex; align-items: center; gap: 16px; }
.search-open, .menu-toggle {
  background: none;
  border: 0;
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
}
.menu-toggle { display: none; }
.btn-ticket { min-height: 46px; padding: 10px 22px; }

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .6px;
  text-transform: uppercase;
}
.main-nav a:hover,
.main-nav a.active { color: var(--pink); }
.has-dropdown { position: relative; }
.has-dropdown > a i { font-size: 10px; margin-left: 4px; }
.dropdown {
  position: absolute;
  top: 130%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .2s ease;
  z-index: 20;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.dropdown a {
  display: block;
  color: var(--heading);
  padding: 8px 20px;
  text-transform: capitalize;
  font-weight: 500;
  letter-spacing: 0;
}
.dropdown a:hover { color: var(--pink); background: var(--off); }

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(42,45,90,.78), rgba(248,92,142,.45)),
    var(--hero-image) center/cover no-repeat;
  overflow: hidden;
}
.hero-home { padding: 140px 0 0; min-height: 880px; }
.hero-inner { position: relative; z-index: 2; max-width: 820px; }
.hero-kicker {
  color: var(--pink);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.08;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero p { font-size: 18px; max-width: 640px; color: rgba(255,255,255,.88); margin-bottom: 28px; }
.hero-map {
  position: absolute;
  inset: auto 0 8% auto;
  width: 52%;
  opacity: .18;
  pointer-events: none;
}

.page-hero {
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
  background:
    linear-gradient(120deg, rgba(30,33,72,.82), rgba(248,92,142,.42)),
    var(--hero-image) center/cover no-repeat;
}
.page-hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  color: var(--white);
  font-weight: 800;
}

.countdown-wrap {
  margin-top: 70px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(6px);
  padding: 22px;
}
.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.count-box {
  background: var(--white);
  color: var(--pink);
  text-align: center;
  padding: 22px 10px;
}
.count-box strong {
  display: block;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  color: var(--pink);
}
.count-box span {
  display: block;
  margin-top: 8px;
  color: var(--heading);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.section { padding: 110px 0; position: relative; overflow: hidden; }
.section-sm { padding: 80px 0; }
.bg-off { background: var(--off); }
.bg-white { background: var(--white); }
.watermark {
  position: absolute;
  left: 50%;
  top: 40px;
  transform: translateX(-50%);
  font-size: clamp(70px, 12vw, 160px);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(42,45,90,.08);
  letter-spacing: 4px;
  text-transform: uppercase;
  pointer-events: none;
  white-space: nowrap;
}
.sec-kicker {
  color: var(--pink);
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}
.sec-title {
  color: var(--heading);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.25;
  font-weight: 800;
  margin-bottom: 18px;
  text-transform: capitalize;
}
.sec-title.center, .center { text-align: center; }
.lead { max-width: 640px; margin-bottom: 24px; }

.grid-2 { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.grid-2-rev { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.feature-stack { display: grid; gap: 22px; max-width: 420px; }
.feature-card {
  background: var(--white);
  border: 1px solid #f3c7d6;
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.feature-card:nth-child(2) { margin-left: 50px; }
.feature-card i {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  color: var(--pink);
  font-size: 26px;
  margin-bottom: 10px;
}
.feature-card h4 { color: var(--heading); font-size: 20px; margin-bottom: 6px; }

.photo-collage {
  position: relative;
  min-height: 520px;
}
.photo-collage img {
  position: absolute;
  object-fit: cover;
  border: 8px solid var(--white);
  box-shadow: var(--shadow);
}
.photo-collage .p1 { width: 58%; height: 320px; top: 0; right: 0; }
.photo-collage .p2 { width: 48%; height: 250px; left: 0; top: 90px; }
.photo-collage .p3 { width: 46%; height: 220px; right: 8%; bottom: 0; }

.stats {
  background: var(--off);
  padding: 50px 0;
}
.stat { text-align: center; }
.stat strong {
  display: block;
  font-size: 48px;
  color: var(--heading);
  font-weight: 800;
  line-height: 1;
}
.stat span { color: var(--muted); font-weight: 500; }

.schedule-list { display: grid; gap: 18px; }
.schedule-card {
  display: grid;
  grid-template-columns: 220px 1fr 180px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.sched-time {
  background: var(--pink);
  color: var(--white);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.schedule-card:nth-child(even) .sched-time { background: #d94886; }
.sched-time small { opacity: .9; font-size: 13px; }
.sched-time strong { font-size: 18px; margin-top: 6px; }
.sched-body { padding: 26px 28px; }
.sched-body h3 { color: var(--heading); font-size: 22px; margin-bottom: 8px; }
.sched-meta { display: flex; gap: 18px; margin-top: 12px; color: var(--muted); font-size: 14px; }
.sched-meta i { color: var(--pink); margin-right: 6px; }
.sched-speaker {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  border-left: 1px solid var(--line);
  text-align: center;
}
.sched-speaker img {
  width: 70px; height: 70px; border-radius: 50%; object-fit: cover;
}
.sched-speaker b { color: var(--pink); font-size: 14px; }
.sched-speaker span { font-size: 12px; color: var(--muted); }

.speaker-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; grid-template-rows: 240px 240px; gap: 18px; }
.speaker-card { position: relative; overflow: hidden; }
.speaker-card img { width: 100%; height: 100%; object-fit: cover; }
.speaker-card.tall { grid-row: span 2; }
.speaker-info {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(24,26,58,.88));
  color: var(--white);
}
.speaker-info h4 { font-size: 18px; }
.speaker-info span { color: var(--pink); font-size: 13px; }

.speakers-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.speaker-tile {
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.speaker-tile img { width: 100%; height: 320px; object-fit: cover; }
.speaker-tile .body { padding: 20px; text-align: center; }
.speaker-tile h3 { color: var(--heading); font-size: 22px; }
.speaker-tile span { color: var(--pink); display: block; margin: 4px 0 10px; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 42px 32px 32px;
  text-align: center;
  box-shadow: var(--shadow);
}
.price-card.featured {
  background: var(--navy);
  color: rgba(255,255,255,.8);
  transform: scale(1.04);
}
.price-card h3 { color: var(--heading); font-size: 24px; }
.price-card.featured h3, .price-card.featured .amount, .price-card.featured li { color: var(--white); }
.price-card .pkg { color: var(--pink); margin: 6px 0 18px; font-weight: 600; }
.amount { font-size: 48px; font-weight: 800; color: var(--heading); line-height: 1; }
.amount small { font-size: 16px; font-weight: 500; }
.price-card ul { margin: 24px 0; }
.price-card li { padding: 8px 0; border-bottom: 1px dashed var(--line); }
.price-card.featured li { border-color: rgba(255,255,255,.15); }
.price-note { font-size: 12px; margin-top: 14px; color: var(--muted); }

.cta-band {
  background:
    linear-gradient(100deg, rgba(42,45,90,.88), rgba(80,40,90,.7)),
    url("https://images.unsplash.com/photo-1540575467063-178a50c2df87?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: var(--white);
  padding: 90px 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); font-size: clamp(28px, 3.6vw, 48px); font-weight: 800; margin: 8px 0 16px; }
.cta-split {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  background: var(--pink);
}
.cta-count {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--white);
  text-align: center;
  padding: 28px 10px;
}
.cta-count strong { display: block; font-size: 28px; }
.cta-book {
  background: var(--navy);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 36px;
}
.cta-book h3 { color: var(--white); font-size: 28px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-grid img { width: 100%; height: 250px; object-fit: cover; }
.gallery-item { overflow: hidden; position: relative; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item img { transition: .4s ease; }

.t-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 32px 28px;
  box-shadow: var(--shadow);
}
.t-card .quote { font-size: 42px; color: #e6e7ef; line-height: 1; }
.t-card p { margin: 12px 0 20px; }
.t-user { display: flex; align-items: center; gap: 12px; }
.t-user img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; }
.t-user b { display: block; color: var(--pink); }
.t-user span { font-size: 13px; color: var(--muted); }
.testi-hero-row { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; }

.partners { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.partner {
  border: 1px solid var(--line);
  min-height: 110px;
  display: grid;
  place-items: center;
  color: var(--heading);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--white);
}
.partner span { opacity: .55; }

.news-card { background: var(--white); box-shadow: var(--shadow); overflow: hidden; }
.news-card .thumb { position: relative; }
.news-card img { width: 100%; height: 230px; object-fit: cover; }
.tag {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--pink);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
}
.news-card .body { padding: 22px; }
.news-card h3 { color: var(--heading); font-size: 20px; margin-bottom: 10px; }
.news-card h3:hover { color: var(--pink); }
.more { color: var(--pink); font-weight: 700; font-size: 13px; letter-spacing: .4px; text-transform: uppercase; }
.meta { color: var(--muted); font-size: 13px; margin-top: 14px; }

.info-boxes { display: grid; gap: 18px; }
.info-box {
  display: grid;
  grid-template-columns: 90px 1fr;
  border: 1px solid #f0b8cb;
  overflow: hidden;
  background: var(--white);
}
.info-ico {
  background: var(--pink);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 28px;
}
.info-box .txt { padding: 22px; }
.info-box h4 { color: var(--heading); margin-bottom: 6px; }

.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 50px; }
.contact-card {
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
  padding: 40px 24px;
}
.contact-card .ico {
  width: 74px; height: 74px; margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  display: grid; place-items: center;
  font-size: 26px;
}
.contact-card h3 { color: var(--heading); margin-bottom: 8px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  min-height: 52px;
  padding: 12px 16px;
  outline: none;
  color: var(--heading);
}
.form-field textarea { min-height: 150px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus { border-color: var(--pink); }
.form-field input.is-invalid, .form-field textarea.is-invalid, .form-field select.is-invalid {
  border-color: #e24b4b;
  background: #fff7f7;
}
.form-error { display: none; color: #e24b4b; font-size: 13px; margin-top: 6px; }
.form-success {
  display: none;
  margin-top: 16px;
  background: #e9f8ef;
  color: #1c7a45;
  border: 1px solid #b7e4c7;
  padding: 14px 16px;
  font-weight: 600;
}
.faq-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: start; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  padding: 18px 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--heading);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.faq-question i { color: var(--pink); }
.faq-answer { display: none; padding: 0 0 18px; }
.faq-item.is-open .faq-answer { display: block; }
.faq-item.is-open .faq-question { color: var(--pink); }
.ask-card { background: var(--off); padding: 36px 30px; }

.layout-2 { display: grid; grid-template-columns: 1.7fr .8fr; gap: 40px; align-items: start; }
.sidebar { display: grid; gap: 24px; }
.widget { background: var(--off); padding: 24px; }
.widget h3 { color: var(--heading); margin-bottom: 16px; font-size: 20px; }
.widget li { padding: 8px 0; }
.widget li a:hover { color: var(--pink); }
.recent { display: grid; grid-template-columns: 70px 1fr; gap: 12px; margin-bottom: 14px; }
.recent img { width: 70px; height: 70px; object-fit: cover; }
.help-card {
  background:
    linear-gradient(160deg, rgba(42,45,90,.92), rgba(248,92,142,.55)),
    url("https://images.unsplash.com/photo-1511578314322-379afb476865?auto=format&fit=crop&w=800&q=80") center/cover;
  color: var(--white);
  padding: 32px 26px;
}
.help-card h3 { color: var(--white); margin-bottom: 10px; }
.event-hero-img { width: 100%; height: 420px; object-fit: cover; margin-bottom: 28px; }
.quote-box {
  background: var(--pink);
  color: var(--white);
  padding: 28px;
  margin: 24px 0;
  position: relative;
}
.keys { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; margin-top: 10px; }
.keys li::before { content: "> "; color: var(--pink); font-weight: 700; }
.progress { margin: 16px 0 22px; }
.progress span { display: flex; justify-content: space-between; color: var(--heading); font-weight: 600; margin-bottom: 6px; }
.bar { height: 8px; background: #eee; }
.bar i { display: block; height: 100%; background: var(--pink); }
.speaker-profile { display: grid; grid-template-columns: 360px 1fr; gap: 40px; align-items: start; }
.speaker-profile img { width: 100%; height: 420px; object-fit: cover; }
.contact-lines { margin-top: 18px; display: grid; gap: 10px; }
.contact-lines i { color: var(--pink); width: 22px; }

.legal h2 { color: var(--heading); font-size: 26px; margin: 28px 0 10px; }
.legal h3 { color: var(--heading); font-size: 20px; margin: 22px 0 8px; }
.legal p, .legal li { margin-bottom: 12px; }
.legal ul { padding-left: 20px; list-style: disc; }
.legal ol { padding-left: 20px; }

.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 40px; }
.pagination a {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  color: var(--heading);
  font-weight: 600;
}
.pagination a.active, .pagination a:hover { background: var(--pink); color: var(--white); border-color: var(--pink); }

.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.78);
  padding: 80px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 1.3fr .9fr .9fr 1.1fr; gap: 36px; padding-bottom: 50px; }
.site-footer h4 { color: var(--white); font-size: 20px; margin-bottom: 18px; }
.site-footer .logo { margin-bottom: 14px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a:hover { color: var(--pink); }
.footer-links i { color: var(--pink); margin-right: 8px; font-size: 12px; }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,.25);
  display: grid; place-items: center;
  color: var(--white);
}
.socials a:hover { background: var(--pink); border-color: var(--pink); }
.site-footer input {
  width: 100%;
  min-height: 48px;
  border: 0;
  padding: 10px 14px;
  margin: 12px 0;
}
.copyright {
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: center;
  padding: 18px 0;
  font-size: 14px;
}

.search-modal {
  position: fixed;
  inset: 0;
  background: rgba(24, 26, 58, .92);
  display: none;
  place-items: center;
  z-index: 200;
  padding: 20px;
}
.search-modal.is-open { display: grid; }
.search-modal form { width: min(640px, 100%); }
.search-modal input {
  width: 100%;
  min-height: 64px;
  border: 0;
  padding: 0 20px;
  font-size: 18px;
}
.search-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: 0;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
}

.circles {
  position: absolute;
  width: 280px; height: 280px;
  border: 18px solid rgba(248,92,142,.18);
  border-radius: 50%;
  right: 8%;
  top: 20%;
  pointer-events: none;
}
.circles::after {
  content: "";
  position: absolute;
  inset: 28px;
  border: 18px solid rgba(248,92,142,.12);
  border-radius: 50%;
}

@media (max-width: 991px) {
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--navy);
    display: none;
    padding: 16px 20px 24px;
  }
  .main-nav.is-open { display: block; }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 12px; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; display: none; background: transparent; box-shadow: none; padding: 8px 0 8px 12px; }
  .has-dropdown.is-open .dropdown { display: block; }
  .dropdown a { color: var(--white); }
  .grid-2, .grid-2-rev, .grid-3, .grid-4, .grid-6,
  .pricing-grid, .gallery-grid, .speakers-page-grid,
  .faq-layout, .layout-2, .speaker-profile, .contact-cards,
  .footer-grid, .cta-split, .schedule-card, .speaker-grid,
  .testi-hero-row, .form-grid, .keys {
    grid-template-columns: 1fr;
  }
  .speaker-grid { grid-template-rows: none; }
  .speaker-card.tall { grid-row: auto; height: 320px; }
  .speaker-card { height: 260px; }
  .feature-card:nth-child(2) { margin-left: 0; }
  .price-card.featured { transform: none; }
  .photo-collage { min-height: 420px; }
  .hero-home { min-height: 760px; }
  .btn-ticket { display: none; }
}
@media (max-width: 640px) {
  .countdown, .cta-count, .partners { grid-template-columns: 1fr 1fr; }
  .hero-home { min-height: 680px; padding-top: 120px; }
  .section { padding: 70px 0; }
  .sched-speaker { display: none; }
}
