:root {
  --ink: #0d0f14;
  --ink-2: #2a2d36;
  --ink-3: #5a5f72;
  --ink-4: #9098b1;
  --bg: #ffffff;
  --bg-2: #f0efe9;
  --white: #ffffff;
  --blue: #1847d4;
  --blue-2: #2d5aee;
  --blue-light: #e8edfd;
  --blue-pale: #f3f5fe;
  --green: #0d7a55;
  --green-light: #d6f5ea;
  --amber: #c4780a;
  --amber-light: #fef3d6;
  --rose: #c41843;
  --rose-light: #fde8ee;
  --teal: #0b7b7b;
  --teal-light: #d5f3f3;
  --border: #e4e2db;
  --border-2: #d0cec5;
  --shadow-sm: 0 1px 4px rgba(13,15,20,.06), 0 2px 12px rgba(13,15,20,.04);
  --shadow: 0 4px 20px rgba(13,15,20,.08), 0 1px 4px rgba(13,15,20,.04);
  --shadow-lg: 0 16px 56px rgba(13,15,20,.12), 0 4px 16px rgba(13,15,20,.06);
  --shadow-xl: 0 32px 80px rgba(13,15,20,.16), 0 8px 24px rgba(13,15,20,.08);
  --r: 14px;
  --r-sm: 8px;
  --r-lg: 20px;
  --r-xl: 28px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Instrument Sans', sans-serif; background: white; color: var(--ink); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }

/* ═══ TYPOGRAPHY ═══ */
.display { font-family: 'Cormorant Garamond', serif; font-weight: 700; line-height: 1.05; letter-spacing: -.02em; }
.mono { font-family: 'JetBrains Mono', monospace; }
.label { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); }

/* ═══ UTILITIES ═══ */
.center { text-align: center; }
.max-w { max-width: 1200px; margin: 0 auto; }
.max-w-sm { max-width: 680px; margin: 0 auto; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.w-full { width: 100%; }

/* ═══ BUTTONS ═══ */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: 'Instrument Sans', sans-serif; font-weight: 600; font-size: .875rem; cursor: pointer; border: none; text-decoration: none; transition: all .22s cubic-bezier(.4,0,.2,1); white-space: nowrap; }
.btn-solid { background: var(--ink); color: #fff; padding: 13px 26px; border-radius: 100px; }
.btn-solid:hover { background: var(--blue); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(24,71,212,.3); }
.btn-blue { background: var(--blue); color: #fff; padding: 13px 26px; border-radius: 100px; }
.btn-blue:hover { background: #1038b8; transform: translateY(-1px); box-shadow: 0 8px 28px rgba(24,71,212,.35); }
.btn-outline { background: transparent; color: var(--ink); padding: 12px 24px; border-radius: 100px; border: 1.5px solid var(--border-2); }
.btn-outline:hover { border-color: var(--ink); }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-white { background: #fff; color: var(--blue); padding: 14px 30px; border-radius: 100px; font-weight: 700; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,255,255,.2); }
.btn-ghost-white { background: rgba(255,255,255,.1); color: #fff; padding: 13px 26px; border-radius: 100px; border: 1.5px solid rgba(255,255,255,.25); }
.btn-ghost-white:hover { background: rgba(255,255,255,.18); }
.btn-icon { width: 42px; height: 42px; border-radius: 50%; padding: 0; justify-content: center; }

/* ═══ NAV ═══ */
#nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; padding: 0 5%; height: 68px; display: flex; align-items: center; justify-content: space-between; transition: all .3s; }
#nav.scrolled { background: rgba(255,255,255,.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-group {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-text {
  font-weight: 600;
  font-size: 1.1rem;
}

.nav-logo-text em {
  font-style: normal;
  color: black; /* or your accent color */
}

.nav-logo-sub {
  font-size: .65rem;
  color: black;
  font-weight: 400;
  letter-spacing: .02em;
  margin-top: 2px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-mark { width: 34px; height: 34px; background: var(--blue); border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nav-logo-text { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 700; color: var(--ink); letter-spacing: -.01em; }
.nav-logo-text em { color: var(--blue); font-style: normal; }
.nav-links { display: flex; list-style: none; gap: 4px; }
.nav-links a { padding: 7px 14px; border-radius: 100px; font-size: .875rem; font-weight: 500; color: var(--ink-3); text-decoration: none; transition: all .2s; }
.nav-links a:hover { color: var(--ink); background: var(--bg-2); }
.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-ham { display: none; background: none; border: none; cursor: pointer; padding: 6px; flex-direction: column; gap: 5px; }
.nav-ham span { display: block; width: 22px; height: 1.5px; background: var(--ink); border-radius: 2px; transition: all .3s; }

/* Mobile drawer */
.mobile-drawer { display: none; position: fixed; top: 68px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); z-index: 190; padding: 24px 5% 32px; flex-direction: column; gap: 4px; box-shadow: var(--shadow-lg); }
.mobile-drawer.open { display: flex; }
.mobile-drawer a { padding: 12px 16px; border-radius: var(--r-sm); font-size: 1rem; font-weight: 500; color: var(--ink-2); text-decoration: none; transition: background .15s; }
.mobile-drawer a:hover { background: var(--bg-2); }
.mobile-drawer .drawer-btns { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; padding-top: 20px; border-top: 1px solid var(--border); }
.mobile-drawer .btn { justify-content: center; border-radius: var(--r); }

/* ═══ HERO ═══ */
.hero { min-height: 100svh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: clamp(100px, 15vw, 140px) 5% clamp(60px, 8vw, 100px); text-align: center; position: relative; overflow: hidden; }
.hero-canvas { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-bg { position: absolute; inset: 0; z-index: 0; background: radial-gradient(ellipse 800px 600px at 50% 20%, rgba(37,99,235,.07) 0%, transparent 70%), radial-gradient(ellipse 600px 400px at 80% 70%, rgba(5,150,105,.06) 0%, transparent 60%); }
  .hero-dots { position: absolute; inset: 0; z-index: 0; background-image: radial-gradient(circle, rgba(26,23,20,0.09) 1px, transparent 1px); background-size: 32px 32px; mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%); }
  .hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px; border-radius: 100px; background: var(--accent-light); color: var(--accent); font-size: .82rem; font-weight: 600; letter-spacing: .02em; margin-bottom: 24px; position: relative; z-index: 1; animation: fadeDown .6s ease both; }
  .hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse 2s infinite; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px 6px 8px; border-radius: 100px; background: var(--white); border: 1px solid var(--border); font-size: .78rem; font-weight: 600; color: var(--ink-2); margin-bottom: 28px; position: relative; z-index: 2; box-shadow: var(--shadow-sm); animation: fadeSlideDown .6s ease both; }
.hero-eyebrow-dot { width: 22px; height: 22px; border-radius: 50%; background: var(--blue-light); display: flex; align-items: center; justify-content: center; }
.hero-eyebrow-dot svg { width: 12px; height: 12px; }
.hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem, 7.5vw, 6.5rem); font-weight: 700; line-height: 1.02; letter-spacing: -.03em; position: relative; z-index: 2; max-width: 900px; animation: fadeSlideUp .7s .1s ease both; }
.hero-title .accent { color: var(--blue); position: relative; }
.hero-title .accent::before { content:''; position:absolute; bottom:8px; left:0; right:0; height:3px; background:var(--blue); opacity:.25; border-radius:2px; }
.hero-sub { font-size: clamp(.95rem, 2vw, 1.125rem); color: var(--ink-3); max-width: 560px; margin: 20px auto 0; position: relative; z-index: 2; line-height: 1.7; animation: fadeSlideUp .7s .2s ease both; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 36px; position: relative; z-index: 2; animation: fadeSlideUp .7s .3s ease both; }
.hero-trusted { display: flex; align-items: center; gap: 16px; margin-top: 52px; position: relative; z-index: 2; animation: fadeSlideUp .7s .45s ease both; flex-wrap: wrap; justify-content: center; }
.hero-trusted-avatars { display: flex; }
.hero-trusted-avatars span { width: 30px; height: 30px; border-radius: 50%; background: var(--bg-2); border: 2px solid #fff; margin-left: -8px; display: flex; align-items: center; justify-content: center; font-size: .7rem; font-weight: 700; color: var(--ink-2); overflow: hidden; }
.hero-trusted-avatars span:first-child { margin-left: 0; }
.hero-trusted p { font-size: .82rem; color: var(--ink-3); }
.hero-trusted p strong { color: var(--ink); }
.hero-stat-row { display: flex; gap: clamp(24px, 5vw, 64px); margin-top: 64px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 2; animation: fadeSlideUp .7s .5s ease both; padding-top: 40px; border-top: 1px solid var(--border); width: 100%; max-width: 760px; }
.hero-stat { text-align: center; }
.hero-stat-num { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; color: var(--ink); letter-spacing: -.02em; }
.hero-stat-label { font-size: .78rem; color: var(--ink-4); font-weight: 500; margin-top: 2px; }

/* ═══ SECTION WRAPPER ═══ */
section { padding: clamp(72px, 10vw, 120px) 5%; }
.section-head { text-align: center; margin-bottom: clamp(48px, 7vw, 72px); }
.section-head .label { margin-bottom: 14px; display: block; }
.section-head h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 700; line-height: 1.1; letter-spacing: -.02em; color: var(--ink); }
.section-head p { font-size: clamp(.9rem, 2vw, 1.05rem); color: var(--ink-3); max-width: 540px; margin: 16px auto 0; line-height: 1.75; }

/* ═══ VIDEO SECTION ═══ */
.video-section { background: var(--white); }
.video-frame { max-width: 900px; margin: 0 auto; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-xl); border: 1px solid var(--border); background: var(--ink); }
.video-frame iframe { width: 100%; aspect-ratio: 16/9; display: block; border: none; }
.video-meta { display: flex; align-items: center; justify-content: center; gap: 24px; margin-top: 20px; flex-wrap: wrap; }
.video-meta-pill { display: flex; align-items: center; gap: 7px; font-size: .8rem; color: var(--ink-3); font-weight: 500; }
.video-meta-pill svg { width: 16px; height: 16px; color: var(--blue); }

/* ═══ FEATURES GRID ═══ */
.features-bg { background: var(--bg); }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto; }
.feat-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: clamp(24px, 3vw, 36px); display: flex; flex-direction: column; gap: 18px; transition: all .3s cubic-bezier(.4,0,.2,1); position: relative; overflow: hidden; }
.feat-card::after { content:''; position:absolute; inset:0; border-radius:var(--r-lg); opacity:0; transition:opacity .3s; pointer-events:none; }
.feat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.feat-card.c-blue:hover { box-shadow: 0 16px 48px rgba(24,71,212,.12); }
.feat-card.c-blue::after { background: linear-gradient(135deg, rgba(24,71,212,.04), transparent 60%); }
.feat-card.c-blue:hover::after { opacity: 1; }
.feat-card.c-green:hover { box-shadow: 0 16px 48px rgba(13,122,85,.1); }
.feat-card.c-green::after { background: linear-gradient(135deg, rgba(13,122,85,.04), transparent 60%); }
.feat-card.c-green:hover::after { opacity: 1; }
.feat-card.c-amber:hover { box-shadow: 0 16px 48px rgba(196,120,10,.1); }
.feat-card.c-amber::after { background: linear-gradient(135deg, rgba(196,120,10,.04), transparent 60%); }
.feat-card.c-amber:hover::after { opacity: 1; }
.feat-card.c-rose:hover { box-shadow: 0 16px 48px rgba(196,24,67,.1); }
.feat-card.c-rose::after { background: linear-gradient(135deg, rgba(196,24,67,.04), transparent 60%); }
.feat-card.c-rose:hover::after { opacity: 1; }
.feat-card.c-teal:hover { box-shadow: 0 16px 48px rgba(11,123,123,.1); }
.feat-card.c-teal::after { background: linear-gradient(135deg, rgba(11,123,123,.04), transparent 60%); }
.feat-card.c-teal:hover::after { opacity: 1; }
.feat-icon-wrap { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feat-icon-wrap svg { width: 26px; height: 26px; }
.feat-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--ink); letter-spacing: -.01em; }
.feat-card p { font-size: .875rem; color: var(--ink-3); line-height: 1.7; flex: 1; }
.feat-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.feat-chip { font-size: .72rem; font-weight: 600; padding: 4px 10px; border-radius: 100px; }
.feat-card.wide { grid-column: span 2; }
.feat-card .feat-visual { margin-top: 4px; border-radius: var(--r); overflow: hidden; }

/* ═══ FEATURE DEMO ROWS ═══ */
.demo-section { background: var(--white); }
.demo-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; max-width: 1100px; margin: 0 auto 100px; }
.demo-row:last-child { margin-bottom: 0; }
.demo-row.flip { direction: rtl; }
.demo-row.flip > * { direction: ltr; }
.demo-txt .label { display: block; margin-bottom: 14px; }
.demo-txt h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; line-height: 1.12; letter-spacing: -.02em; margin-bottom: 16px; }
.demo-txt p { font-size: .9375rem; color: var(--ink-3); line-height: 1.75; margin-bottom: 24px; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.check-list li { display: flex; align-items: flex-start; gap: 11px; font-size: .875rem; color: var(--ink-2); }
.check-list li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }

/* Demo UI panels */
.ui-panel { border-radius: var(--r-xl); padding: clamp(20px, 3vw, 32px); box-shadow: var(--shadow-lg); border: 1px solid var(--border); background: var(--white); }
.ui-panel-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.ui-panel-title { font-size: .875rem; font-weight: 700; color: var(--ink); }
.ui-status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse-green 2s infinite; }
@keyframes pulse-green { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(1.3)} }

/* ═══ CHARTS SECTION ═══ */
.charts-bg { background: var(--bg); }
.charts-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; max-width: 1200px; margin: 0 auto; }
.chart-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px; transition: transform .3s, box-shadow .3s; }
.chart-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.chart-card-head { margin-bottom: 20px; }
.chart-card-head h4 { font-size: .9375rem; font-weight: 700; color: var(--ink); }
.chart-card-head p { font-size: .78rem; color: var(--ink-4); margin-top: 3px; }

/* ═══ INTEGRATIONS ═══ */
.int-section { background: var(--white); }
.int-grid { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.int-card { display: flex; align-items: center; gap: 12px; padding: 14px 22px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--r); font-weight: 600; font-size: .875rem; color: var(--ink-2); transition: all .22s; cursor: default; }
.int-card:hover { border-color: var(--blue); background: var(--blue-pale); color: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow); }
.int-logo { width: 28px; height: 28px; border-radius: 7px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.int-logo svg { width: 18px; height: 18px; }

/* ═══ STEPS ═══ */
.steps-bg { background: var(--bg); }
.steps-row { display: flex; max-width: 1000px; margin: 0 auto; flex-wrap: wrap; justify-content: center; gap: 0; }
.step-item { margin-top: 15px;flex: 1; min-width: 180px; text-align: center; padding: 0 clamp(12px,2vw,28px); position: relative; }
.step-item::after { content:''; position:absolute; top:24px; left:calc(50% + 24px); right:calc(-50% + 24px); height:1px; background: var(--border); }
.step-item:last-child::after { display:none; }
.step-num { width: 48px; height: 48px; border-radius: 50%; background: var(--blue); color: #fff; font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; box-shadow: 0 4px 16px rgba(24,71,212,.25); }
.step-item h4 { font-size: .9375rem; font-weight: 700; margin-bottom: 8px; color: var(--ink); }
.step-item p { font-size: .825rem; color: var(--ink-3); line-height: 1.6; }

/* ═══ TESTIMONIALS ═══ */
.testi-bg { background: var(--white); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; max-width: 1100px; margin: 0 auto; }
.testi-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg); padding: clamp(22px,3vw,32px); transition: all .3s; }
.testi-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--border-2); }
.testi-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testi-stars svg { width: 15px; height: 15px; color: var(--amber); }
.testi-card blockquote { font-size: .9rem; color: var(--ink-2); line-height: 1.75; font-style: italic; margin-bottom: 22px; }
.testi-person { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .875rem; font-weight: 700; flex-shrink: 0; }
.testi-name { font-size: .875rem; font-weight: 700; color: var(--ink); }
.testi-role { font-size: .75rem; color: var(--ink-4); margin-top: 1px; }

/* ═══ CTA SECTION ═══ */
.cta-bg { background: var(--ink); padding: clamp(72px,10vw,120px) 5%; position: relative; overflow: hidden; }
.cta-bg::before { content:''; position:absolute; top:-200px; right:-200px; width:600px; height:600px; border-radius:50%; background:radial-gradient(circle, rgba(24,71,212,.25), transparent 70%); pointer-events:none; }
.cta-bg::after { content:''; position:absolute; bottom:-150px; left:-100px; width:500px; height:500px; border-radius:50%; background:radial-gradient(circle, rgba(13,122,85,.15), transparent 70%); pointer-events:none; }
.cta-inner { position:relative; z-index:1; text-align:center; max-width:680px; margin:0 auto; }
.cta-inner h2 { font-family:'Cormorant Garamond',serif; font-size:clamp(2.4rem,5vw,4rem); font-weight:700; color:#fff; letter-spacing:-.02em; line-height:1.05; margin-bottom:18px; }
.cta-inner p { font-size:clamp(.9rem,2vw,1.1rem); color:rgba(255,255,255,.6); line-height:1.7; margin-bottom:36px; }
.cta-actions { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }

/* ═══ DEMO FORM ═══ */
.demo-bg { background: var(--bg); }
.demo-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl); padding: clamp(28px,5vw,56px); max-width: 680px; margin: 0 auto; box-shadow: var(--shadow-xl); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: .78rem; font-weight: 700; color: var(--ink-3); letter-spacing: .02em; text-transform: uppercase; }
.field input, .field select, .field textarea { padding: 12px 15px; border: 1.5px solid var(--border); border-radius: var(--r-sm); font-family: 'Instrument Sans', sans-serif; font-size: .9rem; color: var(--ink); background: var(--bg); outline: none; transition: border-color .2s, box-shadow .2s; width: 100%; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(24,71,212,.08); }
.field textarea { min-height: 96px; resize: vertical; }
.field select { cursor: pointer; }
.form-note { font-size: .775rem; color: var(--ink-4); margin-top: 14px; display: flex; align-items: center; gap: 6px; justify-content: center; }

/* ═══ FOOTER ═══ */
footer { background: var(--ink-2); padding: clamp(48px,8vw,80px) 5% clamp(28px,4vw,40px); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: clamp(32px,5vw,60px); margin-bottom: clamp(36px,5vw,56px); }
.footer-brand p { font-size: .85rem; color: rgba(255,255,255,.45); margin-top: 14px; line-height: 1.7; }
.footer-col h5 { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: .875rem; color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; flex-direction: column; justify-content: center; align-items: center; border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.3); }

/* ═══ ANIMATIONS ═══ */
@keyframes fadeSlideUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeSlideDown { from{opacity:0;transform:translateY(-12px)} to{opacity:1;transform:translateY(0)} }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes spin-slow { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
@keyframes dash { to{stroke-dashoffset:0} }
.reveal { opacity:0; transform:translateY(20px); transition: opacity .65s cubic-bezier(.16,1,.3,1), transform .65s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity:1; transform:none; }
.reveal-d1 { transition-delay:.08s; }
.reveal-d2 { transition-delay:.16s; }
.reveal-d3 { transition-delay:.24s; }
.reveal-d4 { transition-delay:.32s; }
.reveal-d5 { transition-delay:.4s; }

/* ═══ INLINE SVG UIs ═══ */
/* Fee UI */
.fee-row { display:flex; align-items:center; justify-content:space-between; padding:11px 0; border-bottom:1px solid var(--border); }
.fee-row:last-child { border:none; }
.fee-avatar { width:30px; height:30px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:.7rem; font-weight:700; flex-shrink:0; }
.fee-info { flex:1; margin-left:10px; }
.fee-name { font-size:.82rem; font-weight:600; color:var(--ink); }
.fee-class { font-size:.72rem; color:var(--ink-4); }
.fee-right { text-align:right; }
.fee-amount { font-family:'JetBrains Mono',monospace; font-size:.82rem; font-weight:500; color:var(--ink); }
.badge { display:inline-block; font-size:.68rem; font-weight:700; padding:2px 8px; border-radius:100px; }
.badge-green { background:var(--green-light); color:var(--green); }
.badge-amber { background:var(--amber-light); color:var(--amber); }
.badge-rose { background:var(--rose-light); color:var(--rose); }
.badge-blue { background:var(--blue-light); color:var(--blue); }

/* Attendance UI */
.att-row { display:flex; align-items:center; padding:9px 12px; border-radius:var(--r-sm); background:var(--bg); margin-bottom:7px; gap:10px; }
.att-ava { width:28px; height:28px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:.68rem; font-weight:700; flex-shrink:0; }
.att-name { flex:1; font-size:.8rem; font-weight:600; color:var(--ink); }
.att-btns { display:flex; gap:5px; }
.att-btn { padding:4px 12px; border:none; border-radius:100px; font-size:.7rem; font-weight:700; cursor:pointer; transition:all .15s; font-family:'Instrument Sans',sans-serif; }
.att-p { background:var(--green-light); color:var(--green); }
.att-p.on { background:var(--green); color:#fff; }
.att-a { background:var(--rose-light); color:var(--rose); }
.att-a.on { background:var(--rose); color:#fff; }

/* Progress bar */
.prog-wrap { background:var(--bg-2); border-radius:100px; height:6px; overflow:hidden; margin:6px 0 4px; }
.prog-fill { height:100%; border-radius:100px; background:linear-gradient(90deg,var(--blue),var(--teal)); }

/* WhatsApp chat */
.chat-bg { background:#e5ddd5; border-radius:var(--r-lg); padding:18px; }
.chat-header { display:flex; align-items:center; gap:10px; background:#075e54; border-radius:var(--r-lg) var(--r-lg) 0 0; padding:10px 14px; margin:-18px -18px 14px; }
.chat-ava { width:34px; height:34px; border-radius:50%; background:rgba(255,255,255,.2); display:flex; align-items:center; justify-content:center; font-size:1rem; flex-shrink:0; }
.chat-title { color:#fff; font-size:.82rem; font-weight:700; }
.chat-online { color:rgba(255,255,255,.7); font-size:.7rem; }
.bubble-in { background:#fff; border-radius:10px 10px 10px 2px; padding:10px 13px; max-width:85%; font-size:.78rem; line-height:1.55; box-shadow:0 1px 2px rgba(0,0,0,.1); margin-bottom:8px; }
.bubble-out { background:#dcf8c6; border-radius:10px 10px 2px 10px; padding:9px 13px; max-width:72%; font-size:.78rem; line-height:1.55; box-shadow:0 1px 2px rgba(0,0,0,.1); align-self:flex-end; margin-left:auto; }
.bubble-time { font-size:.65rem; color:#888; text-align:right; margin-top:3px; }

/* ═══ RESPONSIVE ═══ */
@media (max-width:1024px) {
  .feat-grid { grid-template-columns:repeat(2,1fr); }
  .feat-card.wide { grid-column:span 1; }
  .charts-grid { grid-template-columns:repeat(2,1fr); }
  .testi-grid { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width:768px) {
  .nav-links, .nav-right { display:none; }
  .nav-ham { display:flex; }
  .demo-row { grid-template-columns:1fr; gap:40px; }
  .demo-row.flip { direction:ltr; }
  .steps-row { flex-direction:column; align-items:center; }
  .step-item::after { display:none; }
  .feat-grid { grid-template-columns:1fr; }
  .form-grid { grid-template-columns:1fr; }
}
@media (max-width:600px) {
  .hero-stat-row { gap:20px; }
  .charts-grid { grid-template-columns:1fr; }
  .testi-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; }
  .int-grid { gap:10px; }
  .int-card { padding:11px 16px; font-size:.8rem; }
  .hero-trusted { gap:10px; }
}
@media (max-width:380px) {
  .hero-actions { flex-direction:column; align-items:center; }
  .cta-actions { flex-direction:column; align-items:center; }
}