:root {
    --primary: #143a63;
    --primary-dark: #0b2748;
    --primary-deep: #071a33;
    --accent: #c9a24b;
    --accent-light: #e6c982;
    --g-blue: #4285F4;
    --g-red: #EA4335;
    --g-yellow: #FBBC05;
    --g-green: #34A853;
    --g-blue-deep: #1a73e8;
    --g-red-deep: #c5221f;
    --g-green-deep: #188038;
    --g-yellow-deep: #b8860b;
    --dark: #0a1c33;
    --light: #f4f7fb;
    --white: #ffffff;
    --text: #34414f;
    --muted: #67788b;
    --border: #e3e9f0;
    --shadow-sm: 0 6px 18px rgba(16, 42, 74, 0.07);
    --shadow: 0 22px 55px rgba(14, 35, 62, 0.12);
    --shadow-lg: 0 30px 70px rgba(14, 35, 62, 0.18);
    --radius: 16px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --serif: 'Playfair Display', Georgia, serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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; }

section { padding: 96px 0; scroll-margin-top: 92px; }

::selection { background: var(--accent); color: var(--primary-dark); }

/* ---------- Accessibility ---------- */
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.2px;
    transition: all 0.35s var(--ease);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}
.btn-primary {
    background: linear-gradient(135deg, var(--accent), #d9b76a);
    color: var(--primary-dark);
    box-shadow: 0 10px 26px rgba(201, 162, 75, 0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(201, 162, 75, 0.45); }
.btn-secondary {
    background: rgba(255,255,255,0.08);
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
    backdrop-filter: blur(6px);
}
.btn-secondary:hover { background: var(--white); color: var(--primary-dark); transform: translateY(-3px); }
.btn-outline { border-color: var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.btn-lg { padding: 17px 44px; font-size: 16px; }
.btn-full { width: 100%; }

/* ---------- Section headers ---------- */
.section-header { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}
.section-tag::before, .section-tag::after { content: ''; width: 26px; height: 2px; background: var(--accent); opacity: 0.5; }
.section-header h2 {
    font-family: var(--serif);
    font-size: 44px;
    color: var(--primary-dark);
    line-height: 1.18;
    margin-bottom: 16px;
}
.section-header h2::after {
    content: '';
    display: block;
    width: 96px;
    height: 5px;
    margin: 18px auto 0;
    border-radius: 50px;
    background: linear-gradient(90deg, var(--g-blue), var(--g-red), var(--g-yellow), var(--g-green));
}
.section-header p { color: var(--muted); font-size: 17px; }

/* ---------- Top Bar ---------- */
.topbar {
    background: var(--primary-deep);
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    padding: 9px 0;
    position: relative;
    z-index: 1100;
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.topbar a { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.85); transition: color 0.3s; }
.topbar a svg { width: 14px; height: 14px; color: var(--accent); }
.topbar a:hover { color: var(--accent-light); }
.topbar-sep { opacity: 0.4; }
.topbar-social { display: flex; gap: 6px; margin-left: 6px; }
.topbar-social a {
    width: 24px; height: 24px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 700;
    transition: all 0.3s;
}
.topbar-social a:hover { background: var(--accent); border-color: var(--accent); color: var(--primary-dark); }

/* ---------- Navbar ---------- */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s var(--ease);
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 22px rgba(8, 26, 48, 0.07);
}
.nav-container { display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-img {
    height: 46px;
    width: auto;
    display: block;
    transition: transform 0.3s var(--ease);
}
.logo:hover .logo-img { transform: scale(1.03); }
.logo-img-footer {
    height: 56px;
    background: var(--white);
    border-radius: 10px;
    padding: 8px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links > li { position: relative; }
.nav-links > li > a { color: var(--primary-dark); font-size: 15px; font-weight: 500; transition: color 0.3s; position: relative; padding: 6px 0; }
.nav-links > li > a::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 2px;
    background: var(--accent);
    transition: width 0.3s var(--ease);
}
.nav-links > li > a:hover { color: var(--accent); }
.nav-links > li > a:hover::after { width: 100%; }
.nav-links > li > .nav-btn { padding: 11px 24px; border-radius: 50px; }
.nav-links > li > .nav-btn::after { display: none; }
.nav-btn { background: linear-gradient(135deg, var(--accent), #d9b76a); color: var(--primary-dark) !important; font-weight: 700; box-shadow: 0 8px 20px rgba(201,162,75,0.3); }
.nav-btn:hover { box-shadow: 0 12px 28px rgba(201,162,75,0.42); }

.chev { font-size: 9px; margin-left: 4px; vertical-align: middle; }

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    min-width: 220px;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.3s var(--ease);
    border: 1px solid var(--border);
}
.dropdown:hover .dropdown-menu, .dropdown:focus-within .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li a { display: block; padding: 11px 16px; border-radius: 8px; color: var(--text); font-size: 14px; font-weight: 500; transition: all 0.2s; }
.dropdown-menu li a:hover { background: var(--light); color: var(--primary); padding-left: 22px; }

.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; z-index: 1101; }
.menu-toggle span { width: 26px; height: 3px; background: var(--primary-dark); border-radius: 2px; transition: all 0.3s; }

/* ---------- Hero ---------- */
.hero {
    min-height: 88vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #4285F4 0%, #2b76ee 55%, #1a73e8 100%);
    color: var(--white);
    padding: 90px 0;
    overflow: hidden;
}
.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(201,162,75,0.18), transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(255,255,255,0.10), transparent 45%),
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 60px 60px, 60px 60px;
}
.hero-content { position: relative; z-index: 2; max-width: none; }
.hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    align-items: center;
}
.hero-panel {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 24px;
    padding: 44px 40px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
    position: relative;
}
.hero-panel::before {
    content: '';
    position: absolute;
    top: -18px; right: -18px;
    width: 72px; height: 72px;
    border-top: 3px solid var(--accent);
    border-right: 3px solid var(--accent);
    border-radius: 0 12px 0 0;
    opacity: 0.8;
}
.hero-panel-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 20px;
}
.hero-panel-quote {
    font-family: var(--serif);
    font-size: 24px;
    line-height: 1.4;
    color: var(--white);
    margin-bottom: 18px;
}
.hero-panel-author { color: rgba(255,255,255,0.6); font-size: 15px; margin-bottom: 24px; }
.hero-panel-divider { height: 1px; background: rgba(255,255,255,0.15); margin-bottom: 22px; }
.hero-panel-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-panel-tags span {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 50px;
    padding: 9px 20px;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 28px;
    color: var(--accent-light);
    font-weight: 600;
    backdrop-filter: blur(4px);
}
.pulse-dot { width: 8px; height: 8px; background: #4cd964; border-radius: 50%; display: inline-block; position: relative; }
.pulse-dot::after { content: ''; position: absolute; inset: -4px; border: 2px solid #4cd964; border-radius: 50%; animation: pulse 1.6s infinite; }
@keyframes pulse { 0% { transform: scale(0.6); opacity: 1; } 100% { transform: scale(1.4); opacity: 0; } }

.hero h1 { font-family: var(--serif); font-size: 60px; line-height: 1.12; margin-bottom: 24px; letter-spacing: -0.5px; }
.hero h1 .accent {
    color: var(--white);
    text-shadow: 0 3px 18px rgba(7, 26, 51, 0.35);
}
.hero h1 .accent::after {
    content: '';
    display: block;
    width: 92px;
    height: 7px;
    margin-top: 14px;
    border-radius: 50px;
    background: linear-gradient(90deg, var(--g-green), var(--g-yellow));
}
.hero-content p { font-size: 19px; color: rgba(255,255,255,0.85); max-width: 640px; margin-bottom: 34px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-buttons .btn-primary {
    background: var(--white);
    color: #1a73e8;
    box-shadow: 0 10px 26px rgba(255, 255, 255, 0.25);
}
.hero-buttons .btn-primary:hover { background: #eaf2fe; color: #1a73e8; box-shadow: 0 16px 34px rgba(255, 255, 255, 0.35); }
.hero-buttons .btn-secondary {
    background: rgba(255,255,255,0.08);
    border: 2px solid rgba(255,255,255,0.45);
    color: var(--white);
}
.hero-buttons .btn-secondary:hover { background: var(--white); color: var(--primary-dark); border-color: var(--white); }
.hero-trust { display: flex; gap: 40px; margin-top: 40px; flex-wrap: wrap; }
.trust-item { font-size: 14px; color: rgba(255,255,255,0.75); }
.trust-item strong { display: block; font-family: var(--serif); font-size: 28px; color: var(--white); margin-bottom: 2px; }

.hero-scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); text-align: center; z-index: 2; }
.hero-scroll span { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.scroll-line { width: 2px; height: 40px; background: var(--accent); margin: 10px auto 0; animation: scroll 2s infinite; }
@keyframes scroll { 0%{transform:scaleY(0); transform-origin:top;} 50%{transform:scaleY(1); transform-origin:top;} 51%{transform-origin:bottom;} 100%{transform:scaleY(0); transform-origin:bottom;} }

/* ---------- About ---------- */
.about { background: var(--light); }
.about-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
.about-image { position: relative; }
.about-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow);
    border: 6px solid var(--white);
}
.about-image-badge {
    position: absolute;
    left: 28px;
    bottom: -26px;
    background: linear-gradient(135deg, var(--accent), #d9b76a);
    color: var(--primary-dark);
    padding: 16px 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
}
.about-image-badge strong { font-size: 17px; line-height: 1.2; }
.about-image-badge span { font-size: 12px; font-weight: 600; letter-spacing: 0.5px; opacity: 0.85; margin-top: 3px; }
.about-text p { font-size: 17px; color: var(--text); margin-bottom: 18px; }
.about-text p strong { color: var(--primary); }
.about-points { margin: 20px 0 26px; }
.about-points li { padding-left: 30px; position: relative; margin-bottom: 12px; font-size: 15px; color: var(--text); }
.about-points li::before {
    content: '';
    position: absolute; left: 0; top: 6px;
    width: 18px; height: 18px;
    background: rgba(201,162,75,0.18);
    border-radius: 50%;
    border: 2px solid var(--accent);
}
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 64px;
}
.stat {
    background: var(--white);
    border-radius: var(--radius);
    padding: 26px 20px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--accent);
    transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.stat:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.stat-number { font-family: var(--serif); font-size: 36px; font-weight: 800; color: var(--primary); line-height: 1.1; }
.stat-label { margin-top: 8px; color: var(--muted); font-size: 13px; letter-spacing: 0.4px; text-transform: uppercase; }
.stats-bar .stat:nth-child(1) { border-top-color: var(--g-blue); }
.stats-bar .stat:nth-child(1) .stat-number { color: var(--g-blue); }
.stats-bar .stat:nth-child(2) { border-top-color: var(--g-red); }
.stats-bar .stat:nth-child(2) .stat-number { color: var(--g-red); }
.stats-bar .stat:nth-child(3) { border-top-color: var(--g-yellow); }
.stats-bar .stat:nth-child(3) .stat-number { color: var(--g-yellow-deep); }
.stats-bar .stat:nth-child(4) { border-top-color: var(--g-green); }
.stats-bar .stat:nth-child(4) .stat-number { color: var(--g-green-deep); }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 32px;
    transition: all 0.35s var(--ease);
    display: flex;
    flex-direction: column;
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow); border-color: transparent; }
.service-card.featured { background: linear-gradient(160deg, var(--primary), var(--primary-dark)); color: var(--white); }
.service-card.featured .card-link { color: var(--accent-light); }
.service-icon {
    width: 66px; height: 66px;
    margin-bottom: 26px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px;
    background: var(--icon-bg, #eef2f7);
    color: var(--icon-color, var(--primary));
    transition: transform 0.3s var(--ease);
}
.service-card:hover .service-icon { transform: scale(1.08) rotate(-4deg); }
.service-icon svg { width: 100%; height: 100%; }
.service-card.featured .service-icon { background: rgba(255,255,255,0.16); }

.service-card:nth-child(1) .service-icon { --icon-color: var(--g-blue-deep); --icon-bg: #dce9fd; }
.service-card:nth-child(2) .service-icon { --icon-color: var(--g-green-deep); --icon-bg: #d5f2e2; }
.service-card:nth-child(3) .service-icon { --icon-color: var(--g-red-deep); --icon-bg: #fde0dd; }
.service-card.featured .service-icon { --icon-color: #6ee7b7; --icon-bg: rgba(255,255,255,0.16); }
.service-card h3 { font-size: 23px; color: var(--primary-dark); margin-bottom: 12px; font-family: var(--serif); }
.service-card.featured h3 { color: var(--white); }
.service-card p { color: var(--muted); font-size: 15px; margin-bottom: 18px; flex-grow: 1; }
.service-card.featured p { color: rgba(255,255,255,0.85); }
.card-features { margin-bottom: 22px; }
.card-features li { padding-left: 26px; position: relative; margin-bottom: 9px; font-size: 14px; color: var(--text); }
.service-card.featured .card-features li { color: rgba(255,255,255,0.9); }
.card-features li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 800; }
.service-card.featured .card-features li::before { color: var(--accent-light); }
.card-link { font-weight: 700; color: var(--accent); font-size: 15px; transition: letter-spacing 0.3s; }
.card-link:hover { letter-spacing: 1px; }

/* ---------- Process ---------- */
.process { background: linear-gradient(160deg, var(--primary-deep), var(--primary-dark)); color: var(--white); }
.process .section-tag { color: var(--accent-light); }
.process .section-header h2 { color: var(--white); }
.process .section-header p { color: rgba(255,255,255,0.7); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.process-step { padding: 34px 28px; border-radius: var(--radius); background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.13); position: relative; transition: all 0.3s; }
.process-step:hover { background: rgba(255,255,255,0.1); transform: translateY(-6px); }
.step-num { font-family: var(--serif); font-size: 44px; font-weight: 800; color: var(--accent); opacity: 0.9; margin-bottom: 16px; line-height: 1; }
.process-step:nth-child(1) .step-num { color: var(--g-blue); }
.process-step:nth-child(2) .step-num { color: var(--g-green); }
.process-step:nth-child(3) .step-num { color: var(--g-yellow); }
.process-step:nth-child(4) .step-num { color: var(--g-red); }
.process-step h3 { font-size: 20px; color: var(--white); margin-bottom: 10px; font-family: var(--serif); }
.process-step p { color: rgba(255,255,255,0.7); font-size: 14px; }

/* ---------- Knowledge ---------- */
.knowledge { background: var(--white); }
.knowledge-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.knowledge-card {
    background: var(--light);
    border-radius: var(--radius);
    padding: 38px 28px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.35s var(--ease);
}
.knowledge-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; background: var(--white); }
.knowledge-icon {
    width: 62px; height: 62px;
    margin: 0 auto 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: var(--icon-bg, #eef2f7);
    color: var(--icon-color, var(--primary));
    transition: transform 0.3s var(--ease);
}
.knowledge-card:hover .knowledge-icon { transform: scale(1.1) rotate(6deg); }
.knowledge-icon svg { width: 100%; height: 100%; }
.knowledge-card:nth-child(1) .knowledge-icon { --icon-color: var(--g-blue-deep); --icon-bg: #dce9fd; }
.knowledge-card:nth-child(2) .knowledge-icon { --icon-color: var(--g-green-deep); --icon-bg: #d5f2e2; }
.knowledge-card:nth-child(3) .knowledge-icon { --icon-color: var(--g-red-deep); --icon-bg: #fde0dd; }
.knowledge-card:nth-child(4) .knowledge-icon { --icon-color: var(--g-yellow-deep); --icon-bg: #fef7dc; }
.knowledge-card h3 { font-family: var(--serif); font-size: 21px; color: var(--primary-dark); margin-bottom: 12px; }
.knowledge-card p { color: var(--muted); font-size: 14px; margin-bottom: 18px; }

/* ---------- Training / Leadership ---------- */
.training { background: var(--light); }
.leadership { background: var(--white); }
.training-layout, .leadership-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.placeholder-img {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--accent-light);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center; flex-direction: column;
    font-family: var(--serif);
    font-size: 32px;
    min-height: 380px;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.placeholder-img::after {
    content: '';
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 44px 44px;
}
.placeholder-img span, .placeholder-img small { position: relative; z-index: 2; }
.placeholder-img small { font-family: var(--font); font-size: 14px; font-weight: 400; letter-spacing: 1px; color: rgba(255,255,255,0.7); margin-top: 10px; }
.section-img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: block;
}
.training-content h2, .leadership-content h2 { font-family: var(--serif); font-size: 38px; color: var(--primary-dark); margin-bottom: 18px; line-height: 1.2; }
.training-content > p, .leadership-content > p { color: var(--muted); font-size: 16px; margin-bottom: 24px; }
.training-features { margin-bottom: 28px; }
.training-features li { padding-left: 28px; position: relative; margin-bottom: 12px; color: var(--text); font-size: 15px; }
.training-features li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 800; }
.training-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.program-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.program-tags span {
    background: var(--light);
    border: 1px solid var(--border);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}
.program-tags span:nth-child(1) { border-color: #b6d3fc; color: var(--g-blue-deep); background: #eef4fe; }
.program-tags span:nth-child(2) { border-color: #fbc0bb; color: var(--g-red-deep); background: #fdf0ee; }
.program-tags span:nth-child(3) { border-color: #fbe185; color: var(--g-yellow-deep); background: #fefaf0; }
.program-tags span:nth-child(4) { border-color: #a8e4c5; color: var(--g-green-deep); background: #f0faf5; }
.program-tags span:nth-child(5) { border-color: #b6d3fc; color: var(--g-blue-deep); background: #eef4fe; }
.program-tags span:nth-child(6) { border-color: #fbc0bb; color: var(--g-red-deep); background: #fdf0ee; }
.program-tags span:hover { border-color: currentColor; transform: translateY(-2px); }

/* ---------- Thinker ---------- */
.thinker { background: linear-gradient(160deg, var(--primary), var(--primary-dark)); color: var(--white); }
.thinker .section-tag { color: var(--accent-light); }
.thinker .section-header h2 { color: var(--white); }
.thinker .section-header p { color: rgba(255,255,255,0.75); }
.thinker-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.thinker-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: all 0.3s var(--ease);
}
.thinker-card:hover { background: rgba(255,255,255,0.13); transform: translateY(-7px); }
.thinker-card h3 { font-family: var(--serif); font-size: 23px; color: var(--accent-light); margin-bottom: 12px; }
.thinker-card p { color: rgba(255,255,255,0.8); font-size: 15px; margin-bottom: 18px; }
.thinker-card .card-link { color: var(--white); }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--light); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 38px 32px;
    box-shadow: var(--shadow-sm);
    position: relative;
    border: 1px solid var(--border);
    transition: all 0.3s var(--ease);
}
.testimonial-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.quote-mark { font-family: var(--serif); font-size: 64px; color: var(--accent); line-height: 0.8; margin-bottom: 18px; opacity: 0.8; }
.testimonial-card > p { color: var(--text); font-size: 15px; font-style: italic; margin-bottom: 26px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; border-top: 1px solid var(--border); padding-top: 20px; }
.author-avatar {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--primary), #21629c);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
}
.testimonial-author strong { display: block; color: var(--primary-dark); font-size: 15px; }
.testimonial-author span { color: var(--muted); font-size: 13px; }
.testimonial-card:nth-child(1) .author-avatar { background: linear-gradient(135deg, #1d4ed8, #60a5fa); }
.testimonial-card:nth-child(2) .author-avatar { background: linear-gradient(135deg, #059669, #34d399); }
.testimonial-card:nth-child(3) .author-avatar { background: linear-gradient(135deg, #ea580c, #fbbf24); }

/* ---------- FAQ ---------- */
.faq { background: var(--white); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 14px;
    overflow: hidden;
    background: var(--white);
    transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item.open { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    padding: 20px 24px;
    font-family: var(--font);
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.faq-question::after {
    content: '+';
    font-size: 24px;
    color: var(--accent);
    flex-shrink: 0;
    transition: transform 0.3s;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-answer p { padding: 0 24px 20px; color: var(--muted); font-size: 15px; }

/* ---------- Workshop CTA ---------- */
.workshop { background: var(--light); }
.workshop-card {
    background: linear-gradient(135deg, var(--accent), #d9b76a);
    border-radius: 24px;
    padding: 58px 50px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 32px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}
.workshop-card::after { content: ''; position: absolute; top: -60%; right: -10%; width: 340px; height: 340px; background: rgba(255,255,255,0.14); border-radius: 50%; }
.workshop-content { position: relative; z-index: 2; }
.workshop-content h2 { font-family: var(--serif); font-size: 38px; color: var(--primary-dark); margin-bottom: 10px; }
.workshop-content p { color: var(--primary-dark); font-size: 16px; max-width: 560px; opacity: 0.85; }
.workshop-actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; position: relative; z-index: 2; }
.workshop .btn-outline { border-color: var(--primary-dark); color: var(--primary-dark); }
.workshop .btn-outline:hover { background: var(--primary-dark); color: var(--accent); }
.workshop .btn-primary { background: var(--primary-dark); color: var(--accent-light); box-shadow: none; }
.workshop .btn-primary:hover { background: var(--primary-deep); }

/* ---------- Contact ---------- */
.contact { background: var(--white); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; }
.contact-info h2 { font-family: var(--serif); font-size: 42px; color: var(--primary-dark); margin-bottom: 20px; line-height: 1.2; }
.contact-info > p { color: var(--muted); font-size: 17px; margin-bottom: 32px; }
.contact-details { display: grid; gap: 20px; margin-bottom: 30px; }
.contact-item { display: flex; align-items: center; gap: 16px; }
.contact-item-icon {
    width: 46px; height: 46px;
    background: var(--light);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--border);
}
.contact-item-icon svg { width: 20px; height: 20px; color: var(--icon-color, var(--primary)); }
.contact-item:nth-child(1) .contact-item-icon { --icon-color: var(--g-blue-deep); background: #dce9fd; border-color: #b6d3fc; }
.contact-item:nth-child(2) .contact-item-icon { --icon-color: var(--g-green-deep); background: #d5f2e2; border-color: #a8e4c5; }
.contact-item:nth-child(3) .contact-item-icon { --icon-color: var(--g-red-deep); background: #fde0dd; border-color: #fbc0bb; }
.contact-item:nth-child(4) .contact-item-icon { --icon-color: var(--g-yellow-deep); background: #fef7dc; border-color: #fbe185; }
.contact-item strong { color: var(--accent); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; display: block; margin-bottom: 2px; }
.contact-item a, .contact-item span { color: var(--primary-dark); font-size: 16px; font-weight: 600; }
.contact-item a:hover { color: var(--accent); }
.contact-social { display: flex; gap: 10px; flex-wrap: wrap; }
.contact-social a {
    border: 1px solid var(--border);
    color: var(--primary);
    padding: 9px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s;
}
.contact-social a:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

.contact-form-wrap {
    background: var(--light);
    border-radius: 20px;
    padding: 44px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.contact-form h3 { font-family: var(--serif); font-size: 26px; color: var(--primary-dark); margin-bottom: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: 14px; color: var(--primary-dark); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: var(--font);
    font-size: 15px;
    background: var(--white);
    transition: border 0.3s, box-shadow 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(201,162,75,0.18);
}
.form-note { margin-top: 14px; font-size: 14px; font-weight: 500; text-align: center; }
.form-note.error { color: #c0392b; }
.form-note.success { color: #1a6e3f; }
.form-group.has-error input, .form-group.has-error select, .form-group.has-error textarea {
    border-color: #c0392b;
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12);
}
.form-group.has-error label { color: #c0392b; }

/* ---------- Footer ---------- */
.footer { background: var(--primary-deep); color: rgba(255,255,255,0.75); padding: 0 0 30px; }
.footer-cta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 48px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 52px;
}
.footer-cta-text h3 { font-family: var(--serif); font-size: 30px; color: var(--white); margin-bottom: 6px; }
.footer-cta-text p { color: rgba(255,255,255,0.65); font-size: 15px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .logo { margin-bottom: 18px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 22px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 700;
    color: rgba(255,255,255,0.8);
    transition: all 0.3s;
}
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: var(--primary-dark); }
.footer-col h4 { color: var(--accent); font-size: 14px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: rgba(255,255,255,0.65); font-size: 14px; transition: color 0.3s, padding-left 0.3s; }
.footer-col a:hover { color: var(--accent-light); padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; text-align: center; }
.footer-bottom p { font-size: 14px; color: rgba(255,255,255,0.45); }

/* ---------- Back to top ---------- */
.back-to-top {
    position: fixed;
    bottom: 28px; left: 28px;
    width: 52px; height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #d9b76a);
    color: var(--primary-dark);
    border: none;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s var(--ease);
    z-index: 999;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); }
.back-to-top svg { width: 24px; height: 24px; }
body.cta-bar-visible .back-to-top { bottom: 96px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Clients / Results ---------- */
.clients { background: var(--white); }
.clients-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 48px; }
.client-chip {
    background: var(--light);
    border: 1px solid var(--border);
    color: var(--primary);
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
}
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.result-card {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 30px;
    transition: all 0.3s var(--ease);
}
.result-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); background: var(--white); }
.result-icon {
    width: 54px; height: 54px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    padding: 12px;
    background: var(--icon-bg, #eef2f7);
    color: var(--icon-color, var(--primary));
    margin-bottom: 20px;
}
.result-icon svg { width: 100%; height: 100%; }
.result-card:nth-child(1) .result-icon { --icon-color: #1d4ed8; --icon-bg: #dbeafe; }
.result-card:nth-child(2) .result-icon { --icon-color: #059669; --icon-bg: #d1fae5; }
.result-card:nth-child(3) .result-icon { --icon-color: #ea580c; --icon-bg: #ffedd5; }
.result-card h3 { font-family: var(--serif); font-size: 22px; color: var(--primary-dark); margin-bottom: 10px; }
.result-card p { color: var(--muted); font-size: 15px; }
.result-card p strong { color: var(--primary); }

/* ---------- Lead magnet ---------- */
.leadmagnet { background: var(--light); }
.leadmagnet-card {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, var(--primary-deep), var(--primary-dark));
    border-radius: 24px;
    padding: 52px 48px;
    box-shadow: var(--shadow);
    color: var(--white);
}
.leadmagnet-content { max-width: 520px; }
.leadmagnet .section-tag { color: var(--accent-light); }
.leadmagnet-content h2 { font-family: var(--serif); font-size: 34px; color: var(--white); margin-bottom: 12px; }
.leadmagnet-content p { color: rgba(255,255,255,0.75); font-size: 15px; margin-bottom: 18px; }
.guide-list { margin-bottom: 6px; }
.guide-list li { padding-left: 26px; position: relative; margin-bottom: 10px; font-size: 14px; color: rgba(255,255,255,0.85); }
.guide-list li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 800; }
.leadmagnet-form { width: 100%; max-width: 400px; flex-shrink: 0; }
.leadmagnet-form label { font-weight: 600; font-size: 14px; display: block; margin-bottom: 12px; color: rgba(255,255,255,0.85); }
.lm-field { display: flex; gap: 10px; }
.lm-field input {
    flex: 1;
    padding: 14px 18px;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-family: var(--font);
    font-size: 15px;
}
.lm-field input::placeholder { color: rgba(255,255,255,0.5); }
.lm-field input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(201,162,75,0.25); }
.lm-field .btn { flex-shrink: 0; padding: 14px 24px; }
.leadmagnet-form .form-note { color: var(--accent-light); }
.leadmagnet-form small { display: block; margin-top: 12px; font-size: 12px; color: rgba(255,255,255,0.5); }

/* ---------- Floating WhatsApp / Call buttons ---------- */
.fab-group {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 997;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: bottom 0.3s var(--ease);
}
body.cta-bar-visible .fab-group { bottom: 96px; }
.fab {
    width: 54px; height: 54px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s var(--ease);
}
.fab svg { width: 26px; height: 26px; }
.fab:hover { transform: scale(1.1); }
.fab-whatsapp { background: #25D366; color: #fff; }
.fab-whatsapp:hover { background: #1ebe55; }
.fab-call { background: linear-gradient(135deg, var(--primary), #21629c); color: #fff; }
.fab-call:hover { box-shadow: 0 12px 26px rgba(20,58,99,0.45); }

/* ---------- Sticky CTA bar ---------- */
.cta-bar {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 996;
    background: rgba(7,26,51,0.97);
    backdrop-filter: blur(8px);
    color: var(--white);
    transform: translateY(110%);
    transition: transform 0.4s var(--ease);
    box-shadow: 0 -8px 30px rgba(0,0,0,0.25);
}
.cta-bar.show { transform: translateY(0); }
.cta-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 80px 14px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    position: relative;
}
.cta-bar-text { display: flex; flex-direction: column; }
.cta-bar-text strong { font-size: 15px; }
.cta-bar-text span { font-size: 13px; color: rgba(255,255,255,0.6); }
.btn-sm { padding: 11px 24px; font-size: 14px; }
.cta-bar-close {
    position: absolute;
    right: 20px; top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    font-size: 16px;
    cursor: pointer;
    padding: 6px;
}
.cta-bar-close:hover { color: var(--white); }

/* ---------- Honeypot (anti-spam) ---------- */
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .services-grid, .knowledge-grid, .thinker-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero h1 { font-size: 44px; }
    .section-header h2 { font-size: 34px; }
    .hero-layout { grid-template-columns: 1fr; gap: 40px; }
    .hero-panel { max-width: 600px; }
    .results-grid { grid-template-columns: repeat(2, 1fr); }
    .leadmagnet-card { flex-direction: column; align-items: flex-start; padding: 42px 36px; }
}

/* ---------- Laptop tuning (1025px - 1440px) ---------- */
@media (min-width: 1025px) and (max-width: 1440px) {
    section { padding: 72px 0; }
    .section-header { margin-bottom: 44px; }
    .section-header h2 { font-size: 34px; }
    .hero { min-height: 72vh; padding: 70px 0; }
    .hero h1 { font-size: 46px; margin-bottom: 20px; }
    .hero-content p { font-size: 17px; margin-bottom: 28px; }
    .hero-trust { margin-top: 30px; gap: 32px; }
    .nav-links { gap: 20px; }
    .nav-links > li > a { font-size: 14px; }

    .about-layout, .training-layout, .leadership-layout, .contact-layout { gap: 44px; }
    .services-grid, .testimonial-grid { gap: 22px; }
    .knowledge-grid, .thinker-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
    .process-grid { gap: 20px; }
    .service-card, .thinker-card { padding: 32px 24px; }
    .knowledge-card { padding: 30px 22px; }
    .process-step { padding: 28px 22px; }
    .placeholder-img, .section-img { min-height: 300px; }
    .contact-form-wrap { padding: 36px; }
    .workshop-card { padding: 44px 40px; }
    .footer-grid { gap: 30px; }
    .hero-layout { gap: 40px; }
    .hero-panel { padding: 34px 30px; }
}

/* ---------- Short-viewport hero (laptops) ---------- */
@media (max-height: 780px) {
    .hero { min-height: auto; padding-bottom: 70px; }
    .hero-badge { margin-bottom: 20px; padding: 8px 18px; }
    .hero-scroll { display: none; }
    .hero-trust { margin-top: 26px; }
    .hero-panel { padding: 26px 24px; }
    .hero-panel-quote { font-size: 20px; }
}

@media (max-width: 768px) {
    .topbar-right { display: none; }
    .menu-toggle { display: flex; }
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        height: 100vh;
        width: 300px;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 6px;
        padding: 96px 32px 40px;
        transition: right 0.4s var(--ease);
        box-shadow: -20px 0 60px rgba(0,0,0,0.2);
    }
    .nav-links.open { right: 0; }
    .nav-links > li { width: 100%; }
    .nav-links > li > a { color: var(--primary-dark); font-size: 17px; display: block; padding: 12px 0; }
    .nav-links > li > a::after { display: none; }
    .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 0 0 0 14px; min-width: auto; }
    .dropdown { margin-bottom: 6px; }
    .nav-links .nav-btn { text-align: center; }

    .about-layout, .training-layout, .leadership-layout, .contact-layout { grid-template-columns: 1fr; gap: 40px; }
    .services-grid, .knowledge-grid, .thinker-grid, .process-grid, .testimonial-grid { grid-template-columns: 1fr; }
    .hero-panel { display: none; }
    .hero h1 { font-size: 36px; }
    .about-image { max-width: 420px; margin: 0 auto 30px; }
    .about-image-badge { left: 16px; bottom: -20px; padding: 12px 18px; }
    .about-image-badge strong { font-size: 15px; }
    .stats-bar { grid-template-columns: 1fr 1fr; margin-top: 48px; }
    .hero-content p { font-size: 16px; }
    .hero-buttons { flex-direction: column; }
    .hero-trust { gap: 24px; }
    .placeholder-img, .section-img { min-height: 240px; font-size: 24px; }
    .form-row { grid-template-columns: 1fr; }
    section { padding: 68px 0; }
    .workshop-actions { flex-direction: column; width: 100%; }
    .workshop-actions .btn { text-align: center; }
    .workshop-card { padding: 40px 28px; flex-direction: column; align-items: flex-start; }
    .contact-form-wrap { padding: 32px 24px; }
    .footer-cta-row { flex-direction: column; align-items: flex-start; }
    .results-grid { grid-template-columns: 1fr; }
    .leadmagnet-card { padding: 32px 24px; gap: 28px; }
    .lm-field { flex-direction: column; }
    .lm-field .btn { width: 100%; }
    .cta-bar { display: none; }
    .fab { width: 48px; height: 48px; }
    .fab svg { width: 22px; height: 22px; }
}

@media (max-width: 480px) {
    .stats-bar { grid-template-columns: 1fr; }
    .section-header h2 { font-size: 30px; }
    .logo-img { height: 38px; }
}

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