* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
    --blue: #725EF2;
    --blue-dark: #0D0D0D;
    --orange: #ee06f2;
    --orange-hover: #c005c4;
    --text: #1a1a2e;
    --text-light: #555;
    --text-muted: #777;
    --bg: #f8f9fa;
    --bg-card: #fff;
    --bg-course: #f8f9fa;
    --border: #eee;
    --shadow: rgba(0,0,0,.06);
    --shadow-hover: rgba(0,0,0,.13);
    --badge-bg: #ede8ff;
    --footer-bg: #0D0D0D;
    --cookie-bg: #0D0D0D;
    --modal-overlay: rgba(0,0,0,.55);
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    padding-top: 70px;
}
.section {
    scroll-margin-top: 80px;
}

@media (prefers-color-scheme: dark) {
    :root {
        --text: #e4e4e7;
        --text-light: #a1a1aa;
        --text-muted: #71717a;
        --bg: #0f172a;
        --bg-card: #1e293b;
        --bg-course: #1e293b;
        --border: #334155;
        --shadow: rgba(0,0,0,.3);
        --shadow-hover: rgba(0,0,0,.5);
        --badge-bg: #2d1f6e;
        --footer-bg: #020617;
        --cookie-bg: #020617;
        --modal-overlay: rgba(0,0,0,.8);
    }
    .hero::before {
        background: linear-gradient(135deg, rgba(13,13,13,.96) 0%, rgba(114,94,242,.7) 60%, rgba(238,6,242,.2) 100%);
        background-size: 200% 200%;
    }
    .navbar {
        background: rgba(0,0,0,.92);
    }
    .navbar.scrolled {
        background: rgba(0,0,0,.98);
    }
    img:not([src*=".svg"]) {
        filter: brightness(.85) contrast(1.1);
    }
    .nav-logo img, img.footer-logo {
        filter: brightness(0) invert(1);
    }
    .modal-content {
        background: #1e293b;
        color: var(--text);
    }
    .modal-content p, .modal-content li {
        color: var(--text-light);
    }
    .course-card .meta {
        color: var(--text-muted);
    }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes scaleIn {
    from { opacity: 0; transform: scale(.85); }
    to   { opacity: 1; transform: scale(1); }
}
@keyframes slideDown {
    from { transform: translateY(-100%); }
    to   { transform: translateY(0); }
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 8px 30px rgba(238,6,242,.4); }
    50%      { box-shadow: 0 8px 50px rgba(238,6,242,.7); }
}
@keyframes imgZoom {
    from { transform: scale(1); }
    to   { transform: scale(1.08); }
}
@keyframes gradientShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}
.reveal-scale {
    opacity: 0;
    transform: scale(.85);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0D0D0D url('images/cabeceranueva.jpg') center/cover no-repeat;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
    overflow: hidden;
    margin-top: -70px;
    padding-top: 70px;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,13,13,.92) 0%, rgba(114,94,242,.7) 60%, rgba(238,6,242,.2) 100%);
    background-size: 200% 200%;
    animation: gradientShift 12s ease infinite;
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
}
.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 800;
    letter-spacing: -.5px;
    text-shadow: 0 4px 20px rgba(0,0,0,.3);
    animation: fadeInUp 1s ease;
}
.hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    margin: 1.5rem 0 2.5rem;
    opacity: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,.2);
    animation: fadeInUp 1s ease .3s forwards;
}
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    padding: 1rem 2.5rem;
    background: var(--orange);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all .3s;
    opacity: 0;
    animation: fadeInUp 1s ease .5s forwards, pulse 2.5s ease 1.8s infinite;
}
.hero-cta:hover { background: var(--orange-hover); transform: translateY(-3px); animation: none; box-shadow: 0 12px 40px rgba(238,6,242,.5); }
.hero-cta:focus { outline: 3px solid var(--orange); outline-offset: 4px; }

.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .65rem 5%;
    background: rgba(13,13,13,.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background .3s, box-shadow .3s;
    animation: slideDown .6s ease;
}
.navbar.scrolled { background: rgba(13,13,13,.97); box-shadow: 0 2px 20px rgba(0,0,0,.15); }
.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform .3s;
    flex-shrink: 0;
}
.nav-logo img {
    height: 35px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.nav-logo:hover { transform: scale(1.05); }
.nav-links { display: flex; list-style: none; gap: .25rem; flex-wrap: wrap; }
.nav-links a {
    color: #fff;
    text-decoration: none;
    padding: .45rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .88rem;
    transition: all .25s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 50%;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: all .3s;
    transform: translateX(-50%);
    border-radius: 2px;
}
.nav-links a:not(.cta-nav):hover::after { width: 60%; }
.nav-links a:hover { background: rgba(255,255,255,.1); }
.nav-links a.cta-nav { background: var(--orange); padding: .45rem 1.3rem; font-size: .85rem; }
.nav-links a.cta-nav:hover { background: var(--orange-hover); transform: scale(1.05); }
.nav-links a.cta-nav::after { display: none; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: #fff; border-radius: 2px; transition: all .3s; }

.section { padding: 5rem 5%; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--blue);
    text-align: center;
    margin-bottom: .75rem;
}
.section-sub {
    text-align: center;
    color: #666;
    max-width: 640px;
    margin: 0 auto 3rem;
    font-size: 1.08rem;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.8rem;
}
.sector-card {
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-card);
    box-shadow: 0 4px 25px var(--shadow);
    transition: all .4s cubic-bezier(.25,.46,.45,.94);
    cursor: default;
}
.sector-card:hover { transform: translateY(-10px) scale(1.01); box-shadow: 0 20px 60px var(--shadow-hover); }
.sector-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.sector-card:hover .sector-card-img { animation: imgZoom .5s ease forwards; }
.sector-card-body { padding: 1.5rem; }
.sector-card-body h3 {
    color: var(--blue);
    font-size: 1.15rem;
    margin-bottom: .4rem;
    transition: color .3s;
}
.sector-card:hover .sector-card-body h3 { color: var(--orange); }
.sector-card-body p { color: var(--text-light); font-size: .92rem; }

.courses-bg { background: var(--bg-card); }
.grid-courses {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.course-card {
    border-radius: 16px;
    background: var(--bg-course);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all .35s cubic-bezier(.25,.46,.45,.94);
}
.course-card:hover { border-color: var(--orange); transform: translateY(-6px); box-shadow: 0 12px 40px rgba(238,6,242,.12); }
.course-card-img {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.course-card-body {
    padding: 1.5rem 1.8rem 2rem;
}
.course-card .badge {
    display: inline-block;
    padding: .2rem .9rem;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 600;
    margin-bottom: .8rem;
    transition: background .3s, color .3s;
}
.badge-blue { background: var(--badge-bg); color: var(--blue); }
.badge-green { background: #d4f5f9; color: #0a6b7a; }
.course-card:hover .badge-blue { background: var(--orange); color: #fff; }
.course-card:hover .badge-green { background: var(--orange); color: #fff; }
.course-card h3 { font-size: 1.25rem; color: var(--blue); margin-bottom: .5rem; transition: color .3s; }
.course-card:hover h3 { color: var(--orange); }
.course-card .meta { color: #888; font-size: .9rem; margin-bottom: .75rem; }
.course-card p { color: var(--text-light); font-size: .95rem; }
.btn-outline {
    display: inline-block;
    margin-top: 1.2rem;
    padding: .7rem 1.8rem;
    border: 2px solid var(--orange);
    color: var(--orange);
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all .3s;
    font-size: .9rem;
}
.btn-outline:hover { background: var(--orange); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(238,6,242,.3); }

.cookie-consent {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 9999;
    background: var(--cookie-bg);
    color: rgba(255,255,255,.92);
    padding: 1.2rem 5%;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    box-shadow: 0 -4px 30px rgba(0,0,0,.2);
    animation: fadeInUp .5s ease;
}
.cookie-consent.show { display: flex; }
.cookie-consent p { font-size: .88rem; line-height: 1.5; flex: 1; min-width: 240px; }
.cookie-consent a { color: var(--orange); text-decoration: underline; }
.cookie-actions { display: flex; gap: .75rem; flex-shrink: 0; }
.cookie-btn {
    padding: .6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .85rem;
    border: none;
    cursor: pointer;
    transition: all .25s;
}
.cookie-btn.accept { background: var(--orange); color: #fff; }
.cookie-btn.accept:hover { background: var(--orange-hover); transform: scale(1.04); }
.cookie-btn.reject { background: transparent; color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.3); }
.cookie-btn.reject:hover { background: rgba(255,255,255,.1); color: #fff; }

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--modal-overlay);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.modal-overlay.show { display: flex; }
.modal-content {
    background: var(--bg-card);
    border-radius: 20px;
    max-width: 720px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 2.5rem;
    position: relative;
    animation: scaleIn .35s ease;
}
.modal-content h2 { color: var(--blue); margin-bottom: 1.5rem; font-size: 1.6rem; }
.modal-content h3 { color: var(--blue); margin: 1.5rem 0 .5rem; font-size: 1.1rem; }
.modal-content p, .modal-content li { color: #444; font-size: .92rem; line-height: 1.7; margin-bottom: .5rem; }
.modal-content ul { padding-left: 1.5rem; margin-bottom: .8rem; }
.modal-close {
    position: absolute;
    top: 1rem; right: 1.2rem;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #999;
    cursor: pointer;
    line-height: 1;
    padding: .2rem;
    transition: transform .3s, color .3s;
}
.modal-close:hover { color: var(--orange); transform: rotate(90deg); }

/* ===== FRAGA SECTION ===== */
.fraga-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
    margin-bottom: 2.5rem;
}
.fraga-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 25px var(--shadow);
    transition: all .3s;
    text-align: left;
}
.fraga-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px var(--shadow-hover);
}
.fraga-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.fraga-card h3 {
    color: var(--blue);
    font-size: 1.15rem;
    margin-bottom: .6rem;
}
.fraga-card p {
    color: var(--text-light);
    font-size: .92rem;
    line-height: 1.6;
}
.fraga-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

footer {
    background: var(--footer-bg);
    color: rgba(255,255,255,.8);
    text-align: center;
    padding: 3rem 5%;
    margin-top: 4rem;
}
footer a { color: var(--orange); text-decoration: none; transition: color .3s; }
footer a:hover { color: #fff; text-decoration: underline; }
footer p { margin: .3rem 0; font-size: .92rem; }
.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: .5rem;
    opacity: .9;
    transition: opacity .3s;
    filter: brightness(0) invert(1);
}
.footer-logo:hover { opacity: 1; }
.iso-badge {
    display: inline-block;
    margin: .8rem 0;
    padding: .35rem 1rem;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 600;
    color: rgba(255,255,255,.85);
    letter-spacing: .3px;
    transition: all .3s;
}
.iso-badge:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: scale(1.04);
}
.footer-legal {
    margin-top: 1.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255,255,255,.1);
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: .82rem;
}
.footer-legal a { opacity: .7; position: relative; }
.footer-legal a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0;
    height: 1px;
    background: var(--orange);
    transition: width .3s;
}
.footer-legal a:hover::after { width: 100%; }
.footer-legal a:hover { opacity: 1; text-decoration: none; }

/* ===== CONTACT FORM ===== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.contact-info h3 {
    color: var(--blue);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}
.contact-info p {
    color: var(--text-light);
    font-size: .95rem;
    margin-bottom: .5rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}
.contact-info .contact-icon {
    font-size: 1.2rem;
    width: 1.5rem;
    text-align: center;
    color: var(--orange);
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: .3rem;
}
.form-group label {
    font-weight: 600;
    font-size: .88rem;
    color: var(--text);
}
.form-group input,
.form-group textarea,
.form-group select {
    padding: .75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: .95rem;
    font-family: inherit;
    background: var(--bg);
    color: var(--text);
    transition: border .3s, box-shadow .3s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(238,6,242,.15);
}
.form-group textarea {
    min-height: 120px;
    resize: vertical;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form-submit {
    padding: .9rem 2rem;
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all .3s;
}
.form-submit:hover {
    background: var(--orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(238,6,242,.3);
}
.form-submit:focus {
    outline: 3px solid var(--orange);
    outline-offset: 3px;
}
.form-feedback {
    font-size: .88rem;
    padding: .75rem 1rem;
    border-radius: 10px;
    display: none;
}
.form-feedback.success {
    display: block;
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}
.form-feedback.error {
    display: block;
    background: #fce4ec;
    color: #b71c1c;
    border: 1px solid #f8bbd0;
}
@media (prefers-color-scheme: dark) {
    .form-feedback.success {
        background: #064e3b;
        color: #bbf7d0;
        border-color: #166534;
    }
    .form-feedback.error {
        background: #4a0e1b;
        color: #f8bbd0;
        border-color: #7f1d2d;
    }
}

a:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }
button:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .1ms !important;
    }
    .reveal, .reveal-left, .reveal-right, .reveal-scale {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 900px) {
    .hero { min-height: 70vh; background-attachment: scroll; }
    .contact-wrapper { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
    .navbar { padding: .6rem 1.2rem; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        flex-direction: column;
        background: rgba(13,13,13,.97);
        backdrop-filter: blur(12px);
        padding: 1rem;
        gap: .25rem;
        text-align: center;
    }
    .nav-links.open { display: flex; animation: fadeInDown .35s ease; }
    .nav-toggle { display: flex; }
    .hero { min-height: 60vh; }
    .section { padding: 3rem 1.2rem; }
    .sector-card-img { height: 180px; }
    .cookie-consent { flex-direction: column; text-align: center; padding: 1rem; }
    .cookie-actions { width: 100%; justify-content: center; }
    .modal-content { padding: 1.5rem; margin: .5rem; }
    .footer-legal { gap: .8rem; flex-direction: column; align-items: center; }
    .form-row { grid-template-columns: 1fr; }
    .fraga-card { text-align: center; }
}
@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
    .hero p { font-size: .95rem; }
    .hero-cta { font-size: .95rem; padding: .8rem 1.8rem; }
    .sector-card-img { height: 160px; }
}

/* ===== FAQS ===== */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: .65rem; }
.faq-item { background: var(--bg-card); border-radius: 10px; box-shadow: 0 2px 8px var(--shadow); overflow: hidden; }
.faq-item summary { padding: 1rem 1.25rem; cursor: pointer; font-weight: 600; color: var(--blue); list-style: none; display: flex; align-items: center; justify-content: space-between; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.3rem; font-weight: 700; color: var(--orange); transition: transform .2s; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 1.25rem 1rem; color: var(--text-light); line-height: 1.6; }
@media (prefers-color-scheme:dark) {
    .faq-item { background: #1e2a3a; }
    .faq-item summary { color: #8ab4f8; }
    .faq-item p { color: #ccc; }
}

/* ===== SECTION HEADERS WITH COVER ===== */
.section-header {
    position: relative;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    margin-bottom: 2.5rem;
    overflow: hidden;
}
.section-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,13,13,.88) 0%, rgba(114,94,242,.6) 60%, rgba(238,6,242,.15) 100%);
    z-index: 1;
}
.section-header-text {
    position: relative;
    z-index: 2;
    padding: 3rem 2rem;
    text-align: center;
    max-width: 720px;
}
.section-header-text .section-title {
    color: #fff;
    margin-bottom: .75rem;
}
.section-header-text .section-sub {
    color: rgba(255,255,255,.85);
    margin-bottom: 0;
}

/* ===== CATALOG LAYOUT (new) ===== */
.course-card h3 {
    font-size: clamp(.95rem, 1.5vw, 1.15rem);
    word-break: break-word;
}
.courses-bg + .section,
.section + .courses-bg {
    border-top: 1px solid var(--border);
}
@media (max-width: 768px) {
    .section-header { min-height: 200px; border-radius: 12px; }
    .section-header-text { padding: 2rem 1.2rem; }
    .section-header-text .section-title { font-size: 1.4rem; }
}
@media (min-width: 1100px) {
    #certificados .grid-courses {
        grid-template-columns: repeat(3, 1fr);
    }
    #privados .grid-courses {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== PRINT ===== */
@media print {
    .navbar, .cookie-consent, .modal-overlay, .hero-cta, .btn-outline,
    .nav-toggle, #contacto form, .form-submit { display: none !important; }
    .hero { min-height: auto; padding: 2rem 0; color: #000; background: none; margin-top: 0; }
    .hero::before { display: none; }
    .hero-content h1 { color: #725EF2; text-shadow: none; }
    .hero-content p { color: #333; }
    .section { padding: 2rem 0; page-break-inside: avoid; }
    .sector-card, .course-card { box-shadow: none; border: 1px solid #ddd; break-inside: avoid; }
    body { color: #000; background: #fff; font-size: 11pt; padding-top: 0; }
    a { color: #725EF2; text-decoration: underline; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .modal-content { max-height: none; overflow: visible; }
}
