/* TokScaleX Design System — shared across all pages */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --teal: #00C2BB;
  --teal-dark: #00918C;
  --teal-light: #E5FAF9;
  --pink: #FF0050;
  --pink-light: #FFE9F0;
  --ink: #0D1B2A;
  --ink2: #1B2B3F;
  --gray: #5C6B7F;
  --gray-light: #F5F7FA;
  --white: #FFFFFF;
  --border: #E6EAF0;
  --font: 'Plus Jakarta Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--ink); background: var(--white); font-size: 16px; line-height: 1.7; overflow-x: hidden; }

/* TOPBAR */
.topbar { background: var(--ink); color: #fff; font-size: 13px; text-align: center; padding: 8px 5%; }
.topbar a { color: var(--teal); text-decoration: none; font-weight: 600; }

/* NAV */
nav { position: sticky; top: 0; z-index: 999; background: rgba(255,255,255,0.96); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; padding: 0 4%; height: 74px; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-mark { width: 40px; height: 40px; border-radius: 10px; background: var(--ink); display: flex; align-items: flex-end; justify-content: center; gap: 3px; padding-bottom: 8px; }
.nav-logo-mark span { width: 6px; border-radius: 2px; background: var(--teal); display: block; }
.nav-logo-mark span:nth-child(1) { height: 8px; }
.nav-logo-mark span:nth-child(2) { height: 14px; }
.nav-logo-mark span:nth-child(3) { height: 20px; background: linear-gradient(to bottom, var(--pink) 30%, var(--teal) 30%); }
.nav-logo-text { font-size: 20px; font-weight: 800; color: var(--ink); letter-spacing: -0.5px; }
.nav-logo-text em { font-style: normal; color: var(--teal-dark); }
.nav-logo-text b { color: var(--pink); }
.nav-links { display: flex; gap: 4px; list-style: none; align-items: center; }
.nav-links > li { position: relative; }
.nav-links > li > a { color: var(--ink2); text-decoration: none; font-size: 14.5px; font-weight: 500; transition: color 0.2s; padding: 26px 14px; display: block; }
.nav-links > li > a:hover, .nav-links > li > a.active { color: var(--teal-dark); }
.dropdown { position: absolute; top: 100%; left: 0; background: #fff; border: 1px solid var(--border); border-radius: 12px; min-width: 260px; padding: 10px; box-shadow: 0 20px 40px rgba(13,27,42,0.1); opacity: 0; visibility: hidden; transform: translateY(8px); transition: all 0.25s; list-style: none; }
.nav-links > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a { display: block; padding: 10px 14px; border-radius: 8px; color: var(--ink2); text-decoration: none; font-size: 14px; font-weight: 500; transition: all 0.15s; }
.dropdown li a:hover { background: var(--teal-light); color: var(--teal-dark); }
.nav-cta { background: var(--pink); color: #fff !important; font-weight: 700; font-size: 14px; padding: 11px 26px; border-radius: 100px; text-decoration: none; transition: all 0.25s; box-shadow: 0 4px 14px rgba(255,0,80,0.25); white-space: nowrap; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,0,80,0.35); }
.mobile-toggle { display: none; background: none; border: none; font-size: 26px; cursor: pointer; color: var(--ink); }

/* BUTTONS */
.btn-lg { background: var(--pink); color: #fff; font-weight: 700; font-size: 16px; padding: 16px 40px; border-radius: 100px; text-decoration: none; transition: all 0.25s; box-shadow: 0 6px 20px rgba(255,0,80,0.28); display: inline-block; border: none; cursor: pointer; font-family: var(--font); }
.btn-lg:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(255,0,80,0.38); }
.btn-outline { background: #fff; color: var(--ink); font-weight: 600; font-size: 16px; padding: 16px 40px; border-radius: 100px; text-decoration: none; border: 2px solid var(--border); transition: all 0.25s; display: inline-block; }
.btn-outline:hover { border-color: var(--teal); color: var(--teal-dark); }
.btn-teal { background: var(--teal); color: var(--ink); font-weight: 700; font-size: 15px; padding: 14px 34px; border-radius: 100px; text-decoration: none; transition: all 0.25s; display: inline-block; }
.btn-teal:hover { background: #00d8d0; transform: translateY(-2px); }

/* PAGE HERO (inner pages) */
.page-hero { padding: 80px 5% 70px; text-align: center; background: radial-gradient(ellipse 60% 50% at 20% 0%, rgba(0,194,187,0.10), transparent), radial-gradient(ellipse 50% 40% at 85% 10%, rgba(255,0,80,0.07), transparent); }
.page-hero .eyebrow { display: inline-block; background: var(--teal-light); color: var(--teal-dark); font-size: 13.5px; font-weight: 700; padding: 8px 20px; border-radius: 100px; margin-bottom: 24px; border: 1px solid rgba(0,194,187,0.25); }
.page-hero h1 { font-size: clamp(36px, 5.5vw, 60px); font-weight: 800; line-height: 1.12; letter-spacing: -1.8px; max-width: 800px; margin: 0 auto; }
.page-hero h1 .hl-teal { color: var(--teal-dark); }
.page-hero h1 .hl-pink { color: var(--pink); }
.page-hero p { font-size: 18px; color: var(--gray); max-width: 640px; margin: 22px auto 0; }
.page-hero .actions { display: flex; justify-content: center; gap: 16px; margin-top: 38px; flex-wrap: wrap; }

/* SECTIONS */
.section { padding: 90px 5%; }
.section-alt { background: var(--gray-light); }
.section-dark { background: var(--ink); color: #fff; }
.section-dark .sec-title { color: #fff; }
.section-dark .sec-sub { color: rgba(255,255,255,0.6); }
.section-dark .sec-eyebrow { color: var(--teal); }
.sec-eyebrow { font-size: 14px; font-weight: 700; color: var(--pink); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px; text-align: center; }
.sec-title { font-size: clamp(30px, 4vw, 44px); font-weight: 800; letter-spacing: -1.2px; line-height: 1.15; text-align: center; max-width: 760px; margin: 0 auto; }
.sec-sub { text-align: center; color: var(--gray); font-size: 17px; max-width: 600px; margin: 16px auto 0; }
.container { max-width: 1200px; margin: 0 auto; }

/* CARDS */
.card { background: #fff; border-radius: 20px; padding: 40px 36px; border: 1px solid var(--border); transition: all 0.3s; }
.card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(13,27,42,0.08); }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 26px; margin-top: 56px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 56px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 56px; }
.icon-badge { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 22px; }
.ib-teal { background: var(--teal-light); }
.ib-pink { background: var(--pink-light); }
.ib-amber { background: #FFF4E0; }
.ib-purple { background: #EAE8FF; }
.card h3 { font-size: 20px; font-weight: 700; letter-spacing: -0.4px; margin-bottom: 12px; }
.card p { font-size: 15px; color: var(--gray); }

/* CHECK LIST */
.check-list { list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; padding: 8px 0; font-size: 15px; font-weight: 500; }
.check { width: 22px; height: 22px; min-width: 22px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; background: var(--teal); color: var(--ink); margin-top: 3px; }
.check-pink { background: var(--pink); color: #fff; }

/* PRICING / PLAN CARDS */
.plan-card { background: #fff; border: 2px solid var(--border); border-radius: 24px; padding: 44px 38px; transition: all 0.3s; position: relative; display: flex; flex-direction: column; }
.plan-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(13,27,42,0.1); }
.plan-card.featured { border-color: var(--teal); box-shadow: 0 12px 40px rgba(0,194,187,0.15); }
.plan-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--teal); color: var(--ink); font-size: 12px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; padding: 6px 20px; border-radius: 100px; white-space: nowrap; }
.plan-name { font-size: 24px; font-weight: 800; letter-spacing: -0.6px; margin-bottom: 8px; }
.plan-tagline { font-size: 14.5px; color: var(--gray); margin-bottom: 28px; min-height: 44px; }
.plan-card .check-list { flex: 1; margin-bottom: 30px; }
.plan-card .check-list li { font-size: 14.5px; padding: 7px 0; }

/* STEP CARDS */
.step-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09); border-radius: 20px; padding: 40px 36px; }
.step-badge { display: inline-block; background: var(--teal); color: var(--ink); font-size: 12px; font-weight: 800; letter-spacing: 0.08em; padding: 6px 16px; border-radius: 100px; margin-bottom: 22px; }
.step-card h3 { font-size: 20px; font-weight: 700; letter-spacing: -0.4px; margin-bottom: 14px; color: #fff; }
.step-card p { font-size: 15px; color: rgba(255,255,255,0.65); }
.step-card strong { color: var(--teal); font-weight: 700; }

/* CTA BANNER */
.cta-banner { margin: 90px auto; max-width: 1200px; background: linear-gradient(120deg, var(--ink) 0%, #14324B 55%, #005753 100%); border-radius: 28px; padding: 70px 8%; text-align: center; color: #fff; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: -60px; right: -60px; width: 280px; height: 280px; border-radius: 50%; background: radial-gradient(circle, rgba(0,242,234,0.15), transparent 70%); }
.cta-banner h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; letter-spacing: -1.2px; max-width: 640px; margin: 0 auto 16px; line-height: 1.2; }
.cta-banner p { color: rgba(255,255,255,0.65); font-size: 17px; max-width: 480px; margin: 0 auto 36px; }
.cta-note { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 18px; }

/* FOOTER */
footer { background: var(--ink); color: #fff; padding: 70px 5% 32px; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 56px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); max-width: 1250px; margin: 0 auto; }
.foot-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.foot-desc { font-size: 14.5px; color: rgba(255,255,255,0.55); max-width: 280px; }
.foot-social { display: flex; gap: 10px; margin-top: 24px; }
.foot-social a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); text-decoration: none; font-size: 12px; font-weight: 700; transition: all 0.2s; }
.foot-social a:hover { border-color: var(--teal); color: var(--teal); }
footer h4 { font-size: 15px; font-weight: 700; margin-bottom: 20px; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 11px; }
footer ul li a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 14.5px; transition: color 0.2s; }
footer ul li a:hover { color: var(--teal); }
.foot-contact-item { display: flex; gap: 10px; font-size: 14.5px; color: rgba(255,255,255,0.55); margin-bottom: 12px; }
.foot-bottom { text-align: center; padding-top: 28px; font-size: 13px; color: rgba(255,255,255,0.35); }

/* FORMS */
.form-card { background: #fff; border: 1px solid var(--border); border-radius: 24px; padding: 48px 44px; max-width: 640px; margin: 0 auto; }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px 18px; border: 1.5px solid var(--border); border-radius: 12px; font-family: var(--font); font-size: 15px; transition: border-color 0.2s; background: var(--gray-light); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--teal); background: #fff; }
.form-group textarea { min-height: 120px; resize: vertical; }

/* TABS */
.tabs { display: flex; justify-content: center; gap: 10px; margin: 48px 0 40px; flex-wrap: wrap; }
.tab-btn { background: #fff; border: 2px solid var(--border); border-radius: 100px; padding: 12px 30px; font-family: var(--font); font-size: 15px; font-weight: 700; cursor: pointer; transition: all 0.25s; color: var(--gray); }
.tab-btn.active { background: var(--ink); border-color: var(--ink); color: #fff; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* DETAIL BLOCKS */
.detail-block { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 32px 30px; }
.detail-block h4 { font-size: 17px; font-weight: 700; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.detail-block ul { list-style: none; }
.detail-block ul li { font-size: 14px; color: var(--gray); padding: 5px 0 5px 18px; position: relative; }
.detail-block ul li::before { content: '●'; position: absolute; left: 0; color: var(--teal); font-size: 9px; top: 11px; }

/* STATS */
.big-stat { text-align: center; padding: 44px 32px; border-radius: 20px; background: var(--gray-light); border: 1px solid var(--border); }
.big-stat-num { font-size: 54px; font-weight: 800; letter-spacing: -2.5px; line-height: 1; color: var(--teal-dark); }
.big-stat h4 { font-size: 17px; font-weight: 700; margin: 14px 0 8px; }
.big-stat p { font-size: 14px; color: var(--gray); }

/* CASE CARDS */
.cs-card { border-radius: 20px; border: 1px solid var(--border); overflow: hidden; transition: all 0.3s; background: #fff; }
.cs-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(13,27,42,0.1); }
.cs-top { padding: 32px 30px 24px; color: #fff; }
.cst-1 { background: linear-gradient(135deg, #0D1B2A, #1E3A54); }
.cst-2 { background: linear-gradient(135deg, #00918C, #00C2BB); }
.cst-3 { background: linear-gradient(135deg, #C1003D, #FF0050); }
.cst-4 { background: linear-gradient(135deg, #4A3AB4, #7B61FF); }
.cst-5 { background: linear-gradient(135deg, #B45309, #F59E0B); }
.cst-6 { background: linear-gradient(135deg, #14532D, #22C55E); }
.cs-cat { display: inline-block; font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; background: rgba(255,255,255,0.15); padding: 5px 12px; border-radius: 100px; margin-bottom: 14px; }
.cs-top h3 { font-size: 20px; font-weight: 800; letter-spacing: -0.5px; line-height: 1.3; }
.cs-body { padding: 26px 30px 30px; }
.cs-stats { display: flex; gap: 28px; margin-bottom: 18px; flex-wrap: wrap; }
.cs-stat-val { font-size: 26px; font-weight: 800; letter-spacing: -1px; color: var(--ink); }
.cs-stat-label { font-size: 12.5px; color: var(--gray); }
.cs-body p { font-size: 14.5px; color: var(--gray); margin-bottom: 18px; }
.cs-more { color: var(--pink); font-weight: 700; font-size: 14px; text-decoration: none; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 74px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); padding: 16px 5%; gap: 0; align-items: stretch; }
  .nav-links.open > li > a { padding: 14px 10px; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding-left: 20px; display: none; }
  .nav-links.open > li:hover .dropdown { display: block; }
}
@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .foot-grid { grid-template-columns: 1fr; }
  .cs-stats { gap: 18px; }
  .form-card { padding: 34px 24px; }
}
