/* ============================================================
   Školení 365 — Stylesheet
   ============================================================ */

:root {
    --blue: #0078D4;
    --blue-dark: #005A9E;
    --blue-deeper: #003B73;
    --blue-light: #E8F2FC;
    --blue-mist: #F4F8FD;
    --purple: #5B5FC7;
    --teal: #038387;
    --orange: #D83B01;
    --green: #0E9F6E;
    --green-light: #ECFDF5;
    --amber: #F59E0B;
    --gray-50: #FAFBFC;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --white: #FFFFFF;
    --radius: 14px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
    --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.04);
    --shadow-lg: 0 4px 24px rgba(0,0,0,0.07), 0 12px 40px rgba(0,0,0,0.04);
    --shadow-blue: 0 4px 20px rgba(0,120,212,0.25);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.15s ease;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'DM Serif Display', Georgia, serif;
    --container: 1160px;
    --header-h: 68px;
}

/* --- Reset & Base --- */
*, *::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);
    font-size: 16px;
    line-height: 1.65;
    color: var(--gray-700);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--blue-dark); }

h1, h2, h3, h4, h5, h6 { color: var(--gray-900); }
h1, h2 { font-family: var(--font-display); font-weight: 400; }
h3, h4 { font-family: var(--font-body); font-weight: 700; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.content-narrow { max-width: 720px; margin: 0 auto; }

/* --- Sections --- */
.section { padding: 88px 0; }
.section-gray { background: var(--gray-50); }
.section-mist { background: var(--blue-mist); }

.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; max-width: 640px; margin-left: auto; margin-right: auto; margin-bottom: 48px; }
.section-header h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); line-height: 1.2; margin-bottom: 12px; }
.section-header p { color: var(--gray-500); font-size: 1.05rem; }

.section-tag {
    display: inline-block;
    background: var(--blue-light);
    color: var(--blue);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.section-cta { text-align: center; margin-top: 40px; }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}
.btn-sm { padding: 8px 20px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 15px; border-radius: 12px; }
.btn-block { width: 100%; }

.btn-primary { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-blue); }

.btn-dark { background: var(--gray-900); color: var(--white); border-color: var(--gray-900); }
.btn-dark:hover { background: var(--gray-800); border-color: var(--gray-800); color: var(--white); }

.btn-outline { background: transparent; color: var(--gray-700); border-color: var(--gray-300); }
.btn-outline:hover { border-color: var(--gray-900); color: var(--gray-900); }

.btn-white { background: var(--white); color: var(--blue-dark); border-color: var(--white); }
.btn-white:hover { background: var(--gray-50); color: var(--blue-deeper); transform: translateY(-1px); }

.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.3); }
.btn-outline-white:hover { border-color: var(--white); color: var(--white); }

.btn-ghost { background: transparent; color: var(--blue); border: none; padding-left: 0; padding-right: 0; }
.btn-ghost:hover { color: var(--blue-dark); }

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-h);
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    z-index: 100;
    transition: all var(--transition);
}
.header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.08); border-bottom-color: transparent; background: var(--white); }

/* Transparent header over dark hero */
.header-hero {
    background: transparent;
    border-bottom-color: transparent;
}
.header-hero .logo-text { color: rgba(255,255,255,0.7); }
.header-hero .logo-text strong { color: var(--white); }
.header-hero .nav-link { color: rgba(255,255,255,0.75); }
.header-hero .nav-link:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.header-hero .header-phone { color: rgba(255,255,255,0.75); }
.header-hero .header-phone:hover { color: var(--white); }
.header-hero .burger span { background: var(--white); }

/* Once scrolled, revert to solid white */
.header-hero.scrolled { background: var(--white); }
.header-hero.scrolled .logo-text { color: var(--gray-600); }
.header-hero.scrolled .logo-text strong { color: var(--gray-900); }
.header-hero.scrolled .nav-link { color: var(--gray-600); }
.header-hero.scrolled .nav-link:hover { color: var(--blue); background: var(--blue-light); }
.header-hero.scrolled .header-phone { color: var(--gray-700); }
.header-hero.scrolled .burger span { background: var(--gray-700); }

.header-inner {
    display: flex;
    align-items: center;
    height: var(--header-h);
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--gray-900);
    flex-shrink: 0;
}
.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    color: var(--white);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -0.5px;
    box-shadow: 0 2px 8px rgba(0,120,212,0.3);
}
.logo-text { font-size: 18px; font-weight: 400; color: var(--gray-600); }
.logo-text strong { font-weight: 700; color: var(--gray-900); }

.main-nav { display: flex; gap: 4px; margin-left: auto; }
.nav-link {
    padding: 8px 18px;
    color: var(--gray-600);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}
.nav-link:hover { color: var(--blue); background: var(--blue-light); }

.header-cta { display: flex; align-items: center; gap: 16px; }
.header-phone { color: var(--gray-700); font-size: 14px; font-weight: 600; }
.header-phone:hover { color: var(--blue); }

.burger { display: none; background: none; border: none; cursor: pointer; width: 32px; height: 24px; position: relative; }
.burger span { display: block; width: 100%; height: 2px; background: var(--gray-700); position: absolute; left: 0; transition: all var(--transition-fast); }
.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.burger span:nth-child(3) { bottom: 0; }
.burger.open span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

.mobile-menu {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    padding: 24px;
    z-index: 99;
    flex-direction: column;
    gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-nav-link {
    display: block;
    padding: 14px 16px;
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: var(--radius-sm);
}
.mobile-nav-link:hover { background: var(--gray-50); color: var(--gray-900); }
.mobile-menu-cta { margin-top: auto; display: flex; flex-direction: column; gap: 12px; padding-top: 24px; border-top: 1px solid var(--gray-200); }
.mobile-phone { font-size: 18px; font-weight: 600; color: var(--gray-900); text-align: center; }

/* --- Hero --- */
.hero {
    padding: calc(var(--header-h) + 72px) 0 88px;
    background: linear-gradient(160deg, var(--gray-900) 0%, #0D2137 45%, var(--blue-deeper) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M0 30h60M30 0v60' stroke='rgba(255,255,255,0.03)' stroke-width='1'/%3E%3C/svg%3E");
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(0,120,212,0.15) 0%, transparent 60%);
    pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-content h1 { font-size: clamp(2.4rem, 4.5vw, 3.6rem); line-height: 1.1; margin-bottom: 24px; color: var(--white); letter-spacing: -0.02em; }
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,120,212,0.2);
    color: #7CB9F0;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 8px 18px;
    border-radius: 24px;
    margin-bottom: 24px;
    border: 1px solid rgba(0,120,212,0.25);
}
.hero-eyebrow::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--green);
}
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,0.7); margin-bottom: 36px; max-width: 520px; line-height: 1.7; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-actions .btn-primary { padding: 18px 40px; font-size: 16px; border-radius: 12px; box-shadow: 0 4px 24px rgba(0,120,212,0.4); }
.hero-actions .btn-outline { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.2); padding: 18px 40px; font-size: 16px; border-radius: 12px; }
.hero-actions .btn-outline:hover { color: var(--white); border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }
.hero-proof {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    padding: 10px 0;
}
.hero-proof strong { color: var(--amber); }
.hero-proof::before {
    content: '\2605\2605\2605\2605\2605';
    color: var(--amber);
    font-size: 13px;
    letter-spacing: 2px;
}

.hero-visual { position: relative; min-height: 380px; }
.hero-badges { position: relative; width: 100%; height: 380px; }
.hero-badge {
    position: absolute;
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    animation: float 5s ease-in-out infinite;
    transition: all var(--transition);
}
.hero-badge:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.2); transform: scale(1.05); }
.hb-1 { top: 8%; left: 12%; animation-delay: 0s; }
.hb-2 { top: 2%; right: 8%; animation-delay: 0.8s; }
.hb-3 { top: 38%; left: 2%; animation-delay: 1.6s; }
.hb-4 { top: 33%; right: 3%; animation-delay: 0.4s; background: linear-gradient(135deg, var(--purple), #7B5FE0); border-color: transparent; color: var(--white); box-shadow: 0 8px 32px rgba(91,95,199,0.3); }
.hb-5 { bottom: 18%; left: 16%; animation-delay: 1.2s; }
.hb-6 { bottom: 8%; right: 12%; animation-delay: 0.6s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* --- Page Hero --- */
.page-hero {
    padding: calc(var(--header-h) + 56px) 0 56px;
    background: linear-gradient(160deg, var(--gray-900) 0%, #0D2137 60%, var(--blue-deeper) 100%);
    color: var(--white);
    position: relative;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M0 30h60M30 0v60' stroke='rgba(255,255,255,0.025)' stroke-width='1'/%3E%3C/svg%3E");
    pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 12px; color: var(--white); }
.page-hero .section-tag { background: rgba(0,120,212,0.2); color: #7CB9F0; border: 1px solid rgba(0,120,212,0.2); }
.page-hero-sub { color: rgba(255,255,255,0.6); font-size: 1.05rem; max-width: 560px; }
.page-hero-course { border-bottom: 3px solid var(--course-color, var(--blue)); }

/* --- Trust Bar --- */
.trust-bar { padding: 0; background: var(--white); position: relative; z-index: 2; }
.trust-items {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    max-width: 960px;
    margin: 0 auto;
    transform: translateY(-50%);
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.10), 0 1px 4px rgba(0,0,0,0.06);
    overflow: hidden;
}
.trust-item {
    flex: 1;
    min-width: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 20px;
    font-size: 13px;
    color: var(--gray-500);
    font-weight: 500;
    text-align: center;
    border-right: 1px solid var(--gray-100);
    transition: background var(--transition-fast);
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: var(--gray-50); }
.trust-item strong {
    display: block;
    color: var(--gray-900);
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2px;
}
.trust-badge {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    box-shadow: 0 2px 8px rgba(0,120,212,0.25);
}

/* --- Steps --- */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.step { text-align: center; padding: 32px 24px; }
.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--blue);
    color: var(--white);
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}
.step h3 { margin-bottom: 8px; font-size: 1.05rem; }
.step p { color: var(--gray-500); font-size: 0.95rem; }

/* --- Features Grid --- */
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.feature-card {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    transition: all var(--transition);
}
.feature-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.feature-card h3 { font-size: 0.95rem; margin-bottom: 4px; }
.feature-card p { font-size: 0.9rem; color: var(--gray-500); }

.feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--white);
}
.fi-blue { background: var(--blue); }
.fi-teal { background: var(--teal); }
.fi-purple { background: var(--purple); }
.fi-orange { background: var(--orange); }
.fi-green { background: var(--green); }
.fi-amber { background: var(--amber); }

/* --- Course Cards --- */
.courses-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.course-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 24px;
    text-decoration: none;
    color: inherit;
    transition: all var(--transition);
}
.course-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); color: inherit; }
.course-card:hover .course-arrow { background: var(--blue); color: var(--white); }

.course-card-top { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 16px; }
.course-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}
.ci-blue { background: var(--blue); }
.ci-purple { background: var(--purple); }
.ci-orange { background: var(--orange); }
.ci-teal { background: var(--teal); }
.ci-green { background: var(--green); }
.ci-amber { background: var(--amber); }

.course-card-top h3 { font-size: 1rem; margin-bottom: 2px; }
.course-cat { font-size: 12px; color: var(--gray-400); font-weight: 500; text-transform: uppercase; letter-spacing: 0.04em; }

.course-card-body { flex: 1; }
.course-card-body p { font-size: 0.9rem; color: var(--gray-500); margin-bottom: 12px; }

.course-benefit {
    display: inline-block;
    background: var(--green-light);
    color: var(--green);
    font-size: 13px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 6px;
}

.course-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-100);
}
.course-meta { display: flex; gap: 16px; font-size: 12px; color: var(--gray-400); font-weight: 500; }
.course-arrow {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    color: var(--gray-400);
    border-radius: 50%;
    font-size: 14px;
    transition: all var(--transition);
}

/* --- Course Filters --- */
.course-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-btn {
    padding: 8px 18px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    transition: all var(--transition-fast);
}
.filter-btn:hover { border-color: var(--gray-400); color: var(--gray-900); }
.filter-btn.active { background: var(--blue); color: var(--white); border-color: var(--blue); }

/* --- Numbers Strip --- */
.numbers-strip { padding: 56px 0; background: var(--gray-900); }
.numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.number-value { display: block; font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 2.8rem); color: var(--white); font-weight: 400; line-height: 1.2; }
.number-label { font-size: 14px; color: var(--gray-400); font-weight: 500; }

/* --- Testimonials --- */
.testimonials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.testimonial-highlight {
    background: var(--gray-900);
    color: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
}
.testimonial-highlight blockquote { font-size: 1.15rem; line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.th-author { display: flex; gap: 12px; align-items: center; }
.th-avatar {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue);
    color: var(--white);
    border-radius: 50%;
    font-weight: 700;
    font-size: 16px;
}
.th-author strong { display: block; font-size: 15px; }
.th-author span { font-size: 13px; color: var(--gray-400); }

.testimonials-side { display: flex; flex-direction: column; gap: 16px; }
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 24px;
    transition: all var(--transition);
}
.testimonial-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.testimonial-stars { color: var(--amber); font-size: 16px; margin-bottom: 8px; letter-spacing: 2px; }
.testimonial-text { font-size: 0.95rem; color: var(--gray-600); margin-bottom: 16px; font-style: italic; }
.testimonial-author { display: flex; gap: 10px; align-items: center; }
.testimonial-avatar {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-light);
    color: var(--blue);
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px;
}
.testimonial-author strong { display: block; font-size: 14px; color: var(--gray-800); }
.testimonial-author span { font-size: 12px; color: var(--gray-400); }

/* --- CTA Box --- */
.cta-section { padding: 0 0 88px; }
.cta-box {
    background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
    color: var(--white);
    padding: 64px;
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h40v40H0z' fill='none'/%3E%3Cpath d='M0 20h40M20 0v40' stroke='rgba(255,255,255,0.06)' stroke-width='1'/%3E%3C/svg%3E");
    pointer-events: none;
}
.cta-box h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 12px; color: var(--white); position: relative; }
.cta-box p { font-size: 1.05rem; opacity: 0.85; margin-bottom: 32px; position: relative; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }

/* --- Custom Training --- */
.custom-training {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 48px;
}
.custom-training-content { max-width: 560px; }
.custom-training h2 { margin-bottom: 12px; }
.custom-training p { color: var(--gray-500); margin-bottom: 24px; }

/* --- Course Detail Layout --- */
.course-layout { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.course-content { min-width: 0; }

.course-section { margin-bottom: 32px; }
.course-desc { font-size: 1.05rem; line-height: 1.75; color: var(--gray-600); }

.course-content h3 { font-size: 1.1rem; margin: 28px 0 12px; color: var(--gray-900); }
.course-content ul, .course-content ol { padding-left: 24px; margin-bottom: 16px; }
.course-content li { margin-bottom: 6px; color: var(--gray-600); }

.course-info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 32px; }
.course-info-item {
    background: var(--gray-50);
    padding: 16px;
    border-radius: var(--radius-sm);
}
.course-info-label { display: block; font-size: 12px; color: var(--gray-400); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 4px; }
.course-info-value { font-size: 15px; font-weight: 600; color: var(--gray-800); }

/* --- Sidebar --- */
.course-sidebar { position: sticky; top: calc(var(--header-h) + 24px); }
.sidebar-cta {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 20px;
}
.sidebar-cta h3 { font-size: 1.05rem; margin-bottom: 8px; }
.sidebar-cta p { font-size: 0.9rem; color: var(--gray-500); margin-bottom: 20px; }
.sidebar-cta .btn { margin-bottom: 8px; }

.sidebar-benefit {
    margin-top: 16px;
    padding: 12px;
    background: var(--green-light);
    color: var(--green);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}

.sidebar-other {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 20px;
}
.sidebar-other h4 { font-size: 14px; margin-bottom: 12px; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.04em; }
.sidebar-course-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 14px;
    color: var(--gray-700);
    font-weight: 500;
}
.sidebar-course-link:last-child { border-bottom: none; }
.sidebar-course-link:hover { color: var(--blue); }
.sidebar-arrow { color: var(--gray-300); transition: color var(--transition-fast); }
.sidebar-course-link:hover .sidebar-arrow { color: var(--blue); }

/* --- Contact --- */
.contact-grid { display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: start; }
.contact-form-wrap { min-width: 0; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 14px; font-weight: 600; color: var(--gray-700); }
.form-group input, .form-group textarea, .form-group select {
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--gray-800);
    transition: border-color var(--transition-fast);
    background: var(--white);
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,120,212,0.1); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-400); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 13px; color: var(--gray-400); }
.form-note a { color: var(--gray-500); text-decoration: underline; }

.form-success { text-align: center; padding: 48px 24px; }
.form-success-icon { font-size: 48px; color: var(--green); margin-bottom: 16px; }
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--gray-500); }

.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-card { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 24px; }
.contact-card h3 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--gray-500); margin-bottom: 8px; }
.contact-link { font-size: 16px; font-weight: 600; color: var(--gray-900); display: block; }
.contact-link-lg { font-size: 20px; }
.contact-link:hover { color: var(--blue); }
.contact-card p { font-size: 14px; color: var(--gray-400); margin-top: 4px; }
.contact-address { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

.contact-card-highlight {
    background: var(--blue-light);
    border-color: transparent;
}
.contact-reasons { list-style: none; padding: 0; }
.contact-reasons li {
    padding: 6px 0;
    font-size: 14px;
    color: var(--gray-700);
    font-weight: 500;
}
.contact-reasons li::before { content: '\2713\0020'; color: var(--green); font-weight: 700; }

/* --- Certifications --- */
.certs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.cert-item {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
}

/* Certification Badges (About page) */
.certs-badge-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cert-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 20px;
    transition: all var(--transition);
}
.cert-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.cert-badge-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--blue-light);
    color: var(--blue);
}
.cert-badge-icon-gold { background: #FEF3C7; color: #D97706; }
.cert-badge-icon-azure { background: #E0F2FE; color: #0284C7; }
.cert-badge-text { min-width: 0; }
.cert-badge-text strong { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--blue); margin-bottom: 2px; }
.cert-badge-icon-gold + .cert-badge-text strong { color: #D97706; }
.cert-badge-icon-azure + .cert-badge-text strong { color: #0284C7; }
.cert-badge-text span { font-size: 14px; color: var(--gray-700); font-weight: 500; line-height: 1.3; }

/* Partner Logos */
.partner-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 32px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
}
.partner-logos img {
    max-height: 80px;
    width: auto;
    object-fit: contain;
    filter: grayscale(20%);
    transition: all var(--transition);
}
.partner-logos img:hover { filter: grayscale(0%); transform: scale(1.05); }

/* --- About Page --- */
.about-story p { font-size: 1.05rem; line-height: 1.8; color: var(--gray-600); margin-bottom: 16px; }

/* About Intro — 2-column text + image */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.about-intro-reverse { direction: rtl; }
.about-intro-reverse > * { direction: ltr; }
.about-intro-text h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); line-height: 1.2; margin-bottom: 16px; }
.about-intro-text p { font-size: 1.02rem; line-height: 1.75; color: var(--gray-600); margin-bottom: 12px; }
.about-intro-text .btn { margin-top: 12px; }
.about-intro-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-intro-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Why Us — Highlighted cards */
.why-us-section {
    background: linear-gradient(160deg, var(--gray-900) 0%, #0D2137 60%, var(--blue-deeper) 100%);
    color: var(--white);
    position: relative;
}
.why-us-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M0 30h60M30 0v60' stroke='rgba(255,255,255,0.025)' stroke-width='1'/%3E%3C/svg%3E");
    pointer-events: none;
}
.why-us-section .container { position: relative; z-index: 1; }
.why-us-section .section-header h2 { color: var(--white); }
.why-us-section .section-header p { color: rgba(255,255,255,0.6); }
.why-us-section .section-tag { background: rgba(0,120,212,0.2); color: #7CB9F0; border: 1px solid rgba(0,120,212,0.2); }

.why-us-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-us-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 28px;
    transition: all var(--transition);
}
.why-us-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.15); transform: translateY(-3px); }
.why-us-card h3 { font-size: 1rem; color: var(--white); margin-bottom: 8px; }
.why-us-card p { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.6; }
.why-us-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(0,120,212,0.2);
    color: #7CB9F0;
    margin-bottom: 16px;
}
.why-us-icon-teal { background: rgba(3,131,135,0.2); color: #5EEAD4; }
.why-us-icon-purple { background: rgba(91,95,199,0.2); color: #A5B4FC; }
.why-us-icon-orange { background: rgba(216,59,1,0.2); color: #FDBA74; }
.why-us-icon-green { background: rgba(14,159,110,0.2); color: #6EE7B7; }
.why-us-icon-amber { background: rgba(245,158,11,0.2); color: #FCD34D; }

/* --- Feedback --- */
.feedback-form { display: flex; flex-direction: column; gap: 24px; }
.rating-group { border: none; margin-bottom: 0; }
.rating-group legend { font-size: 14px; font-weight: 600; color: var(--gray-700); margin-bottom: 8px; }
.star-rating { display: flex; gap: 6px; }
.star { font-size: 28px; color: var(--gray-300); cursor: pointer; transition: color var(--transition-fast); }
.star:hover, .star.active { color: var(--amber); }

/* --- Prose (Privacy etc.) --- */
.prose h2 { font-size: 1.4rem; margin: 32px 0 12px; }
.prose h3 { font-size: 1.1rem; margin: 24px 0 8px; }
.prose p { margin-bottom: 12px; line-height: 1.75; }
.prose ul { padding-left: 24px; margin-bottom: 16px; }
.prose li { margin-bottom: 6px; }

/* --- Footer --- */
.footer { background: var(--gray-900); color: var(--gray-400); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }

.footer-brand p { font-size: 14px; margin-top: 12px; line-height: 1.6; }
.logo-footer .logo-text { color: var(--gray-400); }
.logo-footer .logo-text strong { color: var(--white); }
.footer-partner {
    display: inline-block;
    margin-top: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-500);
    border: 1px solid var(--gray-700);
    padding: 4px 10px;
    border-radius: 4px;
}

.footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray-500); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: var(--gray-400); padding: 4px 0; transition: color var(--transition-fast); }
.footer-col a:hover { color: var(--white); }
.footer-address { font-size: 14px; line-height: 1.6; color: var(--gray-500); margin-top: 4px; }

.footer-bottom { border-top: 1px solid var(--gray-800); padding-top: 24px; font-size: 13px; text-align: center; }
.footer-bottom a { color: var(--gray-500); }
.footer-bottom a:hover { color: var(--white); }

/* --- Cookie Consent Banner --- */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; background: var(--white); border-top: 1px solid var(--gray-200); box-shadow: 0 -4px 24px rgba(0,0,0,0.08); padding: 16px 0; }
.cookie-banner-inner { max-width: var(--container); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.cookie-banner-text { flex: 1; min-width: 280px; }
.cookie-banner-text p { font-size: 14px; color: var(--gray-700); line-height: 1.5; margin: 0; }
.cookie-link { font-size: 13px; color: var(--blue); }
.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }

@media (max-width: 600px) {
    .cookie-banner-inner { flex-direction: column; align-items: stretch; text-align: center; }
    .cookie-banner-actions { justify-content: center; }
}

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

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .hero { padding-bottom: 100px; }
    .trust-items { flex-wrap: wrap; }
    .trust-item { min-width: 120px; }
    .features-grid { grid-template-columns: 1fr; }
    .courses-grid { grid-template-columns: 1fr; }
    .course-layout { grid-template-columns: 1fr; }
    .course-sidebar { position: static; }
    .contact-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .certs-grid { grid-template-columns: repeat(2, 1fr); }
    .certs-badge-grid { grid-template-columns: repeat(2, 1fr); }
    .why-us-grid { grid-template-columns: repeat(2, 1fr); }
    .about-intro { grid-template-columns: 1fr; gap: 32px; }
    .about-intro-reverse { direction: ltr; }
    .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    .section { padding: 56px 0; }
    .main-nav, .header-cta { display: none; }
    .burger { display: block; margin-left: auto; }

    .hero { padding: calc(var(--header-h) + 40px) 0 80px; }
    .hero-content h1 { font-size: 2rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn, .hero-actions .btn-primary, .hero-actions .btn-outline { width: 100%; padding: 16px 28px; }

    .trust-items { transform: translateY(-32px); border-radius: 12px; flex-direction: row; flex-wrap: wrap; }
    .trust-item { min-width: 45%; padding: 16px 12px; border-right: none; border-bottom: 1px solid var(--gray-100); }
    .trust-item strong { font-size: 20px; }

    .steps-grid { grid-template-columns: 1fr; gap: 24px; }
    .features-grid { grid-template-columns: 1fr; }
    .courses-grid { grid-template-columns: 1fr; }
    .numbers-grid { grid-template-columns: repeat(2, 1fr); }
    .certs-grid { grid-template-columns: 1fr; }
    .certs-badge-grid { grid-template-columns: 1fr; }
    .why-us-grid { grid-template-columns: 1fr; }
    .partner-logos { gap: 24px; padding: 24px; }
    .partner-logos img { max-height: 56px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }

    .form-row { grid-template-columns: 1fr; }
    .cta-box { padding: 40px 24px; }
    .cta-section { padding: 0 0 56px; }
    .course-info-grid { grid-template-columns: 1fr; }

    .course-filters { gap: 6px; }
    .filter-btn { padding: 6px 14px; font-size: 12px; }

    .custom-training { padding: 32px 24px; }
}
