/* ==========================================================
   Anokey.com — Stylesheet v3
   Direction: Modern SaaS — bold type, generous white space,
   flat surfaces, color used sparingly for impact.
   Blue = informational/brand accent. Orange = action/CTA accent.
   ========================================================== */

:root {
    --ink: #0B0E14;
    --ink-soft: #565B6E;
    --ink-faint: #8B90A0;
    --bg: #FFFFFF;
    --bg-soft: #F7F8FB;
    --line: #E6E8F0;
    --blue: #0B3D91;
    --blue-dim: #EEF3FC;
    --orange: #FF6B00;
    --orange-dim: #FFF1E5;
    --orange-dark: #E05A00;
    --white: #FFFFFF;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-full: 999px;
    --shadow-xs: 0 1px 2px rgba(11,14,20,0.05);
    --shadow-sm: 0 2px 10px rgba(11,14,20,0.06);
    --shadow-md: 0 12px 32px rgba(11,14,20,0.10);
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Inter', -apple-system, 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-family: var(--font); line-height: 1.2; font-weight: 700; letter-spacing: -0.025em; color: var(--ink); }

.section { padding: 96px 0; }
.section-alt { background: var(--bg-soft); }

.section-header { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-header.left { text-align: left; margin-left: 0; }
.tag {
    display: inline-flex; align-items: center; gap: 8px; color: var(--blue); font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.08em; font-size: 12px; margin-bottom: 16px;
}
.tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
.section-header .tag { justify-content: center; }
.section-header h2 { font-size: 38px; margin-bottom: 14px; }
.section-header p { color: var(--ink-soft); font-size: 17px; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    padding: 13px 26px; border-radius: var(--radius-sm); font-family: var(--font);
    font-weight: 600; font-size: 15px; cursor: pointer; border: 1.5px solid transparent;
    transition: all 0.2s var(--ease); white-space: nowrap;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn-secondary { background: var(--blue); color: var(--white); }
.btn-secondary:hover { background: #082C6B; transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,0.5); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-outline-blue { background: transparent; border-color: var(--line); color: var(--blue); }
.btn-outline-blue:hover { border-color: var(--blue); background: var(--blue-dim); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); }
.nav-link-ghost { font-weight: 500; font-size: 14.5px; color: var(--ink-soft); transition: color 0.2s var(--ease); }
.nav-link-ghost:hover { color: var(--blue); }
.btn-sm { padding: 9px 18px; font-size: 13.5px; }
.btn-block { display: flex; width: 100%; }

/* ---------- Navbar ---------- */
.navbar {
    background: var(--bg); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 1000;
    transition: box-shadow 0.2s var(--ease);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; padding-bottom: 16px; gap: 24px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font); font-size: 22px; font-weight: 800; color: var(--blue); flex-shrink: 0; letter-spacing: -0.02em; }
.logo img { height: 38px; width: auto; }
.logo span { color: var(--orange); }

.nav-menu { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.nav-menu a {
    font-weight: 500; font-size: 14.5px; color: var(--ink-soft); position: relative; padding: 8px 0;
    transition: color 0.2s var(--ease);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--ink); }
.nav-menu a.active::after {
    content: ''; position: absolute; left: 0; bottom: 0px; width: 100%; height: 2px;
    background: var(--orange); border-radius: 2px;
}

.nav-auth { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.nav-auth .user-chip {
    display: flex; align-items: center; gap: 9px; background: var(--bg-soft);
    padding: 6px 16px 6px 6px; border-radius: var(--radius-full); font-weight: 600; font-size: 14px; transition: all 0.2s var(--ease);
}
.nav-auth .user-chip:hover { background: var(--blue-dim); }
.nav-auth .user-chip .avatar-fallback {
    width: 30px; height: 30px; border-radius: 50%; background: var(--blue); color: #fff;
    display: flex; align-items: center; justify-content: center; font-size: 12.5px; font-weight: 700;
}
.nav-toggle { display: none; font-size: 22px; background: none; border: none; color: var(--ink); cursor: pointer; }
.nav-auth-mobile { display: none; }

/* ---------- Member Dashboard ---------- */
.dash-layout { display: grid; grid-template-columns: 264px 1fr; gap: 28px; align-items: start; }
.dash-sidebar { background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: 26px 18px; position: sticky; top: 90px; }
.dash-profile { text-align: center; padding-bottom: 20px; border-bottom: 1px solid var(--line); margin-bottom: 14px; }
.dash-avatar {
    width: 64px; height: 64px; border-radius: 50%; background: var(--blue); color: var(--white);
    display: inline-flex; align-items: center; justify-content: center; font-size: 26px; font-weight: 800; margin-bottom: 12px;
}
.dash-profile h3 { font-size: 17px; margin-bottom: 8px; }
.dash-nav { display: flex; flex-direction: column; gap: 2px; }
.dash-nav a {
    display: flex; align-items: center; gap: 11px; padding: 11px 14px; border-radius: var(--radius-sm);
    font-size: 14px; font-weight: 500; color: var(--ink-soft); transition: all 0.15s var(--ease);
}
.dash-nav a i { width: 18px; text-align: center; font-size: 14px; }
.dash-nav a:hover { background: var(--bg-soft); color: var(--ink); }
.dash-nav a.active { background: var(--blue-dim); color: var(--blue); font-weight: 600; }
.dash-nav a.dash-logout { color: #C0292E; margin-top: 8px; border-top: 1px solid var(--line); border-radius: 0; padding-top: 16px; }
.dash-count {
    margin-left: auto; background: var(--orange); color: var(--white); font-size: 11px; font-weight: 700;
    min-width: 20px; height: 20px; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; padding: 0 6px;
}

.dash-welcome {
    background: linear-gradient(135deg, var(--blue) 0%, #1B5FCC 100%); color: var(--white);
    border-radius: 20px; padding: 34px 36px; margin-bottom: 26px;
}
.dash-welcome h2 { color: var(--white); font-size: 26px; margin-bottom: 6px; }
.dash-welcome p { color: rgba(255,255,255,0.85); font-size: 15px; }
.dash-welcome-stats { display: flex; gap: 14px; margin-top: 22px; flex-wrap: wrap; }
.dash-welcome-stats > div {
    background: rgba(255,255,255,0.12); border-radius: var(--radius); padding: 14px 20px; min-width: 120px;
}
.dash-welcome-stats strong { display: block; font-size: 20px; font-weight: 800; margin-bottom: 2px; }
.dash-welcome-stats span { font-size: 12.5px; color: rgba(255,255,255,0.8); }

.dash-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.dash-card { background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: 26px; }
.dash-card-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; gap: 12px; }
.dash-card-head h3 { font-size: 16.5px; margin: 0; display: flex; align-items: center; gap: 9px; }
.dash-card-head h3 i { color: var(--orange); }
.dash-card-head > a { font-size: 13.5px; font-weight: 600; color: var(--blue); white-space: nowrap; }
.dash-big { font-size: 24px; font-weight: 800; color: var(--ink); margin-bottom: 4px; letter-spacing: -0.02em; }
.dash-muted { color: var(--ink-soft); font-size: 14px; margin-bottom: 12px; }
.dash-link { color: var(--blue); font-weight: 600; font-size: 13.5px; }
.dash-row {
    display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 11px 0;
    border-bottom: 1px solid var(--line); font-size: 14px; flex-wrap: wrap;
}
.dash-row:last-child { border-bottom: none; }
.dash-tier-box { background: var(--orange-dim); border-radius: var(--radius); padding: 20px; }

@media (max-width: 991px) {
    .dash-layout { grid-template-columns: 1fr; }
    .dash-sidebar { position: static; }
    .dash-grid-2 { grid-template-columns: 1fr; }
    .dash-nav { flex-direction: row; flex-wrap: wrap; }
    .dash-nav a.dash-logout { border-top: none; margin-top: 0; padding-top: 11px; }
}


.table-wrap { overflow-x: auto; }
table.data-table { width: 100%; border-collapse: collapse; }
table.data-table th {
    text-align: left; padding: 10px 14px; background: var(--bg-soft); color: var(--ink);
    font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; font-weight: 600; white-space: nowrap;
}
table.data-table td { padding: 12px 14px; border-bottom: 1px solid var(--line); }
table.data-table tr:last-child td { border-bottom: none; }


.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.pricing-card {
    background: var(--white); border: 1.5px solid var(--line); border-radius: 20px; padding: 36px 30px;
    display: flex; flex-direction: column; position: relative; transition: all 0.25s var(--ease);
}
.pricing-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.pricing-card.featured { border-color: var(--orange); box-shadow: var(--shadow-md); }
.pricing-badge {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--orange); color: var(--white);
    font-size: 11.5px; font-weight: 700; padding: 5px 16px; border-radius: var(--radius-full); text-transform: uppercase; letter-spacing: 0.04em;
}
.pricing-card h3 { font-size: 22px; margin-bottom: 6px; }
.pricing-tagline { color: var(--ink-soft); font-size: 14px; margin-bottom: 20px; }
.pricing-amount { font-family: var(--font); font-size: 40px; font-weight: 800; color: var(--ink); margin-bottom: 16px; letter-spacing: -0.02em; }
.pricing-amount .currency { font-size: 20px; font-weight: 600; vertical-align: super; margin-right: 2px; }
.pricing-amount .period { font-size: 14px; font-weight: 500; color: var(--ink-faint); }
.pricing-desc { color: var(--ink-soft); font-size: 14px; margin-bottom: 22px; }
.pricing-features { margin-bottom: 28px; flex: 1; }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--ink-soft); margin-bottom: 12px; }
.pricing-features li i { color: var(--orange); margin-top: 2px; flex-shrink: 0; }


.ticker-bar {
    background: var(--ink); color: var(--white); overflow: hidden; white-space: nowrap; position: relative; z-index: 1001;
}
.ticker-track {
    display: inline-flex; align-items: center; padding: 9px 0;
    animation: ticker-scroll 28s linear infinite;
}
.ticker-bar:hover .ticker-track { animation-play-state: paused; }
.ticker-item {
    display: inline-flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 500;
    padding: 0 40px; color: rgba(255,255,255,0.9); flex-shrink: 0; transition: color 0.2s var(--ease);
}
a.ticker-item:hover { color: var(--orange); }
.ticker-item i { color: var(--orange); font-size: 12px; }
@keyframes ticker-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ---------- Navbar (smart hide on scroll) ---------- */
.navbar.nav-hidden { transform: translateY(-100%); }

/* ---------- Nav dropdown ---------- */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
    display: inline-flex; align-items: center; gap: 6px; background: none; border: none; cursor: pointer;
    font-family: var(--font); font-weight: 500; font-size: 14.5px; color: var(--ink-soft); padding: 8px 0;
    transition: color 0.2s var(--ease);
}
.nav-dropdown-toggle i { font-size: 10px; transition: transform 0.2s var(--ease); }
.nav-dropdown-toggle:hover, .nav-dropdown-toggle.active { color: var(--ink); }
.nav-dropdown.open .nav-dropdown-toggle i { transform: rotate(180deg); }
.nav-dropdown-menu {
    position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-md);
    min-width: 190px; padding: 8px; opacity: 0; visibility: hidden; transition: all 0.2s var(--ease); z-index: 1001;
}
.nav-dropdown.open .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown-menu a {
    display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: var(--radius-sm);
    font-size: 14px; color: var(--ink-soft); font-weight: 500; transition: all 0.15s var(--ease);
}
.nav-dropdown-menu a:hover { background: var(--bg-soft); color: var(--ink); }
.nav-dropdown-menu a i { width: 16px; color: var(--orange); font-size: 13px; }

.hero { position: relative; padding: 72px 0 0; }
.hero-inner { position: relative; min-height: 480px; }
.slide {
    position: absolute; inset: 0; opacity: 0; pointer-events: none; transition: opacity 0.6s ease;
    display: grid; grid-template-columns: 1fr 0.9fr; gap: 56px; align-items: center;
}
.slide.active { opacity: 1; pointer-events: auto; }

.hero-text .tag { background: var(--orange-dim); padding: 7px 16px; border-radius: var(--radius-full); }
.hero-text h1 { font-size: 52px; margin-bottom: 22px; letter-spacing: -0.03em; }
.hero-text p { font-size: 18px; color: var(--ink-soft); margin-bottom: 32px; max-width: 460px; line-height: 1.6; }
.hero-text .btn-group { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-text .btn-primary { background: var(--orange); color: var(--white); padding: 15px 28px; }
.hero-text .btn-ghost { padding: 15px 26px; }

.hero-visual { position: relative; height: 420px; }
.hero-visual-panel {
    width: 100%; height: 100%; border-radius: 24px; background-size: cover; background-position: center;
    box-shadow: var(--shadow-md); position: relative;
}
.floating-card {
    position: absolute; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-md);
    padding: 16px 18px; display: flex; align-items: center; gap: 12px; border: 1px solid var(--line);
}
.floating-card i { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.floating-card strong { display: block; font-size: 18px; font-weight: 800; color: var(--ink); line-height: 1.2; }
.floating-card span { font-size: 12px; color: var(--ink-soft); white-space: nowrap; }
.floating-card.fc-1 { top: -18px; left: -18px; }
.floating-card.fc-1 i { background: var(--blue-dim); color: var(--blue); }
.floating-card.fc-2 { bottom: -18px; right: -18px; }
.floating-card.fc-2 i { background: var(--orange-dim); color: var(--orange); }

.hero-controls { display: flex; align-items: center; justify-content: space-between; padding: 36px 0 40px; }
.slider-dots { display: flex; gap: 8px; }
.slider-dots button { width: 8px; height: 8px; border-radius: 50%; background: var(--line); border: none; cursor: pointer; transition: all 0.2s var(--ease); }
.slider-dots button.active { background: var(--orange); width: 26px; border-radius: 5px; }
.hero-arrows { display: flex; gap: 10px; }
.slider-arrow {
    background: var(--bg); border: 1.5px solid var(--line); color: var(--ink); width: 42px; height: 42px;
    border-radius: 50%; font-size: 14px; cursor: pointer; transition: all 0.2s var(--ease);
}
.slider-arrow:hover { border-color: var(--ink); background: var(--ink); color: var(--white); }

/* ---------- Stats bar ---------- */
.stats-bar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-soft); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { text-align: center; padding: 40px 20px; border-left: 1px solid var(--line); }
.stat-item:first-child { border-left: none; }
.stat-item strong { display: block; font-size: 38px; font-weight: 800; color: var(--blue); letter-spacing: -0.02em; margin-bottom: 6px; }
.stat-item span { font-size: 14px; color: var(--ink-soft); font-weight: 500; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-grid img { border-radius: var(--radius); box-shadow: var(--shadow-md); }
.about-text .tag { background: var(--blue-dim); padding: 7px 16px; border-radius: var(--radius-full); }
.about-text h2 { font-size: 36px; margin: 18px 0 18px; }
.about-text p { color: var(--ink-soft); margin-bottom: 26px; font-size: 16px; }
.about-boxes { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 10px; margin-bottom: 28px; }
.about-box {
    background: var(--bg); padding: 20px; border-radius: var(--radius); transition: all 0.25s var(--ease);
    border: 1px solid var(--line);
}
.about-box:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.about-box h4 { color: var(--ink); font-size: 15.5px; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; font-weight: 600; }
.about-box h4 i { color: var(--orange); }
.about-box p { font-size: 14px; margin: 0; color: var(--ink-soft); }

/* ---------- Cards Grid ---------- */
.grid { display: grid; gap: 24px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
    background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: none;
    transition: all 0.25s var(--ease); border: 1px solid var(--line); position: relative;
}
.card:hover { border-color: var(--ink); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.card img { height: 200px; width: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.card:hover img { transform: scale(1.04); }
.card-body { padding: 24px; }
.card-body h3 { font-size: 18px; margin-bottom: 10px; font-weight: 700; }
.card-body p { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 16px; }
.card-body .card-link { color: var(--blue); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s var(--ease); }
.card-body .card-link:hover { gap: 10px; }

.icon-card { text-align: left; padding: 32px 28px; }
.icon-card .icon-wrap {
    width: 52px; height: 52px; margin: 0 0 22px; border-radius: 12px;
    background: var(--orange-dim); color: var(--orange);
    display: flex; align-items: center; justify-content: center; font-size: 22px; transition: all 0.25s var(--ease);
}
.icon-card:hover .icon-wrap { background: var(--orange); color: var(--white); }
.icon-card h3 { font-size: 18px; margin-bottom: 10px; font-weight: 700; }
.icon-card p { color: var(--ink-soft); font-size: 14.5px; }

.badge { display: inline-flex; align-items: center; gap: 5px; padding: 5px 13px; border-radius: var(--radius-full); font-size: 11.5px; font-weight: 700; letter-spacing: 0.02em; }
.badge-orange { background: var(--orange-dim); color: var(--orange-dark); }
.badge-blue { background: var(--blue-dim); color: var(--blue); }
.badge-green { background: #E8F8EE; color: #1B7A3D; }
.badge-gray { background: var(--bg-soft); color: var(--ink-faint); border: 1px solid var(--line); }

/* ---------- Ecosystem page ---------- */
.ecosystem-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.filter-chip {
    background: var(--white); border: 1.5px solid var(--line); color: var(--ink-soft); padding: 9px 20px;
    border-radius: var(--radius-full); font-size: 13.5px; font-weight: 600; cursor: pointer; transition: all 0.2s var(--ease);
}
.filter-chip:hover { border-color: var(--ink); color: var(--ink); }
.filter-chip.active { background: var(--ink); border-color: var(--ink); color: var(--white); }
.ecosystem-card { padding: 26px; }
.ecosystem-card-top { display: flex; align-items: flex-start; justify-content: space-between; }
.ecosystem-card .icon-wrap { margin-bottom: 0; }
.ecosystem-domain { font-size: 12px; color: var(--ink-faint); font-family: monospace; margin-bottom: 16px; }
.ecosystem-domain i { margin-right: 4px; }

.price-tag { color: var(--ink); font-weight: 800; font-size: 18px; }

.view-more { text-align: center; margin-top: 40px; }

/* ---------- CEO / Founder Message ---------- */
.ceo-section {
    background: var(--bg); border: 1px solid var(--line); border-radius: 20px; padding: 56px; display: grid;
    grid-template-columns: 220px 1fr; gap: 48px; align-items: center;
}
.ceo-section img { border-radius: 20px; width: 200px; height: 200px; object-fit: cover; }
.ceo-section .quote-icon { font-size: 34px; color: var(--orange); margin-bottom: 16px; }
.ceo-section p.message { font-size: 19px; color: var(--ink); margin-bottom: 22px; line-height: 1.65; font-weight: 500; letter-spacing: -0.01em; }
.ceo-section h3 { font-size: 18px; }
.ceo-section span { color: var(--ink-soft); font-weight: 500; font-size: 14px; }

/* ---------- Chapters ---------- */
.chapter-card { padding: 26px; text-align: left; }
.chapter-card h3 { font-size: 18px; margin-bottom: 4px; }
.chapter-card .region { color: var(--orange); font-weight: 700; font-size: 12px; margin-bottom: 14px; display: inline-block; text-transform: uppercase; letter-spacing: 0.06em; }
.chapter-card ul li { font-size: 14px; color: var(--ink-soft); margin-bottom: 10px; display: flex; gap: 10px; align-items: flex-start; }
.chapter-card ul li i { color: var(--blue); width: 16px; margin-top: 3px; }

/* ---------- Team ---------- */
.team-card { text-align: center; }
.team-card img { height: 240px; object-fit: cover; filter: grayscale(60%); transition: filter 0.4s var(--ease); }
.team-card:hover img { filter: grayscale(0%); }
.team-card .card-body { padding: 22px; }
.team-card h3 { margin-bottom: 4px; font-size: 17px; }
.team-card .role { color: var(--orange); font-size: 12px; font-weight: 700; display: block; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.04em; }
.team-social { display: flex; justify-content: center; gap: 10px; padding-bottom: 24px; }
.team-social a {
    width: 34px; height: 34px; border-radius: 50%; background: var(--bg-soft); color: var(--ink-soft);
    display: flex; align-items: center; justify-content: center; transition: all 0.2s var(--ease); font-size: 13px;
}
.team-social a:hover { background: var(--blue); color: var(--white); }

/* ---------- CTA (become member / trainer) ---------- */
.cta-split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.cta-box {
    padding: 44px; border-radius: 20px; position: relative; border: 1.5px solid var(--line); background: var(--bg);
    transition: all 0.25s var(--ease);
}
.cta-box:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.cta-box .cta-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 20px; }
.cta-box.orange .cta-icon { background: var(--orange-dim); color: var(--orange); }
.cta-box.blue .cta-icon { background: var(--blue-dim); color: var(--blue); }
.cta-box h3 { font-size: 22px; margin-bottom: 12px; font-weight: 700; }
.cta-box p { margin-bottom: 24px; color: var(--ink-soft); font-size: 15px; }
.cta-box.orange .btn-outline { background: var(--orange); color: var(--white); border-color: var(--orange); }
.cta-box.orange .btn-outline:hover { background: var(--orange-dark); border-color: var(--orange-dark); }
.cta-box.blue .btn-outline { background: var(--blue); color: var(--white); border-color: var(--blue); }
.cta-box.blue .btn-outline:hover { background: #082C6B; border-color: #082C6B; }

/* ---------- Blog ---------- */
.blog-card .meta { display: flex; gap: 16px; font-size: 12px; color: var(--ink-faint); margin-bottom: 12px; }
.blog-card .meta span { display: flex; align-items: center; gap: 5px; }

/* ---------- Forms ---------- */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 14px; color: var(--ink); }
.form-control {
    width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
    font-size: 15px; transition: all 0.2s var(--ease); font-family: inherit; background: var(--bg-soft);
}
.form-control:focus { outline: none; border-color: var(--blue); background: var(--white); box-shadow: 0 0 0 3px var(--blue-dim); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.auth-wrap {
    max-width: 440px; margin: 70px auto; background: var(--white); padding: 44px;
    border-radius: 20px; box-shadow: var(--shadow-md); border: 1px solid var(--line);
}
.auth-wrap h2 { font-size: 26px; margin-bottom: 6px; text-align: center; }
.auth-wrap p.sub { text-align: center; color: var(--ink-soft); margin-bottom: 30px; font-size: 14.5px; }
.auth-wrap .switch-link { text-align: center; margin-top: 20px; font-size: 14px; color: var(--ink-soft); }
.auth-wrap .switch-link a { color: var(--blue); font-weight: 700; }

.form-card {
    background: var(--white); border-radius: 20px; box-shadow: var(--shadow-md); padding: 44px; border: 1px solid var(--line);
}

.alert { padding: 15px 20px; border-radius: var(--radius-sm); margin-bottom: 22px; font-size: 14px; font-weight: 500; }
.alert-success { background: #EDFAF1; color: #1B7A3D; border-left: 3px solid #1B7A3D; }
.alert-error { background: #FDEEEE; color: #C0292E; border-left: 3px solid #C0292E; }
.alert-info { background: var(--blue-dim); color: var(--blue); border-left: 3px solid var(--blue); }

/* ---------- Page Banner ---------- */
.page-banner {
    background: var(--bg-soft); border-bottom: 1px solid var(--line);
    padding: 64px 0; text-align: left;
}
.page-banner .container { max-width: 1200px; }
.page-banner h1 { font-size: 34px; margin-bottom: 10px; }
.page-banner .breadcrumb { font-size: 14px; color: var(--ink-soft); }
.page-banner .breadcrumb a { color: var(--blue); font-weight: 600; }

/* ---------- Footer ---------- */
.footer { background: #0A0E1A; color: rgba(255,255,255,0.65); padding-top: 72px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 48px; }
.footer h4 { color: var(--white); font-size: 15px; margin-bottom: 22px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.footer .logo { color: var(--white); margin-bottom: 16px; }
.footer .logo span { color: var(--orange); }
.footer p { font-size: 14px; line-height: 1.8; }
.footer ul li { margin-bottom: 12px; }
.footer ul li a { font-size: 14px; transition: all 0.2s var(--ease); color: rgba(255,255,255,0.6); }
.footer ul li a:hover { color: var(--white); }
.footer .footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer .footer-social a {
    width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.06);
    display: flex; align-items: center; justify-content: center; transition: all 0.2s var(--ease);
}
.footer .footer-social a:hover { background: var(--orange); color: var(--white); }
.footer-contact li { display: flex; gap: 11px; font-size: 14px; align-items: flex-start; }
.footer-contact li i { color: var(--orange); margin-top: 3px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08); padding: 22px 0; text-align: center; font-size: 13px;
}

/* ---------- Scroll reveal ---------- */
.reveal-init { opacity: 0; transform: translateY(18px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal-visible { opacity: 1; transform: translateY(0); }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }

/* ==========================================================
   Responsive
   ========================================================== */
@media (max-width: 991px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .ceo-section { grid-template-columns: 1fr; text-align: center; padding: 40px; }
    .ceo-section img { margin: 0 auto; }
    .cta-split { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .nav-menu { gap: 18px; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .slide { grid-template-columns: 1fr; }
    .hero-inner { min-height: 700px; }
    .hero-visual { height: 300px; order: -1; }
    .hero-text h1 { font-size: 42px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(3) { border-left: none; }
}

@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .nav-menu {
        position: fixed; top: 0; right: -300px; width: 300px; height: 100vh; background: var(--white);
        flex-direction: column; align-items: flex-start; padding: 100px 28px; gap: 22px; box-shadow: -8px 0 30px rgba(0,0,0,0.12);
        transition: right 0.35s ease; z-index: 999; overflow-y: auto;
    }
    .nav-menu.open { right: 0; }
    .nav-auth > .user-chip, .nav-auth > a.nav-link-ghost, .nav-auth > a.btn { display: none; }
    .nav-auth-mobile { display: flex; gap: 12px; margin-top: 14px; width: 100%; }
    .nav-auth-mobile .btn { flex: 1; }
    .nav-dropdown { width: 100%; }
    .nav-dropdown-toggle { width: 100%; justify-content: space-between; }
    .nav-dropdown-menu {
        position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; border: none;
        min-width: 0; width: 100%; padding: 0 0 0 14px; max-height: 0; overflow: hidden; transition: max-height 0.3s var(--ease);
    }
    .nav-dropdown.open .nav-dropdown-menu { max-height: 300px; margin-top: 8px; }
    .ticker-item { padding: 0 22px; font-size: 12px; }
    .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
    .hero-inner { min-height: 760px; }
    .hero-text h1 { font-size: 32px; }
    .floating-card { padding: 12px 14px; }
    .floating-card span { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .section { padding: 60px 0; }
    .section-header h2 { font-size: 27px; }
    .hero-controls { flex-direction: column; gap: 18px; align-items: flex-start; }
}

@media (max-width: 480px) {
    .hero-text h1 { font-size: 27px; }
    .hero-text .btn-group { flex-direction: column; width: 100%; }
    .hero-text .btn-group .btn { width: 100%; }
    .page-banner h1 { font-size: 25px; }
    .ceo-section { padding: 30px; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-item { border-left: none !important; border-top: 1px solid var(--line); }
    .stat-item:first-child { border-top: none; }
}

/* ---------- Certificate ---------- */
.cert-frame {
    background: var(--white); border: 3px solid var(--blue); border-radius: 8px; padding: 10px;
}
.cert-inner {
    border: 1.5px solid var(--orange); border-radius: 4px; padding: 56px 40px; text-align: center;
}
.cert-org { font-size: 15px; font-weight: 800; letter-spacing: 0.35em; color: var(--blue); margin-bottom: 26px; }
.cert-label { font-size: 13px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--ink-faint); margin-bottom: 26px; }
.cert-presented { font-size: 14px; color: var(--ink-soft); margin-bottom: 10px; }
.cert-name { font-size: 40px; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 18px; }
.cert-course { font-size: 22px; font-weight: 700; color: var(--blue); margin-bottom: 34px; }
.cert-meta { display: flex; justify-content: center; gap: 44px; flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 24px; }
.cert-meta div { text-align: center; }
.cert-meta strong { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-faint); margin-bottom: 4px; }
.cert-meta span { font-size: 13.5px; color: var(--ink); font-weight: 600; }

@media print {
    .ticker-bar, .navbar, .page-banner, .footer, .btn, .hero-controls { display: none !important; }
    .section { padding: 0 !important; }
    .cert-frame { border-color: #0B3D91 !important; }
    body { background: #fff !important; }
}
