/* =========================================
   GLOBAL
========================================= */

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    background: #03152d;
    color: #ffffff;
    font-family: Arial, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.wuk-container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

/* =========================================
   HEADER
========================================= */

.wuk-site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: linear-gradient(90deg, #243f98 0%, #2568b8 100%);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.wuk-header-inner {
    min-height: 86px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.wuk-logo {
    font-size: 2.4rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.05em;
}

.wuk-logo span {
    color: #ffd200;
}

.wuk-menu-toggle,
.wuk-menu-button {
    display: none;
}

.wuk-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.wuk-nav a {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.wuk-nav a:hover {
    color: #ffd200;
}

/* =========================================
   HERO
========================================= */

.wuk-hero {
    position: relative;
    min-height: calc(100vh - 86px);
    display: flex;
    align-items: center;
    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(2,8,25,0.88) 0%,
            rgba(2,8,25,0.68) 45%,
            rgba(2,8,25,0.28) 100%
        ),
        url('https://wiseupkids.co.uk/wp-content/uploads/2026/05/ChatGPT-Image-May-20-2026-11_53_52-PM-e1779318270361.png');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.wuk-hero-overlay {
    display: none;
}

.wuk-hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    padding: 78px 0 90px;
}

.wuk-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 26px;
    border: 2px solid #ffd200;
    border-radius: 999px;
    color: #ffd200;
    font-size: 0.92rem;
    font-weight: 900;
    margin-bottom: 30px;
    background: rgba(255,210,0,0.08);
}

.wuk-hero-title {
    font-size: clamp(2.4rem, 6vw, 6rem);
    line-height: 1.02;
    font-weight: 600;
    margin: 0 0 28px;
    letter-spacing: -0.055em;
    max-width: 850px;
}

.wuk-hero-title span {
    color: #ffd200;
}

.wuk-hero-text {
    font-size: 1.22rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    margin: 0 0 38px;
    max-width: 720px;
}

.wuk-hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.wuk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 64px;
    padding: 18px 34px;
    border-radius: 999px;
    font-size: 1.05rem;
    font-weight: 900;
    transition: all 0.3s ease;
}

.wuk-btn:hover {
    transform: translateY(-3px);
}

.wuk-btn-primary {
    background: #ffd200;
    color: #03152d;
    box-shadow: 0 0 24px rgba(255,210,0,0.25);
}

.wuk-btn-secondary {
    background: rgba(255,255,255,0.92);
    color: #03152d;
}

/* =========================================
   TRUST STRIP
========================================= */

.wuk-trust-strip {
    padding: 34px 0;
    background: #03152d;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.wuk-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.wuk-trust-grid div {
    padding: 22px;
    border-radius: 20px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.08);
}

.wuk-trust-grid strong {
    display: block;
    color: #ffd200;
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.wuk-trust-grid span {
    color: rgba(255,255,255,0.78);
    line-height: 1.5;
}

/* =========================================
   MISSION
========================================= */

.wuk-mission-section {
    padding: 54px 0;
    background: #03152d;
}

.wuk-mission-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 72px;
    align-items: start;
}
.wuk-mission-grid h2{
    font-size: clamp(2rem, 4vw, 2.5rem);
    line-height: 1.05;
}

.wuk-section-label {
    color: #63c7ff;
    font-size: 0.88rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin: 0 0 18px;
}


.wuk-section-title {
    color: #ffffff;
    font-size: clamp(2.5rem, 4.4vw, 4.4rem);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.045em;
    margin: 0;
}

.wuk-mission-section p:not(.wuk-section-label) {
    font-size: 1.12rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.84);
    margin: 0 0 14px;
}
.wuk-mission-points{
    display:flex;
    flex-direction:column;
    gap:24px;
}

.wuk-mission-intro{
    font-size:1.15rem;
    line-height:1.8;
    color:#ffffff;
    margin:0;
}

.wuk-mission-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.wuk-mission-item{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    border-radius:14px;
    padding:18px 22px;
    font-size:1.05rem;
    font-weight:600;
    color:#ffffff;
    transition:.25s ease;
}

.wuk-mission-item:hover{
    border-color:#FFC72C;
    transform:translateX(4px);
}
.wuk-mission-image-block h2{
    margin-bottom:16px;
    letter-spacing:4px;
}
/* =========================================
   PRODUCTS
========================================= */

.wuk-products-section {
    padding: 42px 0 90px;
    background: #03152d;
}

.wuk-section-title {
    max-width: 80%;
    margin-bottom: 34px;
}

.wuk-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.wuk-product-card {
    overflow: hidden;
    border-radius: 28px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    transition: all 0.3s ease;
}

.wuk-product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,210,0,0.35);
    background: rgba(255,255,255,0.06);
}

.wuk-product-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: rgba(255,255,255,0.05);
    overflow: hidden;
}

.wuk-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wuk-product-content {
    padding: 28px;
}

.wuk-product-type {
    color: #ffd200 !important;
    font-size: 0.82rem !important;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0 0 12px !important;
}

.wuk-product-card h3 {
    color: #ffffff;
    font-size: 1.85rem;
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.035em;
    margin: 0 0 16px;
}

.wuk-product-card p {
    color: rgba(255,255,255,0.78);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 24px;
}

.wuk-product-link {
    color: #63c7ff;
    font-weight: 900;
}

/* =========================================
   FEATURE SECTION
========================================= */

.wuk-feature-section {
    padding: 58px 0;
    background: linear-gradient(180deg, #1d427f 0%, #214f95 100%);
    border-top: 3px solid #ffd200;
    border-bottom: 3px solid #ffd200;
}

.wuk-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 52px;
    align-items: center;
}

.wuk-feature-image {
    max-width: 540px;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.14);
}

.wuk-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wuk-feature-content h2 {
    color: #ffffff;
    font-size: clamp(2.4rem, 3.5vw, 3.7rem);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.045em;
    margin: 0 0 18px;
}

.wuk-feature-content p {
    font-size: 1.15rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.88);
    margin: 0 0 24px;
}

.wuk-feature-content .wuk-btn {
    margin-top: 10px;
}

/* =========================================
   FOOTER TOP BAR
========================================= */

.wuk-footer {
    background: #312ea6;
    color: #ffffff;
}

.wuk-footer-top {
    background: linear-gradient(90deg, #2738a0 0%, #2568b8 100%);
    border-top: 2px solid #ffd200;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.wuk-footer-top-links {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.wuk-footer-top-inner {
    width: min(1200px, 92%);
    margin: 0 auto;
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    flex-wrap: wrap;
}

.wuk-social-label {
    color: rgba(255,255,255,0.82);
    font-size: 0.95rem;
    font-weight: 900;
}

.wuk-footer-socials {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* =========================================
   FOOTER MAIN
========================================= */

.wuk-footer-main {
    padding: 58px 0 30px;
}

.wuk-footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 46px;
}

.wuk-footer-brand h2 {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    margin: 0 0 20px;
}

.wuk-footer-brand h2 span {
    color: #ffd200;
}

.wuk-footer-brand p {
    max-width: 440px;
    color: rgba(255,255,255,0.84);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 20px;
}

.wuk-footer-tagline {
    color: #ffd200 !important;
    font-style: italic;
    font-weight: 900;
}

.wuk-footer-main h3 {
    color: #ffd200;
    font-size: 1.08rem;
    margin: 0 0 20px;
}

.wuk-footer-main a {
    display: block;
    color: rgba(255,255,255,0.84);
    font-size: 1rem;
    margin-bottom: 14px;
}

.wuk-footer-main a:hover {
    color: #ffffff;
}

.wuk-footer-bottom {
    margin-top: 38px;
    padding-top: 26px;
    border-top: 1px solid rgba(255,255,255,0.12);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    color: rgba(255,255,255,0.72);
    font-size: 0.9rem;
}

.wuk-footer-bottom p {
    margin: 0;
}

.wuk-footer-bottom div {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

.wuk-footer-bottom a {
    color: rgba(255,255,255,0.72);
}

/* =========================================
   RESPONSIVE - TABLET
========================================= */

@media (max-width: 1024px) {

    .wuk-header-inner {
        min-height: auto;
        padding: 20px 0;
        flex-wrap: wrap;
        gap: 16px;
    }

    .wuk-logo {
        font-size: 2.15rem;
    }

    .wuk-nav {
        gap: 16px;
        flex-wrap: wrap;
    }

    .wuk-nav a {
        font-size: 0.95rem;
    }

    .wuk-mission-grid,
    .wuk-feature-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .wuk-product-grid,
    .wuk-trust-grid {
        grid-template-columns: 1fr;
    }

    .wuk-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* =========================================
   RESPONSIVE - MOBILE HAMBURGER
========================================= */

@media (max-width: 768px) {

    .wuk-container {
        width: min(100% - 36px, 1200px);
    }

    .wuk-header-inner {
        position: relative;
        min-height: 72px;
        padding: 14px 0;
        flex-direction: row;
        align-items: center;
    }

    .wuk-logo {
        font-size: 1.9rem;
        line-height: 1;
    }

    .wuk-menu-toggle {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }

    .wuk-menu-button {
        display: inline-flex;
        width: 44px;
        height: 44px;
        border-radius: 12px;
        border: 1px solid rgba(255,255,255,0.25);
        background: rgba(255,255,255,0.08);
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        margin-left: auto;
    }

    .wuk-menu-button span {
        display: block;
        width: 21px;
        height: 3px;
        background: #ffffff;
        border-radius: 999px;
        transition: 0.25s ease;
    }

    .wuk-nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        width: 100%;
        padding: 18px;
        border-radius: 0 0 22px 22px;
        background: linear-gradient(180deg, #24439b 0%, #1768b8 100%);
        box-shadow: 0 18px 40px rgba(0,0,0,0.24);
        grid-template-columns: 1fr;
        gap: 0;
    }

    .wuk-nav a {
        display: block;
        padding: 14px 10px;
        font-size: 1rem;
        border-top: 1px solid rgba(255,255,255,0.12);
    }

    .wuk-menu-toggle:checked ~ .wuk-nav {
        display: grid;
    }

    .wuk-menu-toggle:checked + .wuk-menu-button span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .wuk-menu-toggle:checked + .wuk-menu-button span:nth-child(2) {
        opacity: 0;
    }

    .wuk-menu-toggle:checked + .wuk-menu-button span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .wuk-hero {
        min-height: auto;
        align-items: flex-start;
        padding: 52px 0 66px;
        background:
            linear-gradient(
                180deg,
                rgba(2,8,25,0.78) 0%,
                rgba(2,8,25,0.74) 42%,
                rgba(2,8,25,0.92) 100%
            ),
            url('https://wiseupkids.co.uk/wp-content/uploads/2026/05/ChatGPT-Image-May-20-2026-11_53_52-PM-e1779318270361.png');
        background-size: cover;
        background-position: 58% center;
    }

    .wuk-hero-content {
        max-width: 100%;
        padding: 0;
    }

    .wuk-hero-badge {
        max-width: 100%;
        padding: 11px 16px;
        font-size: 0.76rem;
        line-height: 1.35;
        margin-bottom: 24px;
    }

    .wuk-hero-title {
        font-size: clamp(2.55rem, 12vw, 3.7rem);
        line-height: 1.04;
        letter-spacing: -0.055em;
        margin-bottom: 22px;
        max-width: 100%;
    }

    .wuk-hero-text {
        font-size: 1rem;
        line-height: 1.65;
        margin-bottom: 28px;
        max-width: 100%;
    }

    .wuk-hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .wuk-btn {
        width: 100%;
        min-height: 56px;
        padding: 16px 24px;
        font-size: 0.98rem;
    }

    .wuk-trust-strip {
        padding: 24px 0;
    }

    .wuk-trust-grid div {
        padding: 18px;
    }

    .wuk-mission-section {
        padding: 58px 0;
    }

    .wuk-section-label {
        font-size: 0.78rem;
        letter-spacing: 0.14em;
    }

    .wuk-mission-section h2,
    .wuk-section-title,
    .wuk-feature-content h2 {
        font-size: clamp(2.15rem, 10vw, 3.2rem);
        line-height: 1.05;
    }

    .wuk-mission-section p:not(.wuk-section-label),
    .wuk-feature-content p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .wuk-products-section {
        padding: 20px 0 58px;
    }

    .wuk-section-title {
        margin-bottom: 30px;
    }

    .wuk-product-content {
        padding: 22px;
    }

    .wuk-product-card h3 {
        font-size: 1.55rem;
    }

    .wuk-product-card p {
        font-size: 0.96rem;
    }

    .wuk-feature-section {
        padding: 58px 0;
    }

    .wuk-feature-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .wuk-footer-top-inner {
        justify-content: flex-start;
        text-align: left;
        padding: 22px 0;
    }

    .wuk-footer-socials {
        justify-content: flex-start;
    }

    .wuk-footer-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .wuk-footer-bottom {
        justify-content: flex-start;
        text-align: left;
    }

    .wuk-footer-bottom div {
        justify-content: flex-start;
    }
}

/* =========================================
   RESPONSIVE - SMALL MOBILE
========================================= */

@media (max-width: 420px) {

    .wuk-container {
        width: min(100% - 28px, 1200px);
    }

    .wuk-logo {
        font-size: 1.75rem;
    }

    .wuk-menu-button {
        width: 42px;
        height: 42px;
    }

    .wuk-hero {
        padding: 42px 0 56px;
        background-position: 62% center;
    }

    .wuk-hero-badge {
        font-size: 0.72rem;
        padding: 10px 14px;
    }

    .wuk-hero-title {
        font-size: clamp(2.25rem, 14vw, 3.3rem);
    }

    .wuk-hero-text {
        font-size: 0.96rem;
    }
}