:root {
    /* Brand */
    --wnc-blue: #1F4277;

    --blue-gradient: radial-gradient(circle at 10% 0%, rgba(159, 135, 175, 0.35) 0, transparent 55%),
        linear-gradient(135deg, #1F4277 0%, #0f1933 45%, #020817 100%);
    /* Lavender (keep only 2) */
    --wnc-lavender: #D3B6E6;
    --wnc-lavender-dark: #9F87AF;
    /* main brand lavender: buttons, key accents */

    /* Text */
    --wnc-text-main-white: #F2F3F5;
    /* all main text everywhere */
    --wnc-text-muted: rgba(249, 250, 251, 0.7);
    /* eyebrow, low-priority */
    --white: #FFFFFF;
    --wnc-surface-light: #F3F4F6;
    /* light gray for sections */
    --wnc-text-main-dark: #020617;
    /* Shadows */
    --wnc-shadow-elevated: 0 12px 28px rgba(0, 0, 0, 0.45);
    --wnc-shadow-elevated-hover: 0 15px 32px rgba(0, 0, 0, 0.5);

    /* Card settings */
    --card-corner-radius: 1.5rem;
    --card-padding: 2rem 2.2rem;
    --card-blur: 4rem;

    --card-bg: rgba(255, 255, 255, 0.10);
    --card-border: rgba(255, 255, 255, 0.15);

    --card-shadow:
        0 0 1rem rgba(31, 66, 119, 0.25),
        inset 0 0 0.2rem rgba(159, 135, 175, 0.25),
        inset 0 0 0.4rem rgba(211, 182, 230, 0.20);

    --font-title: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Body defaults (all paragraphs, links, lists, etc.) */
body {
    font-family: var(--font-body) !important;
    font-weight: 400;
    letter-spacing: 0;
}

/* Headings defaults */
h1,
h2,
h3,
h4,
h5,
h6,
.eyebrow {
    font-family: var(--font-title) !important;
    font-weight: 700;
    letter-spacing: 0.01em;
}

/* ========================================================================== */
/*  WEBNOVACRAFT — HERO SECTION + MATERIAL BUTTONS                            */
/* ========================================================================== */

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

.wnc-hero {
    position: relative;
    min-height: 100vh;
    /* full screen */
    display: flex;
    align-items: center;
    padding-top: 6rem;
    /* clears transparent header */
    padding-bottom: 6rem;
    /* COSMIC GRADIENT BACKGROUND */
    background: var(--blue-gradient);
    overflow: hidden;
}

.wnc-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    /* top:0; right:0; bottom:0; left:0; */
    background-image: url("https://webnovacraft.com/wp-content/uploads/2025/11/cosmos_bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    /* or "contain" if you prefer */
    background-position: center;
    opacity: 0.1;
    /* 🔥 tweak this for more/less visibility */
    pointer-events: none;
    /* so it doesn’t block clicks */
    z-index: 0;
}

.wnc-hero__inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.wnc-hero__content {
    max-width: 640px;
    padding-top: 2.5rem;
}

/* ========== TYPOGRAPHY (Material-inspired) ========== */

.wnc-hero__eyebrow {
    font-size: 0.9rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 1rem;
    color: var(--wnc-text-muted);
    opacity: 1;
}

.wnc-hero__title {
    font-size: clamp(2.6rem, 4vw, 3.6rem);
    line-height: 1.1;
    font-weight: 800;
    margin: 0 0 1.5rem;
    color: var(--white);
}

.wnc-hero__title span {
    color: var(--wnc-lavender);
}

.wnc-hero__subtitle {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 34rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    color: var(--wnc-text-main-white);


}

/* ========== BUTTONS — Material Design Style ========== */

/* BASE BUTTON (shared by primary + secondary) */
.md-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0.85rem 1.8rem;
    border-radius: 999px;

    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;

    border: none;
    text-decoration: none;
    cursor: pointer;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.wnc-header-btn {
    font-size: 0.65rem;
}

/* PRIMARY BUTTON */
.md-btn--primary {
    background: var(--wnc-lavender-dark);
    color: var(--wnc-text-main-white);
    border: 1px solid rgba(255, 255, 255, 0.18);
    /* glass edge */
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}

.md-btn--secondary {
    background: var(--wnc-blue);
    color: var(--wnc-text-main-white);
    border: 1px solid rgba(255, 255, 255, 0.18);
    /* glass edge */
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}

.md-btn--secondary:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow:
        0 15px 32px rgba(0, 0, 0, 0.50),
        0 0 12px rgba(211, 182, 230, 0.45);
    /* subtle cosmic glow */
    border-color: rgba(233, 215, 245, 0.60);
}

.md-btn--primary:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow:
        0 15px 32px rgba(0, 0, 0, 0.50),
        0 0 12px rgba(211, 182, 230, 0.45);
    /* subtle cosmic glow */
    border-color: rgba(233, 215, 245, 0.60);
}

/* SECONDARY BUTTON */
.md-btn--text {
    margin-left: 1rem;
    /* only visual diff on the right */
    background: rgba(31, 66, 119, 0.30);
    color: var(--wnc-text-main-white);
    border: 1px solid rgba(31, 66, 119, 0.35);
}

.md-btn--text:hover {
    background: rgba(31, 66, 119, 0.40);
    border-color: rgba(233, 215, 245, 0.60);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.35);
}




/* ========== LAYOUT ON MOBILE ========== */

.wnc-hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .wnc-hero {
        text-align: left;
        /* Change to center if you want */
    }

    .wnc-hero__actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .md-btn--text {
        margin-left: 0;
    }
}

/* ========================= */
/*  HERO SCROLL CUE          */
/* ========================= */

.scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 22px;
    width: 20px;
    height: 34px;
    border: 2px solid var(--white);
    border-radius: 999px;
    opacity: .8;
    z-index: 1;
    display: block;
    cursor: pointer;

    /* center horizontally */
    transform: translate(-50%, 0);

    /* subtle bobbing motion */
    animation: scroll-cue-bob 1.8s ease-in-out infinite;
}

.scroll-cue::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 6px;
    width: 3px;
    height: 8px;
    background: var(--white);
    border-radius: 999px;

    /* center inside the mouse */
    transform: translate(-50%, 0);

    /* wheel sliding down */
    animation: scroll-wheel 1.8s ease-in-out infinite;
}

/* Mouse outline bobbing */
@keyframes scroll-cue-bob {

    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, 6px);
    }
}

/* Inner wheel sliding + fading */
@keyframes scroll-wheel {
    0% {
        opacity: 0;
        transform: translate(-50%, 0);
    }

    20% {
        opacity: 1;
    }

    50% {
        transform: translate(-50%, 8px);
    }

    80% {
        opacity: 0;
    }

    100% {
        transform: translate(-50%, 0);
    }
}


.section__title {
    text-transform: uppercase;

    /* 3D cosmic shadow */
    text-shadow:
        0 2px 3px rgba(0, 0, 0, 0.25),
        /* Soft grounding */
        0 4px 12px rgba(31, 66, 119, 0.25),
        /* Blue cosmic glow */
        0 0 8px rgba(211, 182, 230, 0.35);
    /* Lavender aura */

    letter-spacing: 0.04em;
    font-weight: 800;
}

/* ========================================================================== */
/*  WEBNOVACRAFT — SERVICES SECTION                                           */
/* ========================================================================== */

/* SECTION WRAPPER */
.services {
    padding: 5rem 1.5rem 6rem;
    background: var(--wnc-surface-light);
}

.services__inner {
    max-width: 1120px;
    margin: 0 auto;
    text-align: center;
}

/* EYEBROW + TITLE */
.services__eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--wnc-lavender-dark);
    margin-bottom: 0.45rem;
}

.services__title {
    font-size: clamp(2.1rem, 3.2vw, 2.7rem);
    color: var(--wnc-blue);
    margin: 0 0 2.75rem;
    text-transform: uppercase;
}

/* GRID – now 2 columns by default */
.services__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.9rem 1.9rem;
}

/* CARD – GLASSMORPHISM */
.service-card {
    position: relative;
    padding: 2.4rem 2.4rem 2.1rem;
    border-radius: 16px;
    text-align: left;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 260px;

    background: rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    transition: transform 0.18s ease-out, box-shadow 0.18s ease-out;
}

.service-dev::before {
    content: "";
    position: absolute;

    /* CENTER IT */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    /* give it a real box */
    width: 450px;
    /* tweak */
    height: 450px;
    /* tweak, or 100% if you prefer full-height */

    background-image: url("https://webnovacraft.com/wp-content/uploads/2025/11/ill-hero-webdev.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    opacity: 0.15;
    /* adjust */
    pointer-events: none;
    z-index: 0;
}

.service-ecommerce::before {
    content: "";
    position: absolute;

    /* CENTER IT */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    /* give it a real box */
    width: 550px;
    /* tweak */
    height: 550px;
    /* tweak, or 100% if you prefer full-height */

    background-image: url("https://webnovacraft.com/wp-content/uploads/2025/11/ill-hero-ecom.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    opacity: 0.08;
    /* adjust */
    pointer-events: none;
    z-index: 0;
}

.service-landing::before {
    content: "";
    position: absolute;

    /* CENTER IT */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    /* give it a real box */
    width: 450px;
    /* tweak */
    height: 450px;
    /* tweak, or 100% if you prefer full-height */

    background-image: url("https://webnovacraft.com/wp-content/uploads/2025/11/ill-hero-landing-e1763657222790.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    opacity: 0.25;
    /* adjust */
    pointer-events: none;
    z-index: 0;
}

.service-figma::before {
    content: "";
    position: absolute;

    /* CENTER IT */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    /* give it a real box */
    width: 450px;
    /* tweak */
    height: 450px;
    /* tweak, or 100% if you prefer full-height */

    background-image: url("https://webnovacraft.com/wp-content/uploads/2025/11/ill-hero-figma.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    opacity: 0.15;
    /* adjust */
    pointer-events: none;
    z-index: 0;
}


.service-seo::before {
    content: "";
    position: absolute;

    /* CENTER IT */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    /* give it a real box */
    width: 450px;
    /* tweak */
    height: 450px;
    /* tweak, or 100% if you prefer full-height */

    background-image: url("https://webnovacraft.com/wp-content/uploads/2025/11/ill-hero-analytics.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    opacity: 0.15;
    /* adjust */
    pointer-events: none;
    z-index: 0;
}

.service-maint::before {
    content: "";
    position: absolute;

    /* CENTER IT */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    /* give it a real box */
    width: 450px;
    /* tweak */
    height: 450px;
    /* tweak, or 100% if you prefer full-height */

    background-image: url("https://webnovacraft.com/wp-content/uploads/2025/11/ill-hero-maintenance.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    opacity: 0.1;
    /* adjust */
    pointer-events: none;
    z-index: 0;
}




.service-card>* {
    position: relative;
    z-index: 1;
}

.service-card:hover,
.service-card:focus-within {
    transform: translateY(-6px);
    box-shadow:
        0 30px 80px rgba(31, 66, 119, 0.22),
        0 0 0 1px rgba(159, 135, 175, 0.2);
}

/* CARD TYPOGRAPHY */
.service-card__title {
    margin: 0 0 1rem;
    font-size: 1.4rem;
    /* bigger title */
    line-height: 1.25;
    font-weight: 700;
    color: var(--wnc-blue);
}

.service-card__text {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--wnc-text-main-dark);
}

/* PRICE + CTA AREA */
.service-card__meta {
    margin-top: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-card__price {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--wnc-blue);
    opacity: 0.95;
}

/* Reuse material button, slightly smaller inside cards */
.service-card__cta {
    padding-inline: 1.4rem;
    padding-block: 0.7rem;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
}

/* RESPONSIVE */
@media (max-width: 980px) {
    .services__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .services {
        padding: 3.5rem 1.25rem 4rem;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 2rem 1.7rem 1.75rem;
        min-height: 0;
        /* let it grow naturally on small screens */
    }

    .service-card__meta {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* SECTION CTA GROUP */
.services__cta-group {
    margin-top: 3.2rem;
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}



@media (max-width: 640px) {
    .services__cta-group {
        flex-direction: column;
        gap: 0.9rem;
    }

    .services__cta {
        width: 100%;
        text-align: center;
    }
}


/* ========================================================================== */
/*  WEBNOVACRAFT — WHY CHOOSE US SECTION                                      */
/* ========================================================================== */

.why {
    padding: 6rem 1.5rem 6rem;
    background: var(--blue-gradient);
    /* same cosmic background as hero */
    color: var(--white);
    text-align: center;
}

.why__inner {
    max-width: 1120px;
    margin: 0 auto;
}

/* EYEBROW TEXT */
.why__eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--wnc-text-muted);
    margin-bottom: 0.45rem;
}

/* MAIN TITLE */
.why__title {
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 3rem;
}

/* GRID */
.why__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2.5rem;
}

/* INDIVIDUAL ITEM */
.why-item {
    text-align: center;
    padding: 1rem;
    transition: transform 0.2s ease;
}

.why-item:hover {
    transform: translateY(-6px);
}

/* ICON WRAPPER — GLASS STYLE */
.why-item__icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;

    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    box-shadow:
        0 5px 18px rgba(0, 0, 0, 0.50),
        inset 0 0 12px rgba(211, 182, 230, 0.35);

    transition: transform 0.2s ease, box-shadow 0.25s ease;
}

/* ICON INSIDE WRAPPER */
.why-item__icon i {
    font-size: 1.6rem;
    color: var(--wnc-lavender);
}

/* HOVER EFFECT */
.why-item:hover .why-item__icon {
    transform: translateY(-4px);
    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.55),
        inset 0 0 18px rgba(255, 255, 255, 0.45);
}

/* TYPOGRAPHY */
.why-item__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.why-item__text {
    font-size: 0.98rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 auto;
    max-width: 260px;
}

/* RESPONSIVE */
@media (max-width: 980px) {
    .why__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .why {
        padding: 4rem 1.25rem;
    }

    .why__grid {
        grid-template-columns: 1fr;
    }

    .why-item {
        padding: 0.5rem 0;
    }
}

/* ========================================================================== */
/*  WEBNOVACRAFT — HOW IT WORKS                                               */
/* ========================================================================== */

.how {
    padding: 6rem 1.5rem 6rem;
    background: var(--wnc-surface-light);
    /* light gray */
    text-align: center;
    color: var(--wnc-text-main-dark);
}

.how__inner {
    max-width: 1120px;
    margin: 0 auto;
}

.how__eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--wnc-lavender-dark);
    margin-bottom: 0.45rem;
}

.how__title {
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--wnc-blue);
    margin-bottom: 0.75rem;
}

.how__subtitle {
    font-size: 1.05rem;
    color: rgba(2, 6, 23, 0.7);
    max-width: 620px;
    margin: 0 auto 3.2rem;
}


/* GRID LAYOUT */
.how__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}


/* STEP CARD */
.how-step {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(159, 135, 175, 0.25);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.1),
        inset 0 0 0.6rem rgba(211, 182, 230, 0.15);

    border-radius: 18px;
    padding: 2.2rem 1.7rem 2rem;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.how-step:hover {
    transform: translateY(-6px);
    box-shadow:
        0 28px 80px rgba(31, 66, 119, 0.25),
        0 0 0 1px rgba(233, 215, 245, 0.45);
    border-color: rgba(233, 215, 245, 0.55);
}


/* STEP NUMBER */
.how-step__number {
    font-size: 0.9rem;
    font-weight: 700;
    opacity: 0.5;
    letter-spacing: 0.15em;
    margin-bottom: 0.8rem;
}


/* ICON */
.how-step__icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 1.1rem;

    border-radius: 14px;
    background: rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow:
        0 5px 18px rgba(0, 0, 0, 0.50),
        inset 0 0 12px rgba(211, 182, 230, 0.35);
}

.how-step__icon i {
    font-size: 1.5rem;
    color: var(--wnc-lavender-dark);
}


/* TITLES AND TEXT */
.how-step__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--wnc-blue);
    margin-bottom: 0.5rem;
}

.how-step__text {
    font-size: 0.98rem;
    line-height: 1.6;
    color: rgba(2, 6, 23, 0.7);
}


/* CTA GROUP */
.how__cta-group {
    margin-top: 0.5rem;
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.how__cta {
    padding-inline: 1.9rem;
    padding-block: 0.9rem;
    font-size: 0.92rem;
}


/* RESPONSIVE */
@media (max-width: 980px) {
    .how__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .how {
        padding: 4rem 1.25rem 4rem;
    }

    .how__grid {
        grid-template-columns: 1fr;
    }

    .how-step {
        padding: 2rem 1.5rem 1.7rem;
    }

    .how__cta {
        width: 100%;
        text-align: center;
    }
}


/* ========================================================================== */
/*  WEBNOVACRAFT — FAQ SECTION (COSMIC GLASS STYLE)                           */
/* ========================================================================== */

.faq {
    padding: 6rem 1.5rem 6.5rem;
    background: var(--blue-gradient);
    color: var(--wnc-text-main-white);
}

.faq__inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: left;
}

/* EYEBROW + TITLE */
.faq__eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--wnc-text-muted);
    opacity: 0.9;
    margin-bottom: 0.45rem;
    text-align: center;
}

.faq__title {
    text-align: center;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    text-shadow:
        0 12px 28px rgba(0, 0, 0, 0.55),
        0 0 20px rgba(211, 182, 230, 0.35);
    margin-bottom: 3rem;
}

/* LIST WRAPPER */
.faq__list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* FAQ ITEM = same glass base as why-item__icon but stretched */
.faq-item {
    border-radius: 18px;
    overflow: hidden;

    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    box-shadow:
        0 8px 26px rgba(0, 0, 0, 0.55),
        inset 0 0 12px rgba(211, 182, 230, 0.35);

    transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, border-color 0.18s ease-out;
}

.faq-item:hover {
    transform: translateY(-6px);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(211, 182, 230, 0.55);
    border-color: rgba(211, 182, 230, 0.7);
}

/* Remove default triangle */
.faq-item summary::-webkit-details-marker {
    display: none;
}

/* QUESTION */
.faq-item__question {
    cursor: pointer;
    padding: 1.4rem 3.4rem 1.4rem 1.6rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--wnc-text-main-white);
    display: flex;
    align-items: center;
    position: relative;
}

/* CUSTOM +/- ICON */
.faq-item__question::after {
    content: "";
    position: absolute;
    right: 1.4rem;
    width: 1rem;
    height: 1rem;

    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);

    background:
        linear-gradient(90deg, #fff 45%, transparent 45%, transparent 55%, #fff 55%),
        linear-gradient(180deg, #fff 45%, transparent 45%, transparent 55%, #fff 55%);

    box-shadow: 0 0 12px rgba(255, 255, 255, 0.28);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

/* OPEN FAQ — turn plus into minus */
.faq-item[open] .faq-item__question::after {
    background:
        linear-gradient(90deg, #fff 45%, transparent 45%, transparent 55%, #fff 55%);
    transform: rotate(180deg);
    border-color: var(--wnc-lavender);
    box-shadow: 0 0 16px rgba(211, 182, 230, 0.55);
}

/* ANSWER */
.faq-item__answer {
    padding: 0 1.6rem 1.6rem;
    font-size: 0.97rem;
    line-height: 1.65;
    color: var(--wnc-text-main-white);

    background: rgba(2, 6, 23, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.faq-item__answer p {
    margin-top: 0.85rem;
}

/* RESPONSIVE */
@media (max-width: 640px) {
    .faq {
        padding: 4rem 1.25rem;
    }

    .faq-item__question {
        padding: 1.2rem 3rem 1.2rem 1.25rem;
    }

    .faq-item__answer {
        padding: 0 1.25rem 1.25rem;
    }
}

/* ========================================================================== */
/*  WEBNOVACRAFT — FINAL CTA SECTION                                          */
/* ========================================================================== */

.final-cta {
    padding: 6rem 1.5rem 6rem;
    background:
        radial-gradient(circle at 20% 0%, rgba(31, 66, 119, 0.06), transparent 60%),
        linear-gradient(180deg, #FFFFFF 0%, #F3F4F6 100%);
    text-align: center;
}

.final-cta__inner {
    max-width: 820px;
    margin: 0 auto;
}

/* TITLE */
.final-cta__title {
    font-size: clamp(2rem, 3vw, 2.7rem);
    font-weight: 800;
    color: var(--wnc-blue);
    margin-bottom: 1.2rem;

    /* 3D cosmic shadow */
    text-transform: uppercase;
    text-shadow:
        0 2px 3px rgba(0, 0, 0, 0.15),
        0 4px 12px rgba(31, 66, 119, 0.18),
        0 0 8px rgba(211, 182, 230, 0.25);
}

/* SUBTITLE */
.final-cta__subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(2, 6, 23, 0.68);
    max-width: 620px;
    margin: 0 auto 2.8rem;
}

/* CTA BUTTON WRAPPER */
.final-cta__actions {
    display: flex;
    justify-content: center;
}

/* BUTTON */
.final-cta__btn {
    padding-inline: 2rem;
    padding-block: 1rem;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
}

/* RESPONSIVE */
@media (max-width: 640px) {
    .final-cta {
        padding: 4rem 1.25rem 4rem;
    }

    .final-cta__btn {
        width: 100%;
        text-align: center;
    }
}

/* ========================================================================== */
/*  WEBNOVACRAFT — CONTACT PAGE                                               */
/* ========================================================================== */

.wnc-contact-page {
    background: var(--wnc-surface-light);
}

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

.contact-hero {
    background: var(--blue-gradient);
    color: var(--white);
    text-align: center;
    padding: 7rem 1.5rem 4.8rem;
    position: relative;
}

.contact-hero::before {
    content: "";
    position: absolute;

    /* CENTER IT */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    /* give it a real box */
    width: 800px;
    /* tweak */
    height: 800px;
    /* tweak, or 100% if you prefer full-height */

    background-image: url("https://webnovacraft.com/wp-content/uploads/2025/11/ill-contact.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    opacity: 0.1;
    /* adjust */
    pointer-events: none;
    z-index: 0;
}

@media (min-width: 768px) {
    .contact-hero {
        padding: 8rem 1.5rem 5.5rem;
    }
}

.contact-hero__inner {
    max-width: 900px;
    margin: 0 auto;
}

.contact-hero__eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--wnc-text-muted);
    margin-bottom: 0.9rem;
}

.contact-hero__title {
    font-size: clamp(2.1rem, 3.2vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
    text-transform: uppercase;
    text-shadow:
        0 2px 3px rgba(0, 0, 0, 0.25),
        0 4px 12px rgba(31, 66, 119, 0.25),
        0 0 8px rgba(211, 182, 230, 0.35);
}

.contact-hero__subtitle {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--wnc-text-main-white);
    opacity: 0.9;
    max-width: 640px;
    margin: 0.5rem auto 1.8rem;
}

/* meta pills under hero */

.contact-hero__meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: rgba(248, 250, 251, 0.9);
}

.contact-hero__meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.contact-hero__meta i {
    font-size: 0.9rem;
}

/* ========== CONTACT BODY ========== */

.contact-section {
    padding: 4.8rem 1.5rem 5.8rem;
}

.contact-section__inner {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
    gap: 3.2rem;
    align-items: flex-start;
}

/* Left intro copy */

.contact-section__intro {
    color: var(--wnc-text-main-dark);
    font-size: 0.97rem;
    line-height: 1.8;
}

/* headings */

.contact-section__heading {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--wnc-blue);
    margin-bottom: 1.1rem;
}

.contact-section__subheading {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--wnc-blue);
    margin: 1.8rem 0 0.8rem;
}

/* steps list */

.contact-steps {
    list-style: none;
    padding: 0;
    margin: 0 0 1.6rem;
}

.contact-steps li {
    margin-bottom: 1.1rem;
}

.contact-steps li strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.97rem;
    color: var(--wnc-blue);
}

.contact-steps li p {
    margin: 0;
    font-size: 0.94rem;
    color: rgba(15, 23, 42, 0.78);
}

/* bullets */

.contact-section__bullets {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0 1.3rem;
}

.contact-section__bullets li {
    position: relative;
    padding-left: 1.35rem;
    margin-bottom: 0.45rem;
    font-size: 0.94rem;
}

.contact-section__bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--wnc-lavender-dark);
}

.contact-section__note {
    font-size: 0.94rem;
    color: rgba(15, 23, 42, 0.75);
    margin-top: 0.4rem;
}

.contact-section__email {
    margin-top: 1.3rem;
    font-size: 0.93rem;
    color: rgba(15, 23, 42, 0.8);
}

.contact-section__email a {
    color: var(--wnc-blue);
    text-decoration: underline;
    text-decoration-thickness: 1px;
}

/* ========== FORM CARD ========== */

.contact-section__form-card {
    position: relative;
    border-radius: 20px;
    padding: 2.6rem 2.3rem 2.2rem;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

/* Form card header */

.contact-form__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--wnc-blue);
    margin: 0 0 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.contact-form__subtitle {
    font-size: 0.94rem;
    color: rgba(15, 23, 42, 0.7);
    margin: 0 0 1.6rem;
}

/* WPForms styling */

.contact-section__form-card .wpforms-form {
    margin: 0;
    position: relative;
    z-index: 1;
}

.contact-section__form-card .wpforms-field-label {
    font-family: var(--font-body) !important;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--wnc-blue);
    margin-bottom: 0.35rem;
}

.contact-section__form-card .wpforms-required-label {
    color: #f97373;
}

.contact-section__form-card .wpforms-field input[type="text"],
.contact-section__form-card .wpforms-field input[type="email"],
.contact-section__form-card .wpforms-field input[type="tel"],
.contact-section__form-card .wpforms-field textarea {
    width: 100%;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.18);
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
    font-family: var(--font-body);
    color: var(--wnc-text-main-dark);
    background: rgba(248, 250, 252, 0.9);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
    transition:
        border-color 0.18s ease,
        box-shadow 0.18s ease,
        background-color 0.18s ease,
        transform 0.12s ease;
}

.contact-section__form-card .wpforms-field textarea {
    border-radius: 18px;
    min-height: 180px;
    resize: vertical;
}

.contact-section__form-card .wpforms-field input:focus,
.contact-section__form-card .wpforms-field textarea:focus {
    outline: none;
    border-color: rgba(159, 135, 175, 0.95);
    background: #ffffff;
    box-shadow:
        0 0 0 1px rgba(159, 135, 175, 0.5),
        0 10px 26px rgba(15, 23, 42, 0.18);
    transform: translateY(-1px);
}

.contact-section__form-card .wpforms-field {
    margin-bottom: 1.3rem;
}

.contact-section__form-card .wpforms-field-hcaptcha,
.contact-section__form-card .wpforms-field-recaptcha,
.contact-section__form-card .wpforms-field-gdpr {
    margin-top: 0.8rem;
    margin-bottom: 1.5rem;
}

.contact-section__form-card .wpforms-submit-container {
    margin-top: 0.5rem;
}

.contact-section__form-card .wpforms-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.8rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
    background: var(--wnc-lavender-dark);
    color: var(--wnc-text-main-white);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}

.contact-section__form-card .wpforms-submit:hover {
    background: var(--wnc-lavender-dark);
    transform: translateY(-2px);
    box-shadow:
        0 15px 32px rgba(0, 0, 0, 0.50),
        0 0 12px rgba(211, 182, 230, 0.45);
    border-color: rgba(233, 215, 245, 0.60);
}

.contact-section__form-card .wpforms-error {
    color: #e11d48;
    font-size: 0.85rem;
}

.contact-section__form-card .wpforms-confirmation-container-full {
    border-radius: 14px;
    padding: 1rem 1.1rem;
    background: rgba(22, 163, 74, 0.08);
    border: 1px solid rgba(22, 163, 74, 0.2);
    color: #065f46;
    font-size: 0.95rem;
}

/* ========== RESPONSIVE ========== */

@media (max-width: 900px) {
    .contact-section__inner {
        grid-template-columns: 1fr;
        gap: 2.6rem;
    }

    .contact-section__intro {
        order: -1;
    }
}

@media (max-width: 640px) {
    .contact-hero {
        padding: 6rem 1.25rem 3.8rem;
    }

    .contact-section {
        padding: 3.8rem 1.25rem 4.2rem;
    }

    .contact-section__form-card {
        padding: 2.1rem 1.7rem 1.9rem;
    }
}

/* ========================================================================== */
/*  WEBNOVACRAFT — SERVICE DETAIL PAGE ONLY                                   */
/* ========================================================================== */

.wnc-service-page {
    background: var(--wnc-surface-light);
}

/* ========== MINI HERO (SERVICE) ========== */

.service-hero {
    background: var(--blue-gradient);
    color: var(--white);
    text-align: center;
    padding: 8rem 1.5rem 5rem;
    /* enough space below transparent header */
    position: relative;
}

.hero-dev::before {
    content: "";
    position: absolute;

    /* CENTER IT */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    /* give it a real box */
    width: 800px;
    /* tweak */
    height: 800px;
    /* tweak, or 100% if you prefer full-height */

    background-image: url("https://webnovacraft.com/wp-content/uploads/2025/11/ill-hero-webdev.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    opacity: 0.07;
    /* adjust */
    pointer-events: none;
    z-index: 0;
}

@media (max-width: 768px) {
    .service-hero {
        padding: 7rem 1.25rem 4rem;
    }
}

.service-hero__inner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.service-hero__eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--wnc-text-muted);
    margin-bottom: 0.8rem;
}

.service-hero__title {
    font-size: clamp(2.4rem, 3.6vw, 3.1rem);
    font-weight: 800;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    color: var(--white);
    text-shadow:
        0 2px 3px rgba(0, 0, 0, 0.25),
        0 4px 12px rgba(31, 66, 119, 0.25),
        0 0 8px rgba(211, 182, 230, 0.35);
}

.service-hero__subtitle {
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--wnc-text-main-white);
    opacity: 0.9;
    max-width: 680px;
    margin: 0 auto 2rem;
}

.service-hero__meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.9rem;
    font-size: 0.9rem;
    color: rgba(248, 250, 251, 0.9);
}

.service-hero__meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.service-hero__meta i {
    font-size: 0.9rem;
}

/* ========== GENERIC SERVICE SECTION WRAPPER ========== */

.service-section {
    padding: 4.7rem 1.5rem 0;
}

.service-section:last-of-type {
    padding-bottom: 5.5rem;
}

@media (max-width: 640px) {
    .service-section {
        padding: 3.8rem 1.25rem 0;
    }
}

.service-section__title {
    font-size: clamp(1.7rem, 2.6vw, 2.1rem);
    font-weight: 800;
    color: var(--wnc-blue);
    margin-bottom: 1.4rem;
    text-transform: uppercase;
    text-shadow:
        0 2px 3px rgba(0, 0, 0, 0.12),
        0 4px 10px rgba(31, 66, 119, 0.15),
        0 0 6px rgba(211, 182, 230, 0.25);
}

.service-section__title--center {
    text-align: center;
    margin-bottom: 2.2rem;
}

.service-section__subtitle {
    max-width: 640px;
    margin: 0 auto 2.6rem;
    text-align: center;
    font-size: 1rem;
    color: rgba(15, 23, 42, 0.7);
}

/* ========== 1. OVERVIEW BLOCK ========== */

.service-overview__inner {
    max-width: 1120px;
    margin: 0 auto;
}

.service-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
    gap: 3rem;
    align-items: flex-start;
}

.service-overview__content {
    font-size: 0.98rem;
    line-height: 1.85;
    color: rgba(15, 23, 42, 0.9);
}

.service-overview__content p+p {
    margin-top: 0.85rem;
}

/* right side small info panel */

.service-overview__aside {
    background: #ffffff;
    border-radius: 18px;
    padding: 1.9rem 1.8rem;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.04);
}

.service-overview__photo {
    margin: 0 0 1.6rem;
    border-radius: 18px;
    overflow: hidden;
    box-shadow:
        0 18px 40px rgba(15, 23, 42, 0.18),
        0 0 0 1px rgba(148, 163, 184, 0.18);
    background: #0b1120;
    /* subtle fallback if image fails */
}

.service-overview__photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.service-stat+.service-stat {
    margin-top: 1.3rem;
}

.service-stat__label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--wnc-blue);
    margin-bottom: 0.45rem;
}

.service-stat__value {
    font-size: 0.95rem;
    color: rgba(15, 23, 42, 0.8);
    margin: 0;
}

.service-stat__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-stat__list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: rgba(15, 23, 42, 0.8);
    margin-bottom: 0.4rem;
}

.service-stat__list i {
    font-size: 0.9rem;
    color: var(--wnc-lavender-dark);
}

/* ========== 2. FEATURES (WHAT'S INCLUDED) ========== */

.service-features__grid {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.9rem;
}

.service-feature {
    background: rgba(255, 255, 255, 0.96);
    border-radius: 18px;
    padding: 1.9rem 1.7rem 1.8rem;
    box-shadow:
        0 16px 40px rgba(15, 23, 42, 0.08),
        0 0 0 1px rgba(159, 135, 175, 0.12);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    text-align: center;
}

.service-feature:hover {
    transform: translateY(-6px);
    box-shadow:
        0 26px 70px rgba(15, 23, 42, 0.16),
        0 0 0 1px rgba(233, 215, 245, 0.45);
}

.service-feature__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.3rem auto;
    border-radius: 18px;
    background: rgba(159, 135, 175, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-feature__icon i {
    font-size: 2rem;
    color: var(--wnc-lavender-dark);
}

.service-feature__title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.55rem;
    color: var(--wnc-blue);
    text-align: center;
}

.service-feature__text {
    font-size: 0.96rem;
    line-height: 1.7;
    color: rgba(15, 23, 42, 0.78);
    text-align: center;
}

/* PROCESS SECTION (NEW STYLE) */
.service-process {
    background: var(--blue-gradient);
    padding: 6rem 1.5rem 6rem;
    color: var(--white);
    text-align: center;
    margin-top: 4rem;
}



/* Title */
.service-process .service-section__title {
    color: var(--white);
    text-shadow:
        0 12px 28px rgba(0, 0, 0, 0.55),
        0 0 20px rgba(211, 182, 230, 0.35);
}

.service-process .service-section__subtitle {
    color: rgba(255, 255, 255, 0.85);
}

/* GRID */
.service-process__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

/* GLASS CARDS */
.process-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 20px;
    padding: 2.2rem 1.8rem 2rem;
    text-align: left;

    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.55),
        inset 0 0 18px rgba(211, 182, 230, 0.35);

    transition: transform 0.2s ease, box-shadow 0.25s ease;
}

.process-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(211, 182, 230, 0.55);
}

/* NUMBERS */
.process-card__number {
    font-size: 1.1rem;
    font-weight: 700;
    opacity: 0.8;
    letter-spacing: 0.15em;
    margin-bottom: 1.1rem;
    color: var(--white);
}

/* TITLES & TEXT */
.process-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    color: var(--white);
}

.process-card__text {
    font-size: 0.98rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
}

/* RESPONSIVE */
@media (max-width: 980px) {
    .service-process__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .service-process__grid {
        grid-template-columns: 1fr;
    }

    .process-card {
        padding: 1.9rem 1.5rem 1.7rem;
    }
}

/* ============================================
   TECH STACK SECTION
   ============================================ */

.service-stack {
    padding: 4rem 0 4rem;
}

.service-stack__inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.service-section__title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--wnc-blue);
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 1.8rem;
}

.service-stack__intro {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(15, 23, 42, 0.82);
    margin-bottom: 1.3rem;
    max-width: 60rem;
}

/* ===============================
   GRID OF TECHNOLOGIES
   =============================== */

.service-stack__grid {
    margin-top: 2.6rem;

    display: flex;
    justify-content: flex-start;
    gap: 3rem 3.4rem;
    /* row, column spacing */
    flex-wrap: wrap;
}

/* Each technology item */
.service-stack__item {
    min-width: 130px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;

    text-align: center;
}

/* Big lavender icons */
.service-stack__item i {
    font-size: 2.9rem;
    color: var(--wnc-lavender-dark);

    /* subtle glowing premium shadow */
    text-shadow:
        0 12px 28px rgba(0, 0, 0, 0.28),
        0 0 12px rgba(211, 182, 230, 0.45);
}

/* Label under logo */
.service-stack__label {
    font-size: 0.94rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--wnc-blue);
}

/* ===============================
   HOVER EFFECTS (premium subtle)
   =============================== */

.service-stack__item:hover i {
    transform: translateY(-3px);
    transition: 0.25s ease;
    text-shadow:
        0 15px 32px rgba(0, 0, 0, 0.35),
        0 0 16px rgba(211, 182, 230, 0.6);
}

.service-stack__item i,
.service-stack__label {
    transition: 0.25s ease;
}

/* ===============================
   RESPONSIVE
   =============================== */

@media (max-width: 900px) {
    .service-stack__grid {
        justify-content: center;
        gap: 2.5rem 2rem;
    }

    .service-stack__item {
        min-width: 110px;
    }
}

@media (max-width: 640px) {
    .service-stack__item i {
        font-size: 2.4rem;
    }
}

/* ========== 5. CTA SECTION AT THE END ========== */

.service-cta {
    padding: 5rem 1.5rem 5.5rem;
}

@media (max-width: 640px) {
    .service-cta {
        padding: 4rem 1.25rem 4.5rem;
    }
}

.service-cta__inner {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    background:
        radial-gradient(circle at 20% 0%, rgba(31, 66, 119, 0.06), transparent 60%),
        linear-gradient(180deg, #FFFFFF 0%, #F3F4F6 100%);
    border-radius: 22px;
    padding: 2.7rem 2.3rem 2.6rem;
    box-shadow:
        0 22px 60px rgba(15, 23, 42, 0.14),
        0 0 0 1px rgba(148, 163, 184, 0.18);
}

.service-cta__title {
    font-size: clamp(1.8rem, 2.7vw, 2.2rem);
    font-weight: 800;
    color: var(--wnc-blue);
    margin-bottom: 1rem;
    text-transform: uppercase;
    text-shadow:
        0 2px 3px rgba(0, 0, 0, 0.15),
        0 4px 10px rgba(31, 66, 119, 0.18),
        0 0 6px rgba(211, 182, 230, 0.25);
}

.service-cta__text {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(15, 23, 42, 0.7);
    max-width: 620px;
    margin: 0 auto 2rem;
}

.service-cta__actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-cta__actions .md-btn {
    min-width: 180px;
}

/* ========== 6. RELATED SERVICES CARDS ========== */

.service-related {
    padding: 0 1.5rem 5.5rem;
}

@media (max-width: 640px) {
    .service-related {
        padding: 0 1.25rem 4.5rem;
    }
}

.service-related__inner {
    max-width: 1120px;
    margin: 0 auto;
}

.service-related__header {
    display: flex;
    flex-direction: column;
    /* stack title + subtitle */
    align-items: flex-start;
    /* left align both */
    gap: 0.4rem;
    margin-bottom: 2.4rem;
}

.service-related__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--wnc-blue);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.service-related__subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(15, 23, 42, 0.65);
    max-width: 46rem;
    /* keeps it from going super wide */
}

.service-related__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.2rem;
    /* more breathing room like homepage */
}


.service-related__grid .service-card {
    min-height: 230px;
}

/* ========== RESPONSIVE LAYOUT TWEAKS ========== */

@media (max-width: 980px) {
    .service-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .service-features__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-process__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-related__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .service-layout {
        gap: 2rem;
    }

    .service-features__grid,
    .service-process__grid,
    .service-related__grid {
        grid-template-columns: 1fr;
    }

    .service-overview__aside {
        padding: 1.7rem 1.5rem;
    }

    .service-feature,
    .service-process-step {
        padding: 1.7rem 1.5rem 1.6rem;
    }

    .service-cta__inner {
        padding: 2.3rem 1.6rem 2.2rem;
    }
}


/* Hero variant for E-commerce service
   (reuses .service-hero base styles) */

.hero-ecom {
    position: relative;
}

.hero-ecom::before {
    content: "";
    position: absolute;

    /* CENTER IT */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    /* give it a real box */
    width: 1000px;
    /* tweak */
    height: 1000px;
    /* tweak, or 100% if you prefer full-height */

    background-image: url("https://webnovacraft.com/wp-content/uploads/2025/11/ill-hero-ecom.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    opacity: 0.1;
    /* adjust */
    pointer-events: none;
    z-index: 0;
}


/* keep hero content above the background image */
.hero-ecom .service-hero__inner {
    position: relative;
    z-index: 1;
}


/* ========================================================================== */
/*  WEBNOVACRAFT — LANDING PAGES SERVICE HERO                                 */
/* ========================================================================== */

/* Variant of the service hero for Landing Pages */
.hero-landing {
    position: relative;
}

/* Background illustration (subtle, like other services) */
.hero-landing::before {
    content: "";
    position: absolute;

    /* CENTER IT */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    /* give it a real box */
    width: 800px;
    /* tweak */
    height: 800px;
    /* tweak, or 100% if you prefer full-height */

    background-image: url("https://webnovacraft.com/wp-content/uploads/2025/11/ill-hero-landing-e1763657222790.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    opacity: 0.05;
    /* adjust */
    pointer-events: none;
    z-index: 0;
}

/* Keep inner content above illustration */
.hero-landing .service-hero__inner {
    position: relative;
    z-index: 1;
}

/* Optional: tiny tweak so landing stack icons glow a bit more */
.wnc-service-page--landing .service-stack__item i {
    text-shadow:
        0 12px 28px rgba(0, 0, 0, 0.28),
        0 0 16px rgba(211, 182, 230, 0.6);
}


/* ========================================================================== */
/*  WEBNOVACRAFT — SEO & ANALYTICS SERVICE HERO                               */
/* ========================================================================== */

.hero-seo {
    position: relative;
}

.hero-seo::before {
    content: "";
    position: absolute;

    /* CENTER IT */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    /* give it a real box */
    width: 750px;
    /* tweak */
    height: 750px;
    /* tweak, or 100% if you prefer full-height */

    background-image: url("https://webnovacraft.com/wp-content/uploads/2025/11/ill-hero-analytics.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    opacity: 0.08;
    /* adjust */
    pointer-events: none;
    z-index: 0;
}

.hero-seo .service-hero__inner {
    position: relative;
    z-index: 1;
}

/* optional: tiny tweak to make SEO icons glow a bit more */
.wnc-service-page--seo .service-stack__item i {
    text-shadow:
        0 12px 28px rgba(0, 0, 0, 0.28),
        0 0 16px rgba(211, 182, 230, 0.6);
}


/* ========================================================================== */
/*  WEBNOVACRAFT — FIGMA → WEBSITE SERVICE HERO                               */
/* ========================================================================== */

.hero-figma {
    position: relative;
}

.hero-figma::before {
    content: "";
    position: absolute;

    /* CENTER IT */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    /* give it a real box */
    width: 800px;
    /* tweak */
    height: 800px;
    /* tweak, or 100% if you prefer full-height */

    background-image: url("https://webnovacraft.com/wp-content/uploads/2025/11/ill-hero-figma.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    opacity: 0.1;
    /* adjust */
    pointer-events: none;
    z-index: 0;
}

.hero-figma .service-hero__inner {
    position: relative;
    z-index: 1;
}

/* tiny extra glow if you want this page to feel a bit "designy" */

.wnc-service-page--figma .service-feature__icon i,
.wnc-service-page--figma .service-stack__item i {
    text-shadow:
        0 12px 28px rgba(0, 0, 0, 0.28),
        0 0 16px rgba(211, 182, 230, 0.6);
}

/* ========================================================================== */
/*  WEBNOVACRAFT — MAINTENANCE & WEBSITE CARE HERO                            */
/* ========================================================================== */

.hero-maint {
    position: relative;
}

.hero-maint::before {
    content: "";
    position: absolute;

    /* CENTER IT */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    /* give it a real box */
    width: 800px;
    /* tweak */
    height: 800px;
    /* tweak, or 100% if you prefer full-height */

    background-image: url("https://webnovacraft.com/wp-content/uploads/2025/11/ill-hero-maintenance.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    opacity: 0.1;
    /* adjust */
    pointer-events: none;
    z-index: 0;
}

.hero-maint .service-hero__inner {
    position: relative;
    z-index: 1;
}

/* optional: slightly softer icon glow just for this page */

.wnc-service-page--maintenance .service-feature__icon i,
.wnc-service-page--maintenance .service-stack__item i {
    text-shadow:
        0 10px 24px rgba(0, 0, 0, 0.25),
        0 0 12px rgba(211, 182, 230, 0.45);
}


/* ================================
   BACK TO TOP BUTTON — WEBNOVACRAFT
===================================*/

.wnc-back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;

    width: 52px;
    height: 52px;

    background: var(--wnc-lavender-dark);
    color: var(--white);

    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    opacity: 0;
    pointer-events: none;

    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;

    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
    z-index: 9999;
}

/* Visible state */
.wnc-back-to-top.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Hover glow */
.wnc-back-to-top:hover {

    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.55),
        0 0 14px rgba(159, 135, 175, 0.6),
        0 0 32px rgba(159, 135, 175, 0.4);
    transform: translateY(-3px);
}

/* ==========================================
   WEBNOVACRAFT — BREADCRUMBS (LIGHT THEME)
========================================== */

/* Strip (space below hero stays the same) */
.wnc-breadcrumbs-strip {
    padding: 1rem 0 0;
    /* slightly reduced */
    background: transparent;
}

/* WRAPPER */
.wnc-breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    /* slightly tighter */

    padding: 0.45rem 1.1rem;
    /* MUCH smaller height */
    background: var(--wnc-lavender-dark);
    border-radius: 999px;

    font-size: 0.68rem;
    /* smaller font */
    letter-spacing: 0.06em;
    text-transform: uppercase;

    color: var(--wnc-text-main-white);

    /* Softer shadow */
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.10);
}

/* LINKS */
.wnc-breadcrumbs a {
    color: var(--wnc-text-main-white);
    opacity: 0.55;
    /* slightly softer base */
    text-decoration: none;
    transition: opacity .2s ease, color .2s ease;
}

/* Hover turns text fully white */
.wnc-breadcrumbs a:hover {
    opacity: 1;
    color: #ffffff;
}

/* Separator */
.wnc-breadcrumbs .sep {
    opacity: 0.35;
}

/* Current page */
.wnc-breadcrumbs .current {
    color: #ffffff;
    font-weight: 600;
    opacity: 1;
}


/* ========================================================================== */
/*  WEBNOVACRAFT — CONTACT QUICK INFO STRIP (HOW-STEP STYLE)                  */
/* ========================================================================== */

.contact-quick {
    background: var(--wnc-surface-light);
    padding: 3.2rem 1.5rem 0;
}

.contact-quick__inner {
    max-width: 1120px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.4rem;
}

/* CARD — mirrors .how-step */

.contact-quick__card {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(159, 135, 175, 0.25);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.10),
        inset 0 0 0.6rem rgba(211, 182, 230, 0.15);

    border-radius: 18px;
    padding: 2.1rem 1.8rem 2rem;
    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;

    transition: transform 0.2s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.contact-quick__card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 28px 80px rgba(31, 66, 119, 0.25),
        0 0 0 1px rgba(233, 215, 245, 0.45);
    border-color: rgba(233, 215, 245, 0.55);
}

/* ICON — same feel as .how-step__icon */

.contact-quick__icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 1.1rem;

    border-radius: 14px;
    background: rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow:
        0 5px 18px rgba(0, 0, 0, 0.50),
        inset 0 0 12px rgba(211, 182, 230, 0.35);
}

.contact-quick__icon i {
    font-size: 1.5rem;
    color: var(--wnc-lavender-dark);
}

/* LABEL — eyebrow text */

.contact-quick__label {
    margin: 0 0 0.3rem;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(2, 6, 23, 0.55);
}

/* MAIN LINE (number/email/hours) */

.contact-quick__main {
    margin: 0;
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--wnc-blue);
}

/* links look like premium text, not default anchors */

.contact-quick__main.contact-quick__main,
.contact-quick__card a.contact-quick__main {
    text-decoration: none;
    color: var(--wnc-blue);
    border-bottom: 1px solid transparent;
    transition: color 0.18s ease, border-color 0.18s ease;
}

.contact-quick__card a.contact-quick__main:hover {
    color: var(--wnc-lavender-dark);
    border-bottom-color: rgba(159, 135, 175, 0.55);
}

/* HINT TEXT */

.contact-quick__hint {
    margin: 0.55rem 0 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(2, 6, 23, 0.7);
}

/* ================== RESPONSIVE ================== */

@media (max-width: 980px) {
    .contact-quick__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .contact-quick {
        padding: 2.8rem 1.25rem 0;
    }

    .contact-quick__inner {
        grid-template-columns: 1fr;
        gap: 1.7rem;
    }

    .contact-quick__card {
        padding: 2rem 1.6rem 1.8rem;
    }
}

/* ========================================================================== */
/*  WEBNOVACRAFT — COSMIC FOOTER                                             */
/* ========================================================================== */

.wnc-footer {
    background: var(--blue-gradient);
    color: var(--wnc-text-main-white);
    padding: 3.8rem 1.5rem 3rem;
    /* smaller bottom padding */
    font-size: 0.9rem;
}

.wnc-footer__inner {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 1.05fr;
    gap: 2.8rem;
}

/* Brand column */

.wnc-footer__logo {
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--wnc-lavender);
    margin: 0 0 0.7rem;
}

.wnc-footer__tagline {
    color: var(--wnc-text-muted);
    margin: 0 0 0.6rem;
}

.wnc-footer__location {
    font-size: 0.85rem;
    color: rgba(226, 232, 240, 0.8);
    margin: 0;
}

/* logo mark under the text */

.wnc-footer__logo-mark {
    margin-top: 1.4rem;
}

.wnc-footer__logo-mark img {
    display: block;
    height: 100px;
    /* control size here */
    width: auto;
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.55));
}

/* Column headings */

.wnc-footer__heading {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--wnc-text-muted);
    margin: 0 0 0.9rem;
}

.wnc-footer__heading--sub {
    margin-top: 1.6rem;
}

/* Lists */

.wnc-footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.wnc-footer__list li {
    margin-bottom: 0.4rem;
}

.wnc-footer__list a {
    color: rgba(226, 232, 240, 0.9);
    text-decoration: none;
    transition: color 0.2s ease, text-shadow 0.2s ease, transform 0.15s ease;
}

.wnc-footer__list a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(211, 182, 230, 0.7);
    transform: translateY(-1px);
}

/* CONTACT LIST WITH ICONS */

.wnc-footer__list--contact {
    margin-top: 0.1rem;
}

.wnc-footer__list--contact li {
    margin-bottom: 0.55rem;
}

.wnc-footer__contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: rgba(226, 232, 240, 0.9);
    text-decoration: none;
    transition: color 0.2s ease, text-shadow 0.2s ease, transform 0.15s ease;
}

.wnc-footer__contact-link:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(211, 182, 230, 0.7);
    transform: translateY(-1px);
}

.wnc-footer__contact-icon {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(148, 163, 184, 0.6);
    box-shadow:
        0 5px 18px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(15, 23, 42, 0.6);
    flex-shrink: 0;
}

.wnc-footer__contact-icon i {
    font-size: 0.95rem;
    color: var(--wnc-lavender-dark);
}

.wnc-footer__contact-text {
    font-size: 0.9rem;
}

/* Bottom strip */

/* Copyright bar — totally separate from footer */
.wnc-copyright-bar {
    background: var(--blue-gradient);
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    padding: 0.6rem 0 0.6rem;
    /* perfectly centered vertically */
}

.wnc-copyright-bar p {
    margin: 0;
    text-align: center;
    font-size: 0.78rem;
    line-height: 1.4;
    color: rgba(148, 163, 184, 0.85);
}


/* Responsive */

@media (max-width: 980px) {
    .wnc-footer__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 2.4rem;
    }
}

@media (max-width: 640px) {
    .wnc-footer {
        padding: 3rem 1.25rem 1.5rem;
    }

    .wnc-footer__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .wnc-footer__logo-mark {
        margin-top: 1.1rem;
    }
}

/* ========================================================================== */
/*  WEBNOVACRAFT — LEGAL PAGES (Privacy, Cookies, Terms)                      */
/* ========================================================================== */

/* PAGE WRAPPER */
.wnc-legal-page {
    background: var(--wnc-surface-light);
}

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

.legal-hero {
    background: var(--blue-gradient);
    color: var(--white);
    text-align: center;
    padding: 8rem 1.5rem 5rem;
    position: relative;
}

@media (max-width: 768px) {
    .legal-hero {
        padding: 7rem 1.25rem 4rem;
    }
}

.legal-hero__inner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.legal-hero__eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--wnc-text-muted);
    margin-bottom: 0.9rem;
}

.legal-hero__title {
    font-size: clamp(2.1rem, 3.2vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
    text-transform: uppercase;
    text-shadow:
        0 2px 3px rgba(0, 0, 0, 0.25),
        0 4px 12px rgba(31, 66, 119, 0.25),
        0 0 8px rgba(211, 182, 230, 0.35);
}

.legal-hero__subtitle {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--wnc-text-main-white);
    opacity: 0.9;
    max-width: 640px;
    margin: 0.5rem auto 1.8rem;
}

.legal-hero__meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: rgba(248, 250, 251, 0.9);
}

.legal-hero__meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.legal-hero__meta i {
    font-size: 0.9rem;
}

/* ========== LEGAL BODY ========== */

.legal-body {
    padding: 4.5rem 1.5rem 5.5rem;
}

.legal-body__inner {
    max-width: 820px;
    margin: 0 auto;
}

@media (max-width: 640px) {
    .legal-body {
        padding: 3.5rem 1.25rem 4rem;
    }
}

/* ========== LEGAL BLOCK (each numbered section) ========== */

.legal-block {
    margin-bottom: 2.8rem;
    padding: 2.2rem 2.3rem 2rem;
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(159, 135, 175, 0.2);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.06),
        inset 0 0 0.6rem rgba(211, 182, 230, 0.1);

    transition: transform 0.18s ease-out,
        box-shadow 0.18s ease-out,
        border-color 0.18s ease-out;
}

.legal-block:last-child {
    margin-bottom: 0;
}

.legal-block:hover {
    transform: translateY(-4px);
    box-shadow:
        0 24px 60px rgba(31, 66, 119, 0.14),
        0 0 0 1px rgba(233, 215, 245, 0.35);
    border-color: rgba(233, 215, 245, 0.45);
}

@media (max-width: 640px) {
    .legal-block {
        padding: 1.8rem 1.5rem 1.6rem;
        margin-bottom: 2rem;
    }
}

/* BLOCK TITLE */
.legal-block__title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--wnc-blue);
    margin: 0 0 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-shadow:
        0 2px 3px rgba(0, 0, 0, 0.08),
        0 4px 10px rgba(31, 66, 119, 0.1),
        0 0 6px rgba(211, 182, 230, 0.15);
}

/* BLOCK SUBTITLE (e.g. 3.1, 7.2) */
.legal-block__subtitle {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--wnc-blue);
    margin: 1.6rem 0 0.7rem;
}

/* BLOCK CONTENT — prose styling */
.legal-block__content {
    font-size: 0.96rem;
    line-height: 1.75;
    color: rgba(15, 23, 42, 0.85);
}

.legal-block__content p {
    margin: 0 0 0.85rem;
}

.legal-block__content p:last-child {
    margin-bottom: 0;
}

.legal-block__content strong {
    color: var(--wnc-blue);
    font-weight: 600;
}

.legal-block__content a {
    color: var(--wnc-lavender-dark);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    transition: color 0.18s ease;
}

.legal-block__content a:hover {
    color: var(--wnc-blue);
}

/* LISTS inside legal blocks */
.legal-block__content ul {
    list-style: none;
    padding: 0;
    margin: 0.6rem 0 1rem;
}

.legal-block__content ul li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.5rem;
    font-size: 0.96rem;
    line-height: 1.65;
}

.legal-block__content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--wnc-lavender-dark);
}

/* ========== COOKIE TABLE ========== */

.legal-table-wrap {
    overflow-x: auto;
    margin: 1.2rem 0 1.5rem;
    border-radius: 14px;
    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(159, 135, 175, 0.12);
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.85);
}

.legal-table thead {
    background: var(--wnc-blue);
    color: var(--white);
}

.legal-table th {
    padding: 0.85rem 1.1rem;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: left;
    white-space: nowrap;
}

.legal-table th:first-child {
    border-radius: 14px 0 0 0;
}

.legal-table th:last-child {
    border-radius: 0 14px 0 0;
}

.legal-table td {
    padding: 0.75rem 1.1rem;
    color: rgba(15, 23, 42, 0.82);
    border-bottom: 1px solid rgba(159, 135, 175, 0.12);
}

.legal-table tbody tr:last-child td {
    border-bottom: none;
}

.legal-table tbody tr:hover {
    background: rgba(211, 182, 230, 0.08);
}

/* Make table responsive on small screens */
@media (max-width: 640px) {

    .legal-table th,
    .legal-table td {
        padding: 0.65rem 0.8rem;
        font-size: 0.84rem;
    }
}



/* ========== HERO — TABLET FIX (iPad) ========== */
@media (min-width: 768px) and (max-width: 1024px) {
    .wnc-hero__content {
        max-width: 80%;
        padding-top: 0;
    }

    .wnc-hero__title {
        font-size: clamp(2.8rem, 5.5vw, 3.8rem);
    }

    .wnc-hero__subtitle {
        font-size: 1.1rem;
        max-width: 100%;
    }
}