/* =========================================================
   Weblab PH — v3 Design System (Bold Dark Tech)
   ========================================================= */

:root {
    /* Surfaces */
    --bg: #0A0A0F;
    --bg-elev: #12121A;
    --bg-elev-2: #1A1A25;
    --bg-hover: #20202E;

    /* Lines */
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.16);

    /* Text */
    --heading: #FFFFFF;
    --text: #F4F4F7;
    --text-muted: #A6A6B2;
    --text-dim: #8C8C97;

    /* Brand */
    --accent: #F5A019;
    --accent-hover: #FFB63F;
    --accent-press: #DB8B0C;
    --accent-soft: rgba(245, 160, 25, 0.12);
    --accent-glow: rgba(245, 160, 25, 0.28);

    /* Chrome */
    --nav-bg: rgba(10, 10, 15, 0.8);
    --logo-dark: block;
    --logo-light: none;

    /* Type */
    --font-head: 'Space Grotesk', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;

    /* Metrics */
    --container: 1200px;
    --radius: 14px;
    --radius-lg: 22px;
    --nav-h: 76px;
}

/* ---------- Light theme ---------- */
:root[data-theme="light"] {
    --bg: #FBFBF9;
    --bg-elev: #FFFFFF;
    --bg-elev-2: #F3F3EF;
    --bg-hover: #ECECE6;

    --border: rgba(17, 17, 22, 0.10);
    --border-strong: rgba(17, 17, 22, 0.20);

    --heading: #14141B;
    --text: #23232B;
    --text-muted: #4E4E58;
    --text-dim: #6A6A74;

    --accent: #E8940D;
    --accent-hover: #CC810A;
    --accent-press: #B47209;
    --accent-soft: rgba(232, 148, 13, 0.12);
    --accent-glow: rgba(232, 148, 13, 0.22);

    --nav-bg: rgba(255, 255, 255, 0.82);
    --logo-dark: none;
    --logo-light: block;
}

:root[data-theme="light"] body {
    background:
        radial-gradient(ellipse 70% 40% at 50% -5%, rgba(232, 148, 13, 0.07), transparent 70%),
        var(--bg);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin: 0 0 .5em;
    color: var(--heading);
}

p {
    margin: 0 0 1rem;
    color: var(--text-muted);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color .2s ease;
}

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

/* ---------- Layout helpers ---------- */
.wl-container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.wl-section {
    padding: 110px 0;
    position: relative;
}

.wl-section--tight {
    padding: 80px 0;
}

.wl-section--alt {
    background: var(--bg-elev);
}

.wl-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--accent);
    padding: 7px 14px;
    border: 1px solid var(--accent-soft);
    border-radius: 100px;
    background: var(--accent-soft);
    margin-bottom: 22px;
}

.wl-eyebrow::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent-glow);
}

.wl-section-head {
    max-width: 720px;
    margin-bottom: 60px;
}

.wl-section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.wl-section-head h2 {
    font-size: clamp(30px, 4vw, 46px);
}

.wl-section-head p {
    font-size: 18px;
    margin-bottom: 0;
}

.wl-accent {
    color: var(--accent);
}

/* Subtle grid / glow background */
.wl-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 60px 60px;
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
    mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
    opacity: .5;
    pointer-events: none;
    z-index: 0;
}

/* ---------- Buttons ---------- */
.wl-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 26px;
    border-radius: 100px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all .2s ease;
    white-space: nowrap;
}

.wl-btn--primary {
    background: var(--accent);
    color: #1a1206;
    box-shadow: 0 8px 30px -8px var(--accent-glow);
}

.wl-btn--primary:hover {
    background: var(--accent-hover);
    color: #1a1206;
    transform: translateY(-2px);
    box-shadow: 0 14px 40px -10px var(--accent-glow);
}

.wl-btn--ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--border-strong);
}

.wl-btn--ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.wl-btn--lg {
    padding: 17px 34px;
    font-size: 16px;
}

.wl-btn .arw {
    transition: transform .2s ease;
}

.wl-btn:hover .arw {
    transform: translateX(4px);
}

/* ---------- Navbar ---------- */
.wl-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-h);
    z-index: 100;
    display: flex;
    align-items: center;
    transition: background .3s ease, border-color .3s ease;
    border-bottom: 1px solid transparent;
}

.wl-nav.scrolled {
    background: var(--nav-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom-color: var(--border);
}

.wl-nav__inner {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wl-nav__logo img {
    height: 34px;
    width: auto;
}

.wl-nav__links {
    display: flex;
    align-items: center;
    gap: 34px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.wl-nav__links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
}

.wl-nav__links a:hover,
.wl-nav__links a.active {
    color: var(--heading);
}

.wl-nav__links a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.wl-nav__cta {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Logo theme swap */
.wl-logo--dark { display: var(--logo-dark); }
.wl-logo--light { display: var(--logo-light); }

/* Theme toggle */
.wl-theme-toggle {
    flex: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-strong);
    background: transparent;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.wl-theme-toggle:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.wl-theme-toggle .icon-sun { display: none; }
.wl-theme-toggle .icon-moon { display: block; }
:root[data-theme="light"] .wl-theme-toggle .icon-sun { display: block; }
:root[data-theme="light"] .wl-theme-toggle .icon-moon { display: none; }

.wl-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 8px;
}

.wl-burger span {
    width: 24px;
    height: 2px;
    background: var(--heading);
    border-radius: 2px;
    transition: .25s;
}

.wl-mobile {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    background: var(--bg-elev);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px 28px;
    display: none;
    flex-direction: column;
    gap: 4px;
    z-index: 99;
}

.wl-mobile.open {
    display: flex;
}

.wl-mobile a {
    padding: 12px 0;
    font-size: 17px;
    font-weight: 500;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
}

.wl-mobile a:hover {
    color: #fff;
}

.wl-mobile .wl-btn {
    margin-top: 16px;
    justify-content: center;
}

/* ---------- Hero ---------- */
.wl-hero {
    position: relative;
    padding-top: calc(var(--nav-h) + 90px);
    padding-bottom: 100px;
    overflow: hidden;
}

.wl-hero__glow {
    position: absolute;
    top: -220px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow), transparent 62%);
    filter: blur(40px);
    opacity: .5;
    pointer-events: none;
    z-index: 0;
}

.wl-hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 60px;
    align-items: center;
}

.wl-hero h1 {
    font-size: clamp(38px, 5.4vw, 66px);
    margin-bottom: 24px;
}

.wl-hero__sub {
    font-size: 19px;
    max-width: 520px;
    margin-bottom: 34px;
}

.wl-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.wl-hero__art {
    position: relative;
}

.wl-hero__art img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .5));
}

/* ---------- Stats / trust row ---------- */
.wl-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 40px 0;
}

.wl-stat__num {
    font-family: var(--font-head);
    font-size: 40px;
    font-weight: 700;
    color: var(--heading);
    letter-spacing: -.02em;
}

.wl-stat__label {
    font-size: 14px;
    color: var(--text-dim);
}

/* ---------- Cards grid ---------- */
.wl-grid {
    display: grid;
    gap: 24px;
}

.cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.wl-card {
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 34px;
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
    position: relative;
    overflow: hidden;
}

.wl-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-strong);
    background: var(--bg-elev-2);
}

.wl-card__icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    color: var(--accent);
    margin-bottom: 22px;
}

.wl-card__icon svg {
    width: 26px;
    height: 26px;
}

.wl-card h3 {
    font-size: 21px;
    margin-bottom: 12px;
}

.wl-card__lead {
    color: var(--text);
    font-weight: 500;
    margin-bottom: 12px;
}

.wl-card p {
    font-size: 15px;
    margin-bottom: 0;
}

.wl-card__num {
    position: absolute;
    top: 24px;
    right: 28px;
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    color: var(--accent);
    opacity: .7;
}

/* ---------- Process steps ---------- */
.wl-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    counter-reset: step;
}

.wl-step {
    position: relative;
    padding-top: 30px;
    border-top: 2px solid var(--border);
}

.wl-step::before {
    counter-increment: step;
    content: "0" counter(step);
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    color: var(--accent);
    position: absolute;
    top: -12px;
    left: 0;
    background: var(--bg);
    padding-right: 12px;
}

.wl-section--alt .wl-step::before {
    background: var(--bg-elev);
}

.wl-step h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.wl-step p {
    font-size: 15px;
    margin: 0;
}

/* ---------- Split / feature row ---------- */
.wl-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.wl-checklist {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}

.wl-checklist li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
}

.wl-checklist li:last-child {
    border-bottom: 0;
}

.wl-checklist .ic {
    flex: none;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: var(--accent-soft);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3px;
}

.wl-checklist .ic svg {
    width: 13px;
    height: 13px;
}

.wl-media {
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    background: var(--bg-elev);
}

.wl-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---------- Portfolio ---------- */
.wl-work {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.wl-work__item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    aspect-ratio: 4 / 3;
    background: var(--bg-elev);
}

.wl-work__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease, opacity .3s ease;
    opacity: .85;
}

.wl-work__item:hover img {
    transform: scale(1.05);
    opacity: 1;
}

.wl-work__tag {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 22px 20px 18px;
    background: linear-gradient(to top, rgba(5, 5, 8, .92), transparent);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 15px;
    color: #fff;
}

/* ---------- Testimonials ---------- */
.wl-quotes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.wl-quote {
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.wl-quote__mark {
    font-family: var(--font-head);
    font-size: 54px;
    line-height: .6;
    color: var(--accent);
    opacity: .5;
    margin-bottom: 8px;
}

.wl-quote p {
    font-size: 15px;
    color: var(--text);
    flex: 1;
}

.wl-quote__who {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.wl-quote__who img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
}

.wl-quote__name {
    font-weight: 600;
    color: var(--heading);
    font-size: 15px;
}

.wl-quote__role {
    font-size: 13px;
    color: var(--text-dim);
}

/* ---------- CTA band ---------- */
.wl-cta {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-strong);
    background: linear-gradient(135deg, var(--bg-elev-2), var(--bg-elev));
    padding: 70px 40px;
    text-align: center;
}

.wl-cta__glow {
    position: absolute;
    inset: auto;
    top: -140px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-glow), transparent 62%);
    filter: blur(30px);
    opacity: .5;
    pointer-events: none;
}

.wl-cta h2 {
    position: relative;
    font-size: clamp(28px, 3.6vw, 42px);
    margin-bottom: 16px;
}

.wl-cta p {
    position: relative;
    font-size: 18px;
    max-width: 540px;
    margin: 0 auto 30px;
}

.wl-cta .wl-btn {
    position: relative;
}

/* ---------- Contact ---------- */
.wl-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.wl-form .fld {
    margin-bottom: 18px;
}

.wl-form label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.wl-form input,
.wl-form textarea {
    width: 100%;
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 16px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 15px;
    transition: border-color .2s ease, background .2s ease;
}

.wl-form input:focus,
.wl-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--bg-elev-2);
}

.wl-form textarea {
    resize: vertical;
    min-height: 150px;
}

.wl-form label.error {
    color: #ff6b6b;
    margin-top: 6px;
    margin-bottom: 0;
}

.wl-contact__aside {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.wl-info {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px;
}

.wl-info .ic {
    flex: none;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--accent-soft);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wl-info h3 {
    margin: 0 0 2px;
    font-size: 16px;
}

.wl-info p {
    margin: 0;
    font-size: 14px;
}

.wl-map {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    line-height: 0;
}

.wl-map iframe {
    width: 100%;
    height: 260px;
    border: 0;
}

/* ========================================================
   Consultation Wizard (Contact page)
   ======================================================== */
.wl-wizard-wrap {
    padding: calc(var(--nav-h) + 50px) 0 90px;
}

.wl-wizard {
    display: grid;
    grid-template-columns: 380px 1fr;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-elev);
    box-shadow: 0 30px 70px -25px rgba(0, 0, 0, .55);
}

/* ---- Left aside (always dark, branded) ---- */
.wl-wz__aside {
    background:
        radial-gradient(120% 80% at 100% 0%, rgba(245, 160, 25, .16), transparent 55%),
        linear-gradient(180deg, #0c1220, #0a0e18);
    border-right: 1px solid var(--border);
}

.wl-wz__aside .wl-logo--dark { display: block; }
.wl-wz__aside .wl-logo--light { display: none; }

.wl-wz__aside-inner {
    padding: 40px 34px;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 620px;
    color: #fff;
}

.wl-wz__brand img { height: 30px; margin-bottom: 36px; }

.wl-wz__step-label {
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .16em;
    margin-bottom: 14px;
}

.wl-wz__title { color: #fff; font-size: 27px; margin-bottom: 12px; }
.wl-wz__sub { color: #9aa4b6; font-size: 15px; margin: 0; }

.wl-wz__perks {
    margin-top: 34px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.wl-wz__perks-label {
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 11.5px;
    color: #7a8598;
    margin-bottom: 16px;
}

.wl-wz__perks ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }

.wl-wz__perks li { display: flex; gap: 12px; align-items: flex-start; color: #dfe4ee; font-size: 14.5px; line-height: 1.5; }

.wl-wz__perks .tick {
    flex: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--accent);
    color: #1a1206;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    margin-top: 1px;
}

.wl-wz__trust { margin-top: auto; padding-top: 34px; }
.wl-wz__trust > p { font-size: 12.5px; color: #7a8598; margin-bottom: 12px; }
.wl-wz__trust-logos { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.wl-wz__trust-logos span { font-family: var(--font-head); font-weight: 700; font-size: 15px; color: #5b6578; }
.wl-wz__foot { margin-top: 24px; font-size: 12.5px; color: #7a8598; }

/* ---- Right main ---- */
.wl-wz__main { padding: 40px 44px; background: var(--bg-elev); }

/* Stepper */
.wl-wz__steps {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0 0 36px;
}

.wl-wz__steps li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    position: relative;
}

.wl-wz__steps li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 16px;
    left: calc(50% + 20px);
    right: calc(-50% + 20px);
    height: 2px;
    background: var(--border);
}

.wl-wz__steps .num {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dim);
    background: var(--bg-elev);
    position: relative;
    z-index: 1;
    transition: .2s ease;
}

.wl-wz__steps .lbl { font-size: 12.5px; color: var(--text-dim); text-align: center; }
.wl-wz__steps li.is-active .num { border-color: var(--accent); background: var(--accent); color: #1a1206; }
.wl-wz__steps li.is-active .lbl { color: var(--accent); font-weight: 600; }
.wl-wz__steps li.is-done .num { border-color: var(--accent); color: var(--accent); }
.wl-wz__steps li.is-done::after { background: var(--accent); }

/* Panels */
.wl-wz__panel { display: none; }
.wl-wz__panel.is-active { display: block; animation: wzfade .35s ease; }
@keyframes wzfade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.wl-wz__panel h2 { font-size: 27px; margin: 14px 0 6px; }
.wl-wz__panel-sub { color: var(--text-muted); font-size: 16px; margin-bottom: 26px; }

/* Fields */
.wl-wz__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.wl-field {
    background: var(--bg-elev-2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 11px 16px;
    margin-bottom: 16px;
    transition: border-color .2s ease, background .2s ease;
}

.wl-field:focus-within { border-color: var(--accent); }
.wl-field.has-error { border-color: #ff6b6b; }
.wl-field label { display: block; font-size: 12px; color: var(--text-muted); margin-bottom: 3px; font-weight: 500; }
.wl-field .req { color: var(--accent); }

.wl-field input,
.wl-field select,
.wl-field textarea {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    outline: none;
    padding: 0;
    color-scheme: light dark;
}

.wl-field textarea { resize: vertical; min-height: 84px; line-height: 1.6; }
.wl-field select { appearance: none; -webkit-appearance: none; cursor: pointer; }

/* Choice chips */
.wl-wz__choices-label { font-size: 13px; color: var(--text-muted); margin: 4px 0 12px; }
.wl-wz__choices { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.wl-wz__choices.has-error { outline: 1px solid #ff6b6b; outline-offset: 8px; border-radius: 14px; }

.wl-choice {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 16px;
    border: 1px solid var(--border);
    border-radius: 100px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-muted);
    transition: border-color .2s ease, background .2s ease, color .2s ease;
    user-select: none;
}

.wl-choice input { position: absolute; opacity: 0; width: 1px; height: 1px; pointer-events: none; }
.wl-choice:hover { border-color: var(--border-strong); }
.wl-choice::before {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 1.5px solid var(--border-strong);
    flex: none;
    transition: .2s ease;
}
.wl-choice:has(input:checked) { border-color: var(--accent); background: var(--accent-soft); color: var(--heading); }
.wl-choice:has(input:checked)::before {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: inset 0 0 0 2px var(--bg-elev);
}

/* Nav */
.wl-wz__nav {
    display: flex;
    align-items: center;
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}
.wl-wz__nav-right { margin-left: auto; }

/* Success */
.wl-wz__success { text-align: center; padding: 50px 20px; }
.wl-wz__success-icon {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
}
.wl-wz__success-icon svg { width: 34px; height: 34px; }
.wl-wz__success h2 { font-size: 28px; margin-bottom: 10px; }
.wl-wz__success p { color: var(--text-muted); max-width: 440px; margin: 0 auto; }

@media (max-width: 900px) {
    .wl-wizard { grid-template-columns: 1fr; }
    .wl-wz__aside { border-right: 0; border-bottom: 1px solid var(--border); }
    .wl-wz__aside-inner { min-height: 0; padding: 28px 24px; }
    .wl-wz__perks,
    .wl-wz__trust,
    .wl-wz__foot { display: none; }
    .wl-wz__title { font-size: 21px; }
    .wl-wz__brand img { margin-bottom: 24px; }
    .wl-wz__main { padding: 28px 22px; }
    .wl-wz__steps .lbl { display: none; }
    .wl-wz__panel h2 { font-size: 23px; }
    .wl-wz__row { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.wl-footer {
    background: var(--bg-elev);
    border-top: 1px solid var(--border);
    padding: 70px 0 30px;
}

.wl-footer__top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--border);
}

.wl-footer__logo img {
    height: 36px;
    margin-bottom: 18px;
}

.wl-footer h3 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--text-dim);
    margin-bottom: 18px;
    font-weight: 600;
}

.wl-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wl-footer ul li {
    margin-bottom: 12px;
}

.wl-footer ul a {
    color: var(--text-muted);
    font-size: 15px;
}

.wl-footer ul a:hover {
    color: var(--accent);
}

.wl-news {
    display: flex;
    gap: 8px;
    margin-top: 14px;
}

.wl-news input {
    flex: 1;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 14px;
    color: var(--text);
    font-size: 14px;
}

.wl-news input:focus {
    outline: none;
    border-color: var(--accent);
}

.wl-news button {
    flex: none;
    background: var(--accent);
    color: #1a1206;
    border: 0;
    border-radius: 10px;
    padding: 0 18px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-body);
}

.wl-news button:hover {
    background: var(--accent-hover);
}

.wl-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    gap: 16px;
    flex-wrap: wrap;
}

.wl-footer__bottom p {
    margin: 0;
    font-size: 14px;
    color: var(--text-dim);
}

.wl-social {
    display: flex;
    gap: 10px;
}

.wl-social a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.wl-social a:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* ---------- Accessibility: skip link + focus ---------- */
.wl-skip {
    position: absolute;
    left: 12px;
    top: -80px;
    z-index: 200;
    background: var(--accent);
    color: #1a1206;
    padding: 11px 18px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    transition: top .2s ease;
}

.wl-skip:focus {
    top: 12px;
}

a:focus-visible,
button:focus-visible,
.wl-btn:focus-visible,
.wl-theme-toggle:focus-visible,
.wl-faq__q:focus-visible,
.wl-burger:focus-visible,
.wl-top:focus-visible,
input:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 6px;
}

/* ---------- Trusted By ---------- */
.wl-trusted {
    padding: 46px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.wl-trusted__label {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-dim);
    margin-bottom: 26px;
}

.wl-trusted__logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px 44px;
}

.wl-trusted__logo {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 21px;
    letter-spacing: -.02em;
    color: var(--text-muted);
    opacity: .75;
    transition: opacity .2s ease, color .2s ease;
}

.wl-trusted__logo:hover {
    opacity: 1;
    color: var(--heading);
}

/* ---------- Industries ---------- */
.wl-ind {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: transform .25s ease, border-color .25s ease;
}

.wl-ind:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
}

.wl-ind .wl-card__icon {
    margin-bottom: 0;
    width: 46px;
    height: 46px;
}

.wl-ind h3 {
    font-size: 18px;
    margin-bottom: 4px;
}

.wl-ind p {
    font-size: 14px;
    margin: 0;
}

/* ---------- Case studies ---------- */
.wl-case + .wl-case {
    margin-top: 30px;
    padding-top: 50px;
    border-top: 1px solid var(--border);
}

.wl-case__metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 24px;
}

.wl-case__metric strong {
    display: block;
    font-family: var(--font-head);
    font-size: 28px;
    color: var(--heading);
    line-height: 1;
    margin-bottom: 4px;
}

.wl-case__metric span {
    font-size: 13px;
    color: var(--text-dim);
}

.wl-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-soft);
    border-radius: 100px;
    padding: 5px 12px;
    margin-bottom: 14px;
}

.wl-placeholder-note {
    font-size: 13px;
    color: var(--text-dim);
    font-style: italic;
}

/* ---------- FAQ ---------- */
.wl-faq {
    max-width: 820px;
    margin: 0 auto;
}

.wl-faq__item {
    border-bottom: 1px solid var(--border);
}

.wl-faq__q {
    width: 100%;
    text-align: left;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 18px;
    color: var(--heading);
}

.wl-faq__icon {
    flex: none;
    width: 22px;
    height: 22px;
    position: relative;
    transition: transform .3s ease;
    color: var(--accent);
}

.wl-faq__icon::before,
.wl-faq__icon::after {
    content: "";
    position: absolute;
    background: currentColor;
    border-radius: 2px;
}

.wl-faq__icon::before {
    top: 10px;
    left: 2px;
    right: 2px;
    height: 2px;
}

.wl-faq__icon::after {
    left: 10px;
    top: 2px;
    bottom: 2px;
    width: 2px;
    transition: transform .3s ease;
}

.wl-faq__item.open .wl-faq__icon::after {
    transform: scaleY(0);
}

.wl-faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.wl-faq__a p {
    padding-bottom: 24px;
    margin: 0;
    max-width: 720px;
}

.wl-faq__item.open .wl-faq__a {
    max-height: 500px;
}

/* ---------- Messenger chat button ---------- */
.wl-chat {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 90;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 18px 12px 14px;
    border-radius: 100px;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: #1a1206;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 10px 30px -8px rgba(245, 160, 25, .5);
    transition: transform .2s ease, box-shadow .2s ease;
}

.wl-chat.show {
    display: inline-flex;
}

.wl-chat:hover {
    color: #1a1206;
    transform: translateY(-3px);
    box-shadow: 0 16px 40px -10px rgba(245, 160, 25, .65);
}

/* Footer cookie-settings link */
.wl-cookie-link {
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-dim);
    transition: color .2s ease;
}

.wl-cookie-link:hover {
    color: var(--accent);
}

.wl-chat svg {
    width: 22px;
    height: 22px;
}

@media (max-width: 767px) {
    .wl-chat {
        right: 16px;
        bottom: 16px;
        padding: 12px 16px 12px 13px;
    }
}

/* ---------- Team ---------- */
.wl-team {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.wl-team__card {
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: transform .25s ease, border-color .25s ease;
}

.wl-team__card:hover {
    transform: translateY(-5px);
    border-color: var(--border-strong);
}

.wl-team__avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    color: var(--accent);
    border: 1px solid var(--border);
    overflow: hidden;
}

.wl-team__avatar svg {
    width: 44px;
    height: 44px;
}

.wl-team__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wl-team__card h3 {
    font-size: 19px;
    margin-bottom: 2px;
}

.wl-team__role {
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .04em;
    margin-bottom: 12px;
}

.wl-team__card p {
    font-size: 14px;
    margin: 0;
}

/* ---------- Booking / calendar callout ---------- */
.wl-booking {
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.wl-booking__text h3 {
    font-size: 17px;
    margin: 0 0 3px;
}

.wl-booking__text p {
    margin: 0;
    font-size: 14px;
}

@media (max-width: 767px) {
    .wl-team { grid-template-columns: 1fr; }
    .wl-booking { flex-direction: column; align-items: flex-start; }
    .wl-booking .wl-btn { width: 100%; justify-content: center; }
}

/* ---------- Cookie consent ---------- */
.wl-consent {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 120;
    max-width: 400px;
    background: var(--bg-elev);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: 0 20px 50px -12px rgba(0, 0, 0, .6);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
}

.wl-consent.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.wl-consent__text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.wl-consent__text strong {
    color: var(--heading);
    display: block;
    margin-bottom: 4px;
    font-family: var(--font-head);
}

.wl-consent__actions {
    display: flex;
    gap: 10px;
}

.wl-consent__actions .wl-btn {
    flex: 1;
    justify-content: center;
    padding: 11px 18px;
    font-size: 14px;
}

@media (max-width: 767px) {
    .wl-consent {
        left: 12px;
        right: 12px;
        bottom: 12px;
        max-width: none;
    }
}

/* ---------- Back to top ---------- */
.wl-top {
    position: fixed;
    right: 24px;
    bottom: 88px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border-strong);
    background: var(--accent);
    color: #1a1206;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease, background .2s ease;
    box-shadow: 0 10px 30px -8px var(--accent-glow);
}

.wl-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.wl-top:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
}

.wl-top svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 767px) {
    .wl-top {
        right: 16px;
        bottom: 74px;
        width: 44px;
        height: 44px;
    }
}

/* ---------- Page hero (inner pages) ---------- */
.wl-pagehead {
    position: relative;
    padding-top: calc(var(--nav-h) + 80px);
    padding-bottom: 70px;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.wl-pagehead h1 {
    font-size: clamp(34px, 5vw, 56px);
    max-width: 800px;
}

.wl-pagehead p {
    font-size: 19px;
    max-width: 620px;
    margin-bottom: 0;
}

/* ---------- Utilities ---------- */
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.text-center { text-align: center; }

/* ---------- Scroll reveal ---------- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity .7s cubic-bezier(.16, 1, .3, 1),
        transform .7s cubic-bezier(.16, 1, .3, 1);
    will-change: opacity, transform;
}

.reveal.in {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .wl-hero__inner { grid-template-columns: 1fr; gap: 40px; }
    .wl-hero__art { display: none; }
    .cols-4 { grid-template-columns: repeat(2, 1fr); }
    .wl-steps { grid-template-columns: repeat(2, 1fr); }
    .wl-work,
    .wl-quotes { grid-template-columns: repeat(2, 1fr); }
    .wl-stats { grid-template-columns: repeat(2, 1fr); gap: 30px 24px; }
    .wl-split,
    .wl-contact { grid-template-columns: 1fr; gap: 34px; }
    .wl-footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
    .wl-nav__links,
    .wl-nav__cta .wl-btn { display: none; }
    .wl-burger { display: flex; }

    .wl-container { padding: 0 20px; }
    .wl-section { padding: 60px 0; }
    .wl-section--tight { padding: 48px 0; }
    .wl-section-head { margin-bottom: 38px; }

    .cols-2,
    .cols-3,
    .cols-4,
    .wl-steps,
    .wl-work,
    .wl-quotes { grid-template-columns: 1fr; }

    /* Hero */
    .wl-hero {
        padding-top: calc(var(--nav-h) + 40px);
        padding-bottom: 56px;
        text-align: center;
    }
    .wl-hero h1 { font-size: 33px; }
    .wl-hero__sub {
        font-size: 16.5px;
        margin-left: auto;
        margin-right: auto;
    }
    .wl-eyebrow { margin-bottom: 16px; }
    .wl-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }
    .wl-hero__actions .wl-btn { width: 100%; justify-content: center; }

    /* Stats */
    .wl-stats {
        grid-template-columns: 1fr 1fr;
        padding: 26px 0;
        gap: 22px 16px;
    }
    .wl-stat__num { font-size: 30px; }

    /* Cards / quotes */
    .wl-card { padding: 26px; }
    .wl-quote { padding: 26px; }

    /* Page head (inner pages) */
    .wl-pagehead {
        padding-top: calc(var(--nav-h) + 34px);
        padding-bottom: 46px;
    }

    /* CTA band */
    .wl-cta { padding: 44px 22px; }
    .wl-cta p { font-size: 16.5px; }
    .wl-cta .wl-btn { width: 100%; justify-content: center; }

    /* Contact */
    .wl-form button { width: 100%; justify-content: center; }

    .wl-footer__top { grid-template-columns: 1fr; gap: 32px; }
    .wl-footer__bottom { flex-direction: column; align-items: flex-start; gap: 18px; }
}

@media (max-width: 360px) {
    .wl-hero h1 { font-size: 29px; }
    .wl-stats { grid-template-columns: 1fr; }
    .wl-stat__num { font-size: 32px; }
}
