 /* =========================================================
   ELIZCOMM COMMUNICATIONS
   MAIN STYLESHEET
========================================================= */

:root {
    --navy: #071525;
    --midnight: #0b1d31;
    --black: #05090e;
    --gold: #d4af37;
    --gold-light: #e4c85b;
    --white: #ffffff;
    --off-white: #f6f5f1;
    --grey: #a7adb5;
    --dark-grey: #5e6670;
    --line: rgba(7, 21, 37, 0.12);
    --dark-line: rgba(255,255,255,0.14);

    --heading: "Sora", sans-serif;
    --body: "Manrope", sans-serif;

    --container: 1240px;
    --transition: 0.35s ease;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body);
    background: var(--off-white);
    color: var(--navy);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

.container {
    width: min(92%, var(--container));
    margin-inline: auto;
}


/* =========================================================
   TYPOGRAPHY
========================================================= */

h1,
h2,
h3,
h4 {
    font-family: var(--heading);
    line-height: 1.12;
}

h1 em,
h2 em {
    color: var(--gold);
    font-style: normal;
}

.section-kicker {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.section-kicker.gold {
    color: var(--gold);
}

.section-light {
    background: var(--off-white);
}

.section-dark {
    background: var(--navy);
    color: var(--white);
}

.section-midnight {
    background: var(--black);
    color: var(--white);
}

.light-heading {
    color: var(--white);
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(7, 21, 37, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(5, 9, 14, 0.97);
}

.header-inner {
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}


/* LOGO */

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;
	.brand-logo {
    width: 70px;
    height: auto;
    display: block;
    object-fit: contain;
}
}

.brand-symbol {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: var(--heading);
    font-weight: 700;
    font-size: 1.15rem;
}

.brand-name {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-name strong {
    color: var(--white);
    font-family: var(--heading);
    font-size: 1rem;
    letter-spacing: 0.12em;
}

.brand-name span {
    color: #9ea7b1;
    font-size: 0.47rem;
    letter-spacing: 0.22em;
    margin-top: 6px;
}


/* NAV */

.main-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.main-nav a {
    color: #d9dee4;
    font-size: 0.76rem;
    font-weight: 600;
    position: relative;
    transition: var(--transition);
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--gold);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}


.header-cta {
    padding: 12px 20px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: var(--transition);
}

.header-cta:hover {
    background: var(--gold);
    color: var(--navy);
}


/* MOBILE */

.menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 27px;
    height: 2px;
    background: var(--white);
    margin: 5px 0;
}

.mobile-nav {
    display: none;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    min-height: 52px;
    padding: 0 25px;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    transition: var(--transition);
}

.btn-gold {
    background: var(--gold);
    color: var(--navy);
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
}

.btn-outline {
    border: 1px solid rgba(255,255,255,0.45);
    color: var(--white);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-dark {
    background: var(--navy);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--gold);
    color: var(--navy);
}

.btn-light-outline {
    border: 1px solid rgba(255,255,255,0.4);
    color: var(--white);
}

.btn-light-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-large {
    min-height: 58px;
    padding-inline: 30px;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 100vh;
    background: var(--navy);
    color: var(--white);
    position: relative;
    display: flex;
    align-items: center;
    padding: 145px 4% 90px;
    overflow: hidden;
}

.hero-grid {
    width: min(1240px, 92%);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1.03fr 0.97fr;
    align-items: center;
    gap: 70px;
}


/* HERO COPY */

.eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #bfc6ce;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.19em;
    margin-bottom: 28px;
}

.eyebrow span {
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.hero h1 {
    max-width: 700px;
    font-size: clamp(3.5rem, 6.2vw, 6.5rem);
    letter-spacing: -0.055em;
    margin-bottom: 30px;
}

.hero-lead {
    max-width: 590px;
    color: #b7c0c9;
    font-size: 1rem;
    line-height: 1.9;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    margin-top: 35px;
    flex-wrap: wrap;
}


/* STATS */

.hero-stats {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 52px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-stat strong {
    font-family: var(--heading);
    color: var(--gold);
    font-size: 1.65rem;
}

.hero-stat span {
    color: #9ba5af;
    font-size: 0.65rem;
    line-height: 1.45;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-line {
    width: 1px;
    height: 35px;
    background: rgba(255,255,255,0.18);
}


/* HERO VISUAL */

.hero-visual {
    position: relative;
}

.hero-image-wrap {
    position: relative;
    width: min(100%, 560px);
    margin-left: auto;
    aspect-ratio: 0.84;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    filter: saturate(0.82);
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(
        135deg,
        rgba(7,21,37,0.1),
        rgba(7,21,37,0.38)
    );
    pointer-events: none;
}

 

/* GOLD ORBIT */

.gold-orbit {
    position: absolute;
    width: 160px;
    height: 160px;
    border: 1px solid rgba(212,175,55,0.7);
    border-radius: 50%;
    right: -65px;
    top: 25%;
    z-index: 5;
    animation: orbitFloat 6s ease-in-out infinite;
}

.gold-orbit::after {
    content: "";
    position: absolute;
    width: 9px;
    height: 9px;
    background: var(--gold);
    border-radius: 50%;
    top: 12px;
    left: 30px;
    box-shadow: 0 0 20px rgba(212,175,55,0.8);
}


/* DOTS */

.hero-dots {
    position: absolute;
    inset: -50px;
    z-index: 6;
    pointer-events: none;
}

.dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 14px rgba(212,175,55,0.55);
}

.dot-1 { top: 12%; left: 8%; }
.dot-2 { top: 28%; left: -3%; }
.dot-3 { top: 52%; left: -7%; }
.dot-4 { top: 76%; left: 5%; }
.dot-5 { bottom: 4%; left: 28%; }
.dot-6 { bottom: -3%; left: 53%; }
.dot-7 { bottom: 11%; right: 7%; }
.dot-8 { top: 61%; right: -8%; }
.dot-9 { top: 29%; right: -3%; }
.dot-10 { top: 7%; right: 25%; }

.dot-1,
.dot-4,
.dot-7,
.dot-10 {
    animation: dotPulse 3.5s ease-in-out infinite;
}

.dot-2,
.dot-5,
.dot-8 {
    animation: dotPulse 4.3s ease-in-out infinite 0.7s;
}

.dot-3,
.dot-6,
.dot-9 {
    animation: dotPulse 5s ease-in-out infinite 1.2s;
}


/* FLOATING CARD */

.hero-floating-card {
    position: absolute;
    left: -42px;
    bottom: 45px;
    z-index: 8;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 18px;
    background: rgba(5,9,14,0.94);
    border-left: 2px solid var(--gold);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.floating-icon {
    color: var(--gold);
    font-size: 1.2rem;
}

.hero-floating-card small {
    display: block;
    color: var(--gold);
    font-size: 0.52rem;
    letter-spacing: 0.18em;
}

.hero-floating-card strong {
    display: block;
    color: var(--white);
    font-size: 0.72rem;
}


/* SCROLL */

.scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 4%;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #788490;
    font-size: 0.58rem;
    letter-spacing: 0.15em;
}

.scroll-indicator span {
    width: 35px;
    height: 1px;
    background: var(--gold);
}


/* =========================================================
   POSITION STRIP
========================================================= */

.position-strip {
    background: var(--gold);
    color: var(--navy);
    overflow: hidden;
}

.position-strip-inner {
    min-height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.position-strip span {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.position-strip i {
    font-style: normal;
    opacity: 0.5;
}


/* =========================================================
   POSITIONING
========================================================= */

.positioning {
    padding: 130px 0;
}

.positioning-grid {
    display: grid;
    grid-template-columns: 70px 1.25fr 0.85fr;
    gap: 35px;
    align-items: start;
}

.section-number {
    color: var(--gold);
    font-family: var(--heading);
    font-size: 0.8rem;
    font-weight: 700;
}

.positioning-heading h2 {
    max-width: 680px;
    font-size: clamp(2.5rem, 4.2vw, 4.4rem);
    letter-spacing: -0.045em;
}

.positioning-copy {
    padding-top: 45px;
}

.positioning-copy p {
    color: #606974;
    font-size: 0.95rem;
    margin-bottom: 22px;
}

.text-link {
    display: inline-flex;
    gap: 15px;
    align-items: center;
    color: var(--navy);
    font-weight: 800;
    font-size: 0.75rem;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 7px;
    transition: var(--transition);
}

.text-link:hover {
    color: var(--gold);
}

.text-link span {
    color: var(--gold);
}


/* =========================================================
   SERVICES
========================================================= */

.services {
    padding: 125px 0;
}

.section-intro-row {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 75px;
}

.light-heading {
    font-size: clamp(2.5rem, 4.5vw, 4.6rem);
    letter-spacing: -0.045em;
    max-width: 700px;
}

.section-description {
    color: #a8b2bd;
    font-size: 0.92rem;
    line-height: 1.9;
    max-width: 450px;
}

.services-list {
    border-top: 1px solid var(--dark-line);
}

.service-item {
    display: grid;
    grid-template-columns: 90px 1fr 1fr;
    gap: 30px;
    align-items: center;
    padding: 35px 0;
    border-bottom: 1px solid var(--dark-line);
    transition: var(--transition);
}

.service-item:hover {
    padding-left: 15px;
    background: rgba(255,255,255,0.025);
}

.service-number {
    color: var(--gold);
    font-size: 0.68rem;
    font-weight: 700;
}

.service-title h3 {
    font-size: clamp(1.25rem, 2vw, 2rem);
    font-weight: 600;
}

.service-description {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
}

.service-description p {
    max-width: 440px;
    color: #9da8b3;
    font-size: 0.82rem;
}

.service-description a {
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 800;
    white-space: nowrap;
}


/* =========================================================
   INDUSTRIES
========================================================= */

.industries {
    padding: 125px 0;
}

.industries-heading-row {
    display: grid;
    grid-template-columns: 1fr 0.55fr;
    gap: 90px;
    align-items: end;
    margin-bottom: 60px;
}

.industries-heading-row h2,
.work-heading-row h2 {
    font-size: clamp(2.5rem, 4.5vw, 4.5rem);
    letter-spacing: -0.05em;
}

.industries-heading-row p,
.work-heading-row p {
    color: #69717a;
    font-size: 0.9rem;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.industry-card {
    min-height: 150px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: var(--heading);
    font-size: 1.05rem;
    font-weight: 600;
    transition: var(--transition);
}

.industry-card span {
    color: var(--gold);
    font-size: 0.62rem;
}

.industry-card:hover {
    background: var(--navy);
    color: var(--white);
}


/* =========================================================
   CLIENT ECOSYSTEM
========================================================= */

.client-ecosystem {
    padding: 125px 0;
}

.client-heading-row {
    display: grid;
    grid-template-columns: 1fr 0.55fr;
    gap: 90px;
    align-items: end;
    margin-bottom: 75px;
}

.client-heading-row h2 {
    max-width: 700px;
    font-size: clamp(2.6rem, 4.5vw, 4.7rem);
    letter-spacing: -0.05em;
}

.client-heading-row p {
    color: #a5afb9;
    font-size: 0.88rem;
}

.client-wall {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--dark-line);
    border-left: 1px solid var(--dark-line);
}

.client-name {
    min-height: 120px;
    display: grid;
    place-items: center;
    padding: 20px;
    text-align: center;
    border-right: 1px solid var(--dark-line);
    border-bottom: 1px solid var(--dark-line);
    color: #e2e5e8;
    font-family: var(--heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    transition: var(--transition);
}

.client-name:hover {
    color: var(--gold);
    background: rgba(212,175,55,0.04);
}


/* =========================================================
   WORK
========================================================= */

.work {
    padding: 125px 0;
}

.work-heading-row {
    display: grid;
    grid-template-columns: 1fr 0.55fr;
    gap: 90px;
    align-items: end;
    margin-bottom: 70px;
}

.work-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 25px;
}

.work-card {
    background: var(--white);
    border: 1px solid var(--line);
}

.work-card-large {
    grid-row: span 2;
}

.work-visual {
    min-height: 300px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-card-large .work-visual {
    min-height: 480px;
}

.work-visual-navy {
    background: #0d2743;
    color: white;
}

.work-visual-gold {
    background: var(--gold);
    color: var(--navy);
}

.work-visual-black {
    background: #080d13;
    color: white;
}

.work-index {
    position: absolute;
    top: 25px;
    left: 25px;
    font-size: 0.65rem;
    color: var(--gold);
    font-weight: 800;
}

.work-visual-gold .work-index {
    color: var(--navy);
}

.work-visual-text {
    font-family: var(--heading);
    font-size: clamp(3rem, 7vw, 7rem);
    font-weight: 800;
    letter-spacing: -0.07em;
    text-align: center;
    position: relative;
    z-index: 2;
}

.work-visual-text small {
    display: block;
    font-family: var(--body);
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    font-weight: 700;
}

.visual-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 45px 45px;
}

.card-symbol {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -58%);
    font-family: var(--heading);
    font-size: 7rem;
    font-weight: 800;
    opacity: 0.16;
}

.work-circle {
    width: 180px;
    height: 180px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    position: absolute;
}

.work-circle::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    top: 10px;
    right: 28px;
}

.work-info {
    padding: 30px;
}

.work-meta {
    color: var(--gold);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    margin-bottom: 13px;
}

.work-info h3 {
    font-size: 1.35rem;
    margin-bottom: 13px;
}

.work-info p {
    color: #6c747d;
    font-size: 0.82rem;
    margin-bottom: 20px;
}


/* =========================================================
   WHY
========================================================= */

.why {
    padding: 125px 0;
}

.why-heading-row {
    display: grid;
    grid-template-columns: 1fr 0.55fr;
    gap: 90px;
    align-items: end;
    margin-bottom: 75px;
}

.why-heading-row h2 {
    max-width: 700px;
    font-size: clamp(2.6rem, 4.5vw, 4.7rem);
    letter-spacing: -0.05em;
}

.why-heading-row p {
    color: #9ca5ae;
    font-size: 0.88rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--dark-line);
}

.why-item {
    padding: 35px 25px;
    border-right: 1px solid var(--dark-line);
}

.why-item:first-child {
    border-left: 1px solid var(--dark-line);
}

.why-item > span {
    color: var(--gold);
    font-size: 0.65rem;
}

.why-item h3 {
    font-size: 1.25rem;
    margin: 35px 0 14px;
}

.why-item p {
    color: #929da8;
    font-size: 0.78rem;
}


/* =========================================================
   MASTERY
========================================================= */

.mastery {
    padding: 125px 0;
    overflow: hidden;
}

.mastery-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 70px;
    align-items: center;
}

.mastery-copy h2 {
    font-size: clamp(2.5rem, 4.5vw, 4.5rem);
    letter-spacing: -0.05em;
    margin-bottom: 25px;
}

.mastery-copy p {
    color: #656d76;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.mastery-copy strong {
    color: var(--navy);
}

.mastery-copy .btn {
    margin-top: 15px;
}


/* DEVICE STAGE */

.device-stage {
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.device {
    position: absolute;
    background: #111c28;
    border: 3px solid #263646;
    box-shadow: 0 35px 70px rgba(7,21,37,0.25);
}

.laptop {
    width: 520px;
    height: 325px;
    left: 0;
    top: 75px;
    border-radius: 13px;
    padding: 12px;
}

.device-screen {
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, #071525, #172f4b);
    padding: 35px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.device-screen::after {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    border: 1px solid rgba(212,175,55,0.35);
    border-radius: 50%;
    right: -60px;
    bottom: -70px;
}

.screen-brand {
    color: var(--gold);
    font-size: 0.55rem;
    letter-spacing: 0.18em;
}

.screen-title {
    font-family: var(--heading);
    font-size: 2.7rem;
    line-height: 0.95;
    font-weight: 800;
    margin-top: 60px;
}

.screen-line {
    width: 55px;
    height: 2px;
    background: var(--gold);
    margin: 20px 0;
}

.device-screen small {
    font-size: 0.5rem;
    letter-spacing: 0.16em;
    color: #aeb9c4;
}

.laptop-base {
    position: absolute;
    width: 110%;
    height: 10px;
    background: #1a2938;
    bottom: -12px;
    left: -5%;
    border-radius: 0 0 8px 8px;
}

.tablet {
    width: 180px;
    height: 260px;
    right: 75px;
    bottom: 25px;
    border-radius: 17px;
    padding: 9px;
    z-index: 4;
}

.tablet-screen {
    height: 100%;
    background: var(--gold);
    padding: 22px;
    color: var(--navy);
    display: flex;
    flex-direction: column;
}

.tablet-screen span {
    font-size: 0.5rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.tablet-screen strong {
    font-family: var(--heading);
    font-size: 4rem;
    margin-top: 40px;
}

.tablet-screen small {
    font-size: 0.5rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.phone {
    width: 95px;
    height: 190px;
    right: 5px;
    bottom: 10px;
    border-radius: 16px;
    padding: 6px;
    z-index: 6;
}

.phone-screen {
    height: 100%;
    background: #071525;
    padding: 15px 11px;
    color: white;
    display: flex;
    flex-direction: column;
}

.phone-screen span {
    color: var(--gold);
    font-size: 0.35rem;
    letter-spacing: 0.12em;
}

.phone-screen strong {
    font-family: var(--heading);
    font-size: 3.1rem;
    margin-top: 30px;
}

.phone-screen small {
    color: #aeb7c0;
    font-size: 0.38rem;
    letter-spacing: 0.1em;
}


/* =========================================================
   FINAL CTA
========================================================= */

.final-cta {
    background: var(--navy);
    color: var(--white);
    padding: 145px 0;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(212,175,55,0.12);
    border-radius: 50%;
    right: -150px;
    top: -170px;
}

.final-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    text-align: center;
}

.final-cta h2 {
    font-size: clamp(3rem, 6vw, 6rem);
    letter-spacing: -0.055em;
    margin-bottom: 25px;
}

.final-cta p {
    max-width: 650px;
    margin: 0 auto;
    color: #aab5bf;
    font-size: 0.95rem;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.cta-signature {
    margin-top: 65px;
    color: var(--gold);
    font-family: var(--heading);
    font-size: 0.9rem;
    font-style: italic;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: #03070b;
    color: white;
    padding: 75px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 55px;
    padding-bottom: 65px;
}

.footer-brand p {
    max-width: 340px;
    color: #7f8994;
    font-size: 0.78rem;
    margin-top: 22px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column h4 {
    color: var(--gold);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 8px;
}

.footer-column a,
.footer-column span {
    color: #9ca5ae;
    font-size: 0.75rem;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--gold);
}

.footer-socials {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.footer-socials a {
    width: 31px;
    height: 31px;
    border: 1px solid #303944;
    display: grid;
    place-items: center;
}

.footer-bottom {
    min-height: 65px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #606a75;
    font-size: 0.62rem;
}

.footer-bottom span:last-child {
    color: var(--gold);
    font-style: italic;
}


/* =========================================================
   ANIMATION
========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes dotPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.55;
    }

    50% {
        transform: scale(1.8);
        opacity: 1;
    }
}

@keyframes orbitFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(8deg);
    }
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .main-nav {
        gap: 15px;
    }

    .main-nav a {
        font-size: 0.68rem;
    }

    .header-cta {
        display: none;
    }

    .hero-grid {
        gap: 40px;
    }

    .hero h1 {
        font-size: clamp(3rem, 6vw, 5rem);
    }

    .positioning-grid {
        grid-template-columns: 50px 1fr 0.75fr;
    }

    .device-stage {
        transform: scale(0.85);
        transform-origin: center;
    }
}


@media (max-width: 850px) {

    .header-inner {
        height: 76px;
    }

    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .mobile-nav {
        display: none;
        position: absolute;
        top: 76px;
        left: 0;
        width: 100%;
        background: var(--navy);
        padding: 25px 5%;
        border-top: 1px solid rgba(255,255,255,0.08);
    }

    .mobile-nav.open {
        display: flex;
        flex-direction: column;
    }

    .mobile-nav a {
        color: white;
        padding: 13px 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        font-size: 0.85rem;
    }

    .mobile-nav-cta {
        color: var(--gold) !important;
        border: 1px solid var(--gold);
        text-align: center;
        margin-top: 15px;
        padding: 13px !important;
    }

    .hero {
        padding-top: 125px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        max-width: 750px;
    }

    .hero-visual {
        max-width: 600px;
        width: 100%;
        margin: 0 auto;
    }

    .positioning-grid,
    .section-intro-row,
    .industries-heading-row,
    .client-heading-row,
    .work-heading-row,
    .why-heading-row,
    .mastery-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .positioning-copy {
        padding-top: 0;
    }

    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .client-wall {
        grid-template-columns: repeat(2, 1fr);
    }

    .work-grid {
        grid-template-columns: 1fr;
    }

    .work-card-large {
        grid-row: auto;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .device-stage {
        min-height: 440px;
        transform: scale(0.85);
    }
}


@media (max-width: 560px) {

    .container {
        width: 90%;
    }

    .hero {
        padding: 120px 5% 75px;
    }

    .hero-grid {
        width: 100%;
    }

    .hero h1 {
        font-size: clamp(2.9rem, 13vw, 4.3rem);
    }

    .hero-lead {
        font-size: 0.88rem;
    }

    .hero-stats {
        gap: 12px;
        justify-content: space-between;
    }

    .hero-stat {
        gap: 7px;
    }

    .hero-stat strong {
        font-size: 1.2rem;
    }

    .hero-stat span {
        font-size: 0.48rem;
    }

    .stat-line {
        height: 28px;
    }

    .hero-floating-card {
        left: -5px;
        bottom: 25px;
    }

    .gold-orbit {
        right: -25px;
        width: 110px;
        height: 110px;
    }

    .hero-dots {
        inset: -20px;
    }

    .position-strip-inner {
        flex-wrap: wrap;
        justify-content: center;
        padding: 15px 0;
    }

    .position-strip i {
        display: none;
    }

    .positioning,
    .services,
    .industries,
    .client-ecosystem,
    .work,
    .why,
    .mastery {
        padding: 85px 0;
    }

    .service-item {
        grid-template-columns: 45px 1fr;
        gap: 15px;
    }

    .service-description {
        grid-column: 2;
        display: block;
    }

    .service-description a {
        display: inline-block;
        margin-top: 12px;
    }

    .industry-grid {
        grid-template-columns: 1fr;
    }

    .client-wall {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-item {
        border-left: 1px solid var(--dark-line);
    }

    .device-stage {
        min-height: 340px;
        transform: scale(0.58);
        margin: -60px -80px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        gap: 8px;
        padding: 20px 0;
        text-align: center;
    }
}

/* Elizcomm — improved body readability */
body {
    font-size: 20px;
}

p {
    font-size: 20px;
    line-height: 1.8;
}
/* =========================================================
   CLIENT ECOSYSTEM — PREMIUM LOGO WALL
   LARGE LOGO VERSION
========================================================= */

.client-ecosystem {
    background: #0b0f14;
    position: relative;
    overflow: hidden;
}

.client-ecosystem .container {
    position: relative;
    z-index: 1;
}

/* Section introduction */

.client-ecosystem .section-kicker {
    margin-bottom: 18px;
}

.client-ecosystem .client-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 55px;
}

.client-ecosystem .light-heading {
    margin: 0;
    max-width: 620px;
}

.client-ecosystem .client-heading-row p {
    max-width: 560px;
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   LOGO WALL
========================================================= */

.client-wall {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    align-items: stretch;
}


/* Logo holder */

.client-logo {
    min-height: 145px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 22px;

    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.09);

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}


/* LARGE LOGOS */

.client-logo img {
    display: block;
    width: auto;

    max-width: 240px;
    max-height: 80px;

    object-fit: contain;

    opacity: 0.9;
    filter: grayscale(100%);

    transition:
        opacity 0.3s ease,
        filter 0.3s ease,
        transform 0.3s ease;
}


/* Hover */

.client-logo:hover {
    background: rgba(255, 255, 255, 0.055);
    border-color: rgba(212, 175, 55, 0.35);
    transform: translateY(-2px);
}

.client-logo:hover img {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.04);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .client-heading-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .client-wall {
        grid-template-columns: repeat(3, 1fr);
    }

    .client-logo {
        min-height: 135px;
    }

    .client-logo img {
        max-width: 210px;
        max-height: 70px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .client-ecosystem .client-heading-row {
        gap: 20px;
        margin-bottom: 35px;
    }

    .client-ecosystem .client-heading-row p {
        font-size: 15px;
        line-height: 1.7;
    }

    .client-wall {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .client-logo {
        min-height: 115px;
        padding: 20px 12px;
    }

    .client-logo img {
        max-width: 170px;
        max-height: 58px;
    }

}/* =========================================================
   SON FEATURED WORK — AUDIO CASE STUDY
========================================================= */

.work-card-son {
    position: relative;
}

.work-visual-son {
    position: relative;
    min-height: 280px;
    background: #0b0f14;
    color: #ffffff;
    overflow: hidden;
}

.work-visual-son::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            135deg,
            rgba(212, 175, 55, 0.12),
            transparent 45%
        );
    pointer-events: none;
}

.son-mark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    font-size: 64px;
    font-weight: 800;
    letter-spacing: -3px;
    color: #ffffff;
}

.work-visual-son .work-visual-text {
    position: absolute;
    left: 28px;
    bottom: 24px;
    z-index: 2;
}

.work-visual-son .work-visual-text small {
    display: block;
    margin-top: 6px;
    font-size: 10px;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.6);
}


/* SON audio panel */

.son-audio {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(11, 15, 20, 0.12);
}

.son-audio-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #b38a16;
}

.son-audio-caption {
    margin-top: 5px;
    margin-bottom: 14px;
    font-size: 13px;
    color: #777;
}

.son-audio audio {
    width: 100%;
    height: 42px;
}


/* =========================================================
   DESKTOP POSITIONING
========================================================= */

@media (min-width: 1001px) {

    .work-card-son {
        grid-column: 1;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .work-card-son {
        grid-column: auto;
    }

    .work-visual-son {
        min-height: 240px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .work-visual-son {
        min-height: 220px;
    }

    .son-mark {
        font-size: 48px;
    }

    .son-audio {
        margin-top: 22px;
    }

}
/* =========================================================
   SON CASE STUDY — FINAL PREMIUM VERSION
========================================================= */

.work-card-son {
    position: relative;
}


/* SON VISUAL */

.work-card-son .work-visual-son {
    position: relative;
    min-height: 280px;
    background: #0b0f14;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* subtle premium glow */

.work-card-son .work-visual-son::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}


/* SON */

.work-card-son .son-brand {
    position: relative;
    z-index: 2;

    font-size: 76px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -4px;

    color: #ffffff;
}


/* Campaign label */

.work-card-son .son-campaign-label {
    position: absolute;
    left: 28px;
    bottom: 24px;

    z-index: 3;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;

    color: #d4af37;
}

.work-card-son .son-campaign-label span {
    display: block;
    margin-top: 6px;

    color: rgba(255, 255, 255, 0.62);

    font-size: 9px;
    letter-spacing: 1.5px;
}


/* Make sure old work-visual text styling cannot interfere */

.work-card-son .work-visual-text {
    display: none !important;
}


/* SON INFORMATION */

.work-card-son .work-info {
    padding: 32px 28px 34px;
}

.work-card-son .work-meta {
    margin-bottom: 14px;
    line-height: 1.6;
}

.work-card-son .work-info h3 {
    margin-bottom: 16px;
    line-height: 1.35;
}

.work-card-son .work-info p {
    margin-bottom: 26px;
    line-height: 1.85;
    max-width: 650px;
}


/* AUDIO */

.work-card-son .son-audio {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(11, 15, 20, 0.12);
}

.work-card-son .son-audio-label {
    margin-bottom: 6px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;

    color: #b38a16;
}

.work-card-son .son-audio-caption {
    margin-bottom: 14px;

    font-size: 13px;
    line-height: 1.6;

    color: #777;
}

.work-card-son .son-audio audio {
    display: block;
    width: 100%;
    height: 44px;
}


/* TABLET */

@media (max-width: 1000px) {

    .work-card-son .work-visual-son {
        min-height: 250px;
    }

    .work-card-son .son-brand {
        font-size: 64px;
    }

}


/* PHONE */

@media (max-width: 600px) {

    .work-card-son .work-visual-son {
        min-height: 220px;
    }

    .work-card-son .son-brand {
        font-size: 52px;
    }

    .work-card-son .work-info {
        padding: 26px 22px 30px;
    }

}
/* SON LOGO */

.work-card-son .son-brand {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-card-son .son-brand img {
    display: block;
    width: auto;
    max-width: 230px;
    max-height: 110px;
    object-fit: contain;
}

/* =========================================================
   TRAI / COTECNA — PORTRAIT PROFILE HOLDER
========================================================= */

.work-card--trai {
    width: 100%;
}

.work-card--trai .trai-visual {
    position: relative;

    /* A5 portrait proportion */
    width: min(100%, 360px);
    aspect-ratio: 148 / 210;
    height: auto;

    margin: 0 auto;
    padding: 0;

    overflow: hidden;

    background: #071525;
    border: 1px solid rgba(212, 175, 55, 0.35);
}

/* Video fills the holder exactly */
.work-card--trai .case-study-video {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;
}

/* Preview button stays inside the page */
.work-card--trai .case-study-preview {
    position: absolute;
    left: 50%;
    bottom: 16px;

    transform: translateX(-50%);
    z-index: 20;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    padding: 9px 14px;

    border: 1px solid #d4af37;
    background: rgba(5, 9, 14, 0.92);
    color: #d4af37;

    font-family: var(--body);
    font-size: 0.58rem;
    font-weight: 700;

    white-space: nowrap;
    cursor: pointer;
}

/* Gap before the text */
.work-card--trai .work-info {
    padding-top: 24px;
}

/* Same restrained typography */
.work-card--trai .work-meta {
    font-size: 0.52rem;
    margin-bottom: 7px;
}

.work-card--trai .work-info h3 {
    font-size: 0.98rem;
    line-height: 1.35;
    margin-bottom: 8px;
}

.work-card--trai .work-info p {
    font-size: 0.68rem;
    line-height: 1.6;
    margin: 0;
}