:root {
  --bg: #ffffff;
  --panel: rgba(255, 255, 255, 0.82);
  --surface: #f8fafc;
  --copy: #111827;
  --muted: #6b7280;
  --border: rgba(15, 23, 42, 0.08);
  --primary: #4285f4;
  --secondary: #34a853;
  --accent: #fbcc05;
  --danger: #ea4335;
  --shadow: 0 30px 80px rgba(15, 23, 42, 0.08);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  color: var(--copy);
  min-height: 100vh;
}

button,
input,
textarea,
select {
  font: inherit;
}

h2 {
  font-size: clamp(2.4rem, 3vw, 3rem);
  line-height: 1.02;
  margin: 0 0 1rem;
}

.page-shell {
  overflow: hidden;
}

.top-accent {
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #4285f4, #34a853 24%, #fbbc05 48%, #ea4335 72%, #4285f4 100%);
}

.site-container {
  width: min(1300px, 100%);
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-bar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  width: 100%;
  background: transparent;
  color: #111827;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease;
}

.nav-bar.scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-mark {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.brand-mark span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: currentColor;
}

.brand-mark span:nth-child(1) { background: #4285f4; }
.brand-mark span:nth-child(2) { background: #34a853; }
.brand-mark span:nth-child(3) { background: #ea4335; }

.brand-title {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.logo-group,
.logo-pill {
  display: none;
}

.nav-menu {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.button,
.btn {
  border: none;
  border-radius: 999px;
  padding: 0.95rem 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-decoration: none;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
  color: #fff;
  box-shadow: 0 18px 40px rgba(66, 133, 244, 0.18);
}

.button-secondary {
  background: rgba(15, 23, 42, 0.05);
  color: var(--copy);
}

.hero-header {
  position: relative;
  /* padding: 4rem 0 4rem; */
  background: radial-gradient(circle at top left, rgba(66, 133, 244, 0.16), transparent 32%),
    radial-gradient(circle at top right, rgba(251, 188, 5, 0.14), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  overflow: hidden;
}

.hero-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
  min-height: calc(100vh - 156px);
  padding: 2.5rem 0 2rem;
}

.hero-copy {
}

.hero-badge {
  display: inline-flex;
  margin-bottom: 1.2rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(66, 133, 244, 0.1);
  color: #4285f4;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.hero-copy h1 {
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero-copy h1 span {
  display: block;
  background: linear-gradient(90deg, #4b6cf7 0%, #ea4335 100%);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.75rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.eyebrow,
.section-eyebrow {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(66, 133, 244, 0.08);
  color: #4285f4;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-copy h1,
.overview-copy h2,
.research-copy h2,
.form-header h2,
.contact-copy h2 {
  margin: 0 0 1rem;
  line-height: 1.02;
}

.hero-copy h1 span {
  background: linear-gradient(90deg, #4b6cf7 0%, #ea4335 100%);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 1.3rem;
}

.hero-description {
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.75rem;
  color: var(--muted);
  font-size: 1.5rem;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-partners {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.partner-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--copy);
  font-size: 0.95rem;
}

.hero-highlights {
  display: none;
}

.hero-highlights span {
  background: rgba(15, 23, 42, 0.05);
  padding: 0.85rem 1rem;
  border-radius: 999px;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-illustration {
  position: relative;
  width: min(100%, 540px);
  min-height: 560px;
  border-radius: 36px;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 1.5rem;
  border-radius: 32px;
  background: linear-gradient(180deg, rgb(241 245 249 / 33%), rgba(255, 255, 255, 0.2)), url(../images/pexels-photo-8761637.jpg);
  background-size: cover;
  background-position: center;
  filter: saturate(0.95) brightness(0.95);
}

.hero-card {
  position: absolute;
  width: clamp(180px, 28%, 240px);
  padding: 1.35rem 1.4rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(18px);
}

.hero-card .card-label {
  display: inline-flex;
  margin-bottom: 0.65rem;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  font-size: 1.65rem;
  margin-bottom: 0.45rem;
}

.hero-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-card-top {
  top: 2rem;
  right: 1.5rem;
}

.hero-card-bottom {
  bottom: 2rem;
  left: 1.5rem;
}

.hero-illustration::before {
  content: '';
  position: absolute;
  inset: -40% 0 0 -20%;
  background: radial-gradient(circle at 20% 30%, rgba(66, 133, 244, 0.22), transparent 35%);
}

.illustration-layer {
  position: absolute;
  inset: 1.5rem;
  background: linear-gradient(180deg, rgba(52, 168, 83, 0.08), rgba(255, 255, 255, 0));
  border-radius: 2rem;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.8;
  animation: float 10s ease-in-out infinite alternate;
}

.blob-1 { width: 180px; height: 180px; background: rgba(66, 133, 244, 0.28); top: 18%; left: 12%; }
.blob-2 { width: 140px; height: 140px; background: rgba(52, 168, 83, 0.25); bottom: 20%; right: 10%; animation-duration: 12s; }
.blob-3 { width: 220px; height: 220px; background: rgba(251, 188, 5, 0.2); top: 12%; right: 18%; animation-duration: 14s; }

.hero-stat {
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  padding: 1rem 1.3rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(66, 133, 244, 0.12);
  color: #111827;
  font-weight: 700;
}

.section-intro {
  text-align: center;
  padding: 0 1rem;
  margin-bottom: 2rem;
}

.section-intro h2 {
  margin-top: 0.5rem;
}

.countdown-section {
  padding: 4rem 2rem 2rem;
}

.countdown-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.countdown-card {
  padding: 1.6rem;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid rgba(15, 23, 42, 0.08);
  text-align: center;
}

.countdown-value {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: var(--copy);
}

.features-section,
.details-section,
.speakers-section,
.agenda-section,
.research-section,
.guests-section,
.contact-section {
  padding: 4rem 2rem;
}

.details-section {
  padding-top: 3.5rem;
}

.details-copy h2 {
  margin: 0.75rem 0 1.25rem;
  line-height: 1.02;
}

.details-copy p {
  color: var(--muted);
  line-height: 1.8;
}

.detail-list .detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: var(--surface);
  padding: 1.45rem 1.3rem;
  min-height: 130px;
}

.detail-item > div {
  min-width: 0;
}

.detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(15, 23, 42, 0.06);
}

.detail-icon::before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: currentColor;
}

.detail-icon-date {
  background: rgba(66, 133, 244, 0.12);
  color: #4285f4;
}

.detail-icon-date::before {
  width: 18px;
  height: 20px;
  background: #4285f4;
}

.detail-icon-time {
  background: rgba(234, 67, 53, 0.12);
  color: #ea4335;
}

.detail-icon-time::before {
  width: 18px;
  height: 18px;
  background: #ea4335;
}

.detail-icon-venue {
  background: rgba(52, 168, 83, 0.15);
  color: #34a853;
}

.detail-icon-venue::before {
  width: 18px;
  height: 18px;
  background: #34a853;
}

.detail-label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 0.45rem;
}

.detail-item strong {
  display: block;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--copy);
}

.details-panel {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: var(--panel);
  box-shadow: var(--shadow);
  padding: 2rem;
}

.details-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #4285f4 18%, #ea4335 38%, #fbbc05 58%, #34a853 84%);
}

.details-panel-inner {
  position: relative;
  z-index: 1;
}

.details-eyebrow {
  display: inline-flex;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 700;
  color: #4285f4;
}

.details-panel h3 {
  margin: 0.85rem 0 0;
  font-size: clamp(2.2rem, 2.7vw, 2.6rem);
  line-height: 1.03;
}

.countdown-metric {
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: var(--surface);
  padding: 1.5rem 1rem;
  min-height: 145px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
}

.countdown-metric strong {
  display: block;
  font-size: 2.7rem;
  line-height: 1;
  color: var(--copy);
}

.countdown-metric span {
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.countdown-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.details-image {
  min-height: 320px;
  background: linear-gradient(135deg, rgba(66, 133, 244, 0.18), rgba(52, 168, 83, 0.08));
  border-radius: 28px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow);
  background-size: cover;
  background-position: center;
  background-image: url('../images/pexels-photo-8761637.jpg');
}

.features-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: flex-start;
}

.features-copy {
}

.features-copy h2 {
  margin: 0.75rem 0 1.5rem;
  line-height: 0.98;
}

.features-copy p {
  color: var(--muted);
  line-height: 1.8;
}

.overview-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
  padding: 4rem 2rem;
}

.overview-copy {
}

.overview-stats-grid {
}

.mini-stat-card {
  background: var(--surface);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  padding: 1.5rem 0.8rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.mini-stat-card strong {
  font-size: 2rem;
  line-height: 1;
  color: var(--primary);
}

.mini-stat-card span {
  color: var(--muted);
  font-size: 0.95rem;
}

.overview-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: var(--panel);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  min-height: 100%;
}

.report-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.report-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  background: rgba(66, 133, 244, 0.1);
  color: #4285f4;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-pill-row {
  display: flex;
  gap: 0.45rem;
}

.report-pill-row span {
  width: 18px;
  height: 8px;
  border-radius: 999px;
  display: inline-block;
}

.report-pill-row span:nth-child(1) { background: #4285f4; }
.report-pill-row span:nth-child(2) { background: #34a853; }
.report-pill-row span:nth-child(3) { background: #fbbc05; }
.report-pill-row span:nth-child(4) { background: #ea4335; }

.overview-card h3 {
  margin: 0;
  font-size: clamp(1.9rem, 2.5vw, 2.2rem);
  line-height: 1.05;
}

.report-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.report-meta span {
  display: inline-flex;
  background: rgba(15, 23, 42, 0.05);
  border-radius: 999px;
  padding: 0.65rem 0.95rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}

.stat-card {
  background: var(--panel);
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-size: 1.05rem;
  font-weight: 700;
}

.stat-value {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.overview-visual,
.research-card,
.guest-card,
.speaker-card,
.detail-card,
.feature-card,
.form-shell,
.contact-map {
  background: var(--panel);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.overview-visual {
  min-height: 420px;
  padding: 2rem;
  position: relative;
}

.illustration-block {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background: radial-gradient(circle at top left, rgba(66, 133, 244, 0.16), transparent 30%),
    radial-gradient(circle at bottom right, rgba(52, 168, 83, 0.15), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #eef7ff 100%);
}

.overview-copy p,
.research-copy p,
.guest-card p,
.speaker-card p,
.contact-copy p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.8;
}

.highlight-card {
  padding: 1.5rem;
  background: rgba(66, 133, 244, 0.08);
  border-radius: 20px;
  border: 1px solid rgba(66, 133, 244, 0.15);
}

.research-section {
  padding: 4rem 2rem;
}

.research-section .section-heading {
}

.section-description {
  margin-top: 1.1rem;
  color: var(--muted);
  line-height: 1.85;
}

.report-highlights {
  margin-top: 2rem;
}

.highlight-chip {
  /* display: flex; */
  align-items: center;
  gap: 1rem;
  padding: 1rem 1rem;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: var(--surface);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.04);
}

.highlight-icon {
  width: 35px;
  height: 35px;
  border-radius: 16px;
  flex-shrink: 0;
  background: rgba(66, 133, 244, 0.18);
}

.highlight-icon-blue {
  background: rgba(66, 133, 244, 0.18);
}

.highlight-icon-green {
  background: rgba(52, 168, 83, 0.18);
}

.highlight-icon-yellow {
  background: rgba(251, 188, 5, 0.18);
}

.report-panel {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow);
}

.report-panel-top {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1.6rem;
}

.report-panel-top span {
  flex: 1;
  height: 4px;
  border-radius: 999px;
}

.report-panel-top span:nth-child(1) { background: #4285f4; }
.report-panel-top span:nth-child(2) { background: #ea4335; }
.report-panel-top span:nth-child(3) { background: #fbbc05; }
.report-panel-top span:nth-child(4) { background: #34a853; }

.report-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 1rem;
}

.report-panel h3 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.05;
}

.report-divider {
  width: 62px;
  height: 4px;
  border-radius: 999px;
  margin: 1.4rem 0;
  background: linear-gradient(90deg, #4285f4, #ea4335, #fbbc05, #34a853);
}

.report-copy {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.report-divider-line {
  height: 1px;
  background: rgba(15, 23, 42, 0.08);
  margin-bottom: 1.5rem;
}

.report-meta {
  display: grid;
  gap: 0.35rem;
}

.report-meta-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 700;
}

.report-meta strong {
  font-size: 1rem;
  color: var(--copy);
}

.report-subtitle {
  color: var(--muted);
  font-size: 0.95rem;
}

.research-card {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  max-width: 1050px;
  padding: 2rem;
}

.research-visual {
  min-height: 280px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(66, 133, 244, 0.22), rgba(52, 168, 83, 0.18));
}

.guest-grid,
.speaker-grid,
.feature-grid,
.detail-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.guest-grid {
  margin-top: 2rem;
}

.speakers-section .section-heading {
}

.speakers-section .section-note {
  margin-top: 0.6rem;
  color: var(--muted);
  line-height: 1.8;
}

.speaker-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 100%;
  padding: 2rem;
  background: var(--panel);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.speaker-avatar {
  width: 100%;
  min-height: 220px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(66, 133, 244, 0.18), rgba(52, 168, 83, 0.12));
  position: relative;
  overflow: hidden;
}

.speaker-avatar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(66, 133, 244, 0.28), transparent 35%),
    radial-gradient(circle at 80% 80%, rgba(52, 168, 83, 0.22), transparent 32%);
}

.speaker-card h3 {
  margin: 0;
}

.speaker-title {
  margin: 0.4rem 0 0;
  font-weight: 700;
}

.speaker-subtitle {
  margin: 0.3rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.guest-card,
.speaker-card,
.feature-card,
.detail-card {
  padding: 1rem;
}

.guest-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
}

.guest-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #ddd;
}

.guest-card.accent-blue::before {
  background: linear-gradient(90deg, #4285f4, #6ea7ff);
}

.guest-card.accent-red::before {
  background: linear-gradient(90deg, #ea4335, #fb8a76);
}

.guest-role {
  display: inline-flex;
  margin-bottom: 1.5rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(66, 133, 244, 0.1);
  color: #4285f4;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.guest-card.accent-red .guest-role {
  background: rgba(234, 67, 53, 0.12);
  color: #ea4335;
}

.guest-profile {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.guest-avatar {
  width: 110px;
  height: 110px;
  flex-shrink: 0;
  border-radius: 50%;
  background: url(../images/pexels-photo-7580763.avif);
  box-shadow: 0 24px 45px rgba(15, 23, 42, 0.08);
}

.guest-card h3 {
  margin: 0;
}

.guest-title {
  margin: 0.4rem 0 0;
  font-weight: 700;
}

.guest-subtitle {
  margin: 0.6rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 240px;
  padding: 2rem;
  background: var(--panel);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: left;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(66, 133, 244, 0.12);
}

.feature-icon::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: #4285f4;
}

.feature-icon.accent-red {
  background: rgba(234, 67, 53, 0.12);
}

.feature-icon.accent-red::before {
  background: #ea4335;
}

.feature-icon.accent-yellow {
  background: rgba(251, 188, 5, 0.14);
}

.feature-icon.accent-yellow::before {
  background: #fbbc05;
}

.feature-icon.accent-green {
  background: rgba(52, 168, 83, 0.15);
}

.feature-icon.accent-green::before {
  background: #34a853;
}

.feature-card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.95rem;
}

.detail-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.agenda-section {
  padding: 4rem 2rem;
}

.agenda-section .section-heading {
}

.agenda-section .section-heading h2 {
  margin-top: 0.75rem;
  line-height: 1.03;
}

.agenda-timeline {
  position: relative;
  padding-left: 1rem;
}

.timeline-line {
  position: absolute;
  top: 1rem;
  bottom: 1rem;
  right: 1.35rem;
  width: 2px;
  background: rgba(15, 23, 42, 0.08);
}

.timeline-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.timeline-item {
  position: relative;
  padding: 1.75rem 1.65rem 1.75rem 1.4rem;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow);
}

.timeline-item::after {
  content: "";
  position: absolute;
  top: 1.75rem;
  right: 0.7rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--panel);
  box-shadow: 0 0 0 4px rgba(255,255,255,0.85);
}

.timeline-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.timeline-time {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.timeline-item h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.35;
}

.timeline-item p {
  margin: 0.8rem 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.timeline-spot-blue::after {
  background: #4285f4;
}

.timeline-spot-red::after {
  background: #ea4335;
}

.timeline-spot-yellow::after {
  background: #fbbc05;
}

.timeline-spot-green::after {
  background: #34a853;
}

.form-section {
  padding: 4rem 2rem 2rem;
}

.form-shell {
  max-width: 960px;
  margin: 0 auto;
  padding: 2.5rem;
  border-radius: 32px;
  background: var(--panel);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow);
}

.form-header h2 {
  margin: 0.5rem 0 1rem;
}

.form-note {
  /* max-width: 680px; */
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.8;
  padding-bottom: 20px;
}

.form-header p {
  margin: 0;
  color: var(--muted);
}

.form-progress {
  display: flex;
  gap: 0.75rem;
  margin: 2rem 0;
}

.progress-step {
  flex: 1;
  height: 8px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
}

.progress-step.current,
.progress-step.active {
  background: linear-gradient(135deg, #4285f4, #34a853);
}

.form-step {
  display: none;
  gap: 1rem;
}

.form-step.active {
  display: grid;
}

.field-group {
  display: grid;
  gap: 0.5rem;
}

.field-group label {
  font-weight: 600;
}

.field-group input, .field-group select {
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 18px;
  padding: 0.95rem 1rem;
  outline: none;
  background: #fff;
}

.field-group input:focus {
  border-color: rgba(66, 133, 244, 0.55);
  box-shadow: 0 0 0 4px rgba(66, 133, 244, 0.12);
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 1.5rem;
}

.hidden {
  display: none !important;
}

.success-panel {
  text-align: center;
  padding: 2rem;
}

.success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(52, 168, 83, 0.12);
  color: #34a853;
  font-size: 2rem;
}

.success-meta {
  margin: 1.5rem 0;
}

.success-meta span {
  display: block;
  color: var(--muted);
}

.success-meta strong {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 1.35rem;
}

.qr-placeholder {
  width: 220px;
  height: 220px;
  margin: 0 auto;
  border-radius: 24px;
  background: radial-gradient(circle at center, rgba(15, 23, 42, 0.08), transparent 55%),
    linear-gradient(135deg, rgba(66, 133, 244, 0.15), rgba(52, 168, 83, 0.15));
}

.faq-section {
  padding: 4rem 2rem;
}

.accordion {
  display: grid;
  gap: 1rem;
}

.accordion-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow);
}

.accordion-button {
  width: 100%;
  border: none;
  background: transparent;
  padding: 1.4rem 1.5rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-button::after {
  content: '+';
  font-size: 1.25rem;
}

.accordion-button[aria-expanded="true"]::after {
  content: '-';
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.accordion-panel.open {
  padding: 1rem 1.5rem 1.5rem;
  max-height: 400px;
}

.contact-section {
  padding: 4rem 2rem;
}

.section-heading + .contact-description {
  margin-top: 1rem;
  color: var(--muted);
  line-height: 1.8;
}

.contact-panel {
  padding: 2rem;
  border-radius: 32px;
  background: var(--panel);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow);
}

.contact-panel h3 {
  margin: 0 0 1.8rem;
  font-size: 1.25rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: rgba(66, 133, 244, 0.12);
  font-size: 1.1rem;
}

.contact-icon-blue {
  background: rgba(66, 133, 244, 0.16);
}

.contact-icon-red {
  background: rgba(234, 67, 53, 0.12);
}

.contact-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.map-placeholder {
  width: 100%;
  min-height: 260px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(66, 133, 244, 0.16), rgba(52, 168, 83, 0.14));
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 700;
}

.site-footer {
  padding: 2rem;
  text-align: center;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.reveal-card,
.reveal-fade {
  opacity: 0;
  transform: translateY(30px);
}

.reveal-card.visible,
.reveal-fade.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.9s ease;
}

@keyframes float {
  to { transform: translateY(-14px) scale(1.05); }
}
@media (min-width: 1200px) {
    .h3, h3 {
        font-size: 1.25rem;
    }
}

.hide{
    display:none !important;
}
.form-progress {
    display: none;
}


section.single-banner img {
    width: 100%;
}