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

:root {
  --orange: #FF6B35;
  --orange-dark: #E55A26;
  --orange-soft: #FFF0EB;
  --orange-mid: #FFD8C8;
  --white: #FFFFFF;
  --bg: #F8F9FA;
  --bg2: #F0F2F5;
  --text: #1A1A1A;
  --text2: #4A4A4A;
  --muted: #9E9E9E;
  --border: #E5E7EB;
  --green: #4CAF50;
  --red: #F44336;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }

/* ─── Typography ────────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.25;
  color: var(--text);
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; font-family: var(--font); }
p { color: var(--text2); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ─── Layout Utilities ──────────────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }

.section-header { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-header p { font-size: 1.05rem; color: var(--muted); margin-top: 12px; }
.section-label {
  display: inline-block;
  background: var(--orange-soft);
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 16px;
}

/* ─── Buttons ───────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
  line-height: 1;
  font-family: var(--font);
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(255,107,53,0.35);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,107,53,0.40);
  text-decoration: none;
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
}
.btn-white {
  background: var(--white);
  color: var(--orange);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  background: var(--orange-soft);
  text-decoration: none;
  color: var(--orange);
}
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* ─── Header / Navbar ───────────────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--text2);
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--orange); }

.nav-cta { display: flex; align-items: center; gap: 12px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ─── Mobile Nav ────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links, .nav-cta {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open, .nav-cta.open { display: flex; }
  .nav-cta.open { top: auto; border: none; padding: 0 24px 20px; box-shadow: none; }
}

/* ─── Footer ────────────────────────────────────────────────────────────────── */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo {
  filter: none;
  height: 54px;
  width: auto;
  display: block;
  background: #fff;
  border-radius: 10px;
  padding: 6px;
}
.footer-brand p {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.76);
  max-width: 420px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  font-family: var(--font);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.15s;
}
.footer-col ul a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.5); margin: 0; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  color: rgba(255,255,255,0.65);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: all 0.2s;
  border: 1px solid rgba(255,255,255,0.08);
}
.footer-socials a:hover { background: var(--orange); color: var(--white); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ─── Hero ──────────────────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #fff 0%, var(--orange-soft) 100%);
  padding: 100px 0 80px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  background: var(--orange-soft);
  border-radius: 50%;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-soft);
  border: 1px solid var(--orange-mid);
  color: var(--orange);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 40px;
  margin-bottom: 24px;
}
.hero h1 { margin-bottom: 20px; }
.hero-desc { font-size: 1.1rem; color: var(--text2); margin-bottom: 36px; max-width: 480px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.stat-item { display: flex; flex-direction: column; }
.stat-num { font-size: 1.75rem; font-weight: 700; color: var(--orange); font-family: var(--font-display); }
.stat-label { font-size: 12px; color: var(--muted); margin-top: 2px; }
.hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.hero-card-img {
  height: 170px;
  background-color: #ddd;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-card-body { padding: 14px; }
.hero-card-body h4 { font-size: 13px; color: var(--text); font-weight: 600; margin-bottom: 4px; }
.hero-card-body p { font-size: 12px; color: var(--muted); margin: 0; }
.hero-card-badge {
  display: inline-block;
  background: var(--orange-soft);
  color: var(--orange);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  margin-top: 6px;
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 400px; }
}
@media (max-width: 560px) {
  .hero { padding: 60px 0 48px; }
  .hero-stats { gap: 24px; }
  .hero-visual { grid-template-columns: 1fr 1fr; }
}

/* ─── Trust Bar ─────────────────────────────────────────────────────────────── */
.trust-bar {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}
.trust-item span { font-size: 20px; }

/* ─── Features Grid ─────────────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.25s;
}
.feature-card:hover {
  border-color: var(--orange-mid);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--orange-soft);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.feature-card h3 { font-family: var(--font); font-size: 1.05rem; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--muted); margin: 0; }

@media (max-width: 900px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .features-grid { grid-template-columns: 1fr; } }

/* ─── How It Works ──────────────────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.step-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 16px;
  font-family: var(--font-display);
}
.step-card h3 { font-family: var(--font); font-size: 1rem; margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--muted); margin: 0; }

@media (max-width: 900px) { .steps-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps-grid { grid-template-columns: 1fr; } }

/* ─── Event Types ───────────────────────────────────────────────────────────── */
.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.event-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.25s;
  cursor: pointer;
}
.event-card:hover {
  border-color: var(--orange);
  background: var(--orange-soft);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.event-emoji { font-size: 2.5rem; margin-bottom: 12px; }
.event-card h3 { font-family: var(--font); font-size: 1rem; color: var(--text); margin-bottom: 6px; }
.event-card p { font-size: 13px; color: var(--muted); margin: 0; }

@media (max-width: 900px) { .events-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .events-grid { grid-template-columns: repeat(2, 1fr); } }

/* ─── Testimonials ──────────────────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.stars { color: var(--orange); font-size: 14px; margin-bottom: 14px; }
.testimonial-card p {
  font-size: 15px;
  color: var(--text2);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.65;
}
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--orange-soft);
  border: 2px solid var(--orange-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.reviewer-name { font-weight: 600; font-size: 14px; color: var(--text); }
.reviewer-role { font-size: 12px; color: var(--muted); }

@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; } }

/* ─── CTA Band ──────────────────────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--orange) 0%, #FF9A6C 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.cta-band h2 { color: var(--white); position: relative; z-index: 1; }
.cta-band p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin: 16px 0 36px; position: relative; z-index: 1; }
.cta-band-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ─── App Download ──────────────────────────────────────────────────────────── */
.download-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.download-badges { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--text);
  color: var(--white);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  min-width: 160px;
}
.badge:hover { background: var(--orange); text-decoration: none; color: var(--white); }
.badge-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}
.badge-text { line-height: 1.2; }
.badge-text small { display: block; font-size: 10px; opacity: 0.75; }
.phone-mockup {
  background: var(--orange-soft);
  border-radius: var(--radius-xl);
  aspect-ratio: 9/16;
  width: min(360px, 100%);
  max-width: 360px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 3px solid var(--orange-mid);
  padding: 30px 22px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}
.phone-mockup .logo-large {
  width: 92px;
  height: 92px;
  border-radius: var(--radius-md);
  object-fit: cover;
  background: #fff;
  padding: 8px;
}
.phone-mockup p { color: var(--orange); font-weight: 600; margin: 0; }

@media (max-width: 768px) {
  .download-grid { grid-template-columns: 1fr; }
  .phone-mockup { aspect-ratio: unset; height: 240px; max-width: 100%; }
}

/* ─── Page Hero (inner pages) ───────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--orange-soft) 0%, #fff 100%);
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { margin-bottom: 12px; }
.page-hero p { font-size: 1.05rem; color: var(--text2); max-width: 560px; }

/* ─── Content (legal/inner pages) ──────────────────────────────────────────── */
.content-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 24px;
}
.content-wrap h2 { font-size: 1.35rem; margin: 40px 0 14px; padding-bottom: 10px; border-bottom: 2px solid var(--orange-soft); }
.content-wrap h3 { font-size: 1.1rem; margin: 28px 0 10px; color: var(--orange); }
.content-wrap p, .content-wrap li { font-size: 15px; color: var(--text2); line-height: 1.75; }
.content-wrap ul, .content-wrap ol { padding-left: 24px; margin-bottom: 16px; }
.content-wrap li { margin-bottom: 8px; }
.content-wrap .callout {
  background: var(--orange-soft);
  border-left: 4px solid var(--orange);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
}
.content-wrap .callout p { margin: 0; font-size: 14px; }
.last-updated {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 32px;
  display: inline-block;
}

/* ─── Contact Page ──────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { font-size: 1.6rem; margin-bottom: 16px; }
.contact-info p { color: var(--text2); }
.contact-methods { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-method-icon {
  width: 44px;
  height: 44px;
  background: var(--orange-soft);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-method h4 { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.contact-method p { font-size: 14px; color: var(--muted); margin: 0; }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.contact-form-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.contact-form-card > p { color: var(--muted); font-size: 14px; margin-bottom: 28px; }

.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  transition: border-color 0.15s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,107,53,0.10);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
  display: none;
  background: rgba(76,175,80,0.08);
  border: 1.5px solid rgba(76,175,80,0.3);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  color: var(--green);
  font-size: 14px;
  font-weight: 500;
  margin-top: 16px;
  align-items: center;
  gap: 10px;
}
.form-success.visible { display: flex; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ─── FAQ Section ───────────────────────────────────────────────────────────── */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  font-family: var(--font);
  transition: background 0.15s;
}
.faq-q:hover { background: var(--bg); }
.faq-q svg { flex-shrink: 0; transition: transform 0.25s; color: var(--orange); }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
}
.faq-a-inner { padding: 0 22px 18px; font-size: 14px; color: var(--text2); line-height: 1.7; }
.faq-item.open .faq-a { max-height: 400px; }

/* ─── Misc ──────────────────────────────────────────────────────────────────── */
.bg-light { background: var(--bg); }
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

@media (max-width: 560px) {
  .section { padding: 56px 0; }
  .contact-form-card { padding: 24px; }
}
