@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&family=JetBrains+Mono:wght@500;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; width: 100%; position: relative; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: #fff; color: #0f1420; -webkit-font-smoothing: antialiased; }

:root {
  --purple: #7B4FAB;
  --purple-dark: #5C3582;
  --purple-light: #F1EAFA;
  --purple-mid: #EAE0F7;
  --orange: #F7921E;
  --orange-dark: #D97B10;
  --orange-light: #FEF4E8;
  --text: #0f1420;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --border: #e8edf5;
  --border-mid: #d0d9e8;
  --bg-soft: #F8F9FC;
  --bg-section: #F4F6FB;
  --white: #ffffff;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(123,79,171,0.08);
  --shadow-lg: 0 12px 48px rgba(123,79,171,0.14);
  --shadow-lg: 0 12px 48px rgba(123,79,171,0.14);
  --sans: 'DM Sans', sans-serif;
  --display: 'Sora', sans-serif;
  --mono: 'JetBrains Mono', monospace;
  --container-px: 32px;
}

/* ── TICKER ── */
.ticker-bar {
  background: var(--purple); color: #fff; height: 34px;
  display: flex; align-items: center; overflow: hidden;
  font-family: var(--mono); font-size: 11px; position: relative; z-index: 300;
}
.ticker-label {
  flex-shrink: 0; padding: 0 18px; height: 100%;
  display: flex; align-items: center; gap: 6px;
  background: var(--purple-dark); font-weight: 700; letter-spacing: 1px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.ticker-label span { width: 7px; height: 7px; background: var(--orange); border-radius: 50%; display: inline-block; animation: blink 1.4s infinite; }
@keyframes blink { 0%,100%{opacity:1}50%{opacity:0.2} }
.ticker-scroll { display: flex; gap: 44px; animation: scroll-left 40s linear infinite; white-space: nowrap; padding: 0 30px; }
@keyframes scroll-left { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.tick-item { display: flex; gap: 7px; align-items: center; color: rgba(255,255,255,0.75); }
.tick-item .sym { color: #fff; font-weight: 700; }
.tick-item .up { color: #86efac; }
.tick-item .dn { color: #fca5a5; }

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 200; background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px); border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 var(--container-px);
  height: 76px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { height: 52px; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 8px 16px; border-radius: 10px; font-size: 14px; font-weight: 500;
  color: var(--text-muted); text-decoration: none; transition: all 0.2s;
  font-family: var(--sans);
}
.nav-links a:hover { color: var(--purple); background: var(--purple-light); }
.nav-links a.active { color: var(--purple); font-weight: 600; }
.btn-nav {
  padding: 9px 22px; background: var(--purple); color: #fff; border-radius: 10px;
  font-size: 14px; font-weight: 600; text-decoration: none; transition: all 0.2s;
  font-family: var(--sans); border: 2px solid var(--purple);
}
.btn-nav:hover { background: var(--purple-dark); border-color: var(--purple-dark); color: #fff; }
.btn-nav-outline {
  padding: 9px 22px; background: transparent; color: var(--purple); border-radius: 10px;
  font-size: 14px; font-weight: 600; text-decoration: none; transition: all 0.2s;
  font-family: var(--sans); border: 2px solid var(--purple);
}
.btn-nav-outline:hover { background: var(--purple); color: #fff; }

/* ── MOBILE NAV TOGGLE ── */
.nav-toggle {
  display: none; width: 44px; height: 44px;
  border: none; background: var(--bg-soft); border-radius: 10px;
  cursor: pointer; align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--purple); transition: 0.3s; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; border-radius: 12px; font-family: var(--sans); font-weight: 600; font-size: 15px; transition: all 0.2s; cursor: pointer; border: none; }
.btn-primary { background: var(--purple); color: #fff; padding: 14px 32px; }
.btn-primary:hover { background: var(--purple-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(123,79,171,0.3); }
.btn-orange { background: var(--orange); color: #fff; padding: 14px 32px; }
.btn-orange:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(247,146,30,0.35); }
.btn-outline { background: transparent; color: var(--purple); padding: 13px 30px; border: 2px solid var(--purple); }
.btn-outline:hover { background: var(--purple); color: #fff; }
.btn-ghost { background: var(--bg-soft); color: var(--text); padding: 14px 32px; border: 1px solid var(--border); }
.btn-ghost:hover { background: var(--border); }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--container-px); }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* ── LABELS ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 100px;
  background: var(--purple-light); color: var(--purple);
  font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  font-family: var(--sans); margin-bottom: 20px;
}
.eyebrow-orange {
  background: var(--orange-light); color: var(--orange-dark);
}
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 { font-family: var(--display); line-height: 1.15; color: var(--text); }
h1 { font-size: clamp(2.6rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: 1.3rem; font-weight: 700; }
p { line-height: 1.75; color: var(--text-muted); }
.text-purple { color: var(--purple); }
.text-orange { color: var(--orange); }
.text-center { text-align: center; }

/* ── ORANGE UNDERLINE ACCENT ── */
.accent-line {
  display: inline; background-image: linear-gradient(0deg, var(--orange) 0%, var(--orange) 100%);
  background-repeat: no-repeat; background-size: 100% 4px; background-position: 0 100%;
  padding-bottom: 4px;
}

/* ── CARDS ── */
.card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px; transition: all 0.25s;
}
.card:hover { border-color: var(--purple); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.card-icon {
  width: 52px; height: 52px; border-radius: 14px; background: var(--purple-light);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.card-icon svg { width: 24px; height: 24px; color: var(--purple); }
.card-icon.orange { background: var(--orange-light); }
.card-icon.orange svg { color: var(--orange); }

/* ── STAT CARDS ── */
.stat-num { font-family: var(--display); font-size: 2.8rem; font-weight: 800; color: var(--purple); line-height: 1; }
.stat-num.orange { color: var(--orange); }
.stat-label { font-size: 13px; font-weight: 600; color: var(--text-muted); margin-top: 6px; text-transform: uppercase; letter-spacing: 0.5px; }

/* ── DIVIDER ── */
.divider { height: 1px; background: var(--border); }
.divider-v { width: 1px; background: var(--border); align-self: stretch; }

/* ── BADGE ── */
.badge { display: inline-flex; align-items: center; padding: 4px 12px; border-radius: 100px; font-size: 12px; font-weight: 700; }
.badge-purple { background: var(--purple-light); color: var(--purple); }
.badge-orange { background: var(--orange-light); color: var(--orange-dark); }
.badge-green { background: #dcfce7; color: #15803d; }

/* ── FORM ── */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.form-control {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--border);
  border-radius: 10px; font-family: var(--sans); font-size: 14px; color: var(--text);
  background: var(--bg-soft); transition: all 0.2s; outline: none;
}
.form-control:focus { border-color: var(--purple); background: #fff; box-shadow: 0 0 0 3px rgba(123,79,171,0.1); }
textarea.form-control { resize: vertical; min-height: 130px; }

/* ── FOOTER ── */
footer {
  background: var(--text); color: rgba(255,255,255,0.7);
  padding: 72px 0 40px; font-family: var(--sans);
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
footer h4 { color: #fff; font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px; font-family: var(--sans); }
footer a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 14px; display: block; margin-bottom: 10px; transition: color 0.2s; }
footer a:hover { color: var(--orange); }
footer p { color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.7; }
.footer-logo { height: 56px; margin-bottom: 20px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center; transition: all 0.2s;
  color: rgba(255,255,255,0.4);
}
.social-link:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.social-link svg { width: 16px; height: 16px; }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ── GRIDS ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.gap-sm { gap: 16px; }

/* ── INFO CARD (contact) ── */
.info-card {
  display: flex; align-items: center; gap: 18px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px 24px; transition: all 0.2s;
}
.info-card:hover { border-color: var(--purple); box-shadow: var(--shadow); }
.info-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--purple-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-icon svg { width: 22px; height: 22px; color: var(--purple); }
.info-icon.orange { background: var(--orange-light); }
.info-icon.orange svg { color: var(--orange); }

/* ── BLOG CARD ── */
.blog-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.25s; text-decoration: none; display: block; }
.blog-card:hover { border-color: var(--purple); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-card-img { height: 200px; background: var(--bg-section); overflow: hidden; position: relative; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-cat { position: absolute; top: 16px; left: 16px; }
.blog-card-body { padding: 24px; }
.blog-card-meta { font-size: 12px; color: var(--text-light); margin-bottom: 10px; display: flex; gap: 12px; }
.blog-card h3 { font-size: 17px; margin-bottom: 10px; color: var(--text); line-height: 1.4; }
.blog-card p { font-size: 14px; }
.read-more { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--purple); margin-top: 14px; }

/* ── FEATURED BLOG CARD ── */
.blog-card-featured {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 0;
  overflow: hidden; min-height: 300px; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  transition: all 0.25s; text-decoration: none;
}
.blog-card-featured:hover { border-color: var(--purple); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-card-featured .blog-card-img { height: 100%; min-height: 240px; }
.blog-card-featured .blog-card-body { padding: 40px; display: flex; flex-direction: column; justify-content: center; }


/* ── TIMELINE ── */
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 8px; bottom: 8px; width: 2px; background: var(--border); }
.tl-item { position: relative; margin-bottom: 36px; }
.tl-dot { position: absolute; left: -28px; top: 4px; width: 14px; height: 14px; border-radius: 50%; background: var(--orange); border: 3px solid #fff; box-shadow: 0 0 0 2px var(--orange); }
.tl-year { font-size: 12px; font-weight: 700; color: var(--orange); font-family: var(--mono); margin-bottom: 4px; }
.tl-title { font-family: var(--display); font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.tl-desc { font-size: 14px; color: var(--text-muted); }

/* ── PRICING ── */
.price-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px; transition: all 0.25s; position: relative; overflow: hidden;
}
.price-card.featured { border-color: var(--purple); box-shadow: var(--shadow-lg); }
.price-card.featured::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--purple), var(--orange)); }
.price-num { font-family: var(--display); font-size: 3rem; font-weight: 800; color: var(--text); line-height: 1; }
.price-per { font-size: 15px; color: var(--text-muted); font-weight: 500; }
.price-features { list-style: none; margin: 24px 0; display: flex; flex-direction: column; gap: 12px; }
.price-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-muted); }
.check { width: 18px; height: 18px; background: var(--purple-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.check svg { width: 10px; height: 10px; color: var(--purple); }
.check.orange { background: var(--orange-light); }
.check.orange svg { color: var(--orange); }

/* ── HERO SHAPES ── */
.hero-shape {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.25; pointer-events: none;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero { background: var(--bg-section); padding: 80px 0 72px; border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -60px; right: -60px; width: 300px; height: 300px; background: var(--purple-light); border-radius: 50%; filter: blur(60px); opacity: 0.5; }

/* ── FAQ ── */
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; }
.faq-q { padding: 20px 24px; font-weight: 600; font-size: 15px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background 0.2s; }
.faq-q:hover { background: var(--bg-soft); }
.faq-q.open { color: var(--purple); }
.faq-a { padding: 0 24px; max-height: 0; overflow: hidden; transition: all 0.3s ease; font-size: 14px; color: var(--text-muted); line-height: 1.75; }
.faq-a.open { padding: 0 24px 20px; max-height: 300px; }
.faq-icon { width: 22px; height: 22px; border: 1.5px solid var(--border-mid); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s; color: var(--text-muted); flex-shrink: 0; }
.faq-q.open .faq-icon { background: var(--purple); border-color: var(--purple); color: #fff; }

/* ── VALUE ROW (about) ── */
.value-card { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; border-left: 4px solid var(--purple); }
.value-card.orange { border-left-color: var(--orange); }

/* ── SCROLL OBSERVER JS ── */
/* (observer script at bottom of each page) */
@media (max-width: 900px) {
  :root { --container-px: 24px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 24px; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 76px; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
    flex-direction: column; padding: 32px; gap: 12px;
    transform: translateY(-20px); opacity: 0; visibility: hidden;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1500; align-items: center; border-top: 1px solid var(--border);
    overflow-y: auto; text-align: center;
  }
  .nav-links.active { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-links a { font-size: 1.25rem; width: 100%; padding: 16px; border-bottom: 1px solid var(--border); border-radius: 0; }
  .nav-links a:hover { background: var(--bg-soft); }
  .nav-links .btn-nav, .nav-links .btn-nav-outline { margin-top: 10px; border-radius: 12px; justify-content: center; }
  
  .blog-card-featured { grid-template-columns: 1fr; }
  .blog-card-featured .blog-card-img { height: 260px; min-height: auto; }
}

@media (max-width: 768px) {
  .hero-stats { flex-wrap: wrap; }
  .hero-stat { flex: 0 0 50%; border-bottom: 1px solid var(--border); }
  .hero-stat:nth-child(2n) { border-left: 1px solid var(--border) !important; }
  .hero-stat:nth-child(3), .hero-stat:nth-child(4) { border-bottom: none; }
  
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .section { padding: 80px 0; }
}

@media (max-width: 600px) {
  :root { --container-px: 18px; }
  .section { padding: 64px 0; }
  h1 { font-size: 2.4rem; line-height: 1.1; }
  h2 { font-size: 2rem; }
  .hero-stat { flex: 0 0 100%; border-left: none !important; }
  .hero-stat:nth-child(3) { border-bottom: 1px solid var(--border); }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-logo { margin: 0 auto 20px; }
  .social-links { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
}

