/**
 * CC Elementor Addon — Widget Styles
 * Matches original ACP HTML/CSS design exactly.
 *
 * @package CCElementorAddon
 */

/* =========================================================
   CSS Variables (Design System)
   ========================================================= */
:root {
    --cc-dark:   #414042;
    --cc-warm:   #f9f9f9;
    --cc-white:  #ffffff;
    --cc-orange: #f7941e;
    --cc-teal:   #006d77;
    --cc-aqua:   #83c5be;
    --cc-gold:   #ffc857;
    --cc-blue:   #457b9d;
    --cc-line:   rgba(65, 64, 66, .16);
    --cc-shadow: 0 20px 50px rgba(24, 39, 45, .12);
    --cc-radius: 8px;
    --cc-max:    1180px;
}

/* =========================================================
   Base Reset
   ========================================================= */
.cc-site-header *,
.cc-site-footer *,
.elementor-widget-cc_hero_banner *,
.elementor-widget-cc_page_hero * { box-sizing: border-box; }

/* =========================================================
   Header
   ========================================================= */
.cc-site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(65, 64, 66, .96);
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    transition: box-shadow .3s ease, background .3s ease;
}
.cc-site-header.cc-scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, .18);
    background: rgba(65, 64, 66, .99);
}
.cc-site-header .nav {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}
.cc-site-header .container { width: min(var(--cc-max), calc(100% - 40px)); margin: 0 auto; }
.cc-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 760;
    font-size: 1.35rem;
    color: #fff;
    text-decoration: none;
}
.cc-brand img { width: 38px; height: 38px; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}
.cc-primary-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    margin: 0;
}
.eyebroww {color: #ffffff !important;}
.twht {color: #ffffff !important;}
.toran {color: #f7941e !important;}
.eyebrowo {color: #f7941e !important;}
.cc-primary-menu > li { position: relative; }
.cc-primary-menu > li > a,
.nav-link,
.drop-btn {
    color: rgba(255, 255, 255, .9);
    padding: 12px 13px;
    border-radius: var(--cc-radius);
    font: inherit;
    font-size: .96rem;
    background: transparent;
    border: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: background .15s;
}
.cc-primary-menu > li > a:hover,
.nav-link:hover,
.drop-btn:hover,
.nav-link.active { background: rgba(255, 255, 255, .09); color: #fff; }
.menu-item-has-children > a::after {
    content: "";
    display: inline-block;
    width: 7px; height: 7px;
    margin-left: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
}
.sub-menu,
.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 60;
    display: none;
    min-width: 270px;
    padding: 8px;
    margin: 0;
    list-style: none;
    background: #fff;
    color: var(--cc-dark);
    border: 1px solid var(--cc-line);
    border-radius: var(--cc-radius);
    box-shadow: var(--cc-shadow);
    animation: ccDropIn .15s ease;
}
@keyframes ccDropIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.cc-primary-menu > li:hover > .sub-menu,
.cc-primary-menu > li:focus-within > .sub-menu,
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu,
.dropdown.open .dropdown-menu { display: grid; gap: 2px; }
.sub-menu a,
.dropdown-menu a {
    color: var(--cc-dark);
    padding: 10px 12px;
    border-radius: 6px;
    display: block;
    font-size: .93rem;
    text-decoration: none;
    white-space: nowrap;
    transition: background .15s, color .15s;
}
.sub-menu a:hover,
.dropdown-menu a:hover { background: rgba(0, 109, 119, .08); color: var(--cc-teal); }
.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border-radius: var(--cc-radius);
    background: var(--cc-orange);
    color: #21170c !important;
    font-weight: 760;
    font-size: .96rem;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(247, 148, 30, .23);
    transition: transform .18s ease, box-shadow .18s ease;
    border: 1px solid transparent;
}
.nav-cta:hover { transform: translateY(-1px); }
.course-link { border: 1px solid rgba(255, 255, 255, .18) !important; }
.menu-toggle {
    display: none;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: var(--cc-radius);
    padding: 9px 11px;
    cursor: pointer;
    font: inherit;
}

/* =========================================================
   Hero Sections
   ========================================================= */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(247,148,30,0.95) 0%, rgba(220,120,20,0.93) 55%, rgba(180,90,10,0.92) 100%),url('') center / cover;
    color: #fff;
}
.hero.page-hero .container,
.hero.page-hero .cc-hero-inner { min-height: 470px; }
.hero .container,
.cc-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) .85fr;
    gap: 44px;
    align-items: center;
    min-height: 660px;
    padding: 92px 0 80px;
    width: min(var(--cc-max), calc(100% - 40px));
    margin: 0 auto;
}
.hero::after {
    content: "";
    position: absolute;
    inset: auto -10% -36% 45%;
    height: 440px;
    background: radial-gradient(circle, rgba(131,197,190,.24), transparent 62%);
    pointer-events: none;
}
.eyebrow {
    color: #006d77;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .78rem;
    margin: 0 0 8px;
}
h1 { font-size: clamp(2.35rem, 3.7vw, 4.15rem); line-height: 1.12; margin: 0 0 16px; max-width: 930px; }
h2 { font-size: clamp(2rem, 3vw, 3.15rem); line-height: 1.12; margin: 0 0 16px; }
h3 { font-size: clamp(1.16rem, 1.4vw, 1.45rem); line-height: 1.12; margin: 0 0 12px; }
.lead {
    font-size: clamp(1.08rem, 1.8vw, 1.35rem);
    color: rgba(255, 255, 255, .86);
    max-width: 780px;
    margin: 0 0 18px;
}
.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}
.hero-panel {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: var(--cc-radius);
    padding: 28px;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}
.metric-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 24px;
}
.metric { border-top: 2px solid #006d77; padding-top: 14px; }
.metric strong { display: block; font-size: 2rem; line-height: 1; color: #fff; }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border-radius: var(--cc-radius);
    border: 1px solid transparent;
    font-weight: 760;
    font-size: .96rem;
    text-decoration: none;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn.primary { background: var(--cc-orange); color: #21170c; box-shadow: 0 10px 22px rgba(247,148,30,.23); }
.btn.secondary { background: #fff; color: var(--cc-dark); border-color: var(--cc-line); }
.btn.teal { background: var(--cc-teal); color: #fff; }
.btn:hover { transform: translateY(-1px); }

/* =========================================================
   Visual Band
   ========================================================= */
.visual-band { padding: 34px 0; background: #fff; border-bottom: 1px solid var(--cc-line); }
.visual-band .container { width: min(var(--cc-max), calc(100% - 40px)); margin: 0 auto; }
.visual-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 18px;
    align-items: stretch;
}
.image-card {
    min-height: 310px;
    border-radius: var(--cc-radius);
    overflow: hidden;
    border: 1px solid var(--cc-line);
    box-shadow: var(--cc-shadow);
    background: #fff;
}
.image-card img { width: 100%; height: 100%; object-fit: cover; }
.image-card.contain img { object-fit: contain; padding: 24px; background: #fff; }
.image-caption {
    background: var(--cc-dark);
    color: #fff;
    border-radius: var(--cc-radius);
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.image-caption p { color: rgba(255,255,255,.78); }

/* ── Visual Band — inline images strip ── */
.cc-vb-inline-images {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.15);
}
.cc-vb-inline-label {
    display: block;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    margin-bottom: 12px;
}
.cc-vb-img-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px 24px;
}
.cc-vb-img-strip img {
    display: block;
    max-width: 120px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}
/* White / inverted style — makes dark logos visible on dark panel */
.cc-vb-img-white .cc-vb-img-strip img {
    transition: opacity .2s;
	background: #fff;
	padding: 6px;
	border-radius: 4px;
}
.cc-vb-img-white .cc-vb-img-strip a:hover img {
    opacity: 1;
}
/* Original colours style — subtle brightness lift so they don't look flat */
.cc-vb-img-strip a {
    display: inline-flex;
    align-items: center;
}

/* =========================================================
   Sections
   ========================================================= */
section { padding: 82px 0; }
section .container { width: min(var(--cc-max), calc(100% - 40px)); margin: 0 auto; }
.band { background: #fff; border-block: 1px solid var(--cc-line); }
.teal-band { background: var(--cc-teal); color: #fff; }
.split {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 44px;
    align-items: start;
}
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 28px;
    margin-bottom: 34px;
}
.section-head p { max-width: 650px; color: rgba(65,64,66,.72); }

/* =========================================================
   Cards
   ========================================================= */
.grid { display: grid; gap: 18px; }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-2 { grid-template-columns: repeat(2, 1fr); }
.card {
    background: #fff;
    border: 1px solid var(--cc-line);
    border-radius: var(--cc-radius);
    padding: 24px;
    box-shadow: 0 8px 28px rgba(65,64,66,.06);
}
.card.accent-orange { border-top: 4px solid var(--cc-orange); }
.card.accent-teal   { border-top: 4px solid var(--cc-teal); }
.card.accent-aqua   { border-top: 4px solid var(--cc-aqua); }
.card.accent-blue   { border-top: 4px solid var(--cc-blue); }
.card ul { padding-left: 20px; margin: 10px 0 0; }

/* =========================================================
   Timeline / Steps
   ========================================================= */
.timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    counter-reset: step;
}
.step {
    position: relative;
    padding: 26px;
    background: #fff;
    border: 1px solid var(--cc-line);
    border-radius: var(--cc-radius);
    counter-increment: step;
}
.step::before {
    content: counter(step);
    display: grid;
    place-items: center;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--cc-orange);
    color: #2a1a05;
    font-weight: 800;
    margin-bottom: 18px;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq { display: grid; gap: 10px; }
.faq button {
    width: 100%;
    text-align: left;
    border: 1px solid var(--cc-line);
    background: #fff;
    border-radius: var(--cc-radius);
    padding: 16px 46px 16px 18px;
    font: inherit;
    font-weight: 800;
    color: var(--cc-dark);
    position: relative;
    cursor: pointer;
    transition: background .15s;
}
.faq button::after {
    content: "+";
    position: absolute;
    right: 18px; top: 14px;
    color: var(--cc-teal);
    font-size: 1.35rem;
}
.faq button[aria-expanded="true"]::after { content: "-"; }
.faq button:hover { background: #f5f5f5; }
.faq-panel {
    display: none;
    background: #fff;
    border: 1px solid var(--cc-line);
    border-top: 0;
    margin-top: -10px;
    border-radius: 0 0 var(--cc-radius) var(--cc-radius);
    padding: 0 18px 18px;
    color: rgba(65,64,66,.76);
    overflow: hidden;
}
.faq-panel.open { display: block; }

/* =========================================================
   CTA Panel
   ========================================================= */
.cta-panel {
    background: linear-gradient(135deg, var(--cc-dark), var(--cc-teal));
    color: #fff;
    border-radius: var(--cc-radius);
    padding: 42px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
}
.cta-panel p { color: rgba(255,255,255,.84); max-width: 720px; }

/* =========================================================
   Course Table (Pricing)
   ========================================================= */
.course-table {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.price {
    font-size: 1.8rem;
    font-weight: 850;
    color: var(--cc-teal);
    margin: 10px 0;
}

/* =========================================================
   Module List
   ========================================================= */
.module-list {
    columns: 2;
    column-gap: 34px;
    padding-left: 20px;
}

/* =========================================================
   Form
   ========================================================= */
.form { display: grid; gap: 14px; }
.form label { font-weight: 800; display: block; margin-bottom: 4px; }
.form input,
.form select,
.form textarea,
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea {
    width: 100%;
    border: 1px solid var(--cc-line);
    border-radius: var(--cc-radius);
    padding: 13px 14px;
    font: inherit;
    background: #fff;
    color: var(--cc-dark);
    transition: border-color .15s, box-shadow .15s;
}
.form input:focus,
.form select:focus,
.form textarea:focus,
.wpcf7 input:focus,
.wpcf7 textarea:focus {
    outline: none;
    border-color: var(--cc-teal);
    box-shadow: 0 0 0 3px rgba(0,109,119,.12);
}
.form textarea { min-height: 150px; resize: vertical; }
.wpcf7-submit,
.wpcf7 input[type="submit"] {
    background: var(--cc-orange);
    color: #21170c;
    border: none;
    border-radius: var(--cc-radius);
    padding: 13px 24px;
    font: inherit;
    font-weight: 760;
    cursor: pointer;
    transition: transform .18s;
    box-shadow: 0 10px 22px rgba(247,148,30,.23);
}
.wpcf7-submit:hover { transform: translateY(-1px); }

/* =========================================================
   Footer
   ========================================================= */
.cc-site-footer {
    background: var(--cc-dark);
    color: #fff;
    padding: 54px 0 30px;
}
.cc-site-footer .container { width: min(var(--cc-max), calc(100% - 40px)); margin: 0 auto; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 28px;
}
.footer-grid a { display: block; color: rgba(255,255,255,.76); margin: 8px 0; font-size: .92rem; transition: color .15s; }
.footer-grid a:hover { color: #fff; }
.footer-note {
    border-top: 1px solid rgba(255,255,255,.12);
    margin-top: 34px;
    padding-top: 22px;
    color: rgba(255,255,255,.68);
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: .88rem;
}
.footer-note a { color: rgba(255,255,255,.68); transition: color .15s; }
.footer-note a:hover { color: #fff; }

/* =========================================================
   Content Video Split Widget
   ========================================================= */

/* Wrapper sits in the right column of the .split grid */
.cc-video-wrap {
    position: relative;
    border-radius: var(--cc-radius);
    overflow: hidden;
    box-shadow: var(--cc-shadow);
    background: #000;
}

/* Aspect-ratio box — padding-top is set inline by the widget */
.cc-video-ratio {
    position: relative;
    width: 100%;
    height: 0;
    /* padding-top injected inline: 56.25% / 75% / 100% */
}

/* YouTube iframe fills the ratio box */
.cc-video-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ── Poster / thumbnail overlay ─────────────────────────── */
.cc-video-poster {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity .3s ease;
}
.cc-video-poster img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* Dark gradient so play button stands out over any thumbnail */
.cc-video-poster::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.10) 0%, rgba(0,0,0,.45) 100%);
}
/* Hidden state after video starts */
.cc-video-poster[aria-hidden="true"] {
    opacity: 0;
    pointer-events: none;
}

/* ── Large play button ───────────────────────────────────── */
.cc-video-play-btn {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform .2s ease;
}
.cc-video-play-btn:hover { transform: scale(1.08); }
.cc-video-play-btn:hover circle { fill: rgba(0,0,0,.72); }
.cc-play-icon svg {
    display: block;
    filter: drop-shadow(0 4px 18px rgba(0,0,0,.45));
}
.cc-play-label {
    color: #fff;
    font-weight: 700;
    font-size: .92rem;
    letter-spacing: .04em;
    text-shadow: 0 1px 6px rgba(0,0,0,.6);
}

/* ── Minimal pause/play bar (appears after first play) ───── */
.cc-video-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    padding: 10px 14px;
    background: linear-gradient(to top, rgba(0,0,0,.55), transparent);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}
/* Visible after JS adds class */
.cc-video-bar--visible {
    opacity: 1;
    pointer-events: auto;
}
/* Also show on hover */
.cc-video-wrap:hover .cc-video-bar--visible { opacity: 1; }

.cc-video-toggle {
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    padding: 0;
    transition: background .15s, transform .15s;
}
.cc-video-toggle:hover {
    background: rgba(255,255,255,.28);
    transform: scale(1.1);
}

/* ── No-video placeholder ────────────────────────────────── */
.cc-video-placeholder {
    padding: 48px 24px;
    background: var(--cc-warm);
    border: 2px dashed var(--cc-line);
    border-radius: var(--cc-radius);
    text-align: center;
    color: rgba(65,64,66,.5);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 980px) {
    .cc-video-wrap { margin-top: 28px; }
}

/* =========================================================
   Misc Elements
   ========================================================= */
.resource-meta { color: var(--cc-teal); font-weight: 800; font-size: .9rem; }
.seo-note { border-left: 4px solid var(--cc-gold); background: #fff; padding: 18px; border-radius: var(--cc-radius); }
.dark-lead { font-size: 1.14rem; color: rgba(65,64,66,.78); max-width: 770px; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.industries { display: flex; gap: 10px; flex-wrap: wrap; }
.pill {
    border: 1px solid var(--cc-line);
    border-radius: 999px;
    padding: 9px 13px;
    background: #fff;
    font-weight: 700;
    color: rgba(65,64,66,.82);
}

/* =========================================================
   Scroll Animations
   ========================================================= */
@media (prefers-reduced-motion: no-preference) {
    .cc-fade-in:not(.cc-animated),
    .cc-slide-up:not(.cc-animated),
    .cc-slide-left:not(.cc-animated),
    .cc-slide-right:not(.cc-animated),
    .cc-scale-in:not(.cc-animated) {
        opacity: 0;
        will-change: opacity, transform;
        transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .cc-slide-up:not(.cc-animated)    { transform: translateY(32px); }
    .cc-slide-left:not(.cc-animated)  { transform: translateX(-32px); }
    .cc-slide-right:not(.cc-animated) { transform: translateX(32px); }
    .cc-scale-in:not(.cc-animated)    { transform: scale(0.95); }
    .cc-animated { opacity: 1 !important; transform: none !important; }
}

/* =========================================================
   Responsive — Tablet (max 980px)
   ========================================================= */
@media (max-width: 980px) {
    .hero .container,
    .cc-hero-inner { grid-template-columns: 1fr; min-height: auto; padding: 60px 0 50px; }
    .split { grid-template-columns: 1fr; }
    .cards-4, .cards-3, .timeline, .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .visual-grid { grid-template-columns: 1fr; }
    .course-table { grid-template-columns: 1fr; }
    .section-head, .cta-panel { align-items: flex-start; flex-direction: column; }
    .nav-links {
        position: absolute;
        inset: 76px 0 auto 0;
        background: var(--cc-dark);
        padding: 14px 20px 22px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        border-top: 1px solid rgba(255,255,255,.12);
        z-index: 199;
    }
    .nav-links.open { display: flex; }
    .cc-primary-menu { flex-direction: column; align-items: stretch; width: 100%; }
    .sub-menu, .dropdown-menu {
        position: static;
        min-width: 0;
        margin: 4px 0 8px;
        padding: 6px;
        background: rgba(255,255,255,.06);
        border-color: rgba(255,255,255,.12);
        box-shadow: none;
        animation: none;
    }
    .sub-menu a, .dropdown-menu a { color: rgba(255,255,255,.86); white-space: normal; }
    .sub-menu a:hover, .dropdown-menu a:hover { background: rgba(255,255,255,.09); color: #fff; }
    .menu-toggle { display: block; }
    .nav-cta { width: 100%; }
    h1 { font-size: clamp(2.15rem, 4.8vw, 3.25rem); }
}

/* =========================================================
   Responsive — Mobile (max 640px)
   ========================================================= */
@media (max-width: 640px) {
    section { padding: 58px 0; }
    .cards-4, .cards-3, .cards-2, .timeline, .footer-grid, .metric-grid { grid-template-columns: 1fr; }
    .module-list { columns: 1; }
    .hero-actions .btn, .actions .btn { width: 100%; }
    .cta-panel { padding: 28px; }
    h1 { font-size: clamp(2.1rem, 9vw, 2.75rem); }
    .footer-grid { grid-template-columns: 1fr; }
}
