/* ===================================================================
   NetSkills Center — Brand Design System
   Navy #26255E  ·  Coral #E9593B  ·  White
   =================================================================== */

:root {
    /* ============ BRAND COLORS (from logo) ============ */
    --navy: #26255E;
    --navy-dark: #1A1948;
    --navy-darker: #0F0E2A;
    --navy-light: #3D3B85;
    --navy-soft: #4F4E94;

    --coral: #E9593B;
    --coral-dark: #D04527;
    --coral-light: #F47A5F;
    --coral-soft: #FFE8E2;

    /* ============ ALIASES (for clarity) ============ */
    --primary: var(--navy);
    --primary-dark: var(--navy-dark);
    --primary-light: var(--navy-light);
    --accent: var(--coral);
    --accent-dark: var(--coral-dark);
    --accent-light: var(--coral-light);

    /* ============ SURFACES ============ */
    --bg: #FFFFFF;
    --bg-cream: #FFF8F4;
    --bg-alt: #FAF7F4;
    --bg-soft: #F2EFEB;
    --bg-dark: #1A1948;
    --bg-darker: #0F0E2A;

    /* ============ TEXT ============ */
    --text: #1A1948;
    --text-muted: #4F4E6E;
    --text-light: #6B6A85;
    --text-on-dark: #E8E7F0;
    --text-on-dark-muted: #A8A7C2;

    /* ============ BORDERS / STATE ============ */
    --border: #E8E5E0;
    --border-strong: #D4D0C8;
    --success: #16A34A;
    --warning: #F59E0B;
    --danger: #DC2626;
    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;

    /* ============ GRADIENTS ============ */
    --gradient-brand: linear-gradient(135deg, #26255E 0%, #3D3B85 60%, #E9593B 100%);
    --gradient-navy: linear-gradient(135deg, #26255E 0%, #3D3B85 100%);
    --gradient-coral: linear-gradient(135deg, #E9593B 0%, #F47A5F 100%);
    --gradient-warm: linear-gradient(135deg, #E9593B 0%, #F59E0B 100%);
    --gradient-dark: linear-gradient(135deg, #0F0E2A 0%, #1A1948 50%, #26255E 100%);
    --gradient-mesh:
        radial-gradient(at 0% 0%, rgba(233, 89, 59, 0.18) 0%, transparent 55%),
        radial-gradient(at 100% 0%, rgba(38, 37, 94, 0.5) 0%, transparent 60%),
        radial-gradient(at 50% 100%, rgba(233, 89, 59, 0.12) 0%, transparent 60%);

    /* ============ EFFECTS ============ */
    --shadow-sm: 0 1px 2px rgba(38, 37, 94, 0.06);
    --shadow: 0 8px 24px rgba(38, 37, 94, 0.10);
    --shadow-lg: 0 24px 60px rgba(38, 37, 94, 0.18);
    --shadow-navy: 0 16px 40px rgba(38, 37, 94, 0.30);
    --shadow-coral: 0 16px 40px rgba(233, 89, 59, 0.30);

    /* ============ LAYOUT ============ */
    --radius: 10px;
    --radius-lg: 18px;
    --radius-xl: 26px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container-max: 1240px;
    --header-height: 76px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
*::selection { background: var(--coral); color: white; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; -webkit-text-size-adjust: 100%; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
    letter-spacing: -0.02em;
}

.section-header { text-align: center; max-width: 720px; margin: 0 auto 56px; }

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--coral-soft);
    color: var(--coral-dark);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-tag .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--coral);
    animation: pulse 2s infinite;
}

.section-title {
    font-size: clamp(1.875rem, 4vw, 2.625rem);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.gradient-text {
    background: var(--gradient-coral);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.coral-text { color: var(--coral); }
.navy-text { color: var(--navy); }

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 26px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
}

.btn-primary {
    background: var(--coral);
    color: white;
    box-shadow: var(--shadow-coral);
}

.btn-primary:hover {
    background: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 22px 50px rgba(233, 89, 59, 0.4);
}

.btn-navy {
    background: var(--navy);
    color: white;
    box-shadow: var(--shadow-navy);
}

.btn-navy:hover {
    background: var(--navy-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: var(--navy);
    border: 1.5px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--navy);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-ghost {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255,255,255,0.3);
}

.btn-ghost:hover {
    background: white;
    color: var(--navy);
    border-color: white;
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: white;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-2px);
}

.btn-lg { padding: 16px 32px; font-size: 15px; }

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

/* ============ HEADER / NAV ============ */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.96);
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}

.nav {
    height: var(--header-height);
    display: flex;
    align-items: center;
    gap: 36px;
}

.logo { display: inline-flex; align-items: center; gap: 0; }

.logo img {
    height: 36px;
    width: auto;
    transition: var(--transition);
}

.logo:hover img { transform: scale(1.03); }

.nav-menu { display: flex; gap: 6px; align-items: center; margin-right: auto; }

.nav-item { position: relative; }

.nav-link {
    color: var(--text-muted);
    font-weight: 500;
    padding: 10px 13px;
    border-radius: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
    color: var(--navy);
    background: var(--bg-alt);
}

.nav-link .chev { font-size: 10px; transition: var(--transition); }
.nav-item:hover .nav-link .chev { transform: rotate(180deg); }

/* Mega menu */
.mega-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    padding: 24px;
    min-width: 720px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 200;
}

.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; }
.mega-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.mega-grid.cols-1 { grid-template-columns: 1fr; min-width: 280px; }

.mega-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 10px;
    transition: var(--transition);
    color: var(--text);
}

.mega-link:hover {
    background: var(--bg-alt);
    transform: translateX(4px);
}

.mega-link-icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: var(--coral-soft);
    color: var(--coral);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.mega-link-text h5 { font-size: 14px; margin-bottom: 2px; font-weight: 600; }
.mega-link-text p { font-size: 12px; color: var(--text-light); line-height: 1.4; }

.mega-mini { min-width: 240px; }
.mega-mini .mega-link { padding: 8px 12px; }
.mega-mini .mega-link-text h5 { font-size: 13px; }

.nav-cta { display: flex; align-items: center; gap: 10px; }

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: var(--transition);
    margin-left: 2px;
    flex-shrink: 0;
    position: relative;
}

.menu-toggle:hover {
    background: var(--coral-soft);
    border-color: var(--coral);
}

.menu-toggle.active {
    background: var(--navy);
    border-color: var(--navy);
}

.menu-toggle span {
    width: 20px; height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
    transform-origin: center;
}

.menu-toggle:hover span { background: var(--coral); }
.menu-toggle.active span { background: white; }

.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: scale(0); }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Backdrop when mobile menu is open */
.menu-backdrop {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0; right: 0; bottom: 0;
    background: rgba(15, 14, 42, 0.45);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 95;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-backdrop.active {
    opacity: 1;
}

/* ============ HERO ============ */
.hero {
    padding: calc(var(--header-height) + 80px) 0 100px;
    background: var(--navy);
    color: var(--text-on-dark);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-mesh);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.05) 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-on-dark);
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.hero-pill .badge {
    background: var(--coral);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: white;
}

.hero h1 {
    font-size: clamp(2.5rem, 5.5vw, 4.25rem);
    line-height: 1.05;
    margin-bottom: 24px;
    color: white;
    letter-spacing: -0.03em;
}

.hero h1 .gradient-text {
    background: linear-gradient(135deg, #F47A5F 0%, #E9593B 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-on-dark-muted);
    margin-bottom: 36px;
    max-width: 600px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    color: var(--text-on-dark-muted);
    font-size: 13px;
}

.hero-trust-item { display: flex; align-items: center; gap: 8px; }
.hero-trust-item i { color: var(--coral-light); }

.hero-stats-strip {
    margin-top: 60px;
    padding: 28px 32px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 24px;
    position: relative;
    z-index: 2;
}

.hero-stat .num {
    font-family: 'Poppins', sans-serif;
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--coral-light);
    line-height: 1;
}

.hero-stat .label {
    font-size: 13px;
    color: var(--text-on-dark-muted);
    margin-top: 6px;
}

/* ============ PAGE HEADER (sub-pages) ============ */
.page-header {
    padding: calc(var(--header-height) + 70px) 0 70px;
    background: var(--navy);
    color: var(--text-on-dark);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-mesh);
    pointer-events: none;
}

.page-header > * { position: relative; z-index: 1; }

.breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-on-dark-muted);
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.breadcrumbs a { color: var(--coral-light); }
.breadcrumbs a:hover { color: white; }
.breadcrumbs i { font-size: 9px; opacity: 0.5; }

.page-header h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    color: white;
    margin-bottom: 16px;
}

.page-header .lead {
    font-size: 1.0625rem;
    color: var(--text-on-dark-muted);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============ FEATURE CARDS ============ */
.feature-card {
    padding: 32px 28px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--coral);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: var(--coral-soft);
    color: var(--coral);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 22px;
}

.feature-card h3 { font-size: 1.125rem; margin-bottom: 10px; }
.feature-card p { color: var(--text-light); font-size: 14.5px; line-height: 1.6; }

/* ============ TILE (course/path/service) ============ */
.tile {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    color: var(--text);
}

.tile:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.tile-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin-bottom: 18px;
    background: var(--navy);
    box-shadow: var(--shadow-navy);
}

.tile-icon.coral { background: var(--coral); box-shadow: var(--shadow-coral); }
.tile-icon.navy { background: var(--navy); box-shadow: var(--shadow-navy); }
.tile-icon.gradient { background: var(--gradient-brand); }
.tile-icon.warm { background: var(--gradient-warm); box-shadow: 0 12px 30px rgba(245, 158, 11, 0.3); }

.tile-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--coral);
    background: var(--coral-soft);
    padding: 4px 10px;
    border-radius: 50px;
    margin-bottom: 12px;
    align-self: flex-start;
}

.tile h3 {
    font-size: 1.1875rem;
    margin-bottom: 10px;
    line-height: 1.3;
}

.tile p {
    color: var(--text-light);
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 18px;
    flex: 1;
}

.tile-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 13px;
    color: var(--text-light);
    padding-top: 16px;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.tile-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.tile-link {
    margin-top: 18px;
    color: var(--coral);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tile-link i { transition: var(--transition); }
.tile:hover .tile-link i { transform: translateX(4px); }

/* ============ GRIDS ============ */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); }

/* ============ MISSION/VISION/VALUES ============ */
.mvv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }

.mvv-card {
    padding: 36px 28px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 18px;
    text-align: center;
    transition: var(--transition);
}

.mvv-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: var(--coral);
}

.mvv-card .mvv-icon {
    width: 70px; height: 70px;
    background: var(--navy);
    color: white;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-navy);
    position: relative;
}

.mvv-card .mvv-icon::after {
    content: '';
    position: absolute;
    top: -4px; right: -4px;
    width: 14px; height: 5px;
    background: var(--coral);
    border-radius: 2px;
}

.mvv-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.mvv-card p { color: var(--text-light); font-size: 14.5px; line-height: 1.6; }

/* ============ PILLARS ============ */
.pillar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.pillar:last-child { margin-bottom: 0; }
.pillar.reverse { direction: rtl; }
.pillar.reverse > * { direction: ltr; }

.pillar-visual {
    aspect-ratio: 5/4;
    border-radius: 22px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 100px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.pillar-visual.coral { background: var(--coral); }
.pillar-visual.warm { background: var(--gradient-warm); }
.pillar-visual.gradient { background: var(--gradient-brand); }

.pillar-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.18), transparent 60%);
}

.pillar-visual::before {
    content: '';
    position: absolute;
    top: 14px; right: 14px;
    width: 40px; height: 14px;
    background: var(--coral);
    border-radius: 4px;
    z-index: 2;
}

.pillar-visual.coral::before { background: var(--navy); }

.pillar-text .section-tag { margin-bottom: 14px; }

.pillar-text h2 {
    font-size: clamp(1.625rem, 3vw, 2.125rem);
    margin-bottom: 18px;
}

.pillar-text p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 14px;
}

.pillar-features {
    margin-top: 24px;
    display: grid;
    gap: 14px;
}

.pillar-feat {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.pillar-feat-check {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--coral-soft);
    color: var(--coral);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.pillar-feat-text strong { font-size: 14.5px; color: var(--navy); }
.pillar-feat-text span { display: block; font-size: 13.5px; color: var(--text-light); margin-top: 2px; }

/* ============ STATS BAND ============ */
.stats-band {
    background: var(--navy);
    color: white;
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}

.stats-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-mesh);
    pointer-events: none;
}

.stats-band .container { position: relative; z-index: 1; }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px;
    text-align: center;
}

.stats-grid .num {
    font-family: 'Poppins', sans-serif;
    font-size: 2.625rem;
    font-weight: 800;
    color: var(--coral-light);
    margin-bottom: 6px;
    line-height: 1;
}

.stats-grid .label { font-size: 14px; color: var(--text-on-dark-muted); }

/* ============ TESTIMONIAL ============ */
.testimonial {
    background: white;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 32px;
    position: relative;
    transition: var(--transition);
}

.testimonial:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.testimonial .quote-mark {
    font-size: 80px;
    color: var(--coral);
    opacity: 0.15;
    position: absolute;
    top: 14px; right: 24px;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial .stars {
    color: var(--coral);
    font-size: 13px;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.testimonial p {
    color: var(--text);
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author { display: flex; align-items: center; gap: 14px; }

.t-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--navy);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

.t-avatar::after {
    content: '';
    position: absolute;
    bottom: -2px; right: -2px;
    width: 14px; height: 14px;
    background: var(--coral);
    border-radius: 50%;
    border: 2px solid white;
}

.t-author-info h4 { font-size: 14.5px; margin-bottom: 2px; color: var(--navy); }
.t-author-info p { font-size: 12.5px; color: var(--text-light); margin: 0; }

/* ============ CTA BLOCK ============ */
.cta-block {
    margin: 0 auto;
    max-width: 1100px;
    background: var(--navy);
    border-radius: 24px;
    padding: 64px 48px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.cta-block::before { content: ''; position: absolute; inset: 0; background: var(--gradient-mesh); }

.cta-block::after {
    content: '';
    position: absolute;
    top: 24px; right: 32px;
    width: 60px; height: 18px;
    background: var(--coral);
    border-radius: 4px;
    z-index: 2;
}

.cta-block > * { position: relative; z-index: 1; }

.cta-block h2 {
    color: white;
    font-size: clamp(1.625rem, 3.5vw, 2.5rem);
    margin-bottom: 16px;
}

.cta-block p {
    font-size: 1.0625rem;
    color: var(--text-on-dark-muted);
    margin-bottom: 32px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============ COURSE DETAIL ============ */
.course-hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: start;
    text-align: left;
}

.course-meta-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 18px;
    justify-content: flex-start;
}

.course-pill {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    color: var(--text-on-dark);
}

.course-pill.coral {
    background: var(--coral);
    border-color: var(--coral);
    color: white;
    font-weight: 600;
}

.course-snapshot {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}

.snapshot-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 14px 18px;
    text-align: left;
}

.snapshot-item .label {
    font-size: 11px;
    color: var(--text-on-dark-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

.snapshot-item .value {
    font-size: 15px;
    font-weight: 600;
    color: white;
}

.course-side {
    background: white;
    color: var(--text);
    border-radius: 18px;
    padding: 28px;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 100px;
    text-align: left;
}

.course-side-icon {
    width: 60px; height: 60px;
    background: var(--coral);
    color: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
    box-shadow: var(--shadow-coral);
}

.course-side h3 { margin-bottom: 6px; font-size: 1.125rem; color: var(--navy); }
.course-side .level { color: var(--text-light); font-size: 13px; margin-bottom: 22px; }

.course-side ul { margin-bottom: 24px; }
.course-side ul li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}
.course-side ul li:last-child { border-bottom: none; }
.course-side ul li i { color: var(--coral); margin-top: 4px; flex-shrink: 0; width: 14px; }

.course-side .btn { width: 100%; }
.course-side .btn + .btn { margin-top: 10px; }

/* Curriculum */
.curr-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.curr-item:hover { box-shadow: var(--shadow); border-color: var(--coral); }

.curr-head {
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.curr-num {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: var(--navy);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
    position: relative;
}

.curr-num::after {
    content: '';
    position: absolute;
    top: -3px; right: -3px;
    width: 8px; height: 3px;
    background: var(--coral);
    border-radius: 1px;
}

.curr-info { flex: 1; }
.curr-info h4 { font-size: 15px; margin-bottom: 3px; color: var(--navy); }
.curr-info p { font-size: 13px; color: var(--text-light); }

.curr-meta {
    font-size: 12px;
    color: var(--text-light);
    background: var(--bg-alt);
    padding: 4px 10px;
    border-radius: 50px;
    white-space: nowrap;
}

/* Outcomes */
.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.outcome {
    display: flex;
    gap: 14px;
    padding: 18px 20px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
}

.outcome i {
    color: var(--coral);
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.outcome strong { display: block; margin-bottom: 4px; font-size: 14.5px; color: var(--navy); }
.outcome p { font-size: 13.5px; color: var(--text-light); margin: 0; line-height: 1.5; }

/* ============ BLOG / POST ============ */
.post-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.post-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.post-thumb {
    aspect-ratio: 16/9;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 56px;
    position: relative;
}

.post-thumb.coral { background: var(--coral); }
.post-thumb.warm { background: var(--gradient-warm); }
.post-thumb.gradient { background: var(--gradient-brand); }

.post-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15), transparent 60%);
}

.post-thumb::before {
    content: '';
    position: absolute;
    top: 14px; right: 14px;
    width: 30px; height: 10px;
    background: var(--coral);
    border-radius: 3px;
    z-index: 2;
}

.post-thumb.coral::before { background: var(--navy); }

.post-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.post-cat { font-size: 11px; font-weight: 700; color: var(--coral); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.post-card h3 { font-size: 1.0625rem; margin-bottom: 10px; line-height: 1.4; color: var(--navy); }
.post-excerpt { color: var(--text-light); font-size: 14px; line-height: 1.6; margin-bottom: 16px; flex: 1; }
.post-meta { font-size: 12px; color: var(--text-light); display: flex; gap: 14px; align-items: center; padding-top: 14px; border-top: 1px solid var(--border); }

/* ============ CONTACT TILES ============ */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.contact-tile {
    background: white;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    display: block;
    color: var(--text);
}

.contact-tile:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.contact-tile-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--coral);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 18px;
    box-shadow: var(--shadow-coral);
}

.contact-tile-icon.whatsapp { background: var(--whatsapp); box-shadow: 0 12px 30px rgba(37, 211, 102, 0.3); }
.contact-tile-icon.instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); box-shadow: 0 12px 30px rgba(220, 39, 67, 0.3); }
.contact-tile-icon.email { background: var(--navy); box-shadow: var(--shadow-navy); }

.contact-tile h3 { font-size: 1.125rem; margin-bottom: 8px; color: var(--navy); }
.contact-tile p { color: var(--text-light); font-size: 13.5px; margin-bottom: 16px; line-height: 1.6; }

.contact-tile .value {
    color: var(--coral);
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    padding: 8px 18px;
    background: var(--coral-soft);
    border-radius: 50px;
}

/* ============ FAQ ============ */
.faq-list { max-width: 820px; margin: 0 auto; }

.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active { border-color: var(--coral); box-shadow: var(--shadow); }

.faq-q {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    color: var(--navy);
}

.faq-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--bg-alt);
    color: var(--coral);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-icon { background: var(--coral); color: white; transform: rotate(45deg); }

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
}

.faq-item.active .faq-a {
    max-height: 500px;
    padding: 0 24px 20px;
}

.faq-a p { color: var(--text-light); font-size: 14.5px; line-height: 1.7; }

/* ============ CATEGORY MEGA TILE ============ */
.cat-tile {
    background: white;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: 100%;
    color: var(--text);
}

.cat-tile-title { color: var(--navy); }
.cat-tile-title:hover { color: var(--coral); }

.cat-tile-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--coral);
    font-weight: 600;
    font-size: 14px;
    margin-top: -6px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.cat-tile-cta i { transition: var(--transition); }
.cat-tile:hover .cat-tile-cta i { transform: translateX(4px); }

.cat-tile:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.cat-tile-head { display: flex; align-items: center; gap: 14px; }

.cat-tile-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    background: var(--navy);
    position: relative;
}

.cat-tile-icon::after {
    content: '';
    position: absolute;
    top: -3px; right: -3px;
    width: 14px; height: 4px;
    background: var(--coral);
    border-radius: 1px;
}

.cat-tile-icon.coral { background: var(--coral); }
.cat-tile-icon.coral::after { background: var(--navy); }
.cat-tile-icon.gradient { background: var(--gradient-brand); }

.cat-tile-head h3 { font-size: 1.125rem; margin-bottom: 4px; color: var(--navy); }
.cat-tile-head .count { font-size: 13px; color: var(--text-light); }

.cat-tile p { color: var(--text-light); font-size: 14px; line-height: 1.6; }

.cat-tile ul {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cat-tile ul a {
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.cat-tile ul a:hover { color: var(--coral); transform: translateX(4px); }
.cat-tile ul a i { font-size: 10px; color: var(--coral); }

/* ============ FOOTER ============ */
.footer {
    background: var(--navy-darker);
    color: var(--text-on-dark);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-mesh);
    opacity: 0.6;
    pointer-events: none;
}

.footer .container { position: relative; z-index: 1; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand { max-width: 340px; }

.footer-brand .logo { margin-bottom: 18px; }

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-on-dark-muted);
    margin-bottom: 22px;
}

.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }

.footer-social a {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 15px;
}

.footer-social a:hover {
    background: var(--coral);
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-col h4 {
    color: white;
    font-size: 14px;
    margin-bottom: 18px;
    letter-spacing: 0.02em;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 24px; height: 3px;
    background: var(--coral);
    border-radius: 2px;
}

.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 13.5px; color: var(--text-on-dark-muted); }
.footer-col ul a:hover { color: var(--coral-light); }

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 13px;
    color: var(--text-on-dark-muted);
}

.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a:hover { color: var(--coral-light); }

/* ============ FLOATING WHATSAPP ============ */
.wa-float {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 58px; height: 58px;
    background: var(--whatsapp);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
    z-index: 99;
    transition: var(--transition);
}

.wa-float::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 3px solid var(--whatsapp);
    opacity: 0.6;
    animation: ring 2s ease-out infinite;
}

@keyframes ring {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.5); opacity: 0; }
}

.wa-float:hover {
    background: var(--whatsapp-dark);
    transform: scale(1.08);
}

/* ============ FORMS ============ */
.form-card {
    background: white;
    padding: 40px;
    border-radius: 18px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--bg-alt);
    color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--coral);
    background: white;
    box-shadow: 0 0 0 4px rgba(233, 89, 59, 0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit { width: 100%; }

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

/* ============================================================
   RESPONSIVE — Tablet & Mobile
   ============================================================ */

/* ----- Large tablet / small laptop (1100px) ----- */
@media (max-width: 1100px) {
    .nav-menu { gap: 2px; }
    .nav-link { padding: 10px 10px; font-size: 13.5px; }
    .nav-cta .btn-secondary { display: none; }
}

/* ----- Tablet (1024px) ----- */
@media (max-width: 1024px) {
    .section { padding: 80px 0; }
    .pillar { grid-template-columns: 1fr; gap: 40px; }
    .pillar.reverse { direction: ltr; }
    .pillar-visual { aspect-ratio: 16/10; max-height: 320px; }
    .course-hero-grid { grid-template-columns: 1fr; gap: 32px; }
    .course-side { position: static; }
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; }
    .footer-grid .footer-col:nth-child(5) { display: none; }
    .hero-stats-strip { padding: 24px; gap: 20px; }
    .hero { padding: calc(var(--header-height) + 60px) 0 80px; }
    .grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
    .stats-grid .num { font-size: 2.25rem; }
}

/* ----- Mobile / small tablet (768px) ----- */
@media (max-width: 768px) {
    :root { --header-height: 68px; }

    .container { padding: 0 18px; }
    .section { padding: 60px 0; }

    /* Mobile nav layout — hamburger pinned to far right */
    .nav { gap: 10px; }
    .logo img { height: 30px; }
    .menu-backdrop { display: block; }

    /* Mobile menu panel */
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 16px 14px 28px;
        gap: 4px;
        box-shadow: 0 18px 40px rgba(15, 14, 42, 0.18);
        max-height: calc(100vh - var(--header-height));
        overflow-y: auto;
        overscroll-behavior: contain;
        margin-right: 0;
        transform: translateY(-12px);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.32s, visibility 0.32s;
        border-top: 1px solid var(--border);
        z-index: 96;
    }
    .nav-menu.active { transform: translateY(0); opacity: 1; visibility: visible; }
    .nav-menu .nav-item { width: 100%; }

    /* Top-level menu links — clean, attractive, with hover shadow */
    .nav-link {
        width: 100%;
        padding: 14px 16px;
        font-size: 15px;
        font-weight: 600;
        color: var(--navy);
        justify-content: space-between;
        border-radius: 12px;
        white-space: normal;
        border: 1px solid transparent;
        transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.2s, color 0.2s;
        position: relative;
    }
    .nav-link::before {
        content: '';
        position: absolute;
        left: 0; top: 50%;
        width: 3px; height: 0;
        background: var(--coral);
        border-radius: 2px;
        transform: translateY(-50%);
        transition: height 0.25s ease;
    }
    .nav-link:hover,
    .nav-link:active,
    .nav-item.open > .nav-link {
        background: var(--bg-alt);
        border-color: var(--border);
        box-shadow: 0 4px 14px rgba(38, 37, 94, 0.08);
        color: var(--coral);
    }
    .nav-link:hover::before,
    .nav-link:active::before,
    .nav-item.open > .nav-link::before {
        height: 22px;
    }
    .nav-link.active {
        background: var(--coral-soft);
        color: var(--coral-dark);
    }
    .nav-link.active::before { height: 22px; }
    .nav-link .chev {
        font-size: 11px;
        transition: transform 0.3s;
        color: var(--text-light);
    }
    .nav-item.open .nav-link .chev { transform: rotate(180deg); color: var(--coral); }

    /* Mega menu (mobile accordion) */
    .mega-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        min-width: auto;
        box-shadow: none;
        border: none;
        padding: 8px 6px 12px;
        display: none;
        background: transparent;
        margin: 0;
    }
    .nav-item.open .mega-menu {
        display: block;
        animation: megaSlideDown 0.3s ease-out;
    }
    @keyframes megaSlideDown {
        from { opacity: 0; transform: translateY(-6px); }
        to { opacity: 1; transform: translateY(0); }
    }
    .mega-grid { grid-template-columns: 1fr !important; gap: 4px; }

    /* Sub-links inside mobile mega */
    .mega-link {
        padding: 12px 14px;
        border-radius: 10px;
        background: white;
        border: 1px solid var(--border);
        transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    }
    .mega-link:hover,
    .mega-link:active {
        background: var(--coral-soft);
        border-color: var(--coral);
        box-shadow: 0 4px 12px rgba(233, 89, 59, 0.18);
        transform: none;
    }
    .mega-link-icon {
        width: 36px; height: 36px;
        font-size: 14px;
        background: var(--coral-soft);
        color: var(--coral);
        flex-shrink: 0;
    }
    .mega-link:hover .mega-link-icon,
    .mega-link:active .mega-link-icon {
        background: var(--coral);
        color: white;
    }
    .mega-link-text h5 { font-size: 14px; color: var(--navy); margin-bottom: 2px; }
    .mega-link-text p { font-size: 12px; color: var(--text-light); line-height: 1.4; }

    /* Hamburger toggle on mobile — visible, distinct */
    .menu-toggle { display: flex; margin-left: auto; }
    .nav-cta { gap: 8px; }
    .nav-cta .btn { padding: 10px 14px; font-size: 13px; }
    .nav-cta .btn-secondary { display: none; }
    .nav-cta .btn-primary { padding: 10px 14px; }

    /* Lock body scroll when menu is open */
    body.menu-open { overflow: hidden; }

    /* Hero */
    .hero { padding: calc(var(--header-height) + 40px) 0 60px; }
    .hero-pill { font-size: 12px; padding: 6px 14px; }
    .hero-pill .badge { font-size: 10px; padding: 2px 8px; }
    .hero-description { font-size: 1rem; }
    .hero-actions { gap: 10px; flex-direction: column; align-items: stretch; }
    .hero-actions .btn { width: 100%; }
    .hero-trust { gap: 16px; flex-direction: column; align-items: flex-start; }
    .hero-stats-strip {
        padding: 20px 16px;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 12px;
    }
    .hero-stat .num { font-size: 1.5rem; }
    .hero-stat .label { font-size: 11.5px; }

    /* Page header */
    .page-header { padding: calc(var(--header-height) + 40px) 0 60px; }
    .breadcrumbs { font-size: 12px; }

    /* Section header */
    .section-header { margin-bottom: 40px; }
    .section-tag { font-size: 11px; padding: 5px 12px; }
    .section-subtitle { font-size: 1rem; }

    /* Cards & grids */
    .feature-card, .tile, .mvv-card, .testimonial, .contact-tile, .cat-tile { padding: 24px 20px; }
    .feature-icon, .tile-icon, .cat-tile-icon { width: 48px; height: 48px; font-size: 18px; }
    .feature-card h3, .tile h3, .mvv-card h3 { font-size: 1.0625rem; }

    /* Pillar */
    .pillar-visual { aspect-ratio: 4/3; max-height: 260px; font-size: 60px; }
    .pillar-features { gap: 12px; }

    /* Stats */
    .stats-band { padding: 48px 0; }
    .stats-grid { gap: 24px; grid-template-columns: repeat(2, 1fr); }
    .stats-grid .num { font-size: 2rem; }
    .stats-grid .label { font-size: 13px; }

    /* CTA block */
    .cta-block { padding: 48px 24px; border-radius: 18px; }
    .cta-actions { flex-direction: column; align-items: stretch; }
    .cta-actions .btn { width: 100%; }

    /* Course detail */
    .course-snapshot { grid-template-columns: 1fr 1fr; gap: 10px; }
    .snapshot-item { padding: 12px 14px; }
    .snapshot-item .value { font-size: 13.5px; }
    .course-side { padding: 22px 18px; }
    .curr-head { padding: 14px 16px; gap: 12px; }
    .curr-info h4 { font-size: 14px; }
    .curr-info p { font-size: 12px; }
    .curr-meta { font-size: 11px; padding: 3px 8px; }
    .curr-num { width: 32px; height: 32px; font-size: 12px; }

    /* Forms */
    .form-row { grid-template-columns: 1fr; }
    .form-card { padding: 28px 22px; }
    .form-group input,
    .form-group select,
    .form-group textarea { font-size: 16px; /* prevent iOS zoom */ }

    /* Footer */
    .footer { padding: 60px 0 24px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-grid .footer-col:nth-child(4),
    .footer-grid .footer-col:nth-child(5) { display: block; }
    .footer-brand { grid-column: 1 / -1; max-width: none; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
    .footer-bottom-links { justify-content: center; }

    /* Buttons - bigger touch targets */
    .btn { padding: 12px 22px; min-height: 44px; }
    .btn-lg { padding: 14px 26px; min-height: 48px; }

    /* WhatsApp float */
    .wa-float { width: 52px; height: 52px; font-size: 22px; bottom: 18px; right: 18px; }

    /* FAQ */
    .faq-q { padding: 16px 18px; font-size: 14px; }
    .faq-a { padding: 0 18px; }
    .faq-item.active .faq-a { padding: 0 18px 16px; }

    /* Post cards */
    .post-thumb { font-size: 44px; }
    .post-card h3 { font-size: 1rem; }
    .post-body { padding: 20px; }

    /* Outcomes / contact tiles */
    .contact-tile-icon { width: 56px; height: 56px; font-size: 22px; }
    .outcomes-grid { grid-template-columns: 1fr; }

    /* Cat-tile bottom CTA full width */
    .cat-tile { padding: 22px 20px; gap: 14px; }
    .cat-tile-head h3 { font-size: 1rem; }

    /* Fix h1 sizes for small screens */
    .hero h1 { font-size: 2.125rem; line-height: 1.1; }
    .page-header h1 { font-size: 1.75rem; }
    .section-title { font-size: 1.5rem; }
}

/* ----- Small mobile (560px) ----- */
@media (max-width: 560px) {
    .container { padding: 0 16px; }
    .footer-grid { grid-template-columns: 1fr; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .grid { gap: 16px; }
    .hero-stats-strip { grid-template-columns: 1fr 1fr; padding: 18px 14px; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .nav-cta .btn { padding: 10px 14px; font-size: 12.5px; }
    .nav-cta .btn .fa-whatsapp { font-size: 14px; }
    .pillar-visual { font-size: 48px; }
    .cta-block h2 { font-size: 1.5rem; }
    .cta-block p { font-size: 0.9375rem; }
    .testimonial { padding: 24px 20px; }
    .testimonial p { font-size: 14px; }
}

/* ----- Very small (380px) — protection against overflow ----- */
@media (max-width: 380px) {
    .hero h1 { font-size: 1.875rem; }
    .section-title { font-size: 1.375rem; }
    .nav-cta .btn span { display: none; }
    .logo img { height: 28px; }
}

/* ----- Tablet only enhancements ----- */
@media (min-width: 768px) and (max-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* ----- Touch-device specifics ----- */
@media (hover: none) and (pointer: coarse) {
    .feature-card:hover,
    .tile:hover,
    .testimonial:hover,
    .post-card:hover,
    .cat-tile:hover,
    .contact-tile:hover {
        transform: none;
    }
    .nav-item:hover .mega-menu { opacity: 0; visibility: hidden; }
}

/* ----- Print stylesheet (clean printouts) ----- */
@media print {
    .header, .wa-float, .cta-block, .footer { display: none; }
    .section { padding: 20px 0; }
    .container { max-width: 100%; padding: 0; }
}
