:root{
  --ink:#111827; --muted:#4B5563; --navy:#1E2A44; --navy2:#0B1220;
  --accent:#E30613; --accent2:#C50510; --divider:rgba(17,24,39,.12);
  --blue:#1E2A44;
}
*{box-sizing:border-box}
html,body{height:100%}
body{margin:0; font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; background:#fff;color:var(--ink)}
a{color:var(--navy);text-decoration:none} a:hover{opacity:.9}
.wrap{max-width:1100px;margin:0 auto;padding:0 28px}

/* Buttons */
.btn{appearance:none;border:0;border-radius:12px;padding:12px 16px;font-weight:700;cursor:pointer;display:inline-flex;align-items:center;gap:8px;justify-content:center}
.btn.primary{background:var(--accent);color:#fff}
.btn.primary:hover{background:var(--accent2)}
.btn.outline{background:transparent;border:2px solid #fff;color:#fff}
.btn.small{padding:8px 12px;border-radius:10px;font-size:14px}
.btn.block{display:block;width:100%;text-align:center}
.btn.hollow{background:#fff;border:2px solid var(--navy);color:var(--navy)}
.btn.hollow:hover{background:#F3F6FB}

/* Sections */
.band{padding:110px 0}
.band h2{margin:0 0 14px;font-size:clamp(30px,5vw,56px);line-height:1.08}
.band p.lead{margin:0 0 24px;font-size:clamp(16px,2.2vw,20px);line-height:1.6}

/* HERO */
.hero{position:relative;color:#fff;min-height:72vh;display:flex;align-items:center}
.hero::before{content:"";position:absolute;inset:0;background:center/cover no-repeat;z-index:0}
.hero::after{content:"";position:absolute;inset:0;background:rgba(30,42,68,.85);z-index:0}
.hero .wrap{position:relative;z-index:1}
.logo{height:56px;width:auto;vertical-align:middle}
.brandbar{display:flex;align-items:center;gap:12px}
.hero-title{margin:14px 0 0;font-size:clamp(30px,5vw,56px);line-height:1.08;color:var(--accent)}
.cta{display:flex;gap:12px;flex-wrap:wrap;margin-top:20px}

/* COURSES LIST */
.courses{background:#fff}
.row-list{margin-top:20px;border-top:1px solid var(--divider)}
/* NEW: add extra breathing room after each category’s list */
.row-list{margin-bottom:36px}
.course-row{display:grid;grid-template-columns:1.6fr .4fr;align-items:center;gap:16px;padding:16px 0;border-bottom:1px solid var(--divider)}
.c-left .name{font-weight:700;color:#111827}
.c-left .meta{color:#1E2A44;font-weight:700;font-size:13px;margin-top:4px}
.c-left .desc{color:#6B7280;margin-top:8px}
.c-right{display:flex;justify-content:flex-end;align-items:center;gap:10px;flex-wrap:wrap}
.price{display:inline-block;background:#fff;border:2px solid var(--accent);color:#111827;border-radius:999px;padding:6px 10px;font-weight:700;font-size:13px;white-space:nowrap}
.pill-grey{display:inline-block;background:#fff;border:2px solid #9CA3AF;color:#374151;border-radius:999px;padding:6px 10px;font-weight:700;font-size:13px;white-space:nowrap}

/* Split pills */
.splitpill{display:inline-flex;align-items:center;white-space:nowrap;border-radius:999px;overflow:hidden;border:2px solid var(--accent)}
.splitpill .left,.splitpill .right{padding:6px 12px;font-weight:700;font-size:13px;line-height:1;display:flex;align-items:center}
.splitpill .left{background:#fff;color:#111827}
.splitpill.red .right{background:var(--accent);color:#fff;text-decoration:none}
.splitpill.grey{border-color:#D1D5DB}
.splitpill.grey .right{background:#6B7280 !important;color:#fff;text-decoration:none}
.splitwrap{display:flex;flex-direction:column;gap:10px;align-items:flex-end}
@media (max-width:720px){ .course-row{grid-template-columns:1fr;align-items:flex-start} .c-right{justify-content:flex-start} .splitwrap{flex-direction:row;flex-wrap:wrap;gap:8px} }

/* Category header: title left, icon right */
.cat-head{display:flex;align-items:center;justify-content:space-between;gap:12px;margin:36px 0 12px} /* ↑ slightly more space before/after */
.cat-title{color:var(--navy);border-bottom:3px solid var(--accent);display:inline-block;padding-bottom:4px;margin:0;font-weight:700;font-size:clamp(20px,2.6vw,28px);line-height:1.2}
/* NEW: make the category icon 100px wide */
.cat-logo{width:100px;margin-top:-10px;margin-bottom:-10px;height:auto;object-fit:contain;flex:0 0 auto;opacity:.95}
@media (max-width:640px){ .cat-logo{width:100px;height:auto} } /* keep it consistent on mobile */

/* Navy “Coming soon” pill */
.pill-blue{display:inline-block;background:var(--navy);color:#fff;border:2px solid var(--navy);border-radius:999px;padding:6px 12px;font-weight:700;font-size:13px;white-space:nowrap}

/* CTAs below course lists */
/* NEW: more space above the buttons */
.more-ctas{margin-top:40px;display:grid;gap:10px}

/* ABOUT */
.about{background:linear-gradient(135deg, #F1F5FB, #E9EEF7);position:relative;overflow:hidden}
.about:before{content:"";position:absolute;inset:0;background:repeating-linear-gradient(135deg, rgba(227,6,19,.04), rgba(227,6,19,.04) 6px, rgba(227,6,19,0) 6px, rgba(227,6,19,0) 12px)}
.about .wrap{position:relative}
.about h3{color:var(--navy);border-bottom:3px solid var(--accent);display:inline-block;padding-bottom:4px}
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:40px;margin-top:16px}
.about-card p{margin:0 0 12px}
.about-card .about-text{font-size:clamp(16px,2.1vw,18px);line-height:1.6}
.about-card .about-text a{color:var(--navy);text-decoration:underline}

/* TRAINERS */
.trainers{background:#0B1220;color:#F3F5FA}
.tcard p{font-size:12.5px;line-height:1.2}
.tg{display:grid;grid-template-columns:repeat(2,1fr);gap:16px;margin-top:20px}
@media (max-width:640px){.tg{grid-template-columns:1fr}}
.tcard{display:grid;grid-template-columns:100px 1fr;gap:16px;border:1px solid rgba(227,6,19,.35);border-radius:14px;padding:16px;background:rgba(255,255,255,.04)}
.avatar{width:70px;height:70px;border-radius:50%;object-fit:cover;border:2px solid rgba(227,6,19,.55);align-self:center}
.tname{font-weight:700;color:#fff}
.trole{font-weight:700;color:#E5E7EB;font-size:14px;margin-left:6px}

/* TESTIMONIALS */
.test{background:#F7F9FC;color:#0b1220}
.tgrid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:16px}
.tst{border:1px solid #e5e7eb;border-radius:14px;padding:16px;background:#fff}
.tst .role{color:#6b7280;font-size:14px}
@media (max-width:980px){.tgrid{grid-template-columns:1fr}}

/* CONTACT + POLICIES */
.contact-section{position:relative;background:#E30613;color:#fff;border-top:6px solid var(--navy);border-bottom:6px solid var(--navy)}
.contact-section::before{content:"";position:absolute;inset:0;background:repeating-linear-gradient(135deg, rgba(30,42,68,.06), rgba(30,42,68,.06) 8px, rgba(30,42,68,0) 8px, rgba(30,42,68,0) 16px);opacity:.5}
.contact-section .wrap{position:relative}
.contact-section a{color:#fff;text-decoration:underline;font-weight:700}
.contact-section p.lead{margin-bottom:16px}
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:40px}
@media (max-width:980px){.contact-grid{grid-template-columns:1fr}}
.contact-list p strong{display:inline-block;background:var(--navy);color:#fff;padding:2px 10px;border-radius:999px;margin-right:8px;font-size:12px;letter-spacing:.2px}

.policy-list{list-style:none;padding:0;margin:10px 0 0}
.policy-list li{display:flex;align-items:center;gap:10px;padding:4px 0}
.policy-list li .chev{font-weight:700;color:#CFE3FF;font-size:18px;line-height:1;display:inline-block;width:16px;text-align:center}
.policy-list li a{color:#fff;text-decoration:none;font-weight:700}
.policy-list li a:hover{text-decoration:underline}

/* FOOTER */
footer{padding:18px 0;background:#050812}
.footer-inner{display:flex;align-items:center;justify-content:space-between;gap:12px;color:#AAB6D6;font-size:13px;flex-wrap:wrap}
.footer-links{display:flex;gap:12px;flex-wrap:wrap;align-items:center}
.footer-inner a{color:#AAB6D6}
.social-icons{display:flex;gap:10px;align-items:center}
.social-icons img{width:20px;height:20px;display:block}
