/* ============================================================
   CHECKINLAB.COM — Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── Variables ────────────────────────────────────────────── */
:root {
  --bg-light: #F7F8FA;
  --bg-dark: #0D0D12;
  --bg-dark-2: #13131C;
  --bg-card-dark: #1A1A28;
  --white: #FFFFFF;
  --text-primary-light: #0D0D12;
  --text-secondary-light: #5A5A72;
  --text-primary-dark: #FFFFFF;
  --text-secondary-dark: #9090A8;
  --accent-blue: #3B82F6;
  --accent-purple: #8B5CF6;
  --accent-grad: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
  --border-light: rgba(0, 0, 0, 0.07);
  --border-dark: rgba(255, 255, 255, 0.08);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-card: 0 4px 32px rgba(0, 0, 0, 0.08);
  --shadow-card-dark: 0 4px 32px rgba(0, 0, 0, 0.4);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg-light);
  color: var(--text-primary-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ── Typography Scale ─────────────────────────────────────── */
.display-xl {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.display-lg {
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.display-md {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.lead {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 400;
  line-height: 1.7;
}

.small {
  font-size: 0.875rem;
}

.gradient-text {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Layout ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-sm {
  padding: 60px 0;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: 50px;
  padding: 14px 28px;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--text-primary-light);
  color: var(--white);
}

.btn-primary:hover {
  background: #2a2a3a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary-light);
  border: 1.5px solid rgba(0, 0, 0, 0.2);
}

.btn-outline:hover {
  background: rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--accent-grad);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.35);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.45);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

/* ── Badge ────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-blue);
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 50px;
  padding: 5px 14px;
  margin-bottom: 20px;
}

.badge.light {
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

/* ── Navbar ───────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(247, 248, 250, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border-light);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.navbar__logo {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text-primary-light);
  display: flex;
  align-items: center;
}

.navbar__logo span {
  color: var(--accent-blue);
}

.navbar__logo-img {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.navbar__logo-img img {
  height: 50px;
  width: auto;
  display: block;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary-light);
  transition: color var(--transition);
}

.navbar__links a:hover {
  color: var(--text-primary-light);
}

.navbar__cta {
  display: flex;
  gap: 10px;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  background: var(--bg-light);
  padding: 160px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 100px;
  left: 20%;
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero__eyebrow {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.hero__title {
  max-width: 900px;
  margin: 0 auto 24px;
}

.hero__subtitle {
  max-width: 600px;
  margin: 0 auto 40px;
  color: var(--text-secondary-light);
}

.hero__cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__trust {
  margin-top: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  color: var(--text-secondary-light);
  font-size: 0.83rem;
  font-weight: 500;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero__trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-blue);
  flex-shrink: 0;
}

/* ── Pain Points (dark) ───────────────────────────────────── */
.pain {
  background: var(--bg-dark);
  padding: 100px 0;
}

.pain__header {
  text-align: center;
  margin-bottom: 60px;
}

.pain__header .display-md {
  color: var(--white);
}

.pain__header p {
  color: var(--text-secondary-dark);
  margin-top: 16px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.pain__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pain__card {
  background: var(--bg-card-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: border-color var(--transition), transform var(--transition);
}

.pain__card:hover {
  border-color: rgba(59, 130, 246, 0.35);
  transform: translateY(-4px);
}

.pain__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(239, 68, 68, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.pain__card h3 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.pain__card p {
  color: var(--text-secondary-dark);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ── Solution Intro ───────────────────────────────────────── */
.solution-intro {
  padding: 100px 0 60px;
  text-align: center;
}

.solution-intro__title {
  max-width: 780px;
  margin: 0 auto 20px;
}

.solution-intro__sub {
  color: var(--text-secondary-light);
  max-width: 560px;
  margin: 0 auto;
}

/* ── Features Grid ────────────────────────────────────────── */
.features {
  padding: 20px 0 100px;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-grad);
  opacity: 0;
  transition: opacity var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  border-color: transparent;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary-light);
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--text-secondary-light);
  line-height: 1.65;
}

/* ── How it Works ─────────────────────────────────────────── */
.how {
  background: var(--bg-light);
  padding: 100px 0;
  border-top: 1px solid var(--border-light);
}

.how__header {
  text-align: center;
  margin-bottom: 64px;
}

.how__header .display-md {
  color: var(--text-primary-light);
}

.how__header p {
  color: var(--text-secondary-light);
  margin-top: 14px;
}

.how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.how__steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.6% + 28px);
  right: calc(16.6% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
  opacity: 0.25;
}

.how__step {
  text-align: center;
}

.how__step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-grad);
  color: white;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
}

.how__step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.how__step p {
  font-size: 0.875rem;
  color: var(--text-secondary-light);
}

/* ── Trust (dark) ─────────────────────────────────────────── */
.trust {
  background: var(--bg-dark);
  padding: 100px 0;
}

.trust__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.trust__left .display-lg {
  color: var(--white);
}

.trust__left p {
  color: var(--text-secondary-dark);
  margin-top: 20px;
  font-size: 1rem;
  line-height: 1.75;
}

.trust__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.trust__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg-card-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  transition: border-color var(--transition);
}

.trust__item:hover {
  border-color: rgba(59, 130, 246, 0.3);
}

.trust__item-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(59, 130, 246, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.trust__item h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.trust__item p {
  color: var(--text-secondary-dark);
  font-size: 0.83rem;
}

.trust__right {
  background: var(--bg-card-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.trust__stat {
  text-align: center;
}

.trust__stat-num {
  font-size: 3rem;
  font-weight: 900;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}

.trust__stat-label {
  color: var(--text-secondary-dark);
  font-size: 0.85rem;
  font-weight: 500;
}

.trust__stat-divider {
  height: 1px;
  background: var(--border-dark);
}

/* ── Services ─────────────────────────────────────────────── */
.services {
  padding: 100px 0;
  background: var(--bg-light);
}

.services__header {
  text-align: center;
  margin-bottom: 56px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.service-card__icon {
  font-size: 2rem;
  margin-bottom: 20px;
  display: block;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-secondary-light);
  font-size: 0.9rem;
  line-height: 1.7;
}

.service-card__link {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-blue);
  font-size: 0.875rem;
  font-weight: 600;
}

.service-card__link:hover {
  gap: 10px;
}

.service-card__link svg {
  transition: transform var(--transition);
}

.service-card__link:hover svg {
  transform: translateX(4px);
}

/* ── CTA & Contact ────────────────────────────────────────── */
.contact {
  background: var(--bg-dark-2);
  padding: 100px 0;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__left .display-lg {
  color: var(--white);
}

.contact__left p {
  color: var(--text-secondary-dark);
  margin-top: 20px;
  line-height: 1.75;
}

.contact__left-items {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact__left-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary-dark);
  font-size: 0.9rem;
}

.contact__left-item-dot {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent-blue);
}

/* Form */
.form {
  background: var(--bg-card-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form__title {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 28px;
}

.form__group {
  margin-bottom: 18px;
}

.form__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary-dark);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--white);
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color var(--transition);
  outline: none;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--accent-blue);
}

.form__select {
  cursor: pointer;
  appearance: none;
}

.form__select option {
  background: var(--bg-dark);
}

.form__textarea {
  resize: vertical;
  min-height: 110px;
}

.form__submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  border-radius: var(--radius-sm);
  padding: 16px;
  font-size: 1rem;
}

/* ── Contact centered variant (no form) ──────────────────── */
.contact__inner--centered {
  grid-template-columns: 1fr;
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
}

/* ── Modal ────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(5, 5, 12, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  position: relative;
  width: 100%;
  max-width: 860px;
  height: min(90vh, 780px);
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.open .modal-box {
  transform: translateY(0) scale(1);
}

.modal-box iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.08);
  color: #444;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.15);
  transform: rotate(90deg);
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-dark);
  padding: 48px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__logo {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
}

.footer__logo span {
  color: var(--accent-blue);
}

.footer__links {
  display: flex;
  gap: 28px;
}

.footer__links a {
  color: var(--text-secondary-dark);
  font-size: 0.85rem;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--white);
}

.footer__copy {
  color: var(--text-secondary-dark);
  font-size: 0.8rem;
}

/* ── Burger (mobile) ──────────────────────────────────────── */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary-light);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── Scroll reveal ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {

  .trust__inner,
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .pain__grid,
  .services__grid,
  .how__steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {

  .section,
  .pain,
  .how,
  .trust,
  .services,
  .contact {
    padding: 72px 0;
  }

  .hero {
    padding: 130px 0 72px;
  }

  .navbar__links,
  .navbar__cta .btn-outline {
    display: none;
  }

  .burger {
    display: flex;
  }

  .pain__grid,
  .services__grid,
  .how__steps {
    grid-template-columns: 1fr;
  }

  .how__steps::before {
    display: none;
  }

  .features__grid {
    grid-template-columns: 1fr;
  }

  .trust__right {
    flex-direction: column;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero__cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__cta .btn {
    justify-content: center;
  }

  .form {
    padding: 28px 20px;
  }

  .trust__right {
    padding: 28px;
  }
}

/* ============================================================
   CHECKINLAB â€” Style2 (index2.html specific components)
   Extends style.css â€” do not use standalone
   ============================================================ */

/* â”€â”€ Utilities â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.text-center {
  text-align: center;
}

/* â”€â”€ Hero variant (index2) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero2 {
  background: var(--bg-light);
}

.hero2::before {
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.09) 0%, transparent 70%);
}

/* â”€â”€ Ticket Features Grid â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ticket-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tf-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.tf-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-grad);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.tf-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.tf-card:hover::after {
  transform: scaleX(1);
}

.tf-card__icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
  display: block;
}

.tf-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.tf-card p {
  font-size: 0.85rem;
  color: var(--text-secondary-light);
  line-height: 1.65;
}

/* â”€â”€ Check-in Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.checkin-section {
  background: var(--bg-dark);
  padding: 100px 0;
}

.checkin-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.checkin-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.checkin-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.checkin-list__dot {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--accent-blue);
}

.checkin-list strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 3px;
}

.checkin-list span {
  color: var(--text-secondary-dark);
  font-size: 0.83rem;
  line-height: 1.6;
}

.checkin-platforms {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.checkin-platforms__badge {
  height: 40px;
  width: auto;
  display: block;
  border-radius: 6px;
}

.platform-badge {
  background: var(--bg-card-dark);
  border: 1px solid var(--border-dark);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--white);
}

.app-screenshot-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #f0f0f8;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.4);
  position: relative;
}

.app-screenshot-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  z-index: 1;
}

.app-screenshot {
  width: 100%;
  display: block;
  border-radius: var(--radius-lg);
}

/* â”€â”€ Seat Gallery Preview â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.seat-gallery-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.seat-gallery-preview__item {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  animation-delay: var(--delay);
}

.seat-gallery-preview__item:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.seat-gallery-preview__item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.seat-gallery-preview__item p {
  padding: 12px 14px;
  font-size: 0.8rem;
  color: var(--text-secondary-light);
  font-weight: 500;
}

/* â”€â”€ Custom Feature List â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.custom-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.custom-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition);
}

.custom-feature:hover {
  transform: translateY(-3px);
}

.custom-feature__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.custom-feature h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.custom-feature p {
  font-size: 0.85rem;
  color: var(--text-secondary-light);
  line-height: 1.65;
}

/* â”€â”€ Audience Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.audience-section {
  background: var(--bg-dark-2);
  padding: 100px 0;
}

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

.audience-card {
  background: var(--bg-card-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}

.audience-card:hover {
  border-color: rgba(59, 130, 246, 0.35);
  transform: translateY(-4px);
}

.audience-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.audience-card h3 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.audience-card p {
  color: var(--text-secondary-dark);
  font-size: 0.84rem;
  line-height: 1.65;
}

/* â”€â”€ Services2 Grid â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.services2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service2-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service2-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.service2-card--highlight {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.06), rgba(139, 92, 246, 0.06));
  border-color: rgba(59, 130, 246, 0.2);
}

.service2-badge {
  position: absolute;
  top: -10px;
  left: 20px;
  background: var(--accent-grad);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 50px;
}

.service2-icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
  display: block;
}

.service2-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.service2-card p {
  font-size: 0.84rem;
  color: var(--text-secondary-light);
  line-height: 1.65;
}

/* â”€â”€ Infrastructure â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.infra-section {
  background: var(--bg-dark);
  padding: 100px 0;
}

.infra-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.infra-tiers {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.infra-tier {
  display: flex;
  align-items: center;
  gap: 14px;
}

.infra-tier__dot {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.5);
}

.infra-tier__dot--accent {
  background: var(--accent-blue);
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.6);
}

.infra-tier strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
}

.infra-tier span {
  color: var(--text-secondary-dark);
  font-size: 0.82rem;
}

.infra-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.infra-card {
  background: var(--bg-card-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: border-color var(--transition), transform var(--transition);
}

.infra-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-3px);
}

.infra-card__icon {
  font-size: 1.4rem;
  margin-bottom: 12px;
  display: block;
}

.infra-card h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.infra-card p {
  color: var(--text-secondary-dark);
  font-size: 0.8rem;
  line-height: 1.6;
}

/* â”€â”€ CTA Final â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cta-final {
  background: var(--bg-dark-2);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-final__inner {
  position: relative;
  z-index: 1;
}

/* â”€â”€ Gallery Modal â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.modal-overlay--gallery {
  z-index: 1001;
}

.modal-box--gallery {
  max-width: 900px;
  height: auto;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  background: var(--bg-dark-2);
  border: 1px solid var(--border-dark);
}

.gallery-header {
  margin-bottom: 24px;
}

.gallery-header h3 {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.gallery-header p {
  color: var(--text-secondary-dark);
  font-size: 0.9rem;
}

.gallery-slider {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #111;
}

.gallery-slide {
  display: none;
}

.gallery-slide.active {
  display: block;
}

.gallery-slide img {
  width: 100%;
  max-height: 480px;
  object-fit: contain;
  display: block;
  background: #f5f5f8;
}

.gallery-slide__caption {
  padding: 12px 16px;
  color: var(--text-secondary-dark);
  font-size: 0.8rem;
  background: var(--bg-card-dark);
  border-top: 1px solid var(--border-dark);
}

.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.gallery-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-dark);
  border-radius: 50%;
  background: var(--bg-card-dark);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
}

.gallery-btn:hover {
  background: rgba(59, 130, 246, 0.2);
  border-color: var(--accent-blue);
}

.gallery-dots {
  display: flex;
  gap: 8px;
}

.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--border-dark);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  padding: 0;
}

.gallery-dot.active {
  background: var(--accent-blue);
  transform: scale(1.3);
}

/* â”€â”€ Responsive overrides â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1024px) {

  .checkin-inner,
  .infra-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .ticket-features-grid,
  .audience-grid,
  .services2-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {

  .checkin-section,
  .audience-section,
  .infra-section,
  .cta-final {
    padding: 72px 0;
  }

  .ticket-features-grid {
    grid-template-columns: 1fr;
  }

  .audience-grid,
  .services2-grid {
    grid-template-columns: 1fr;
  }

  .seat-gallery-preview {
    grid-template-columns: 1fr;
  }

  .custom-features {
    grid-template-columns: 1fr;
  }

  .infra-cards {
    grid-template-columns: 1fr;
  }

  .modal-box--gallery {
    padding: 20px;
  }

  .gallery-slide img {
    max-height: 260px;
  }
}

/* ── Utilities ────────────────────────────────────────────── */
.text-center {
  text-align: center;
}

/* ── Hero variant (index2) ────────────────────────────────── */
.hero2 {
  background: var(--bg-light);
}

.hero2::before {
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.09) 0%, transparent 70%);
}

/* ── Ticket Features Grid ─────────────────────────────────── */
.ticket-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tf-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.tf-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-grad);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.tf-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.tf-card:hover::after {
  transform: scaleX(1);
}

.tf-card__icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
  display: block;
}

.tf-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.tf-card p {
  font-size: 0.85rem;
  color: var(--text-secondary-light);
  line-height: 1.65;
}

/* ── Check-in Section ─────────────────────────────────────── */
.checkin-section {
  background: var(--bg-dark);
  padding: 100px 0;
}

.checkin-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.checkin-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.checkin-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.checkin-list__dot {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--accent-blue);
}

.checkin-list strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 3px;
}

.checkin-list span {
  color: var(--text-secondary-dark);
  font-size: 0.83rem;
  line-height: 1.6;
}

.checkin-platforms {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.checkin-platforms__badge {
  height: 40px;
  width: auto;
  display: block;
  border-radius: 6px;
}

.platform-badge {
  background: var(--bg-card-dark);
  border: 1px solid var(--border-dark);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--white);
}

.app-screenshot-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #f0f0f8;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.4);
  position: relative;
}

.app-screenshot-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  z-index: 1;
}

.app-screenshot {
  width: 100%;
  display: block;
  border-radius: var(--radius-lg);
}

/* ── Seat Gallery Preview ─────────────────────────────────── */
.seat-gallery-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.seat-gallery-preview__item {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  animation-delay: var(--delay);
}

.seat-gallery-preview__item:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.seat-gallery-preview__item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.seat-gallery-preview__item p {
  padding: 12px 14px;
  font-size: 0.8rem;
  color: var(--text-secondary-light);
  font-weight: 500;
}

/* ── Custom Feature List ──────────────────────────────────── */
.custom-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.custom-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition);
}

.custom-feature:hover {
  transform: translateY(-3px);
}

.custom-feature__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.custom-feature h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.custom-feature p {
  font-size: 0.85rem;
  color: var(--text-secondary-light);
  line-height: 1.65;
}

/* ── Audience Section ─────────────────────────────────────── */
.audience-section {
  background: var(--bg-dark-2);
  padding: 100px 0;
}

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

.audience-card {
  background: var(--bg-card-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}

.audience-card:hover {
  border-color: rgba(59, 130, 246, 0.35);
  transform: translateY(-4px);
}

.audience-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.audience-card h3 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.audience-card p {
  color: var(--text-secondary-dark);
  font-size: 0.84rem;
  line-height: 1.65;
}

/* ── Services2 Grid ───────────────────────────────────────── */
.services2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service2-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service2-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.service2-card--highlight {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.06), rgba(139, 92, 246, 0.06));
  border-color: rgba(59, 130, 246, 0.2);
}

.service2-badge {
  position: absolute;
  top: -10px;
  left: 20px;
  background: var(--accent-grad);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 50px;
}

.service2-icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
  display: block;
}

.service2-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.service2-card p {
  font-size: 0.84rem;
  color: var(--text-secondary-light);
  line-height: 1.65;
}

/* ── Infrastructure ───────────────────────────────────────── */
.infra-section {
  background: var(--bg-dark);
  padding: 100px 0;
}

.infra-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.infra-tiers {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.infra-tier {
  display: flex;
  align-items: center;
  gap: 14px;
}

.infra-tier__dot {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.5);
}

.infra-tier__dot--accent {
  background: var(--accent-blue);
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.6);
}

.infra-tier strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
}

.infra-tier span {
  color: var(--text-secondary-dark);
  font-size: 0.82rem;
}

.infra-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.infra-card {
  background: var(--bg-card-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: border-color var(--transition), transform var(--transition);
}

.infra-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-3px);
}

.infra-card__icon {
  font-size: 1.4rem;
  margin-bottom: 12px;
  display: block;
}

.infra-card h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.infra-card p {
  color: var(--text-secondary-dark);
  font-size: 0.8rem;
  line-height: 1.6;
}

/* ── CTA Final ────────────────────────────────────────────── */
.cta-final {
  background: var(--bg-dark-2);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-final__inner {
  position: relative;
  z-index: 1;
}

/* ── Gallery Modal ────────────────────────────────────────── */
.modal-overlay--gallery {
  z-index: 1001;
}

.modal-box--gallery {
  max-width: 900px;
  height: auto;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  background: var(--bg-dark-2);
  border: 1px solid var(--border-dark);
}

.gallery-header {
  margin-bottom: 24px;
}

.gallery-header h3 {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.gallery-header p {
  color: var(--text-secondary-dark);
  font-size: 0.9rem;
}

.gallery-slider {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #111;
}

.gallery-slide {
  display: none;
}

.gallery-slide.active {
  display: block;
}

.gallery-slide img {
  width: 100%;
  max-height: 480px;
  object-fit: contain;
  display: block;
  background: #f5f5f8;
}

.gallery-slide__caption {
  padding: 12px 16px;
  color: var(--text-secondary-dark);
  font-size: 0.8rem;
  background: var(--bg-card-dark);
  border-top: 1px solid var(--border-dark);
}

.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.gallery-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-dark);
  border-radius: 50%;
  background: var(--bg-card-dark);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
}

.gallery-btn:hover {
  background: rgba(59, 130, 246, 0.2);
  border-color: var(--accent-blue);
}

.gallery-dots {
  display: flex;
  gap: 8px;
}

.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--border-dark);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  padding: 0;
}

.gallery-dot.active {
  background: var(--accent-blue);
  transform: scale(1.3);
}

/* ── Responsive overrides ─────────────────────────────────── */
@media (max-width: 1024px) {

  .checkin-inner,
  .infra-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .ticket-features-grid,
  .audience-grid,
  .services2-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {

  .checkin-section,
  .audience-section,
  .infra-section,
  .cta-final {
    padding: 72px 0;
  }

  .ticket-features-grid {
    grid-template-columns: 1fr;
  }

  .audience-grid,
  .services2-grid {
    grid-template-columns: 1fr;
  }

  .seat-gallery-preview {
    grid-template-columns: 1fr;
  }

  .custom-features {
    grid-template-columns: 1fr;
  }

  .infra-cards {
    grid-template-columns: 1fr;
  }

  .modal-box--gallery {
    padding: 20px;
  }

  .gallery-slide img {
    max-height: 260px;
  }
}