/* ============================================================
   GET MY TICKET APP — index.css 
   Clean, modern design. Zero Nicepage dependencies.
   ============================================================ */

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  --brand:        #478ac9;
  --brand-dark:   #2e6ba8;
  --brand-light:  #e8f2fb;
  --accent:       #f0a500;
  --dark:         #0f1b2d;
  --dark-2:       #162540;
  --text:         #1e2d42;
  --text-muted:   #5a6e85;
  --surface:      #ffffff;
  --surface-2:    #f4f8fd;
  --border:       #d5e4f0;
  --radius-sm:    6px;
  --radius:       12px;
  --radius-lg:    20px;
  --shadow:       0 4px 24px rgba(71,138,201,.12);
  --shadow-lg:    0 12px 48px rgba(71,138,201,.22);
  --transition:   .25s ease;
  --max-w:        1200px;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-heading: 'Poppins', 'Inter', system-ui, sans-serif;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--surface);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a  { color: var(--brand); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--brand-dark); }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.25; color: var(--dark); }

/* ── Utilities ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
}
.btn-lg   { padding: 16px 34px; font-size: 1.05rem; border-radius: var(--radius); }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.btn-primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(71,138,201,.35);
}
.btn-outline {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}
.btn-outline:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: var(--brand-dark);
  border-color: #fff;
}
.btn-white:hover {
  background: var(--brand-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}

/* ── Header / Nav ───────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-weight: 600;
  color: var(--text);
  font-size: .9rem;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
}
.nav-links a:hover {
  color: var(--brand);
  border-color: var(--brand);
}
.nav-cta { margin-left: 12px; padding: 10px 22px; font-size: .9rem; }

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav dropdown */
.nav-mobile {
  display: none;
  max-height: 0;
  overflow: hidden;
  background: #fff;
  border-top: 1px solid var(--border);
  transition: max-height .35s ease;
}
.nav-mobile.open { max-height: 420px; }
.nav-mobile ul {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.nav-mobile a {
  font-weight: 600;
  color: var(--text);
  font-size: 1rem;
}
.nav-mobile .btn { align-self: flex-start; }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, #1a3a6e 100%);
  padding: 80px 0 90px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 75% 50%, rgba(71,138,201,.28) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(240,165,0,.1) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text { color: #fff; }
.hero-label {
  display: inline-block;
  background: rgba(71,138,201,.25);
  border: 1px solid rgba(71,138,201,.5);
  color: #90c4e8;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .05em;
  margin-bottom: 18px;
}
.hero-text h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.15;
}
.hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: #90c4e8;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,.8);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 540px;
}
.hero-desc strong { color: #fff; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero card */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.hero-logo-img { width: 220px; height: auto; filter: brightness(1.05); }
.hero-badge {
  background: rgba(71,138,201,.2);
  border: 1px solid rgba(71,138,201,.4);
  color: #b8d9f4;
  padding: 7px 18px;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 600;
  width: 100%;
  text-align: center;
  transition: background var(--transition);
}
.hero-badge:hover { background: rgba(71,138,201,.35); }

/* ── Generic Section ────────────────────────────────────────── */
.section { padding: 90px 0; }
.section-light { background: var(--surface-2); }
.section-dark  {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 10px;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}
.section-header.light h2 { color: #fff; }
.section-header.light p  { color: rgba(255,255,255,.7); }

/* ── Features Grid ──────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-light);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
}
.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--dark);
}
.feature-card p {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Use Cases ──────────────────────────────────────────────── */
.usecases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.usecase-item {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  font-weight: 600;
  font-size: .95rem;
  color: rgba(255,255,255,.9);
  transition: all var(--transition);
  cursor: default;
}
.usecase-item:hover {
  background: rgba(71,138,201,.25);
  border-color: rgba(71,138,201,.5);
  transform: translateY(-3px);
}

/* ── CTA Banner ─────────────────────────────────────────────── */
.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: var(--brand-dark);
}
.cta-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .08;
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-text h2 {
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  margin-bottom: 14px;
}
.cta-text p {
  color: rgba(255,255,255,.8);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

/* ── Benefits ───────────────────────────────────────────────── */
.benefits-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: start;
}
.benefits-image img {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-lg);
  border: 2px solid var(--brand-light);
  box-shadow: var(--shadow-lg);
}
.benefits-content h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  margin-bottom: 24px;
}
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: var(--text);
  background: var(--surface-2);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--brand);
  transition: background var(--transition);
}
.benefits-list li:hover { background: var(--brand-light); }
.check { font-size: 1.1rem; flex-shrink: 0; }

.benefits-extra {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.extra-block {
  padding: 20px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  transition: all var(--transition);
}
.extra-block:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow);
}
.extra-block h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--brand-dark);
}
.extra-block p {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Download ───────────────────────────────────────────────── */
.download-card {
  display: flex;
  align-items: center;
  gap: 60px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow);
  max-width: 760px;
  margin: 0 auto;
}
.download-left {
  text-align: center;
  flex: 1;
}
.download-left p  { color: var(--text-muted); margin: 16px 0 4px; font-size: .9rem; }
.download-left strong { color: var(--brand-dark); font-size: 1rem; }
.download-right { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.download-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 32px;
  background: var(--brand);
  border-radius: var(--radius);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition);
}
.download-btn:hover {
  background: var(--brand-dark);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.download-btn img { width: 80px; height: auto; }
.download-note { font-size: .82rem; color: var(--text-muted); }

/* ── Contact ────────────────────────────────────────────────── */
.contact-simple {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
}
.contact-icon { font-size: 1.5rem; }
.contact-item a {
  font-weight: 600;
  font-size: 1.1rem;
}
.contact-tagline {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.9;
  border-left: 3px solid var(--brand);
  padding-left: 16px;
  text-align: left;
}
.contact-tagline strong { color: var(--brand-dark); }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.75);
  padding-top: 64px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand img  { margin-bottom: 14px; }
.footer-brand p    { font-size: .9rem; line-height: 1.7; color: rgba(255,255,255,.6); }
.footer-links h4,
.footer-contact h4 {
  color: #fff;
  font-size: .95rem;
  margin-bottom: 16px;
}
.footer-links ul   { display: flex; flex-direction: column; gap: 10px; }
.footer-links a,
.footer-contact a  {
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  transition: color var(--transition);
}
.footer-links a:hover,
.footer-contact a:hover { color: #fff; }
.footer-contact p  { margin-bottom: 16px; }

.footer-bottom {
  text-align: center;
  padding: 20px 24px;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}

/* ── Responsive ─────────────────────────────────────────────── */

/* Tablet: ≤ 991px */
@media (max-width: 991px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-visual { justify-content: center; }
  .hero-desc   { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .usecases-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-layout  { grid-template-columns: 1fr; }
  .benefits-image   { display: flex; justify-content: center; }
  .contact-layout   { grid-template-columns: 1fr; }
  .footer-inner     { grid-template-columns: 1fr 1fr; }
  .footer-brand     { grid-column: 1 / -1; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger       { display: flex; }
  .nav-mobile       { display: block; }
}

/* Mobile: ≤ 575px */
@media (max-width: 575px) {
  .section { padding: 60px 0; }
  .hero    { padding: 56px 0 64px; }
  .features-grid { grid-template-columns: 1fr; }
  .usecases-grid { grid-template-columns: repeat(2, 1fr); }
  .download-card { flex-direction: column; padding: 32px 24px; gap: 32px; text-align: center; }
  .footer-inner  { grid-template-columns: 1fr; }
  .hero-card     { max-width: 100%; }
  .btn-lg        { padding: 14px 24px; font-size: .97rem; }
}