/* =====================================================================
   Trainova Training Academy — Design System
   ===================================================================== */
:root {
    --navy-900: #0b1b3f;
    --navy-800: #10245a;
    --navy-700: #1e3a8a;
    --navy-600: #2749a8;
    --blue-500: #3b82f6;
    --accent:   #f97316;   /* orange */
    --accent-600:#ea580c;
    --accent-soft:#fff1e6;
    --cyan:     #06b6d4;
    --gray-50:  #f7f9fc;
    --gray-100: #eef2f7;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-700: #334155;
    --ink:      #0f172a;
    --white:    #ffffff;

    --radius-sm: 10px;
    --radius:    16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --shadow-sm: 0 1px 3px rgba(15,27,63,.08);
    --shadow:    0 10px 30px rgba(15,27,63,.10);
    --shadow-lg: 0 24px 60px rgba(15,27,63,.16);

    --container: 1200px;
    --ease: cubic-bezier(.4,0,.2,1);

    --font-head: 'Plus Jakarta Sans', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1,h2,h3,h4,h5 { font-family: var(--font-head); line-height: 1.15; color: var(--navy-900); font-weight: 800; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.icon, .ico { width: 24px; height: 24px; flex: none; }
.ico-sm { width: 16px; height: 16px; flex: none; vertical-align: -3px; }

.skip-link {
    position: absolute; left: -999px; top: 0; z-index: 200;
    background: var(--navy-900); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* =====================================================================
   Buttons
   ===================================================================== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-head); font-weight: 700; font-size: .95rem;
    padding: 13px 26px; border-radius: 999px; border: none; cursor: pointer;
    transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
    white-space: nowrap;
}
.btn .ico { width: 18px; height: 18px; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 8px 20px rgba(249,115,22,.32); }
.btn-primary:hover { background: var(--accent-600); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(249,115,22,.42); }
.btn-dark { background: var(--navy-800); color: #fff; }
.btn-dark:hover { background: var(--navy-900); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,.14); color: #fff; border: 1px solid rgba(255,255,255,.28); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,.24); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--navy-700); border: 1.5px solid var(--gray-300); }
.btn-outline:hover { border-color: var(--navy-700); background: var(--navy-700); color: #fff; }
.btn-block { width: 100%; justify-content: center; }
.btn-lg { padding: 16px 34px; font-size: 1.05rem; }

/* =====================================================================
   Topbar + Header
   ===================================================================== */
.topbar { background: var(--navy-900); color: #cdd7ef; font-size: .82rem; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; height: 40px; }
.topbar-item { display: flex; align-items: center; gap: 8px; color: #fff; font-weight: 500; }
.topbar-item .ico-sm { color: var(--accent); }
.topbar-contact { display: flex; gap: 22px; }
.topbar-contact a { display: flex; align-items: center; gap: 6px; transition: color .2s; }
.topbar-contact a:hover { color: #fff; }

.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(14px) saturate(160%);
    border-bottom: 1px solid var(--gray-200);
    transition: box-shadow .3s, background .3s;
}
.site-header.scrolled { box-shadow: var(--shadow); background: rgba(255,255,255,.95); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }

.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); }
.brand-mark {
    width: 42px; height: 42px; border-radius: 12px;
    background: linear-gradient(135deg, var(--navy-700), var(--blue-500));
    color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-sm);
}
.brand-mark .ico { width: 24px; height: 24px; }
.brand-text { font-size: 1.3rem; font-weight: 700; color: var(--navy-900); letter-spacing: -.02em; }
.brand-text strong { color: var(--accent); font-weight: 800; }
.brand-light .brand-text { color: #fff; }

.main-nav { display: flex; align-items: center; gap: 6px; }
.nav-link {
    font-family: var(--font-head); font-weight: 600; font-size: .95rem; color: var(--gray-700);
    padding: 9px 14px; border-radius: 10px; transition: color .2s, background .2s; position: relative;
}
.nav-link:hover { color: var(--navy-800); background: var(--gray-100); }
.nav-link.active { color: var(--navy-800); }
.nav-link.active::after {
    content: ''; position: absolute; left: 14px; right: 14px; bottom: 2px; height: 2.5px;
    background: var(--accent); border-radius: 2px;
}
.nav-cta { margin-left: 10px; }
.nav-toggle { display: none; background: none; border: none; color: var(--navy-900); cursor: pointer; padding: 6px; }

/* =====================================================================
   Sections / headings
   ===================================================================== */
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-tint { background: var(--gray-50); }
.section-navy { background: var(--navy-900); color: #dbe4f7; }
.section-navy h2, .section-navy h3 { color: #fff; }

.section-head { max-width: 680px; margin: 0 auto 52px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-head); font-weight: 700; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
    color: var(--accent-600); background: var(--accent-soft); padding: 7px 16px; border-radius: 999px; margin-bottom: 18px;
}
.section-navy .eyebrow { background: rgba(249,115,22,.16); color: #ffb27a; }
.section-title { font-size: clamp(1.9rem, 3.6vw, 2.75rem); letter-spacing: -.02em; }
.section-sub { margin-top: 16px; color: var(--gray-500); font-size: 1.08rem; }
.section-navy .section-sub { color: #aebbdb; }

/* =====================================================================
   Hero
   ===================================================================== */
.hero {
    position: relative; overflow: hidden;
    background: radial-gradient(1200px 600px at 80% -10%, #1c3a86 0%, transparent 60%),
                linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 55%, #14295f 100%);
    color: #fff; padding: 96px 0 120px;
}
.hero::before {
    content:''; position:absolute; inset:0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.06) 1px, transparent 0);
    background-size: 34px 34px; pointer-events:none;
}
.hero-blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; pointer-events: none; }
.hero-blob.b1 { width: 380px; height: 380px; background: #f97316; top: -120px; right: -60px; opacity:.28; }
.hero-blob.b2 { width: 320px; height: 320px; background: #06b6d4; bottom: -120px; left: -80px; opacity:.22; }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 600; font-size: .85rem;
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); padding: 8px 16px; border-radius: 999px; margin-bottom: 24px;
}
.hero-badge .ico-sm { color: #ffb27a; }
.hero h1 { color: #fff; font-size: clamp(2.3rem, 5vw, 3.6rem); letter-spacing: -.03em; }
.hero h1 .hl { color: var(--accent); }
.hero-lead { font-size: 1.18rem; color: #c4d0ec; margin: 22px 0 32px; max-width: 540px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 34px; margin-top: 46px; flex-wrap: wrap; }
.hero-stat .num { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: #fff; }
.hero-stat .num span { color: var(--accent); }
.hero-stat .lbl { font-size: .86rem; color: #9fb0d6; }

.hero-visual { position: relative; }
.hero-card {
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-lg);
    padding: 26px; backdrop-filter: blur(16px); box-shadow: var(--shadow-lg);
}
.hero-card .media { height: 180px; border-radius: var(--radius); margin-bottom: 20px; }
.hero-card h3 { color: #fff; font-size: 1.15rem; }
.hero-card p { color: #b9c6e8; font-size: .9rem; margin-top: 6px; }
.hero-card-meta { display: flex; gap: 16px; margin-top: 16px; font-size: .82rem; color: #9fb0d6; }
.hero-card-meta span { display: flex; align-items: center; gap: 6px; }
.hero-float {
    position: absolute; background: #fff; color: var(--ink); border-radius: var(--radius); padding: 14px 18px;
    box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px; font-size: .85rem; font-weight: 600;
}
.hero-float .pill { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; color: #fff; }
.hero-float.f1 { top: -22px; left: -26px; }
.hero-float.f1 .pill { background: var(--accent); }
.hero-float.f2 { bottom: -22px; right: -18px; }
.hero-float.f2 .pill { background: var(--navy-700); }
.hero-float .sub { display: block; font-weight: 400; color: var(--gray-500); font-size: .74rem; }

/* =====================================================================
   Media blocks (SVG-free image substitutes)
   ===================================================================== */
.media { position: relative; overflow: hidden; display: grid; place-items: center; }
.media-pattern {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 20% 20%, rgba(255,255,255,.22) 0, transparent 42%),
                      radial-gradient(circle at 80% 80%, rgba(0,0,0,.18) 0, transparent 45%);
}
.media-tall { height: 100%; min-height: 320px; border-radius: var(--radius-lg); }
.media-label { position: relative; color: rgba(255,255,255,.92); font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; padding: 0 16px; text-align: center; z-index:1; }

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

.card {
    background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
    overflow: hidden; display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }

/* Course card */
.course-card .media { height: 168px; }
.course-badges { position: absolute; top: 14px; left: 14px; display: flex; gap: 8px; z-index: 2; }
.badge {
    font-family: var(--font-head); font-weight: 700; font-size: .72rem; padding: 5px 11px; border-radius: 999px;
    background: rgba(255,255,255,.92); color: var(--navy-800); backdrop-filter: blur(4px);
}
.badge.hrdf { background: var(--accent); color: #fff; }
.course-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.course-cat { font-family: var(--font-head); font-weight: 700; font-size: .76rem; letter-spacing: .06em; text-transform: uppercase; color: var(--accent-600); }
.course-card h3 { font-size: 1.12rem; margin: 8px 0 10px; }
.course-card h3 a:hover { color: var(--accent-600); }
.course-desc { color: var(--gray-500); font-size: .9rem; flex: 1; }
.course-meta { display: flex; gap: 16px; margin: 16px 0; font-size: .82rem; color: var(--gray-500); flex-wrap: wrap; }
.course-meta span { display: flex; align-items: center; gap: 6px; }
.course-foot { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--gray-100); padding-top: 16px; }
.course-fee { font-family: var(--font-head); font-weight: 800; color: var(--navy-900); font-size: 1.15rem; }
.course-fee small { font-weight: 500; color: var(--gray-400); font-size: .72rem; display:block; }

.stars { display: inline-flex; align-items: center; gap: 1px; }
.stars .star { width: 15px; height: 15px; color: var(--gray-300); fill: none; }
.stars .star.on { color: #f59e0b; fill: #f59e0b; }
.rating-num { margin-left: 6px; font-size: .82rem; color: var(--gray-500); font-weight: 600; }

/* Category card */
.cat-card {
    display: flex; flex-direction: column; gap: 14px; padding: 26px; background: #fff;
    border: 1px solid var(--gray-200); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.cat-icon {
    width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; color: #fff;
    background: linear-gradient(135deg, var(--navy-700), var(--blue-500));
}
.cat-card:hover .cat-icon { background: linear-gradient(135deg, var(--accent), var(--accent-600)); }
.cat-card h3 { font-size: 1.08rem; }
.cat-card p { color: var(--gray-500); font-size: .88rem; }
.cat-link { margin-top: auto; font-family: var(--font-head); font-weight: 700; font-size: .85rem; color: var(--navy-700); display: inline-flex; align-items: center; gap: 6px; }
.cat-card:hover .cat-link { color: var(--accent-600); }
.cat-card:hover .cat-link .ico { transform: translateX(4px); }
.cat-link .ico { width: 16px; height: 16px; transition: transform .2s; }

/* Feature / why-us */
.feature { display: flex; gap: 18px; align-items: flex-start; }
.feature-icon {
    width: 54px; height: 54px; border-radius: 15px; flex: none; display: grid; place-items: center; color: #fff;
    background: linear-gradient(135deg, var(--navy-700), var(--blue-500)); box-shadow: var(--shadow-sm);
}
.feature h3 { font-size: 1.12rem; margin-bottom: 6px; }
.feature p { color: var(--gray-500); font-size: .92rem; }
.section-navy .feature p { color: #a9b7d8; }
.section-navy .feature-icon { background: linear-gradient(135deg, var(--accent), var(--accent-600)); }

/* =====================================================================
   Clients marquee
   ===================================================================== */
.clients { padding: 44px 0; border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); background:#fff; }
.clients-label { text-align: center; color: var(--gray-400); font-family: var(--font-head); font-weight: 600; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 26px; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 60px; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.client-logo { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: var(--gray-300); white-space: nowrap; transition: color .3s; }
.client-logo:hover { color: var(--navy-700); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =====================================================================
   Testimonials
   ===================================================================== */
.testi-card {
    background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 30px;
    box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 18px; height: 100%;
}
.testi-card .quote-mark { font-family: Georgia, serif; font-size: 3.2rem; line-height: .5; color: var(--accent); height: 22px; }
.testi-card p { color: var(--gray-700); font-size: 1rem; flex: 1; }
.testi-person { display: flex; align-items: center; gap: 14px; }
.avatar {
    width: 48px; height: 48px; border-radius: 50%; flex: none; display: grid; place-items: center;
    font-family: var(--font-head); font-weight: 700; color: #fff; background: linear-gradient(135deg, var(--navy-700), var(--blue-500)); font-size: .95rem;
}
.testi-person .name { font-family: var(--font-head); font-weight: 700; color: var(--navy-900); font-size: .95rem; }
.testi-person .role { color: var(--gray-500); font-size: .82rem; }

/* =====================================================================
   Schedule / calendar
   ===================================================================== */
.schedule-table { width: 100%; border-collapse: separate; border-spacing: 0; background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); }
.schedule-table th { background: var(--navy-900); color: #fff; font-family: var(--font-head); text-align: left; padding: 16px 20px; font-size: .82rem; letter-spacing: .05em; text-transform: uppercase; }
.schedule-table td { padding: 18px 20px; border-top: 1px solid var(--gray-100); font-size: .92rem; vertical-align: middle; }
.schedule-table tr:hover td { background: var(--gray-50); }
.schedule-table .st-title { font-family: var(--font-head); font-weight: 700; color: var(--navy-900); }
.chip { display: inline-flex; align-items: center; gap: 6px; font-size: .78rem; font-weight: 600; padding: 5px 12px; border-radius: 999px; background: var(--gray-100); color: var(--gray-700); }
.chip.loc { background: #e0f2fe; color: #0369a1; }
.chip.online { background: #ede9fe; color: #6d28d9; }

.table-scroll { overflow-x: auto; }

/* Calendar grid */
.cal { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.cal-head { display: grid; grid-template-columns: repeat(7,1fr); background: var(--navy-900); }
.cal-head span { padding: 14px 8px; color: #fff; font-family: var(--font-head); font-weight: 600; font-size: .8rem; text-align: center; }
.cal-grid { display: grid; grid-template-columns: repeat(7,1fr); }
.cal-cell { min-height: 108px; border-right: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); padding: 10px; position: relative; }
.cal-cell:nth-child(7n) { border-right: none; }
.cal-cell.muted { background: var(--gray-50); color: var(--gray-300); }
.cal-date { font-family: var(--font-head); font-weight: 700; font-size: .85rem; color: var(--gray-500); }
.cal-cell.today .cal-date { background: var(--accent); color: #fff; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; }
.cal-event { display: block; margin-top: 6px; font-size: .72rem; font-weight: 600; padding: 4px 7px; border-radius: 7px; background: var(--accent-soft); color: var(--accent-600); line-height: 1.2; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cal-event.blue { background: #e0edff; color: var(--navy-700); }

/* =====================================================================
   Page hero (interior pages)
   ===================================================================== */
.page-hero {
    background: linear-gradient(160deg, var(--navy-900), var(--navy-800));
    color: #fff; padding: 72px 0 64px; position: relative; overflow: hidden;
}
.page-hero::before { content:''; position:absolute; inset:0; background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.05) 1px, transparent 0); background-size: 32px 32px; }
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb { display: flex; gap: 8px; font-size: .85rem; color: #9fb0d6; margin-bottom: 16px; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: #6b7ba6; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -.02em; }
.page-hero p { color: #c4d0ec; font-size: 1.1rem; max-width: 620px; margin-top: 14px; }

/* =====================================================================
   Filters / search
   ===================================================================== */
.toolbar { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-bottom: 34px; }
.search-box { position: relative; flex: 1; min-width: 240px; }
.search-box .ico { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--gray-400); width: 20px; height: 20px; }
.search-box input { width: 100%; padding: 14px 16px 14px 46px; border: 1.5px solid var(--gray-200); border-radius: 999px; font-family: var(--font-body); font-size: .95rem; transition: border-color .2s, box-shadow .2s; }
.search-box input:focus { outline: none; border-color: var(--navy-600); box-shadow: 0 0 0 4px rgba(30,58,138,.1); }
.filter-select { padding: 14px 18px; border: 1.5px solid var(--gray-200); border-radius: 999px; font-family: var(--font-body); font-size: .95rem; background: #fff; cursor: pointer; }
.filter-select:focus { outline: none; border-color: var(--navy-600); }

.filter-pills { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 34px; }
.pill-btn {
    font-family: var(--font-head); font-weight: 600; font-size: .86rem; padding: 9px 18px; border-radius: 999px;
    border: 1.5px solid var(--gray-200); background: #fff; color: var(--gray-700); cursor: pointer; transition: all .2s;
}
.pill-btn:hover { border-color: var(--navy-600); color: var(--navy-700); }
.pill-btn.active { background: var(--navy-800); border-color: var(--navy-800); color: #fff; }

.result-count { color: var(--gray-500); font-size: .9rem; margin-bottom: 22px; }
.no-results { text-align: center; padding: 60px 20px; color: var(--gray-500); grid-column: 1/-1; }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.pagination a, .pagination span {
    min-width: 44px; height: 44px; padding: 0 12px; display: grid; place-items: center; border-radius: 12px;
    font-family: var(--font-head); font-weight: 700; font-size: .9rem; border: 1.5px solid var(--gray-200); color: var(--gray-700); transition: all .2s;
}
.pagination a:hover { border-color: var(--navy-700); color: var(--navy-700); }
.pagination .current { background: var(--navy-800); border-color: var(--navy-800); color: #fff; }
.pagination .disabled { opacity: .4; pointer-events: none; }

/* =====================================================================
   Course detail
   ===================================================================== */
.detail-hero .media { height: 320px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.detail-grid { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; }
.detail-block { margin-bottom: 40px; }
.detail-block h2 { font-size: 1.5rem; margin-bottom: 18px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; padding: 9px 0; color: var(--gray-700); }
.check-list .ico { width: 22px; height: 22px; flex: none; color: #fff; background: var(--accent); border-radius: 50%; padding: 4px; }
.outline-list { counter-reset: mod; }
.outline-list li {
    display: flex; gap: 16px; align-items: center; padding: 18px 20px; background: #fff; border: 1px solid var(--gray-200);
    border-radius: var(--radius); margin-bottom: 12px; font-weight: 500; color: var(--navy-900); transition: border-color .2s, box-shadow .2s;
}
.outline-list li:hover { border-color: var(--navy-600); box-shadow: var(--shadow-sm); }
.outline-list li::before {
    counter-increment: mod; content: counter(mod, decimal-leading-zero); font-family: var(--font-head); font-weight: 800;
    color: var(--accent); font-size: 1.1rem; flex: none;
}
.detail-sidebar { position: sticky; top: 100px; }
.price-card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; }
.price-card-top { background: var(--navy-900); color: #fff; padding: 26px; text-align: center; }
.price-card-top .lbl { font-size: .82rem; color: #9fb0d6; }
.price-card-top .price { font-family: var(--font-head); font-size: 2.4rem; font-weight: 800; }
.price-card-top .price small { font-size: .9rem; color: #c4d0ec; font-weight: 500; }
.price-card-body { padding: 24px; }
.price-meta { display: flex; flex-direction: column; gap: 2px; }
.price-meta li { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--gray-100); font-size: .92rem; }
.price-meta li:last-child { border-bottom: none; }
.price-meta .k { color: var(--gray-500); display: flex; align-items: center; gap: 8px; }
.price-meta .k .ico { width: 18px; height: 18px; color: var(--navy-600); }
.price-meta .v { font-weight: 700; color: var(--navy-900); }

/* =====================================================================
   Trainer cards
   ===================================================================== */
.trainer-card { text-align: center; padding: 32px 26px; }
.trainer-avatar {
    width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 18px; display: grid; place-items: center;
    font-family: var(--font-head); font-weight: 800; font-size: 2rem; color: #fff;
    background: linear-gradient(135deg, var(--navy-700), var(--blue-500)); box-shadow: var(--shadow);
}
.trainer-card h3 { font-size: 1.2rem; }
.trainer-role { color: var(--accent-600); font-family: var(--font-head); font-weight: 600; font-size: .88rem; margin: 4px 0 14px; }
.trainer-bio { color: var(--gray-500); font-size: .9rem; }
.tag-row { display: flex; flex-wrap: wrap; gap: 7px; justify-content: center; margin-top: 16px; }
.tag { font-size: .74rem; font-weight: 600; padding: 5px 11px; border-radius: 999px; background: var(--gray-100); color: var(--gray-700); }
.trainer-exp { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: .82rem; color: var(--gray-500); }

/* =====================================================================
   Gallery
   ===================================================================== */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; box-shadow: var(--shadow-sm); }
.gallery-item .media { height: 100%; min-height: 200px; transition: transform .5s var(--ease); }
.gallery-item:hover .media { transform: scale(1.08); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,27,63,.55), transparent 55%); opacity: 0; transition: opacity .3s; }
.gallery-item:hover::after { opacity: 1; }
.gallery-cap { position: absolute; left: 16px; bottom: 14px; color: #fff; font-family: var(--font-head); font-weight: 700; z-index: 2; opacity: 0; transform: translateY(8px); transition: all .3s; }
.gallery-item:hover .gallery-cap { opacity: 1; transform: translateY(0); }

/* =====================================================================
   Blog
   ===================================================================== */
.blog-card .media { height: 190px; }
.blog-body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.blog-meta { display: flex; align-items: center; gap: 12px; font-size: .8rem; color: var(--gray-500); }
.blog-tag { font-family: var(--font-head); font-weight: 700; font-size: .72rem; color: var(--accent-600); text-transform: uppercase; letter-spacing: .06em; }
.blog-card h3 { font-size: 1.15rem; line-height: 1.3; }
.blog-card h3 a:hover { color: var(--accent-600); }
.blog-card p { color: var(--gray-500); font-size: .9rem; flex: 1; }
.blog-author { display: flex; align-items: center; gap: 10px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--gray-100); font-size: .84rem; }
.blog-author .avatar { width: 34px; height: 34px; font-size: .78rem; }

/* =====================================================================
   FAQ accordion
   ===================================================================== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); margin-bottom: 14px; overflow: hidden; transition: box-shadow .2s, border-color .2s; }
.faq-item.open { box-shadow: var(--shadow); border-color: var(--navy-200, #c7d2fe); }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; font-family: var(--font-head); font-weight: 700; font-size: 1.02rem; color: var(--navy-900); }
.faq-q .ico { flex: none; color: var(--accent); transition: transform .3s; }
.faq-item.open .faq-q .ico { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a-inner { padding: 0 24px 24px; color: var(--gray-600, #475569); font-size: .96rem; }

/* =====================================================================
   Forms
   ===================================================================== */
.form-card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 36px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--font-head); font-weight: 600; font-size: .88rem; color: var(--navy-900); }
.field input, .field select, .field textarea {
    padding: 13px 16px; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: .95rem; transition: border-color .2s, box-shadow .2s; background:#fff;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--navy-600); box-shadow: 0 0 0 4px rgba(30,58,138,.1); }
.field textarea { resize: vertical; min-height: 130px; }
.form-msg { margin-top: 16px; padding: 14px 18px; border-radius: var(--radius-sm); font-size: .92rem; font-weight: 600; display: none; }
.form-msg.show { display: block; }
.form-msg.ok { background: #dcfce7; color: #15803d; }
.form-msg.err { background: #fee2e2; color: #b91c1c; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* Contact info cards */
.info-card { display: flex; gap: 16px; align-items: flex-start; padding: 22px; background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.info-card .feature-icon { width: 46px; height: 46px; border-radius: 12px; }
.info-card h4 { font-size: 1rem; margin-bottom: 3px; }
.info-card p, .info-card a { color: var(--gray-500); font-size: .9rem; }
.info-card a:hover { color: var(--accent-600); }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--gray-200); }
.map-embed iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

/* =====================================================================
   CTA band
   ===================================================================== */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--navy-800), var(--navy-700)); color: #fff; border-radius: var(--radius-xl); padding: 60px; text-align: center; }
.cta-band::before { content:''; position:absolute; width: 400px; height: 400px; background: var(--accent); border-radius: 50%; filter: blur(80px); opacity: .28; top: -140px; right: -80px; }
.cta-band::after { content:''; position:absolute; width: 340px; height: 340px; background: var(--cyan); border-radius: 50%; filter: blur(80px); opacity: .2; bottom: -140px; left: -60px; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.cta-band p { color: #c4d0ec; font-size: 1.1rem; margin: 16px auto 30px; max-width: 560px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =====================================================================
   Value / stats strip
   ===================================================================== */
.stat-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat-box { text-align: center; padding: 24px; }
.stat-box .num { font-family: var(--font-head); font-size: 2.6rem; font-weight: 800; color: var(--navy-900); }
.stat-box .num span { color: var(--accent); }
.stat-box .lbl { color: var(--gray-500); font-size: .92rem; margin-top: 4px; }
.section-navy .stat-box .num { color: #fff; }
.section-navy .stat-box .lbl { color: #a9b7d8; }

/* prose */
.prose p { color: var(--gray-600, #475569); margin-bottom: 16px; }
.prose h3 { margin: 26px 0 12px; }

/* whatsapp float */
.whatsapp-float { position: fixed; right: 22px; bottom: 22px; width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 10px 24px rgba(37,211,102,.45); z-index: 90; transition: transform .2s; }
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float .ico { width: 30px; height: 30px; }

/* =====================================================================
   Footer
   ===================================================================== */
.site-footer { background: var(--navy-900); color: #9fb0d6; padding-top: 68px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 48px; }
.footer-brand p { margin: 18px 0; font-size: .92rem; line-height: 1.7; max-width: 320px; }
.social { display: flex; gap: 10px; }
.social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: .82rem; color: #fff; transition: background .2s; }
.social a:hover { background: var(--accent); }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { font-size: .92rem; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-newsletter p { font-size: .9rem; margin-bottom: 14px; }
.newsletter-form { display: flex; gap: 8px; margin-bottom: 18px; }
.newsletter-form input { flex: 1; padding: 12px 16px; border-radius: 999px; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.06); color: #fff; font-size: .9rem; }
.newsletter-form input::placeholder { color: #7c8bb3; }
.newsletter-form input:focus { outline: none; border-color: var(--accent); }
.newsletter-form .btn { padding: 12px; }
.newsletter-msg { font-size: .84rem; color: #7ee2a0; min-height: 18px; }
.footer-contact { font-style: normal; }
.footer-contact span { display: flex; gap: 8px; font-size: .88rem; line-height: 1.6; }
.footer-contact .ico-sm { color: var(--accent); flex:none; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.09); padding: 22px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; font-size: .86rem; }
.footer-legal a:hover { color: #fff; }

/* =====================================================================
   Reveal animation
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { max-width: 460px; }
    .detail-grid { grid-template-columns: 1fr; }
    .detail-sidebar { position: static; }
    .grid-4 { grid-template-columns: repeat(2,1fr); }
    .gallery-grid { grid-template-columns: repeat(3,1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
    .topbar { display: none; }
    .main-nav {
        position: fixed; inset: 0 0 0 auto; width: min(320px, 84vw); flex-direction: column; align-items: stretch;
        background: #fff; padding: 90px 24px 30px; gap: 4px; transform: translateX(100%); transition: transform .35s var(--ease);
        box-shadow: var(--shadow-lg); z-index: 105;
    }
    .main-nav.open { transform: none; }
    .nav-link { padding: 14px 16px; border-radius: 12px; }
    .nav-link.active::after { display: none; }
    .nav-link.active { background: var(--accent-soft); color: var(--accent-600); }
    .nav-cta { margin: 12px 0 0; justify-content: center; }
    .nav-toggle { display: block; z-index: 110; }
    .nav-backdrop { position: fixed; inset: 0; background: rgba(11,27,63,.5); opacity: 0; visibility: hidden; transition: opacity .3s; z-index: 104; }
    .nav-backdrop.show { opacity: 1; visibility: visible; }
    .section { padding: 64px 0; }
    .stat-strip { grid-template-columns: repeat(2,1fr); }
    .form-grid { grid-template-columns: 1fr; }
    .cta-band { padding: 44px 26px; }
}
@media (max-width: 640px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2,1fr); }
    .gallery-item.tall { grid-row: span 1; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom-inner { flex-direction: column; gap: 8px; }
    .hero-stats { gap: 22px; }
    .hero-float { display: none; }
    .section-head { margin-bottom: 38px; }
    .cta-band { padding: 36px 22px; }
}

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
    .reveal { opacity: 1; transform: none; }
}
