/* ============================================================
   Corporate Training Options (CTO) — Homepage
   Plain HTML/CSS export for designer hand-off
   Brand: Navy #0A2540 · Orange #E8502E · Light grey #F6F8FB
   Fonts: Inter (body) · Poppins (headings)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Poppins:wght@500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: #1a2a3a;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', 'Inter', sans-serif;
    color: #0a2540;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; }
.visually-hidden { position: absolute; clip: rect(0 0 0 0); width: 1px; height: 1px; overflow: hidden; }

.cto-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.cto-container-narrow { max-width: 860px; }


/* ---------- CTO Homepage styles ---------- */

:root {
    --cto-navy: #0a2540;
    --cto-navy-deep: #061a30;
    --cto-orange: #e8502e;
    --cto-orange-hover: #d34522;
    --cto-grey: #f6f8fb;
    --cto-grey-2: #eef2f7;
    --cto-text: #1a2a3a;
    --cto-text-muted: #5a6b7d;
    --cto-border: #e5eaf0;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--cto-text);
    background: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', 'Inter', sans-serif;
    color: var(--cto-navy);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0;
}

.cto-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 26px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.22s ease;
    white-space: nowrap;
    font-family: inherit;
}

.btn-primary {
    background: var(--cto-orange);
    color: #fff;
    box-shadow: 0 6px 18px rgba(232, 80, 46, 0.28);
}
.btn-primary:hover {
    background: var(--cto-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(232, 80, 46, 0.35);
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.75);
}
.btn-outline-white:hover {
    background: #fff;
    color: var(--cto-navy);
    transform: translateY(-2px);
}

.btn-ghost-navy {
    background: transparent;
    color: var(--cto-navy);
    border-color: var(--cto-navy);
}
.btn-ghost-navy:hover {
    background: var(--cto-navy);
    color: #fff;
}

.btn-sm {
    padding: 10px 18px;
    font-size: 14px;
}

/* ---------- Header ---------- */
.cto-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(160%) blur(10px);
    -webkit-backdrop-filter: saturate(160%) blur(10px);
    border-bottom: 1px solid var(--cto-border);
    transition: box-shadow 0.2s ease;
}
.cto-header.is-scrolled {
    box-shadow: 0 4px 18px rgba(10, 37, 64, 0.07);
}

.cto-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 16px;
}

.cto-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--cto-navy);
    font-family: 'Poppins', sans-serif;
}
.cto-logo-mark {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--cto-navy) 0%, #123a66 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(10, 37, 64, 0.18);
}
.cto-logo-text {
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.02em;
}
.cto-logo-tag {
    font-size: 11px;
    color: var(--cto-text-muted);
    font-weight: 500;
    letter-spacing: 0.02em;
    display: block;
    line-height: 1;
    margin-top: 2px;
}

.cto-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}
.cto-nav a {
    text-decoration: none;
    color: var(--cto-text);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: color 0.2s;
}
.cto-nav a:hover {
    color: var(--cto-orange);
}
.cto-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    height: 2px;
    width: 0;
    background: var(--cto-orange);
    transition: width 0.25s ease;
}
.cto-nav a:hover::after {
    width: 100%;
}

.cto-header-right {
    display: flex;
    align-items: center;
    gap: 14px;
}
.cto-phone {
    color: var(--cto-navy);
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.cto-phone:hover {
    color: var(--cto-orange);
}

.cto-hamburger {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--cto-border);
    border-radius: 10px;
    background: #fff;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--cto-navy);
}

.cto-mobile-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 16px 24px 24px;
    background: #fff;
    border-top: 1px solid var(--cto-border);
}
.cto-mobile-menu a {
    padding: 14px 8px;
    color: var(--cto-text);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--cto-grey-2);
    font-size: 16px;
}
.cto-mobile-menu .cto-mobile-cta {
    margin-top: 12px;
}

/* ---------- Hero ---------- */
.cto-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    background: #0a2540;
}
.cto-hero-text-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6, 18, 35, 0.72) 0%, rgba(6, 18, 35, 0.35) 55%, transparent 100%);
    z-index: 1;
}
.cto-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: saturate(105%);
}
.cto-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg,
        rgba(10, 37, 64, 0.92) 0%,
        rgba(10, 37, 64, 0.78) 45%,
        rgba(10, 37, 64, 0.55) 100%);
}
.cto-hero-inner {
    position: relative;
    z-index: 2;
    padding: 96px 0 80px;
    max-width: 820px;
}
.cto-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(232, 80, 46, 0.15);
    border: 1px solid rgba(232, 80, 46, 0.4);
    color: #ffb7a1;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.cto-hero h1 {
    color: #fff;
    font-size: clamp(44px, 6.8vw, 72px);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 22px;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.25);
}
.cto-hero h1 .accent {
    color: #ff9473;
    background: linear-gradient(90deg, #ff9473, #e8502e);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cto-hero p.lead {
    font-size: clamp(17px, 1.6vw, 20px);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.9);
    max-width: 640px;
    margin: 0 0 32px;
}
.cto-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
}
.cto-hero-call {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}
.cto-hero-call a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
}
.cto-hero-call a:hover {
    color: #ffb7a1;
}

.cto-trust-strip {
    position: relative;
    z-index: 2;
    margin-top: 40px;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.85);
    font-size: 14.5px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    align-items: center;
}
.cto-trust-strip .dot {
    opacity: 0.5;
}
.cto-trust-strip strong {
    color: #fff;
    font-weight: 600;
}

/* ---------- Section base ---------- */
.cto-section {
    padding: 96px 0;
}
.cto-section.alt {
    background: var(--cto-grey);
}

.cto-section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 56px;
}
.cto-section-head h2 {
    font-size: clamp(30px, 3.8vw, 44px);
    font-weight: 800;
    margin-bottom: 16px;
}
.cto-section-head p {
    color: var(--cto-text-muted);
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

.cto-eyebrow {
    display: inline-block;
    color: var(--cto-orange);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

/* ---------- Course cards ---------- */
.cto-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.course-card {
    background: #fff;
    border: 1px solid var(--cto-border);
    border-radius: 18px;
    padding: 34px 30px;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cto-navy), var(--cto-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.course-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(10, 37, 64, 0.12);
    border-color: transparent;
}
.course-card:hover::before {
    transform: scaleX(1);
}
.course-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, #eef3fb 0%, #e0ebf7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cto-navy);
    margin-bottom: 22px;
}
.course-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}
.course-card p {
    color: var(--cto-text-muted);
    font-size: 15.5px;
    line-height: 1.6;
    margin: 0 0 22px;
    flex: 1;
}
.course-card a {
    color: var(--cto-orange);
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}
.course-card a:hover {
    gap: 10px;
}

/* ---------- Why CTO ---------- */
.cto-grid-feature {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}
.feature-tile {
    background: #fff;
    border: 1px solid var(--cto-border);
    border-radius: 14px;
    padding: 28px 26px;
    transition: all 0.22s ease;
}
.feature-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(10, 37, 64, 0.08);
    border-color: transparent;
}
.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(232, 80, 46, 0.1);
    color: var(--cto-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.feature-tile h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}
.feature-tile p {
    color: var(--cto-text-muted);
    font-size: 15px;
    margin: 0;
    line-height: 1.55;
}

/* Stats */
.cto-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 40px 30px;
    background: #fff;
    border: 1px solid var(--cto-border);
    border-radius: 18px;
    box-shadow: 0 8px 28px rgba(10, 37, 64, 0.05);
}
.cto-stat {
    text-align: center;
    padding: 10px;
}
.cto-stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(34px, 4.5vw, 48px);
    font-weight: 800;
    color: var(--cto-navy);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.03em;
}
.cto-stat-number .suffix {
    color: var(--cto-orange);
}
.cto-stat-label {
    color: var(--cto-text-muted);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ---------- Testimonials ---------- */
.testimonial-card {
    background: #fff;
    border: 1px solid var(--cto-border);
    border-radius: 18px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    transition: all 0.25s ease;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(10, 37, 64, 0.1);
    border-color: transparent;
}
.testimonial-stars {
    display: inline-flex;
    gap: 2px;
    color: #f7a100;
}
.testimonial-quote {
    color: var(--cto-text);
    font-size: 16.5px;
    line-height: 1.65;
    font-style: normal;
    margin: 0;
    flex: 1;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid var(--cto-grey-2);
}
.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cto-navy), #123a66);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}
.testimonial-name {
    font-weight: 700;
    color: var(--cto-navy);
    font-size: 15px;
}
.testimonial-role {
    color: var(--cto-text-muted);
    font-size: 13.5px;
}

.testimonials-link {
    text-align: center;
    margin-top: 40px;
}
.testimonials-link a {
    color: var(--cto-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}
.testimonials-link a:hover {
    gap: 10px;
}

/* ---------- Final CTA ---------- */
.cto-final {
    background: linear-gradient(135deg, var(--cto-navy) 0%, #061a30 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.cto-final::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 80, 46, 0.25), transparent 60%);
    pointer-events: none;
}
.cto-final-inner {
    position: relative;
    text-align: center;
    padding: 90px 0;
    max-width: 780px;
    margin: 0 auto;
}
.cto-final h2 {
    color: #fff;
    font-size: clamp(32px, 4.4vw, 48px);
    font-weight: 800;
    margin-bottom: 16px;
}
.cto-final p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    line-height: 1.6;
    margin: 0 auto 32px;
    max-width: 580px;
}
.cto-final-ctas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

/* ---------- Footer ---------- */
.cto-footer {
    background: var(--cto-navy-deep);
    color: rgba(255, 255, 255, 0.75);
    padding: 72px 0 0;
}
.cto-newsletter-bar {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 28px 32px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
}
.cto-newsletter-bar h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 4px;
}
.cto-newsletter-bar p {
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    font-size: 14.5px;
}
.cto-newsletter-form {
    display: flex;
    gap: 10px;
    flex: 1;
    min-width: 300px;
    max-width: 460px;
}
.cto-newsletter-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}
.cto-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}
.cto-newsletter-form input:focus {
    border-color: var(--cto-orange);
    background: rgba(255, 255, 255, 0.12);
}
.cto-newsletter-success {
    color: #a8f0c0;
    font-size: 14px;
    margin-top: 10px;
    font-weight: 500;
}

.cto-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.cto-footer-col h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.cto-footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.cto-footer-col a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}
.cto-footer-col a:hover {
    color: var(--cto-orange);
}
.cto-footer-brand p {
    font-size: 15px;
    line-height: 1.6;
    margin: 16px 0 22px;
    max-width: 300px;
}
.cto-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
}
.cto-footer-logo .cto-logo-mark {
    background: linear-gradient(135deg, #fff 0%, #d9e4f0 100%);
    color: var(--cto-navy);
    box-shadow: none;
}
.cto-footer-logo .cto-logo-text {
    color: #fff;
    font-size: 20px;
    font-weight: 800;
}
.cto-socials {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}
.cto-socials a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.22s ease;
}
.cto-socials a:hover {
    background: var(--cto-orange);
    transform: translateY(-2px);
    color: #fff;
}

.cto-footer-bottom {
    padding: 26px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    text-align: center;
}
.cto-footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}
.cto-footer-bottom a:hover {
    color: var(--cto-orange);
}
.cto-footer-bottom .sep {
    opacity: 0.4;
}

/* ---------- Modal ---------- */
.cto-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6, 18, 35, 0.62);
    backdrop-filter: blur(4px);
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.2s ease;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.cto-modal {
    background: #fff;
    border-radius: 18px;
    width: 100%;
    max-width: 560px;
    max-height: 92vh;
    overflow-y: auto;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    animation: slideUp 0.3s ease;
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.cto-modal-header {
    padding: 28px 32px 18px;
    border-bottom: 1px solid var(--cto-grey-2);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}
.cto-modal-header h3 {
    font-size: 24px;
    margin-bottom: 6px;
}
.cto-modal-header p {
    color: var(--cto-text-muted);
    font-size: 14.5px;
    margin: 0;
}
.cto-modal-close {
    background: var(--cto-grey);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    color: var(--cto-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
}
.cto-modal-close:hover {
    background: var(--cto-grey-2);
}
.cto-modal-body {
    padding: 26px 32px 32px;
}
.cto-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}
.cto-form-group {
    margin-bottom: 14px;
}
.cto-form-group label {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--cto-navy);
    margin-bottom: 6px;
}
.cto-form-group input,
.cto-form-group select,
.cto-form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--cto-border);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    color: var(--cto-text);
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.cto-form-group textarea {
    resize: vertical;
    min-height: 90px;
}
.cto-form-group input:focus,
.cto-form-group select:focus,
.cto-form-group textarea:focus {
    border-color: var(--cto-orange);
    box-shadow: 0 0 0 3px rgba(232, 80, 46, 0.15);
}
.cto-form-submit {
    width: 100%;
    margin-top: 4px;
}
.cto-form-status {
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 14.5px;
    font-weight: 500;
}
.cto-form-status.success {
    background: #e8f7ee;
    color: #1e6b3b;
    border: 1px solid #c2e7d0;
}
.cto-form-status.error {
    background: #fdecea;
    color: #a41822;
    border: 1px solid #f5c1bd;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .cto-nav { display: none; }
    .cto-phone { display: none; }
    .cto-hamburger { display: inline-flex; }
    .cto-header.open .cto-mobile-menu { display: flex; }
    .cto-grid-3 { grid-template-columns: 1fr; gap: 20px; }
    .cto-grid-feature { grid-template-columns: repeat(2, 1fr); }
    .cto-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
    .cto-section { padding: 72px 0; }
    .cto-hero-inner { padding: 72px 0 56px; }
    .cto-grid-feature { grid-template-columns: 1fr; }
    .cto-stats { grid-template-columns: repeat(2, 1fr); gap: 30px 10px; }
    .cto-footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .cto-newsletter-bar { flex-direction: column; align-items: stretch; text-align: left; }
    .cto-newsletter-form { max-width: 100%; min-width: 0; }
    .cto-form-row { grid-template-columns: 1fr; }
    .btn { padding: 13px 22px; font-size: 14.5px; }
    .cto-hero-ctas { flex-direction: column; align-items: stretch; gap: 14px; }
    .cto-hero-ctas .btn { width: 100%; }
    .cto-final-ctas .btn { width: 100%; }
}

/* ======================================================
   Round 3 & 4 additions
   ====================================================== */

/* ---------- Hero: client logo strip ---------- */
.cto-hero-inner {
    position: relative;
    z-index: 2;
}
.cto-hero-logos {
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
    z-index: 2;
}
.cto-hero-logos-label {
    color: rgba(255, 255, 255, 0.72);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.cto-hero-logos-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 28px;
    align-items: center;
}
.cto-hero-logo {
    color: rgba(255, 255, 255, 0.68);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.1em;
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
    filter: saturate(0);
    transition: all 0.2s;
}
.cto-hero-logo:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

/* ---------- Course cards: delivery badge + bullets ---------- */
.course-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}
.course-card-top .course-icon {
    margin-bottom: 0;
}
.course-delivery-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: rgba(232, 80, 46, 0.1);
    color: var(--cto-orange);
    border: 1px solid rgba(232, 80, 46, 0.25);
    border-radius: 50px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.04em;
    white-space: nowrap;
}
.course-bullets {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid var(--cto-grey-2);
    padding-top: 20px;
}
.course-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14.5px;
    color: var(--cto-text);
    line-height: 1.4;
}
.course-bullets li svg {
    color: var(--cto-orange);
    margin-top: 3px;
    flex-shrink: 0;
}
.course-link {
    margin-top: auto;
}

/* ---------- How It Works ---------- */
.cto-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}
.cto-step {
    background: #fff;
    border: 1px solid var(--cto-border);
    border-radius: 18px;
    padding: 34px 28px 30px;
    text-align: left;
    position: relative;
    transition: all 0.25s ease;
}
.cto-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(10, 37, 64, 0.08);
    border-color: transparent;
}
.cto-step-num {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--cto-orange);
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 14px;
    opacity: 0.95;
}
.cto-step-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(10, 37, 64, 0.06);
    color: var(--cto-navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.cto-step h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}
.cto-step p {
    color: var(--cto-text-muted);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}
.cto-step-connector {
    position: absolute;
    top: 52px;
    right: -20px;
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, rgba(232, 80, 46, 0.6), rgba(232, 80, 46, 0));
    border-radius: 2px;
    display: none;
}
.cto-steps-cta {
    text-align: center;
    margin-top: 48px;
}

/* ---------- Blog teaser ---------- */
.blog-card {
    background: #fff;
    border: 1px solid var(--cto-border);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.25s ease;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 44px rgba(10, 37, 64, 0.1);
    border-color: transparent;
}
.blog-card-media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--cto-grey-2);
}
.blog-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-media img {
    transform: scale(1.06);
}
.blog-card-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(10, 37, 64, 0.92);
    color: #fff;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.blog-card-body {
    padding: 24px 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.blog-card-date {
    color: var(--cto-orange);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.blog-card-body h3 {
    font-size: 19px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}
.blog-card-body h3 a {
    color: var(--cto-navy);
    text-decoration: none;
    transition: color 0.2s;
}
.blog-card-body h3 a:hover {
    color: var(--cto-orange);
}
.blog-card-body p {
    color: var(--cto-text-muted);
    font-size: 14.5px;
    line-height: 1.55;
    margin: 0;
    flex: 1;
}
.blog-card-link {
    color: var(--cto-orange);
    font-weight: 600;
    font-size: 14.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}
.blog-card-link:hover {
    gap: 10px;
}

/* ---------- FAQ accordion ---------- */
.cto-container-narrow {
    max-width: 860px;
}
.cto-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.cto-accordion-item {
    background: #fff;
    border: 1px solid var(--cto-border);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.cto-accordion-item.is-open {
    border-color: transparent;
    box-shadow: 0 14px 30px rgba(10, 37, 64, 0.08);
}
.cto-accordion-trigger {
    width: 100%;
    background: transparent;
    border: 0;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: inherit;
    font-size: 16.5px;
    font-weight: 600;
    color: var(--cto-navy);
    text-align: left;
    cursor: pointer;
    transition: background 0.2s;
}
.cto-accordion-trigger:hover {
    background: var(--cto-grey);
}
.cto-accordion-chevron {
    flex-shrink: 0;
    color: var(--cto-orange);
    transition: transform 0.25s ease;
}
.cto-accordion-item.is-open .cto-accordion-chevron {
    transform: rotate(180deg);
}
.cto-accordion-panel {
    padding: 0 24px 22px;
    color: var(--cto-text-muted);
    font-size: 15.5px;
    line-height: 1.65;
    animation: faqOpen 0.25s ease;
}
.cto-accordion-panel p {
    margin: 0;
}
@keyframes faqOpen {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---------- Testimonials polish (Round 3) ---------- */
.testimonial-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.testimonial-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #7a8a99;
    background: var(--cto-grey);
    border: 1px solid var(--cto-grey-2);
    padding: 6px 10px;
    border-radius: 6px;
    white-space: nowrap;
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    filter: saturate(0);
}
.testimonial-format {
    font-size: 13px;
    font-style: italic;
    color: var(--cto-text-muted);
    border-top: 1px dashed var(--cto-grey-2);
    padding-top: 12px;
    margin-top: -4px;
}

/* ---------- Partners strip (Round 3) ---------- */
.cto-partners {
    background: var(--cto-grey);
    padding: 48px 0;
    border-top: 1px solid var(--cto-border);
    border-bottom: 1px solid var(--cto-border);
}
.cto-partners-head {
    text-align: center;
    color: var(--cto-text-muted);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.cto-partners-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 28px;
    justify-content: center;
    align-items: center;
}
.cto-partner-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #8594a3;
    background: #fff;
    border: 1px solid var(--cto-border);
    padding: 10px 18px;
    border-radius: 8px;
    min-width: 100px;
    text-align: center;
    filter: saturate(0);
    transition: all 0.2s;
}
.cto-partner-logo:hover {
    color: var(--cto-navy);
    filter: saturate(1);
    transform: translateY(-2px);
}

/* ---------- FinalCTA: pattern + phone line ---------- */
.cto-final-pattern {
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle at 15% 30%, rgba(232, 80, 46, 0.14) 0%, transparent 40%),
      radial-gradient(circle at 85% 70%, rgba(232, 80, 46, 0.1) 0%, transparent 45%);
    pointer-events: none;
}
.cto-final-phone {
    margin-top: 22px !important;
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 14.5px !important;
    font-weight: 500;
}
.cto-final-phone a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.2s;
}
.cto-final-phone a:hover {
    color: #ff9473;
    border-bottom-color: #ff9473;
}
.cto-final-phone-hours {
    opacity: 0.8;
}

/* ---------- Footer: contact block, privacy, badges, bottom ---------- */
.cto-newsletter-privacy {
    font-size: 12.5px !important;
    color: rgba(255, 255, 255, 0.48) !important;
    margin-top: 8px !important;
}
.cto-footer-tagline {
    font-size: 15px;
    line-height: 1.6;
    margin: 14px 0 10px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}
.cto-footer-blurb {
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.68);
    max-width: 320px;
}
.cto-footer-contact {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.cto-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.5;
}
.cto-footer-contact li svg {
    color: var(--cto-orange);
    margin-top: 3px;
    flex-shrink: 0;
}
.cto-footer-contact .contact-label {
    color: rgba(255, 255, 255, 0.55);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    display: block;
    line-height: 1.2;
    margin-bottom: 2px;
}
.cto-footer-contact a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s, color 0.2s;
}
.cto-footer-contact a:hover {
    color: var(--cto-orange);
    border-bottom-color: var(--cto-orange);
}
.cto-locations-lead {
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    font-style: italic;
    margin: -8px 0 16px;
}

/* Bump footer list-link contrast slightly for WCAG AA */
.cto-footer-col a {
    color: rgba(255, 255, 255, 0.82);
    transition: color 0.2s, text-decoration-color 0.2s;
}
.cto-footer-col a:hover {
    color: var(--cto-orange);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Socials hover fills orange */
.cto-socials a {
    transition: background 0.22s ease, transform 0.22s ease, color 0.22s ease;
}
.cto-socials a:hover {
    background: var(--cto-orange);
    color: #fff;
    transform: translateY(-3px);
}

/* Trust badges row */
.cto-trust-badges {
    padding: 28px 0 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 40px;
}
.cto-trust-badges-label {
    text-align: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.cto-trust-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    align-items: center;
    justify-content: center;
}
.cto-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.7);
    padding: 7px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    max-height: 40px;
    transition: all 0.2s;
}
.cto-trust-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
}
.cto-trust-badge svg {
    color: rgba(255, 255, 255, 0.78);
}
.cto-trust-badge-au svg {
    color: #6ed29a;
}

/* Footer bottom strip */
.cto-footer-bottom {
    padding: 24px 0 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px 24px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    text-align: left;
}
.cto-footer-bottom-left,
.cto-footer-bottom-right {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 10px;
}
.cto-footer-bottom .sep,
.cto-footer-bottom .pipe {
    opacity: 0.35;
    user-select: none;
}
.cto-footer-bottom a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s, text-decoration-color 0.2s;
}
.cto-footer-bottom a:hover {
    color: var(--cto-orange);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ---------- Chat bubble + sticky mobile CTA + back to top ---------- */
.cto-chat-bubble {
    position: fixed;
    bottom: 74px;
    right: 16px;
    z-index: 60;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: var(--cto-navy);
    color: #fff;
    border: 0;
    border-radius: 50px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 12px 30px rgba(10, 37, 64, 0.28);
    cursor: pointer;
    transition: all 0.22s ease;
}
.cto-chat-bubble:hover {
    background: var(--cto-orange);
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(232, 80, 46, 0.35);
}
.cto-chat-bubble svg {
    flex-shrink: 0;
}
.cto-chat-label {
    white-space: nowrap;
}

.cto-sticky-mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 55;
    padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--cto-border);
    box-shadow: 0 -6px 22px rgba(10, 37, 64, 0.08);
    display: none;
    transform: translateY(100%);
    transition: transform 0.28s ease;
}
.cto-sticky-mobile-cta .btn {
    width: 100%;
}
.cto-sticky-mobile-cta.is-visible {
    transform: translateY(0);
}

.cto-back-to-top {
    position: fixed;
    bottom: 16px;
    left: 16px;
    z-index: 58;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--cto-navy);
    color: #fff;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(10, 37, 64, 0.3);
    opacity: 0;
    transform: translateY(10px) scale(0.9);
    pointer-events: none;
    transition: all 0.22s ease;
}
.cto-back-to-top.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
.cto-back-to-top:hover {
    background: var(--cto-orange);
    transform: translateY(-3px) scale(1);
}

/* ---------- Responsive overrides (round 3/4) ---------- */
@media (min-width: 961px) {
    .cto-step-connector { display: block; }
}
@media (max-width: 960px) {
    .cto-steps { grid-template-columns: 1fr; gap: 20px; }
    .cto-footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .cto-footer-bottom-left,
    .cto-footer-bottom-right {
        justify-content: center;
    }
}
@media (max-width: 720px) {
    .cto-hero { min-height: 78vh; }
    .cto-hero-logos-row { gap: 8px 14px; }
    .cto-hero-logo { font-size: 11.5px; padding: 5px 10px; }
    .course-card-top { flex-direction: column; align-items: flex-start; gap: 14px; }
    .course-delivery-badge { font-size: 11px; padding: 5px 10px; }
    .cto-chat-bubble { bottom: 92px; padding: 10px 14px; font-size: 13px; }
    .cto-chat-label { display: none; }
    .cto-chat-bubble { padding: 12px; border-radius: 50%; width: 48px; height: 48px; }
    .cto-sticky-mobile-cta { display: block; }
    .cto-back-to-top { bottom: 92px; left: 12px; }
    .cto-final-phone-hours { display: block; margin-top: 4px; }
    .cto-accordion-trigger { padding: 18px 18px; font-size: 15.5px; }
    .cto-accordion-panel { padding: 0 18px 18px; font-size: 14.5px; }
    .cto-partners-row { gap: 8px 12px; }
    .cto-partner-logo { font-size: 11px; padding: 8px 12px; min-width: 90px; }
}


/* ======================================================
   Round 5: Real brand logo + About section
   ====================================================== */

/* Brand logo (shared) */
.cto-brand-logo {
    display: block;
    height: 48px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}
.cto-logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    line-height: 0;
}
/* Force white version for dark backgrounds */
.cto-brand-logo-inverted {
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

/* Header logo override: remove old mark/text styles (still present for fallback) */
.cto-header .cto-brand-logo {
    height: 44px;
}
@media (max-width: 1024px) {
    .cto-header .cto-brand-logo { height: 40px; max-width: 190px; }
}
@media (max-width: 420px) {
    .cto-header .cto-brand-logo { height: 36px; max-width: 160px; }
}

/* Footer logo: inverted, a bit larger */
.cto-footer .cto-footer-logo .cto-brand-logo {
    height: 50px;
    max-width: 220px;
}

/* ---------- About CTO section ---------- */
.cto-about {
    padding: 96px 0;
    background:
      radial-gradient(1200px 500px at 110% -20%, rgba(232, 80, 46, 0.07), transparent 60%),
      radial-gradient(900px 400px at -10% 110%, rgba(10, 37, 64, 0.06), transparent 60%),
      #fff;
}
.cto-about-grid {
    display: grid;
    grid-template-columns: 1.45fr 1fr;
    gap: 60px;
    align-items: start;
}
.cto-about-copy h2 {
    font-size: clamp(30px, 3.6vw, 42px);
    font-weight: 800;
    margin: 14px 0 24px;
    max-width: 620px;
}
.cto-about-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: var(--cto-text);
    font-size: 16.5px;
    line-height: 1.7;
}
.cto-about-body p {
    margin: 0;
    color: #36465a;
}
.cto-about-body strong {
    color: var(--cto-navy);
    font-weight: 700;
}
.cto-about-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

/* About card (right column) */
.cto-about-card {
    position: sticky;
    top: 92px;
    background: #fff;
    border: 1px solid var(--cto-border);
    border-radius: 20px;
    padding: 28px 26px 24px;
    box-shadow: 0 20px 44px rgba(10, 37, 64, 0.08);
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.cto-about-card-head {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--cto-grey-2);
}
.cto-about-card-logo {
    height: 46px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}
.cto-about-card-head p {
    color: var(--cto-text-muted);
    font-size: 14.5px;
    margin: 0;
    font-style: italic;
}
.cto-about-highlights {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.cto-about-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.cto-about-highlight-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(232, 80, 46, 0.1);
    color: var(--cto-orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cto-about-highlight-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.35;
}
.cto-about-highlight-text strong {
    color: var(--cto-navy);
    font-size: 15px;
    font-weight: 700;
}
.cto-about-highlight-text span {
    color: var(--cto-text-muted);
    font-size: 13.5px;
}
.cto-about-card-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--cto-grey-2);
}
.cto-about-contact-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 14.5px;
    color: var(--cto-text);
}
.cto-about-contact-label {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--cto-text-muted);
    text-transform: uppercase;
}
.cto-about-contact-item a {
    color: var(--cto-navy);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s;
}
.cto-about-contact-item a:hover {
    color: var(--cto-orange);
    border-bottom-color: var(--cto-orange);
}

@media (max-width: 960px) {
    .cto-about-grid { grid-template-columns: 1fr; gap: 36px; }
    .cto-about-card { position: static; }
}
@media (max-width: 720px) {

/* ======================================================
   Static HTML export: modal visibility toggle
   (React version used conditional rendering; static uses class)
   ====================================================== */
.cto-modal-overlay { display: none; }
.cto-modal-overlay.is-open { display: flex; }

    .cto-about { padding: 72px 0; }
    .cto-about-ctas .btn { width: 100%; }
}

