:root {
  --primary:        #4f46e5;
  --primary-dark:   #4338ca;
  --primary-darker: #3730a3;
  --primary-light:  #eef2ff;
  --dark:           #1e1b4b;
  --darker:         #0f0d2e;
  --text:           #1e293b;
  --text-muted:     #64748b;
  --text-light:     #94a3b8;
  --bg:             #ffffff;
  --bg-alt:         #f8f7ff;
  --border:         #e2e8f0;
  --success:        #22c55e;
  --sky:            #0ea5e9;
  --radius:         12px;
  --radius-lg:      20px;
  --shadow-sm:      0 2px 8px rgba(0,0,0,.06);
  --shadow-md:      0 4px 24px rgba(0,0,0,.10);
  --shadow-lg:      0 8px 40px rgba(0,0,0,.14);
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}
.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  transition: color 0.3s;
}
.navbar.scrolled .nav-brand { color: var(--dark); }
.brand-logo { width: 28px; height: 28px; object-fit: contain; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  transition: color 0.2s;
}
.nav-link:hover { color: #fff; }
.navbar.scrolled .nav-link { color: var(--text-muted); }
.navbar.scrolled .nav-link:hover { color: var(--primary); }
.btn-book {
  padding: 0.5rem 1.25rem;
  background: #fff;
  color: var(--primary);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  transition: background 0.2s, transform 0.15s;
}
.btn-book:hover { background: var(--primary-light); transform: translateY(-1px); }
.navbar.scrolled .btn-book { background: var(--primary); color: #fff; }
.navbar.scrolled .btn-book:hover { background: var(--primary-dark); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: background 0.3s;
}
.navbar.scrolled .nav-toggle span { background: var(--dark); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(140deg, var(--darker) 0%, var(--dark) 45%, #312e81 100%);
  overflow: hidden;
  padding-top: 68px;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 15% 55%, rgba(79,70,229,.35) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 15%, rgba(99,102,241,.2) 0%, transparent 45%),
    radial-gradient(ellipse at 65% 85%, rgba(49,46,129,.45) 0%, transparent 50%);
}
.hero-container {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  padding: 5rem 1.5rem 4rem;
  text-align: center;
}
.hero-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: rgba(99,102,241,.25);
  border: 1px solid rgba(165,180,252,.3);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #c7d2fe;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.13;
  color: #fff;
  margin-bottom: 1.25rem;
  letter-spacing: -0.025em;
}
.hero-highlight {
  background: linear-gradient(90deg, #a5b4fc, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,.68);
  max-width: 580px;
  margin: 0 auto 2.75rem;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.btn-primary {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--primary);
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.97rem;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(79,70,229,.4);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(79,70,229,.5);
}
.btn-ghost {
  display: inline-block;
  padding: 0.85rem 2rem;
  color: rgba(255,255,255,.85);
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.97rem;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,.6);
  color: #fff;
  background: rgba(255,255,255,.07);
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 1.5rem 2.5rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}
.stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,.5);
  margin-top: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat-divider {
  width: 1px;
  height: 42px;
  background: rgba(255,255,255,.15);
}

/* ── SECTIONS ── */
.section { padding: 6rem 0; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.section-tag.light {
  background: rgba(165,180,252,.2);
  color: #c7d2fe;
}
.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
}

/* ── PROBLEM ── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.problem-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.25s;
}
.problem-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.problem-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.problem-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
.problem-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* ── SOLUTION ── */
.solution-section {
  background: linear-gradient(140deg, var(--dark) 0%, #312e81 100%);
  padding: 6rem 0;
}
.solution-content {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}
.solution-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin: 0.8rem 0 1.25rem;
}
.solution-content > p {
  color: rgba(255,255,255,.68);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}
.solution-points {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2.5rem;
}
.solution-point {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,.82);
}
.check { color: var(--success); font-weight: 700; flex-shrink: 0; margin-top: 0.1rem; }

/* ── HOW IT WORKS ── */
.flows { display: flex; flex-direction: column; gap: 1.25rem; }
.flow-block {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.flow-block:hover { box-shadow: var(--shadow-md); border-color: #c7d2fe; }
.flow-number {
  width: 48px; height: 48px; min-width: 48px;
  background: var(--primary);
  color: #fff;
  border-radius: 12px;
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow-content h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 0.8rem; }
.flow-steps { display: flex; flex-direction: column; gap: 0.4rem; }
.flow-step {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.flow-step::before {
  content: '→';
  color: var(--primary);
  font-weight: 600;
  flex-shrink: 0;
}

/* ── BENEFITS ── */
.benefits-section { background: var(--bg-alt); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.benefit-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid transparent;
  transition: transform 0.25s, box-shadow 0.25s;
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.benefit-card.pilgrim    { border-top-color: var(--primary); }
.benefit-card.employee   { border-top-color: var(--sky); }
.benefit-card.management { border-top-color: var(--success); }
.benefit-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.benefit-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 1rem; }
.benefit-card ul { display: flex; flex-direction: column; gap: 0.55rem; }
.benefit-card li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.5;
}
.benefit-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  font-weight: bold;
}
.benefit-card.pilgrim    li::before { color: var(--primary); }
.benefit-card.employee   li::before { color: var(--sky); }
.benefit-card.management li::before { color: var(--success); }

/* ── WHY US ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.why-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.25s;
}
.why-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.why-card-featured {
  border-color: var(--primary);
  background: var(--primary-light);
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
.why-card-featured .why-icon { font-size: 2.2rem; flex-shrink: 0; }
.why-card-featured h3 { font-size: 1.1rem; }
.why-card-featured p { font-size: 0.95rem; }
.why-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.why-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
.why-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }
.why-card-featured h3 { color: var(--dark); font-weight: 800; margin-bottom: 0.4rem; }

/* ── CTA BAND ── */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-darker) 100%);
  padding: 5.5rem 0;
  text-align: center;
}
.cta-section h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.cta-section p { color: rgba(255,255,255,.72); font-size: 1rem; margin-bottom: 2.5rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-large { padding: 1rem 2.5rem; font-size: 1.02rem; }
.btn-ghost-light {
  display: inline-block;
  padding: 1rem 2rem;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.4);
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.97rem;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost-light:hover { border-color: rgba(255,255,255,.8); background: rgba(255,255,255,.1); }

/* ── CONTACT ── */
.contact-card {
  display: flex;
  align-items: stretch;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  max-width: 560px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.contact-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2.25rem 2rem;
}
.contact-icon { font-size: 1.75rem; }
.contact-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-light);
  margin-bottom: 0.3rem;
}
.contact-value { font-size: 0.95rem; font-weight: 600; color: var(--primary); }
.contact-value:hover { color: var(--primary-dark); text-decoration: underline; }
.contact-divider { width: 1px; background: var(--border); flex-shrink: 0; }

/* ── FOOTER ── */
.footer { background: var(--darker); padding: 3rem 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; text-align: center; }
.footer-brand { display: flex; align-items: center; gap: 0.5rem; font-size: 1.15rem; font-weight: 800; color: #fff; }
.footer-brand .brand-logo { filter: brightness(0) invert(1); opacity: 0.85; }
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,.4); max-width: 420px; line-height: 1.6; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,.25); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .problem-grid  { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid      { grid-template-columns: repeat(2, 1fr); }
  .why-card-featured { grid-column: span 2; }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--dark);
    padding: 1.5rem;
    gap: 1.25rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero-stats { flex-direction: column; gap: 1.25rem; }
  .stat-divider { width: 60px; height: 1px; }
  .problem-grid, .benefits-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card-featured { grid-column: span 1; flex-direction: column; }
  .contact-card { flex-direction: column; }
  .contact-divider { width: 100%; height: 1px; }
  .flow-block { flex-direction: column; gap: 1rem; }
  .section { padding: 4rem 0; }
  .hero-stats { padding: 1.25rem 1.5rem; gap: 1.25rem; }
}
