/* ===============================
   SQE1 PAGE – BLUEPRINT + LAYOUT
   =============================== */

/* Page background to match internal pages */
body {
    background: linear-gradient(to bottom, #f5f7fc 0%, #ffffff 100%);
}

/* ---------- HERO: SQE1 BLUEPRINT ---------- */

.sqe1-hero {
    position: relative;
    padding-top: 80px;
    padding-bottom: 130px;
}

/* small label above heading */
.hero-kicker {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #e5c278;
    margin-bottom: 8px;
    opacity: 0.95;
}

/* refine note under CTA */
.hero-note {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #cfd5e2;
    opacity: 0.9;
}

/* orbit container on the right */
.sqe1-orbit {
    position: relative;
    width: 320px;
    height: 320px;
    margin: 0 auto;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.18);
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.45);
    background: radial-gradient(circle at center, rgba(255,255,255,0.12), transparent 70%);
    overflow: visible;
    animation: sqe1OrbitRotate 26s linear infinite;
}

/* central core */
.sqe1-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle at top, #f4e2a8, #b88d40);
    box-shadow:
        0 0 24px rgba(255,255,255,0.65),
        0 20px 40px rgba(0,0,0,0.75);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #08192f;
}

.sqe1-core .core-title {
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sqe1-core .core-sub {
    font-size: 0.75rem;
    margin-top: 4px;
    max-width: 120px;
}

/* blueprint circular rings */
.sqe1-blueprint-ring {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.45;
}

.sqe1-blueprint-ring circle {
    fill: none;
    stroke: rgba(255,255,255,0.25);
    stroke-width: 1;
    stroke-dasharray: 3 5;
}

/* orbiting nodes */
.sqe1-node {
    position: absolute;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(4, 8, 17, 0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(229, 194, 120, 0.6);
    box-shadow: 0 6px 18px rgba(0,0,0,0.65);
    white-space: nowrap;
}

.sqe1-node .node-label {
    font-size: 0.78rem;
    color: #f6f0da;
}

/* positions around the circle */
.sqe1-node.node-1 { top: -10px; left: 50%; transform: translateX(-50%); }
.sqe1-node.node-2 { top: 22%; right: -18px; }
.sqe1-node.node-3 { top: 66%; right: -8px; }
.sqe1-node.node-4 { bottom: -10px; left: 50%; transform: translateX(-50%); }
.sqe1-node.node-5 { top: 66%; left: -12px; }
.sqe1-node.node-6 { top: 22%; left: -26px; }

/* rotate the whole orbit slowly */
@keyframes sqe1OrbitRotate {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* counter-rotation for text so it stays upright */
.sqe1-node,
.sqe1-core {
    animation: sqe1CounterRotate 26s linear infinite;
}

@keyframes sqe1CounterRotate {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

/* ensure counter-rotation respects initial transforms */
.sqe1-node.node-1 { transform-origin: center center; }
.sqe1-node.node-4 { transform-origin: center center; }

/* On smaller screens keep things readable */
@media (max-width: 900px) {
    .sqe1-hero .hero-flex {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .sqe1-orbit {
        width: 260px;
        height: 260px;
    }

    .sqe1-core {
        width: 130px;
        height: 130px;
    }
}


/* ---------- SECTION: WHO IT'S FOR ---------- */

.sqe1-overview {
    padding: 110px 0 90px;
    background: #ffffff;
}

.sqe1-overview-flex {
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

.sqe1-overview-left {
    flex: 1.15;
}

.sqe1-overview-left h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.sqe1-overview-left p {
    margin-bottom: 18px;
    font-size: 1.02rem;
}

/* bullet list */
.sqe1-bullet-list {
    list-style: none;
    padding: 0;
    margin-top: 8px;
}

.sqe1-bullet-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 0.98rem;
    color: #33445b;
}

.sqe1-bullet-list li::before {
    content: "•";
    position: absolute;
    left: 4px;
    top: 0;
    color: #e5c278;
}

/* right metric card */
.sqe1-overview-right {
    flex: 0.95;
}

.sqe1-metric-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 26px 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    border: 1px solid rgba(10,26,47,0.08);
}

.sqe1-metric-pill {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(229,194,120,0.16);
    color: #8a6a34;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.sqe1-metric-grid {
    list-style: none;
    margin: 0 0 14px 0;
    padding: 0;
}

.sqe1-metric-grid li {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.metric-label {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #8691a5;
    margin-bottom: 2px;
}

.metric-value {
    font-size: 0.96rem;
    color: #24344a;
    font-weight: 600;
}

.sqe1-metric-note {
    margin-top: 8px;
    font-size: 0.9rem;
    color: #5e6a7f;
}

/* responsive */
@media (max-width: 900px) {
    .sqe1-overview-flex {
        flex-direction: column;
        gap: 40px;
    }
}


/* ---------- SECTION: MODULE CLUSTERS ---------- */

.sqe1-modules {
    padding: 90px 0 100px;
    background: linear-gradient(to bottom, #f5f7fc 0%, #ffffff 100%);
}

.sqe1-modules-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    margin-top: 40px;
}

.sqe1-module-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 22px 26px;
    border: 1px solid rgba(10,26,47,0.08);
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.sqe1-module-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.sqe1-module-card p {
    font-size: 0.96rem;
    color: #3a4a61;
    margin-bottom: 10px;
}

.sqe1-module-card ul {
    list-style: none;
    padding: 0;
    font-size: 0.9rem;
    color: #4c5a72;
}

.sqe1-module-card ul li + li {
    margin-top: 4px;
}

.sqe1-module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

/* small svg icon top-left */
.sqe1-card-icon {
    margin-bottom: 10px;
}

.sqe1-card-icon svg {
    width: 30px;
    height: 30px;
    stroke: #e5c278;
    fill: none;
}

/* responsive */
@media (max-width: 1100px) {
    .sqe1-modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .sqe1-modules-grid {
        grid-template-columns: 1fr;
    }
}


/* ---------- SECTION: DELIVERY / HOW IT RUNS ---------- */

.sqe1-delivery {
    padding: 90px 0 110px;
    background: #ffffff;
}

.sqe1-delivery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.sqe1-delivery-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 22px 26px;
    border: 1px solid rgba(10,26,47,0.08);
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.sqe1-delivery-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.sqe1-delivery-card p {
    font-size: 0.96rem;
    color: #3b4c62;
    margin-bottom: 10px;
}

.sqe1-delivery-card ul {
    list-style: none;
    padding: 0;
    font-size: 0.9rem;
    color: #4c5a72;
}

.sqe1-delivery-card ul li + li {
    margin-top: 4px;
}

.sqe1-delivery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.12);
}

/* responsive */
@media (max-width: 1100px) {
    .sqe1-delivery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 800px) {
    .sqe1-delivery-grid {
        grid-template-columns: 1fr;
    }
}


/* ---------- CTA TWEAK FOR THIS PAGE ---------- */

.sqe1-cta.clean-cta {
    padding: 80px 0 80px;
}

/* Fix SQE1 Hero Button Spacing */
.sqe1-hero .hero-btn {
    margin-bottom: 10px !important; /* increase space BELOW */
    display: inline-block;
}