/* EventMate Landing Page Styles (Initial Scaffold) */
:root {
  --em-bg: #FFFFFF;
  --em-indigo: #6366F1;
  --em-purple: #8B5CF6;
  --em-green: #10B981;
  --em-text-dark: #111827;
  --em-text-gray: #6B7280;
  --em-light-gray: #F3F4F6;
  --em-border-gray: #E5E7EB;
  --em-gradient: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
}
* { box-sizing: border-box; }
body.em-body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; margin:0; background: var(--em-bg); color: var(--em-text-dark); line-height:1.6; }
img { max-width:100%; display:block; }
.sr-only { position:absolute; width:1px; height:1px; margin:-1px; padding:0; border:0; clip:rect(0 0 0 0); overflow:hidden; }

.em-container { max-width:1280px; margin:0 auto; padding:0 24px; }
@media (min-width:1024px) { .em-container { padding:0 80px; } }

.em-navbar { position:sticky; top:0; z-index:1000; background:#fff; box-shadow:0 1px 4px rgba(0,0,0,.04); transition: box-shadow .3s ease, background-color .3s ease; }
.em-navbar.scrolled { box-shadow:0 4px 18px rgba(0,0,0,.08); background:#fff; }
.em-nav-inner { display:flex; align-items:center; justify-content:space-between; min-height:64px; }
@media (min-width:900px){ .em-nav-inner{ min-height:80px; } }
.em-logo { display:flex; align-items:center; text-decoration:none; }
.em-logo-mark { width:32px; height:32px; background:var(--em-gradient); border-radius:8px; }
.em-nav a { margin-left:24px; text-decoration:none; color:var(--em-text-dark); font-weight:600; font-size:16px; }
.em-nav a:hover { color:var(--em-indigo); }
.em-burger { display:inline-flex; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; margin-left:16px; }
.em-burger span { width:26px; height:3px; background:var(--em-text-dark); border-radius:2px; transition:.3s; }
@media (min-width:900px){ .em-burger { display:none; } }
.em-mobile-menu { position:fixed; inset:0; display:flex; flex-direction:column; padding:24px; background:#fff; box-shadow:0 8px 24px rgba(0,0,0,.12); transform:translateY(-100%); transition:transform .3s ease; }
.em-mobile-menu.open { transform:translateY(0); }
.no-scroll { overflow:hidden; }
.em-mobile-menu a { padding:12px 0; border-bottom:1px solid var(--em-border-gray); font-weight:600; color:var(--em-text-dark); text-decoration:none; }
.em-mobile-menu a:last-child { border-bottom:none; }

/* logo image sizing */
.em-logo-img {
  display: inline-block;
  width: 160px;
  height: auto;
  object-fit: contain;
}

/* mobile */
@media (max-width: 767px) {
  .em-logo-img {
    width: 110px;
  }
}

/* when navbar gets the .scrolled class */
.em-navbar.scrolled .em-logo-img {
  width: 140px;
  transition: width .2s ease;
}

/* footer variant (if you replace footer logo with same class) */
.em-footer .em-logo-img {
  width: 120px;
}
/* Buttons */
.em-btn { display:inline-block; border-radius:12px; padding:14px 32px; font-size:16px; font-weight:600; text-decoration:none; cursor:pointer; transition:.3s; }
.em-btn--primary { background:var(--em-gradient); color:#fff; box-shadow:0 4px 14px rgba(99,102,241,.3); }
.em-btn--primary:hover { transform:translateY(-2px); box-shadow:0 6px 20px rgba(99,102,241,.35); }
.em-btn--secondary { background:#fff; color:var(--em-indigo); border:2px solid var(--em-indigo); }
.em-btn--secondary:hover { background:var(--em-indigo); color:#fff; }
.em-btn--block { display:block; width:100%; text-align:center; }
.em-btn--light { background:#fff; color:var(--em-indigo); }

/* Hero */
.em-hero { padding:120px 0 80px; text-align:center; position:relative; }
@media (max-width:767px){ .em-hero { padding:80px 0 60px; } }
.em-badge { display:inline-block; background:var(--em-light-gray); padding:10px 24px; border-radius:32px; font-size:14px; margin-bottom:32px; font-weight:500; }
.em-hero-title { font-size:42px; line-height:1.15; font-weight:700; margin:0 0 24px; }
@media (min-width:1024px){ .em-hero-title { font-size:64px; } }
.em-hero-sub { font-size:18px; max-width:800px; margin:0 auto 48px; color:var(--em-text-gray); }
.em-hero-ctas { display:flex; gap:24px; justify-content:center; flex-wrap:wrap; }
.em-phone-mockup { width:280px; height:560px; margin:48px auto 24px; background:linear-gradient(180deg,#EEF2FF,#fff); border-radius:48px; box-shadow:0 20px 60px -10px rgba(99,102,241,.3); }
.em-tabs-row { display:flex; gap:16px; overflow-x:auto; padding:16px 0; }
.em-tab-card { flex:0 0 180px; height:120px; background:var(--em-light-gray); border-radius:12px; box-shadow:0 4px 16px rgba(0,0,0,.06); }

/* Sections */
.em-section { padding:100px 0; }
@media (min-width:1024px){ .em-section { padding:120px 0; } }
.em-section-title { font-size:32px; font-weight:700; line-height:1.2; margin:0 0 48px; text-align:center; }
@media (min-width:1024px){ .em-section-title { font-size:48px; } }

/* Testimonial */
.em-onboard { background:#F9FAFB; }
.em-testimonial { max-width:700px; margin:0 auto; background:#fff; padding:40px; border-radius:20px; box-shadow:0 4px 20px rgba(0,0,0,.08); }
.em-testimonial blockquote { font-size:18px; font-style:italic; margin:0 0 24px; }
.em-profile { display:flex; align-items:center; gap:16px; }
.em-avatar { width:72px; height:72px; border-radius:50%; background:var(--em-indigo); }
.em-name { font-weight:600; }
.em-role { font-size:14px; color:var(--em-text-gray); }

/* Compare */
.em-compare-grid { display:grid; gap:32px; grid-template-columns:1fr; }
@media (min-width:900px){ .em-compare-grid { grid-template-columns:repeat(2,1fr); } }
.em-card { border-radius:20px; padding:48px 32px; display:flex; flex-direction:column; gap:24px; }
.em-card h3 { margin:0; font-size:28px; font-weight:600; }
.em-card ul { margin:0; padding-left:20px; line-height:1.8; }
.em-card--danger { background:#FEF2F2; border:1px solid #FCA5A5; }
.em-card--indigo { background:#EEF2FF; border:1px solid #A5B4FC; }
.em-card-img { width:100%; height:160px; background:var(--em-light-gray); border-radius:12px; }

/* Features */
.em-feature-grid { display:grid; gap:32px; grid-template-columns:1fr; }
@media (min-width:900px){ .em-feature-grid { grid-template-columns:repeat(2,1fr); } }
.em-feature-card { background:#fff; border:1px solid var(--em-border-gray); border-radius:20px; overflow:hidden; display:flex; flex-direction:column; transition:.3s; }
.em-feature-card:hover { transform:translateY(-8px); box-shadow:0 12px 32px rgba(0,0,0,.08); }
.em-feature-img { width:100%; height:220px; background:var(--em-light-gray); }
.em-feature-text { padding:32px; }
.em-feature-title { font-size:28px; font-weight:600; margin:0 0 16px; }
.em-feature-desc { font-size:16px; color:var(--em-text-gray); margin:0; }

/* Autopilot boxes */
.em-autopilot { background:#FAFBFF; }
.em-auto-grid { display:grid; gap:24px; grid-template-columns:1fr; }
@media (min-width:900px){ .em-auto-grid { grid-template-columns:repeat(3,1fr); } }
.em-box { background:#fff; border-radius:16px; padding:32px; box-shadow:0 4px 16px rgba(0,0,0,.06); transition:.3s; }
.em-box:hover { box-shadow:0 8px 24px rgba(0,0,0,.1); }
.em-icon { width:48px; height:48px; background:var(--em-gradient); border-radius:12px; margin-bottom:16px; }

/* Why switched */
.em-three-cols { display:grid; gap:48px; grid-template-columns:1fr; }
@media (min-width:900px){ .em-three-cols { grid-template-columns:repeat(3,1fr); } }
.em-three-item { text-align:center; }
.em-illus { width:100%; height:180px; background:var(--em-light-gray); border-radius:20px; margin-bottom:24px; }
.em-three-text { font-size:18px; font-weight:600; }

/* More than ticketing */
.em-more-grid { display:grid; gap:48px; grid-template-columns:1fr; align-items:center; }
@media (min-width:900px){ .em-more-grid { grid-template-columns:1fr 1fr; } }
.em-more-img { width:100%; height:380px; background:var(--em-light-gray); border-radius:24px; }
.em-checklist { list-style:none; margin:32px 0 0; padding:0; font-size:18px; }
.em-checklist li { position:relative; padding-left:32px; margin-bottom:20px; }
.em-checklist li:before { content:'✔'; position:absolute; left:0; top:0; color:var(--em-green); font-weight:600; }

/* Stats */
.em-stats { background:var(--em-indigo); color:#fff; }
.em-stats-inner { display:flex; flex-wrap:wrap; gap:60px; justify-content:center; }
.em-stat { text-align:center; }
.em-num { font-size:56px; font-weight:700; line-height:1.1; }
.em-label { font-size:16px; opacity:.9; }

/* Steps */
.em-steps-grid { display:grid; gap:32px; grid-template-columns:1fr; }
@media (min-width:900px){ .em-steps-grid { grid-template-columns:repeat(3,1fr); } }
.em-step { text-align:center; }
.em-step-num { width:56px; height:56px; margin:0 auto 16px; background:var(--em-gradient); color:#fff; font-weight:700; font-size:24px; display:flex; align-items:center; justify-content:center; border-radius:16px; }
.em-step-img { width:100%; height:180px; background:var(--em-light-gray); border-radius:20px; margin-bottom:24px; }

/* Categories */
.em-cats { background:#F9FAFB; }
.em-cats-grid { display:grid; gap:32px; grid-template-columns:1fr; }
@media (min-width:900px){ .em-cats-grid { grid-template-columns:repeat(3,1fr); } }
.em-cat { position:relative; overflow:hidden; border-radius:24px; background:var(--em-light-gray); height:260px; display:flex; align-items:flex-end; padding:24px; }
.em-cat-title { font-size:24px; font-weight:700; color:#fff; text-shadow:0 2px 4px rgba(0,0,0,.3); }
.em-cat-img { position:absolute; inset:0; background:linear-gradient(135deg,#6366F1,#8B5CF6); opacity:.5; }

/* Pricing */
.em-pricing { background:#fff; }
.em-pricing-card { max-width:480px; margin:0 auto; border:2px solid var(--em-indigo); border-radius:24px; padding:48px 40px; background:#fff; box-shadow:0 8px 28px -6px rgba(0,0,0,.12); }
.em-plan { font-size:28px; font-weight:700; }
.em-price { font-size:56px; font-weight:700; line-height:1.1; margin:8px 0; }
.em-price span { font-size:32px; vertical-align:top; }
.em-period { font-size:16px; color:var(--em-text-gray); margin-bottom:32px; }
.em-included { list-style:none; margin:0 0 32px; padding:0; }
.em-included li { position:relative; padding-left:28px; margin-bottom:16px; line-height:1.6; }
.em-included li:before { content:'✔'; position:absolute; left:0; top:0; color:var(--em-green); }

/* Reviews (removed styles kept for reference; components removed in template) */
.em-reviews { display:none; }

/* Final CTA */
.em-final { background:var(--em-indigo); color:#fff; text-align:center; }
.em-final-title { font-size:42px; font-weight:700; margin:0 0 24px; }
.em-final-sub { font-size:20px; margin:0 0 40px; }

/* FAQ */
.em-faq details { border-bottom:1px solid var(--em-border-gray); padding:24px 0; }
.em-faq summary { cursor:pointer; font-size:18px; font-weight:600; outline:none; }
.em-faq p { margin:16px 0 0; color:var(--em-text-gray); font-size:16px; }
.em-faq details[open] { background:var(--em-light-gray); }

/* Footer */
.em-footer { background:#111827; color:#fff; padding:80px 0 0; }
.em-footer-grid { display:grid; gap:40px; grid-template-columns:1fr; }
@media (min-width:900px){ .em-footer-grid { grid-template-columns:repeat(4,1fr); } }
.em-logo--footer { width:40px; height:40px; background:var(--em-gradient); border-radius:12px; margin-bottom:16px; }
.em-foot-desc { font-size:14px; opacity:.8; max-width:280px; }
.em-foot-title { font-size:16px; font-weight:600; margin-bottom:12px; }
.em-foot-links { list-style:none; margin:0; padding:0; font-size:14px; }
.em-foot-links li { margin-bottom:8px; }
.em-foot-links a { color:#fff; opacity:.8; text-decoration:none; }
.em-foot-links a:hover { opacity:1; }
.em-foot-bottom { margin-top:40px; border-top:1px solid rgba(255,255,255,.1); }
.em-copy { font-size:14px; padding:24px 0; text-align:center; }

/* Animations & small interactions */
.em-feature-card,.em-box,.em-review,.em-card { transition:transform .3s, box-shadow .3s; }
.em-feature-card:hover,.em-box:hover,.em-review:hover { transform:translateY(-6px); }

/* Accessibility focus states */
:focus-visible { outline:3px solid var(--em-purple); outline-offset:2px; }

/* Responsive adjustments */
@media (max-width:767px){
  .em-section-title { font-size:32px; }
  .em-final-title { font-size:36px; }
  .em-hero-title { font-size:42px; }
  .em-nav a { display:none; }
}
