/* =========================================================
   MICHAEL WOOD — CLEAN STAGING FRONTEND
========================================================= */

:root {
    --bg: #050b1a;
    --bg2: #07122c;
    --panel: #09162f;
    --text: #f8faff;
    --muted: rgba(238, 242, 255, .62);
    --soft: rgba(238, 242, 255, .42);
    --line: rgba(255, 255, 255, .09);
    --cyan: #66e3ff;
    --purple: #8b7bff;
    --green: #46f0a5;
    --max: 1500px;
}

* {
    box-sizing: border-box;
}

html {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    min-height: 100%;
    overflow-x: clip;
    color: var(--text);
    background:
        radial-gradient(900px 600px at 10% -10%, rgba(102, 227, 255, .08), transparent 65%),
        radial-gradient(900px 650px at 95% 10%, rgba(139, 123, 255, .08), transparent 65%),
        var(--bg);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.menuOpen,
body.cookieOpen {
    overflow: hidden;
}

a {
    color: inherit;
}

.eyebrow {
    color: var(--cyan);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

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

.siteHeader {
    position: sticky;
    top: 0;
    z-index: 2000;
    width: 100%;
    border-bottom: 1px solid var(--line);
    background: rgba(4, 9, 22, .93);
    backdrop-filter: blur(18px);
    transition: box-shadow .2s ease, background .2s ease;
}

.siteHeader.isScrolled {
    background: rgba(3, 8, 20, .97);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .25);
}

.utilityBar {
    min-height: 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 30px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.utilityLeft,
.utilityRight {
    display: flex;
    align-items: center;
}

.availability {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, .48);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.availability i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 14px rgba(70, 240, 165, .45);
}

.utilityRight {
    gap: 14px;
}

.utilityRight>span {
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, .1);
}

.utilityRight a {
    color: rgba(255, 255, 255, .58);
    font-size: 10px;
    font-weight: 700;
    text-decoration: none;
}

.utilityRight a:hover,
.utilityRight .portalLink:hover {
    color: #fff;
}

.utilityRight .portalLink {
    color: rgba(255, 255, 255, .86);
}

.mainHeader {
    min-height: 92px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 30px;
}

.menuTrigger,
.menuClose {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 0;
    border: 0;
    color: #fff;
    background: transparent;
    font: inherit;
    cursor: pointer;
}

.menuCircle,
.menuCloseCircle {
    width: 47px;
    height: 47px;
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 50%;
    background: rgba(255, 255, 255, .025);
}

.menuCircle i {
    width: 16px;
    height: 1px;
    background: #fff;
}

.menuCircle i:last-child {
    width: 11px;
    transform: translateX(-2px);
}

.menuText,
.menuClose>span:last-child {
    color: rgba(255, 255, 255, .64);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.headerLogo {
    justify-self: center;
    display: inline-flex;
}

.headerLogo img,
.overlayLogo img {
    width: auto;
    max-width: 190px;
    display: block;
    object-fit: contain;
}

.headerCta {
    justify-self: end;
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 0 19px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 3px;
    color: #fff;
    background: rgba(255, 255, 255, .025);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
}

.headerCta:hover {
    border-color: rgba(102, 227, 255, .32);
    background: linear-gradient(110deg, rgba(102, 227, 255, .07), rgba(139, 123, 255, .08));
}

/* Menu overlay */

.menuOverlay {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: grid;
    grid-template-rows: auto 1fr auto;
    overflow-y: auto;
    background:
        radial-gradient(900px 520px at 0% 15%, rgba(102, 227, 255, .07), transparent 64%),
        radial-gradient(900px 520px at 100% 80%, rgba(139, 123, 255, .08), transparent 64%),
        #040a18;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
}

.menuOverlay.isOpen {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.menuOverlayTop {
    min-height: 104px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 34px;
    border-bottom: 1px solid var(--line);
}

.menuCloseCircle i {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 15px;
    height: 1px;
    background: #fff;
}

.menuCloseCircle i:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.menuCloseCircle i:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.overlayLogo {
    justify-self: center;
}

.overlayPortal {
    justify-self: end;
    color: rgba(255, 255, 255, .7);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .11em;
    text-transform: uppercase;
    text-decoration: none;
}

.menuOverlayBody {
    width: min(var(--max), calc(100% - 68px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
    gap: 90px;
    padding: 60px 0;
}

.menuBigLinks {
    margin-top: 20px;
    border-top: 1px solid var(--line);
}

.menuBigLinks a {
    min-height: 76px;
    display: grid;
    grid-template-columns: 52px 1fr auto;
    align-items: center;
    gap: 18px;
    border-bottom: 1px solid var(--line);
    text-decoration: none;
}

.menuBigLinks small {
    color: rgba(102, 227, 255, .55);
    font-size: 9px;
    font-weight: 900;
}

.menuBigLinks strong {
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 650;
    letter-spacing: -.04em;
}

.menuBigLinks>a>span {
    color: rgba(255, 255, 255, .3);
}

.menuBigLinks a:hover {
    padding-left: 14px;
    background: linear-gradient(90deg, rgba(102, 227, 255, .035), transparent);
}

.menuSide {
    display: grid;
    gap: 34px;
}

.menuSmallLinks {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.menuSmallLinks a {
    width: fit-content;
    color: rgba(255, 255, 255, .58);
    font-size: 13px;
    font-weight: 650;
    text-decoration: none;
}

.menuSmallLinks a:hover {
    color: #fff;
}

.menuCard {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, .025);
}

.menuCard h3 {
    margin: 12px 0 10px;
    font-size: 25px;
    line-height: 1.12;
    letter-spacing: -.04em;
}

.menuCard p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.65;
}

.menuCard>a {
    min-height: 48px;
    margin-top: 22px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(102, 227, 255, .22);
    border-radius: 5px;
    background: linear-gradient(110deg, rgba(102, 227, 255, .08), rgba(139, 123, 255, .1));
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
}

.menuOverlayBottom {
    min-height: 70px;
    padding: 0 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid var(--line);
}

.menuOverlayBottom>div {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.menuOverlayBottom a,
.menuOverlayBottom p {
    margin: 0;
    color: rgba(255, 255, 255, .42);
    font-size: 10px;
    text-decoration: none;
}

/* =========================================================
   HOMEPAGE
========================================================= */

.homeHero {
    position: relative;
    min-height: calc(100vh - 127px);
    overflow: hidden;
}

.homeHero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .015) 1px, transparent 1px);
    background-size: 68px 68px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .5), transparent 90%);
}

.heroGlow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.heroGlowOne {
    width: 440px;
    height: 440px;
    left: -180px;
    top: 15%;
    background: rgba(39, 91, 255, .12);
}

.heroGlowTwo {
    width: 440px;
    height: 440px;
    right: -160px;
    bottom: -80px;
    background: rgba(139, 123, 255, .1);
}

.heroInner {
    position: relative;
    z-index: 1;
    width: min(var(--max), calc(100% - 60px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(460px, .95fr);
    gap: 70px;
    align-items: center;
    padding: 86px 0 100px;
}

.heroPill {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 13px;
    border: 1px solid rgba(102, 227, 255, .14);
    border-radius: 999px;
    color: rgba(220, 239, 255, .7);
    background: rgba(102, 227, 255, .04);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.heroPill i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 14px rgba(102, 227, 255, .6);
}

.heroCopy h1 {
    max-width: 850px;
    margin: 27px 0 24px;
    font-size: clamp(58px, 6.1vw, 92px);
    line-height: .94;
    letter-spacing: -.07em;
}

.heroCopy h1 span {
    display: block;
    background: linear-gradient(90deg, #dce8ff, #a9b5ff 40%, #b18bff 68%, #6bdfff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.heroCopy>p {
    max-width: 670px;
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.heroActions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.primaryButton,
.secondaryButton {
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 0 20px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
}

.primaryButton {
    color: #fff;
    border: 1px solid rgba(102, 227, 255, .28);
    background: linear-gradient(110deg, rgba(68, 111, 255, .5), rgba(139, 83, 255, .56));
}

.secondaryButton {
    color: rgba(255, 255, 255, .7);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .025);
}

.heroProof {
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px;
}

.heroProof>div {
    min-width: 150px;
    padding: 0 24px;
    border-left: 1px solid var(--line);
}

.heroProof>div:first-child {
    padding-left: 0;
    border-left: 0;
}

.heroProof strong,
.heroProof span {
    display: block;
}

.heroProof strong {
    font-size: 14px;
}

.heroProof span {
    margin-top: 5px;
    color: var(--soft);
    font-size: 10px;
}

/* Hero fake UI */
.heroVisual {
    position: relative;
    min-height: 530px;
    perspective: 1200px;
}

.visualBack,
.visualFront {
    position: absolute;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 17px;
    background: rgba(6, 13, 30, .94);
    box-shadow: 0 36px 80px rgba(0, 0, 0, .4);
}

.visualBack {
    width: 80%;
    height: 360px;
    top: 30px;
    right: -4%;
    opacity: .55;
    transform: rotateY(-8deg) rotateZ(2deg);
}

.visualFront {
    width: 87%;
    height: 400px;
    left: 0;
    bottom: 25px;
    transform: rotateY(7deg) rotateZ(-1deg);
}

.browserTop {
    height: 42px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 13px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.browserTop>i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
}

.browserTop small {
    min-width: 145px;
    margin: 0 auto;
    padding: 5px 12px;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 5px;
    color: rgba(255, 255, 255, .28);
    font-size: 8px;
    text-align: center;
}

.dashboard {
    height: calc(100% - 42px);
    display: grid;
    grid-template-columns: 24% 1fr;
}

.dashSide {
    border-right: 1px solid rgba(255, 255, 255, .06);
    background: rgba(255, 255, 255, .018);
}

.dashMain {
    padding: 30px;
}

.dashMain>span {
    width: 44%;
    height: 10px;
    display: block;
    border-radius: 99px;
    background: rgba(255, 255, 255, .1);
}

.dashMain>div {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 24px;
}

.dashMain>div i {
    height: 64px;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 8px;
    background: rgba(255, 255, 255, .025);
}

.dashMain>b {
    height: 125px;
    display: block;
    margin-top: 16px;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 9px;
    background: linear-gradient(180deg, rgba(102, 227, 255, .05), transparent);
}

.visualWebsite {
    padding: 54px 46px;
}

.visualWebsite>span {
    color: var(--cyan);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.visualWebsite strong {
    display: block;
    margin-top: 16px;
    font-size: 42px;
    line-height: .98;
    letter-spacing: -.055em;
}

.visualWebsite em {
    color: #a998ff;
    font-style: normal;
}

.visualWebsite>i {
    width: 72%;
    height: 6px;
    display: block;
    margin-top: 27px;
    border-radius: 99px;
    background: rgba(255, 255, 255, .09);
}

.visualWebsite>i+i {
    width: 52%;
    margin-top: 8px;
}

.visualWebsite>b {
    width: 114px;
    height: 34px;
    display: block;
    margin-top: 25px;
    border-radius: 4px;
    background: linear-gradient(90deg, rgba(78, 112, 255, .8), rgba(139, 91, 255, .85));
}

.visualBadge {
    position: absolute;
    z-index: 5;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    background: rgba(7, 15, 34, .92);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .32);
    backdrop-filter: blur(12px);
}

.visualBadgeOne {
    left: -22px;
    top: 75px;
    min-width: 150px;
    padding: 11px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .58);
    font-size: 9px;
}

.visualBadgeOne i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
}

.visualBadgeOne strong {
    margin-left: auto;
    color: var(--cyan);
}

.visualBadgeTwo {
    right: -16px;
    bottom: 70px;
    min-width: 145px;
    padding: 13px 15px;
}

.visualBadgeTwo small,
.visualBadgeTwo strong {
    display: block;
}

.visualBadgeTwo small {
    color: var(--soft);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.visualBadgeTwo strong {
    margin-top: 4px;
    font-size: 12px;
}

.techStrip {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #040916;
}

.techStrip>div {
    width: min(var(--max), calc(100% - 60px));
    min-height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: var(--soft);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.techStrip i {
    width: 3px;
    height: 3px;
    flex: 0 0 3px;
    border-radius: 50%;
    background: rgba(102, 227, 255, .45);
}

.simpleIntro {
    width: min(var(--max), calc(100% - 60px));
    margin: 0 auto;
    padding: 115px 0 55px;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 80px;
    align-items: end;
}

.simpleIntro h2 {
    max-width: 850px;
    margin: 15px 0 0;
    font-size: clamp(38px, 4.5vw, 66px);
    line-height: 1.02;
    letter-spacing: -.055em;
}

.simpleIntro>p {
    margin: 0 0 6px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
}

.serviceCards {
    width: min(var(--max), calc(100% - 60px));
    margin: 0 auto;
    padding: 0 0 115px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.serviceCards>a {
    min-height: 300px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .015));
    text-decoration: none;
}

.serviceCards>a>span {
    color: var(--cyan);
    font-size: 9px;
    font-weight: 900;
}

.serviceCards h3 {
    margin: 42px 0 12px;
    font-size: 27px;
    letter-spacing: -.035em;
}

.serviceCards p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.serviceCards b {
    margin-top: auto;
    color: rgba(255, 255, 255, .72);
    font-size: 11px;
}

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

.footerCta {
    padding: 80px 30px 0;
}

.footerCtaInner {
    max-width: var(--max);
    min-height: 300px;
    margin: 0 auto;
    padding: 50px 54px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 60px;
    border: 1px solid var(--line);
    border-radius: 24px 24px 0 0;
    background:
        radial-gradient(650px 300px at 90% 0%, rgba(139, 123, 255, .11), transparent 65%),
        linear-gradient(180deg, rgba(11, 23, 49, .94), rgba(5, 12, 29, .98));
}

.footerCta h2 {
    max-width: 850px;
    margin: 18px 0 17px;
    font-size: clamp(44px, 5vw, 72px);
    line-height: .98;
    letter-spacing: -.06em;
}

.footerCta h2 span {
    display: block;
    background: linear-gradient(90deg, #dbe8ff, #a69cff 58%, #72ddff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footerCta p {
    max-width: 700px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.footerCtaButtons {
    min-width: 220px;
    display: grid;
    gap: 10px;
}

.siteFooter {
    padding: 65px 30px 26px;
    border-top: 1px solid rgba(255, 255, 255, .06);
    background: #030713;
}

.footerGrid {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(300px, .9fr) minmax(0, 1.7fr);
    gap: 90px;
}

.footerBrand {
    max-width: 400px;
}

.footerLogo img {
    width: auto;
    height: 72px;
    display: block;
}

.footerBrand>p {
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.footerContact {
    display: grid;
    gap: 6px;
    margin-top: 20px;
}

.footerContact a {
    width: fit-content;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.footerLinks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.footerLinks>div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footerHeading {
    margin-bottom: 16px;
    color: rgba(255, 255, 255, .94);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.footerLinks a {
    padding: 6px 0;
    color: rgba(238, 242, 255, .54);
    font-size: 13px;
    font-weight: 650;
    text-decoration: none;
}

.footerLinks a:hover {
    color: #fff;
}

.footerLocations {
    max-width: var(--max);
    margin: 52px auto 0;
    padding: 22px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.footerLocations .footerHeading {
    display: block;
    margin-bottom: 10px;
}

.footerLocations>div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
}

.footerLocations a,
.footerLocations>div>span {
    color: rgba(238, 242, 255, .46);
    font-size: 11px;
    text-decoration: none;
}

.footerBottom {
    max-width: var(--max);
    min-height: 70px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footerBottom p {
    margin: 0;
    color: rgba(238, 242, 255, .32);
    font-size: 10px;
}

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

.footerBottom a,
.footerBottom button {
    padding: 0;
    border: 0;
    color: rgba(238, 242, 255, .4);
    background: transparent;
    font: inherit;
    font-size: 10px;
    text-decoration: none;
    cursor: pointer;
}

.whatsappFloat {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1600;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    color: #fff;
    background: #25d366;
    box-shadow: 0 16px 36px rgba(0, 0, 0, .3);
}

.whatsappFloat svg {
    width: 29px;
    height: 29px;
    fill: currentColor;
}



/* =========================================================
   FOOTER SOCIAL / BUSINESS PROFILE BUTTONS
========================================================= */

.footerSocialBlock {
    margin-top: 28px;
}

.footerSocialBlock .footerHeading {
    display: block;
    margin-bottom: 12px;
}

.footerSocials {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
}

.footerSocials>a {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 11px;
    color: rgba(255, 255, 255, .68);
    background: rgba(255, 255, 255, .025);
    text-decoration: none;
    transition:
        transform .2s ease,
        color .2s ease,
        border-color .2s ease,
        background .2s ease;
}

.footerSocials>a:hover {
    color: #fff;
    border-color: rgba(102, 227, 255, .28);
    background:
        linear-gradient(135deg,
            rgba(102, 227, 255, .07),
            rgba(139, 123, 255, .09));
    transform: translateY(-2px);
}

.footerSocials svg {
    width: 20px;
    height: 20px;
    display: block;
}

.srOnly {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

@media (max-width: 720px) {
    .footerSocials>a {
        width: 42px;
        height: 42px;
    }
}


/* =========================================================
   COOKIE CONSENT
========================================================= */

.cookieBackdrop {
    position: fixed;
    inset: 0;
    z-index: 7000;
    background: rgba(2, 6, 17, .66);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity .22s ease;
}

.cookieBackdrop.isVisible {
    opacity: 1;
}

.cookiePanel {
    position: fixed;
    left: 50%;
    bottom: 28px;
    z-index: 7001;
    width: min(1150px, calc(100% - 40px));
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 22px;
    background:
        radial-gradient(600px 260px at 0% 0%, rgba(102, 227, 255, .06), transparent 65%),
        #071021;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .48);
    opacity: 0;
    transform: translate(-50%, 18px);
    transition: opacity .22s ease, transform .22s ease;
}

.cookiePanel.isVisible {
    opacity: 1;
    transform: translate(-50%, 0);
}

.cookieIntro {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 18px;
    align-items: start;
}

.cookieIcon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(102, 227, 255, .2);
    border-radius: 13px;
    color: var(--cyan);
    background: rgba(102, 227, 255, .06);
    font-size: 24px;
}

.cookieCopy h2 {
    margin: 8px 0 8px;
    font-size: clamp(24px, 3vw, 34px);
    letter-spacing: -.04em;
}

.cookieCopy p {
    max-width: 790px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.cookieCopy a {
    color: #fff;
    font-weight: 800;
    text-underline-offset: 3px;
}

.cookieMainActions,
.cookiePreferencesActions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.cookieAccept,
.cookieReject,
.cookieManage {
    min-height: 46px;
    padding: 0 16px;
    border-radius: 8px;
    font: inherit;
    font-size: 11px;
    font-weight: 850;
    cursor: pointer;
}

.cookieAccept {
    color: #04101c;
    border: 0;
    background: linear-gradient(110deg, #62e8dc, #54c5ff);
}

.cookieReject {
    color: rgba(255, 255, 255, .82);
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .045);
}

.cookieManage {
    color: rgba(255, 255, 255, .68);
    border: 0;
    background: transparent;
}

.cookiePreferences {
    margin-top: 26px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.cookiePreferencesHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookiePreferencesHeader h3 {
    margin: 8px 0 0;
    font-size: 26px;
    letter-spacing: -.04em;
}

.cookiePrefsClose {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 9px;
    color: #fff;
    background: rgba(255, 255, 255, .035);
    font-size: 24px;
    cursor: pointer;
}

.cookieOption {
    min-height: 90px;
    margin-top: 12px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 14px;
    background: rgba(255, 255, 255, .025);
}

.cookieOption strong {
    font-size: 13px;
}

.cookieOption strong small {
    margin-left: 8px;
    padding: 5px 8px;
    border: 1px solid rgba(70, 240, 165, .2);
    border-radius: 999px;
    color: #69dfcf;
    font-size: 9px;
}

.cookieOption p {
    margin: 7px 0 0;
    color: var(--soft);
    font-size: 11px;
    line-height: 1.5;
}

.fakeSwitch,
.realSwitch {
    width: 48px;
    height: 28px;
    position: relative;
    flex: 0 0 48px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
}

.fakeSwitch.isOn {
    background: linear-gradient(90deg, #2ca9a4, #37b9cf);
}

.fakeSwitch i,
.realSwitch i {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    transition: transform .18s ease;
}

.fakeSwitch.isOn i {
    transform: translateX(20px);
}

.realSwitch input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.realSwitch:has(input:checked) {
    background: linear-gradient(90deg, #2ca9a4, #37b9cf);
}

.realSwitch:has(input:checked) i {
    transform: translateX(20px);
}

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

@media (max-width: 1050px) {
    .heroInner {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .heroVisual {
        width: min(720px, 100%);
    }

    .simpleIntro {
        grid-template-columns: 1fr;
        gap: 25px;
    }

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

    .footerCtaInner {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 30px;
    }

    .footerCtaButtons {
        width: min(440px, 100%);
        grid-template-columns: 1fr 1fr;
    }

    .footerGrid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .menuOverlayBody {
        grid-template-columns: 1fr;
        gap: 45px;
    }
}

@media (max-width: 720px) {
    .utilityBar {
        padding-inline: 16px;
    }

    .utilityLeft {
        display: none;
    }

    .utilityRight {
        width: 100%;
        justify-content: space-between;
    }

    .utilityRight>span {
        display: none;
    }

    .utilityRight a:first-child {
        display: none;
    }

    .mainHeader {
        min-height: 78px;
        padding: 0 16px;
    }

    .menuText {
        display: none;
    }

    .menuCircle {
        width: 43px;
        height: 43px;
    }

    .headerLogo img,
    .overlayLogo img {
        height: 44px;
        max-width: 140px;
    }

    .headerCta {
        width: 43px;
        min-height: 43px;
        padding: 0;
    }

    .headerCta span {
        display: none;
    }

    .menuOverlayTop {
        min-height: 86px;
        padding: 0 16px;
    }

    .menuClose>span:last-child,
    .overlayPortal {
        font-size: 0;
    }

    .overlayPortal::after {
        content: "↗";
        font-size: 15px;
    }

    .menuOverlayBody {
        width: calc(100% - 32px);
        padding: 40px 0;
    }

    .menuBigLinks a {
        min-height: 66px;
        grid-template-columns: 36px 1fr auto;
    }

    .menuBigLinks strong {
        font-size: 30px;
    }

    .menuOverlayBottom {
        padding: 16px;
        align-items: flex-start;
        flex-direction: column;
    }

    .heroInner,
    .techStrip>div,
    .simpleIntro,
    .serviceCards {
        width: calc(100% - 28px);
    }

    .heroInner {
        padding: 62px 0 72px;
    }

    .heroCopy h1 {
        font-size: clamp(48px, 15vw, 72px);
    }

    .heroCopy>p {
        font-size: 15px;
    }

    .heroProof {
        gap: 18px 0;
    }

    .heroProof>div {
        min-width: 50%;
    }

    .heroVisual {
        min-height: 400px;
    }

    .visualFront {
        height: 320px;
    }

    .visualBack {
        height: 285px;
    }

    .visualWebsite {
        padding: 36px 26px;
    }

    .visualWebsite strong {
        font-size: 33px;
    }

    .techStrip>div {
        justify-content: flex-start;
        overflow-x: auto;
    }

    .techStrip span {
        white-space: nowrap;
    }

    .simpleIntro {
        padding: 80px 0 40px;
    }

    .serviceCards {
        padding-bottom: 80px;
    }

    .footerCta {
        padding: 55px 14px 0;
    }

    .footerCtaInner {
        min-height: 0;
        padding: 34px 24px 38px;
    }

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

    .siteFooter {
        padding: 50px 18px 24px;
    }

    .footerLinks {
        grid-template-columns: 1fr 1fr;
        gap: 30px 20px;
    }

    .footerBottom {
        align-items: flex-start;
        flex-direction: column;
        padding: 20px 0 0;
    }

    .cookiePanel {
        bottom: 10px;
        width: calc(100% - 20px);
        max-height: calc(100vh - 20px);
        overflow-y: auto;
        padding: 20px;
    }

    .cookieIntro {
        grid-template-columns: 42px 1fr;
        gap: 14px;
    }

    .cookieIcon {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }

    .cookieMainActions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .cookieManage {
        grid-column: 1 / -1;
    }

    .cookieOption {
        gap: 15px;
        padding: 15px;
    }

}

@media (max-width: 480px) {
    .footerLinks {
        grid-template-columns: 1fr;
    }

    .heroProof>div {
        min-width: 100%;
        padding: 0;
        border-left: 0;
    }

    .visualBadgeOne,
    .visualBadgeTwo {
        transform: scale(.85);
    }

    .cookieMainActions,
    .cookiePreferencesActions {
        grid-template-columns: 1fr;
    }

    .cookieMainActions {
        display: grid;
    }

    .cookieManage {
        grid-column: auto;
    }
}


/* =========================================================
   ERROR PAGES
========================================================= */
.errorPage {
    min-height: 68vh;
    display: grid;
    place-items: center;
    padding: 90px 24px;
}

.errorPage__inner {
    width: min(760px, 100%);
    text-align: center;
}

.errorPage__code {
    margin: 12px 0 -8px;
    color: rgba(255, 255, 255, .045);
    font-size: clamp(120px, 25vw, 250px);
    font-weight: 900;
    line-height: .82;
    letter-spacing: -.08em;
}

.errorPage h1 {
    margin: 0;
    font-size: clamp(42px, 7vw, 74px);
    line-height: 1;
    letter-spacing: -.055em;
}

.errorPage p {
    max-width: 590px;
    margin: 20px auto 0;
    color: rgba(238, 242, 255, .58);
    font-size: 14px;
    line-height: 1.75;
}

.errorPage__actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
    flex-wrap: wrap;
}

/* =========================================================
   V5 — GLOBAL LIGHT CONTENT PALETTE
   Header, footer and dark sections remain navy.
========================================================= */
:root {
    --light-ink: #081225;
    --light-copy: #53617a;
    --light-soft: #f8faff;
    --light-border: #dde5f0;
    --brand-blue: #4769df;
    --brand-purple: #8a62df;
}

::selection {
    background: rgba(71, 105, 223, .22);
    color: inherit;
}