/* =========================================================
   SETKENT
   Main Stylesheet
========================================================= */

:root {

    --orange: #ff5a00;
    --orange-hover: #ff6b18;

    --black: #0b0b0c;
    --black-soft: #151517;

    --white: #f5f2ec;
    --pure-white: #ffffff;

    --gray-light: #e8e4dc;
    --gray: #8b8d91;
    --gray-dark: #5f6166;

    --border-light: rgba(11, 11, 12, 0.1);
    --border-dark: rgba(255, 255, 255, 0.1);

    --background: var(--white);
    --surface: #ffffff;
    --surface-alt: #ebe7df;

    --text: var(--black);
    --text-soft: #5f6166;

    --header-bg: rgba(245, 242, 236, 0.82);

    --shadow:
        0 20px 60px rgba(0, 0, 0, 0.08);

    --container: 1240px;

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;

    --transition: 0.3s ease;
}


/* DARK THEME */

body.dark-theme {

    --background: #0b0b0c;

    --surface: #151517;
    --surface-alt: #1b1b1e;

    --text: #f5f2ec;
    --text-soft: #999ba0;

    --header-bg: rgba(11, 11, 12, 0.82);

    --border-light: rgba(255, 255, 255, 0.1);

    --shadow:
        0 20px 70px rgba(0, 0, 0, 0.35);
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family: "Manrope", sans-serif;

    background: var(--background);

    color: var(--text);

    line-height: 1.6;

    transition:
        background var(--transition),
        color var(--transition);

    overflow-x: hidden;
}


body.menu-open {
    overflow: hidden;
}


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


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


button {
    font: inherit;
}


button,
a {
    -webkit-tap-highlight-color: transparent;
}


::selection {
    background: var(--orange);
    color: #fff;
}


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

.container {

    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin-inline: auto;
}


.section {
    padding: 120px 0;
}


.section-kicker {

    display: inline-block;

    font-size: 0.78rem;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.15em;

    color: var(--orange);

    margin-bottom: 18px;
}


.section-heading {

    display: grid;

    grid-template-columns:
        1.2fr 0.8fr;

    gap: 60px;

    align-items: end;

    margin-bottom: 64px;
}


.section-heading h2,
.why-content h2,
.about-content h2,
.contact-content h2 {

    font-size: clamp(
        2.5rem,
        5vw,
        5rem
    );

    line-height: 1;

    letter-spacing: -0.055em;

    font-weight: 800;
}


.section-heading h2 span,
.why-content h2 span,
.about-content h2 span,
.contact-content h2 span {

    color: var(--orange);
}


.section-heading > p {

    max-width: 520px;

    color: var(--text-soft);

    font-size: 1rem;

    line-height: 1.8;
}


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

.site-header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    background: var(--header-bg);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid transparent;

    transition: var(--transition);
}


.site-header.scrolled {
    border-color: var(--border-light);
}


.nav-container {

    height: 84px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


.logo-area {

    display: flex;

    align-items: center;

    flex-shrink: 0;
}


.main-logo {

    width: 180px;

    max-height: 50px;

    object-fit: contain;
}



/* DESKTOP NAV */

.desktop-nav {

    display: flex;

    align-items: center;

    gap: 32px;
}


.desktop-nav a {

    font-size: 0.88rem;

    font-weight: 650;

    color: var(--text-soft);

    transition: var(--transition);
}


.desktop-nav a:hover {

    color: var(--orange);
}


.nav-actions {

    display: flex;

    align-items: center;

    gap: 10px;
}


.theme-toggle {

    width: 46px;
    height: 46px;

    border-radius: 50%;

    border: 1px solid var(--border-light);

    background: var(--surface);

    color: var(--text);

    cursor: pointer;

    display: grid;

    place-items: center;

    position: relative;

    transition: var(--transition);
}


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


.theme-icon {

    position: absolute;

    transition: var(--transition);
}


.sun-icon {
    opacity: 1;
    transform: scale(1);
}


.moon-icon {
    opacity: 0;
    transform: scale(0.4);
}


body.dark-theme .sun-icon {
    opacity: 0;
    transform: scale(0.4);
}


body.dark-theme .moon-icon {
    opacity: 1;
    transform: scale(1);
}


.nav-call-button {

    background: var(--orange);

    color: #fff;

    height: 46px;

    padding: 0 22px;

    border-radius: 999px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-weight: 800;

    font-size: 0.85rem;

    transition: var(--transition);
}


.nav-call-button:hover {
    background: var(--orange-hover);
}


.menu-toggle {

    width: 46px;
    height: 46px;

    border-radius: 50%;

    border: 1px solid var(--border-light);

    background: var(--surface);

    display: none;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 5px;

    cursor: pointer;
}


.menu-toggle span {

    width: 18px;

    height: 2px;

    background: var(--text);

    transition: var(--transition);
}


/* MOBILE MENU */

.mobile-menu {

    display: none;

    position: fixed;

    inset:
        84px
        0
        0
        0;

    background: var(--background);

    padding: 35px 20px;

    flex-direction: column;

    gap: 0;
}


.mobile-menu a {

    display: block;

    padding: 20px 0;

    border-bottom: 1px solid var(--border-light);

    font-size: 1.15rem;

    font-weight: 700;
}


.mobile-menu.active {
    display: flex;
}


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

.hero {

    min-height: 100vh;

    padding-top: 160px;

    display: flex;

    align-items: center;

    position: relative;

    overflow: hidden;
}


.hero-grid {

    display: grid;

    grid-template-columns:
        1.05fr 0.95fr;

    gap: 80px;

    align-items: center;

    position: relative;

    z-index: 2;
}


.eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 8px 14px;

    border: 1px solid var(--border-light);

    border-radius: 999px;

    font-size: 0.8rem;

    font-weight: 700;

    margin-bottom: 30px;

    background: var(--surface);
}


.eyebrow-dot {

    width: 7px;
    height: 7px;

    background: var(--orange);

    border-radius: 50%;

    box-shadow:
        0 0 0 6px
        rgba(255, 90, 0, 0.12);
}


.hero h1 {

    font-size: clamp(
        4.2rem,
        8vw,
        8rem
    );

    line-height: 0.84;

    letter-spacing: -0.075em;

    font-weight: 800;

    margin-bottom: 34px;
}


.hero h1 span {
    color: var(--orange);
}


.hero-lead {

    font-size: clamp(
        1.4rem,
        2.3vw,
        2rem
    );

    max-width: 620px;

    margin-bottom: 18px;
}


.hero-lead strong {
    color: var(--orange);
}


.hero-description {

    max-width: 620px;

    font-size: 1.03rem;

    line-height: 1.85;

    color: var(--text-soft);
}


.hero-buttons {

    margin-top: 36px;

    display: flex;

    gap: 12px;

    flex-wrap: wrap;
}


.button {

    min-height: 54px;

    padding: 0 24px;

    border-radius: 999px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    font-weight: 800;

    transition: var(--transition);
}


.button-primary {

    background: var(--orange);

    color: white;
}


.button-primary:hover {

    background: var(--orange-hover);

    transform: translateY(-2px);
}


.button-secondary {

    border: 1px solid var(--border-light);

    background: var(--surface);

    color: var(--text);
}


.button-secondary:hover {

    border-color: var(--orange);

    color: var(--orange);
}


.hero-highlights {

    display: flex;

    gap: 35px;

    flex-wrap: wrap;

    margin-top: 50px;
}


.hero-highlight {

    display: flex;

    flex-direction: column;
}


.hero-highlight strong {

    font-size: 1.1rem;

    font-weight: 800;
}


.hero-highlight span {

    font-size: 0.75rem;

    color: var(--text-soft);

    text-transform: uppercase;

    letter-spacing: 0.08em;
}


/* HERO VISUAL */

.hero-visual {

    position: relative;

    min-height: 600px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.hero-card {

    width: min(100%, 520px);

    min-height: 570px;

    padding: 30px;

    border-radius: var(--radius-lg);

    background:
        linear-gradient(
            160deg,
            #121214,
            #080809
        );

    color: #f5f2ec;

    border:
        1px solid
        rgba(255, 255, 255, 0.08);

    box-shadow:
        0 40px 100px
        rgba(0, 0, 0, 0.2);

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    position: relative;

    overflow: hidden;
}


.hero-card::after {

    content: "";

    width: 300px;
    height: 300px;

    background: var(--orange);

    filter: blur(140px);

    opacity: 0.2;

    position: absolute;

    right: -130px;
    top: 100px;
}


.hero-card-top {

    display: flex;

    justify-content: space-between;

    position: relative;

    z-index: 2;
}


.status-indicator {

    font-size: 0.75rem;

    text-transform: uppercase;

    letter-spacing: 0.12em;

    display: flex;

    align-items: center;

    gap: 10px;
}


.status-indicator span {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--orange);
}


.hero-card-number {

    font-size: 0.8rem;

    color: rgba(255, 255, 255, 0.5);
}


.hero-icon-box {

    width: 220px;

    margin: 0 auto;

    position: relative;

    z-index: 2;
}


.hero-icon-box img {

    width: 100%;
}


.hero-card-copy {

    position: relative;

    z-index: 2;
}


.hero-card-copy > span {

    font-size: 0.78rem;

    color: var(--orange);

    font-weight: 800;

    letter-spacing: 0.16em;
}


.hero-card-copy h2 {

    font-size: clamp(
        2rem,
        4vw,
        3.2rem
    );

    line-height: 1.05;

    letter-spacing: -0.045em;

    margin-top: 12px;
}


.hero-card-footer {

    display: flex;

    flex-wrap: wrap;

    gap: 9px;

    position: relative;

    z-index: 2;
}


.hero-card-footer span {

    border:
        1px solid
        rgba(255, 255, 255, 0.14);

    border-radius: 999px;

    padding: 7px 12px;

    font-size: 0.68rem;

    text-transform: uppercase;

    letter-spacing: 0.08em;
}


.floating-card {

    position: absolute;

    background: var(--surface);

    color: var(--text);

    border: 1px solid var(--border-light);

    box-shadow: var(--shadow);

    border-radius: 14px;

    padding: 14px 18px;

    font-size: 0.78rem;

    font-weight: 800;

    display: flex;

    gap: 12px;

    align-items: center;
}


.floating-card span {
    color: var(--orange);
}


.floating-card-one {

    top: 80px;
    left: -30px;
}


.floating-card-two {

    right: -45px;
    bottom: 70px;
}


/* HERO BACKGROUND */

.hero-glow {

    position: absolute;

    border-radius: 50%;

    filter: blur(130px);

    pointer-events: none;
}


.hero-glow-one {

    width: 330px;
    height: 330px;

    background: rgba(255, 90, 0, 0.18);

    top: 150px;
    right: -100px;
}


.hero-glow-two {

    width: 260px;
    height: 260px;

    background: rgba(255, 90, 0, 0.1);

    left: -120px;
    bottom: 80px;
}


/* =========================================================
   SERVICES
========================================================= */

.services {

    background: var(--surface-alt);
}


.services-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}


.service-card {
    min-height: 370px;

    padding: 30px;

    background: var(--surface);

    border:
        1px solid
        var(--border-light);

    border-radius: 22px;

    display: flex;
    flex-direction: column;

    position: relative;
    overflow: hidden;

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

.service-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: 0;
    height: 2px;

    background: var(--orange);

    transform: translateX(-50%);

    transition:
        width 0.35s ease;
}

.service-card:hover {
    transform: translateY(-6px);

    border-color:
        rgba(255, 90, 0, 0.30);

    box-shadow:
        0 24px 60px
        rgba(0, 0, 0, 0.10);
}

.service-card:hover::before {
    width: calc(100% - 40px);
}

body.dark-theme .service-card:hover {
    box-shadow:
        0 24px 60px
        rgba(0, 0, 0, 0.28);
}


.service-number {
    font-size: 0.72rem;

    font-weight: 700;

    letter-spacing: 0.08em;

    color: var(--text-soft);

    opacity: 0.72;
}


.service-icon {
    width: 58px;
    height: 58px;

    border-radius: 17px;

    display: grid;
    place-items: center;

    color: var(--orange);

    background: rgba(255, 90, 0, 0.08);

    border:
        1px solid
        rgba(255, 90, 0, 0.14);

    margin:
        50px
        0
        22px;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.service-icon svg {
    width: 27px;
    height: 27px;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.8;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-icon svg * {
    fill: none !important;
    stroke: currentColor !important;
}

body.dark-theme .service-icon {
    color: var(--orange);

    background:
        rgba(255, 90, 0, 0.13);

    border-color:
        rgba(255, 90, 0, 0.22);
}

.service-card:hover .service-icon {
    background:
        rgba(255, 90, 0, 0.16);

    border-color:
        rgba(255, 90, 0, 0.35);

    transform:
        translateY(-2px);
}

.service-card h3 {

    font-size: 1.45rem;

    letter-spacing: -0.03em;

    margin-bottom: 12px;
}


.service-card p {

    color: var(--text-soft);

    font-size: 0.9rem;

    line-height: 1.8;
}


.service-card > a {
    margin-top: auto;

    padding-top: 24px;

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

    font-size: 0.82rem;
    font-weight: 800;

    border-top:
        1px solid
        var(--border-light);

    transition:
        color 0.25s ease,
        border-color 0.25s ease;
}

.service-card > a span {
    font-size: 1rem;

    transition:
        transform 0.25s ease;
}

.service-card > a:hover {
    color: var(--orange);

    border-color:
        rgba(255, 90, 0, 0.22);
}

.service-card > a:hover span {
    transform:
        translate(3px, -3px);
}

.service-card-highlight {
    background:
        linear-gradient(
            145deg,
            var(--orange) 0%,
            #ff6818 100%
        );

    color: #fff;

    border-color: transparent;

    justify-content: space-between;

    position: relative;
    overflow: hidden;

    box-shadow:
        0 20px 50px
        rgba(255, 90, 0, 0.14);
}

.service-card-highlight::before {
    display: none;
}

.service-card-highlight::after {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    right: -90px;
    top: -90px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.13);

    filter: blur(5px);

    pointer-events: none;
}

.service-card-highlight:hover {
    border-color: transparent;

    transform: translateY(-6px);

    box-shadow:
        0 28px 65px
        rgba(255, 90, 0, 0.24);
}


.small-label {
    position: relative;
    z-index: 2;

    width: fit-content;

    font-size: 0.69rem;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.13em;

    color: rgba(255, 255, 255, 0.82);
}


.service-card-highlight h3 {
    position: relative;
    z-index: 2;

    max-width: 290px;

    font-size: clamp(
        2.15rem,
        3vw,
        3rem
    );

    line-height: 0.96;

    letter-spacing: -0.055em;

    margin-top: 58px;

    color: #fff;
}

.card-cta {
    position: relative;
    z-index: 2;

    color: #fff !important;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.30) !important;
}

.card-cta span {
    width: 30px;
    height: 30px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.14);

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.card-cta:hover span {
    background:
        rgba(255, 255, 255, 0.24);

    transform:
        translate(3px, -3px);
}


/* =========================================================
   WHY US
========================================================= */

.why-grid {
    display: grid;

    grid-template-columns:
        0.82fr 1.18fr;

    gap: 110px;

    align-items: start;
}

.why-content {
    position: sticky;
    top: 130px;

    padding: 12px 0 24px;

    background: transparent;
    border: 0;
    box-shadow: none;
}


.why-content > p {
    max-width: 500px;

    margin-top: 28px;

    color: var(--text-soft);

    font-size: 0.95rem;

    line-height: 1.85;
}

.text-link {
    display: inline-flex;
    align-items: center;

    gap: 12px;

    margin-top: 32px;

    padding:
        11px
        16px;

    border:
        1px solid
        rgba(255, 90, 0, 0.22);

    border-radius: 999px;

    background:
        rgba(255, 90, 0, 0.06);

    color: var(--orange);

    font-size: 0.82rem;
    font-weight: 800;

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        border-color 0.25s ease;
}

.text-link span {
    transition:
        transform 0.25s ease;
}

.text-link:hover {
    background:
        rgba(255, 90, 0, 0.11);

    border-color:
        rgba(255, 90, 0, 0.38);

    transform:
        translateY(-2px);
}

.text-link:hover span {
    transform:
        translate(3px, -3px);
}

.why-list {
    position: relative;

    padding-left: 22px;
}

.why-list::before {
    content: "";

    position: absolute;

    left: 42px;
    top: 25px;
    bottom: 25px;

    width: 1px;

    background:
        linear-gradient(
            to bottom,
            rgba(255, 90, 0, 0.75),
            rgba(255, 90, 0, 0.08)
        );
}

.why-item {
    position: relative;

    display: grid;

    grid-template-columns:
        64px 1fr;

    gap: 26px;

    align-items: center;

    min-height: 132px;

    padding:
        26px
        20px;

    margin: 0;

    background: transparent;

    border: 0;

    border-bottom:
        1px solid
        var(--border-light);

    border-radius: 0;

    overflow: visible;

    transition:
        transform 0.3s ease;
}

.why-item:last-child {
    border-bottom: 0;
}

.why-item:hover {
    transform:
        translateX(7px);
}

.why-index {
    position: relative;
    z-index: 2;

    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        var(--background);

    border:
        1px solid
        rgba(255, 90, 0, 0.32);

    color:
        var(--orange);

    font-size:
        0.70rem;

    font-weight:
        800;

    letter-spacing:
        0.04em;

    box-shadow:
        0 0 0 7px
        var(--background);

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.why-item:hover .why-index {
    background:
        var(--orange);

    color: #fff;

    transform:
        scale(1.06);
}


.why-item h3 {
    font-size: 1.42rem;

    line-height: 1.2;

    letter-spacing: -0.035em;

    margin-bottom: 7px;

    transition:
        color 0.25s ease;
}

.why-item:hover h3 {
    color: var(--orange);
}

.why-item p {
    color:
        var(--text-soft);

    max-width:
        560px;

    font-size:
        0.92rem;

    line-height:
        1.75;
}


/* =========================================================
   PROCESS
========================================================= */

.process {

    background: var(--black);

    color: #f5f2ec;
}


.process .section-kicker {
    color: var(--orange);
}


.process .section-heading h2 {
    color: #f5f2ec;
}


.process .section-heading h2 span {
    color: var(--orange);
}


.process-grid {

    display: grid;

    grid-template-columns:
        1fr 80px 1fr 80px 1fr;

    gap: 24px;

    align-items: center;
}


.process-step {
    position: relative;

    min-height: 290px;

    padding: 32px;

    display: flex;
    flex-direction: column;

    border-radius: 22px;

    border:
        1px solid
        rgba(255, 255, 255, 0.10);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.018)
        );

    overflow: hidden;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.process-step::after {
    content: "";

    position: absolute;

    width: 160px;
    height: 160px;

    right: -70px;
    top: -70px;

    border-radius: 50%;

    background:
        rgba(255, 90, 0, 0.12);

    filter: blur(35px);

    opacity: 0;

    transition:
        opacity 0.3s ease;
}

.process-step:hover {
    transform:
        translateY(-6px);

    border-color:
        rgba(255, 90, 0, 0.35);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.075),
            rgba(255, 255, 255, 0.025)
        );
}

.process-step:hover::after {
    opacity: 1;
}


.process-number {
    position: relative;
    z-index: 2;

    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    margin-bottom: auto;

    border-radius: 14px;

    background:
        rgba(255, 90, 0, 0.12);

    border:
        1px solid
        rgba(255, 90, 0, 0.20);

    color:
        var(--orange);

    font-size:
        0.72rem;

    font-weight:
        800;

    letter-spacing:
        0.05em;
}


.process-step h3 {
    position: relative;
    z-index: 2;

    font-size: 1.5rem;

    line-height: 1.2;

    letter-spacing:
        -0.035em;

    margin-bottom:
        10px;
}

.process-step p {
    position: relative;
    z-index: 2;

    max-width:
        300px;

    color:
        rgba(255, 255, 255, 0.58);

    font-size:
        0.9rem;

    line-height:
        1.75;
}


.process-line {
    position: relative;

    width: 100%;
    height: 1px;

    background:
        linear-gradient(
            to right,
            rgba(255, 90, 0, 0.10),
            rgba(255, 90, 0, 0.75)
        );
}

.process-line::before {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background:
        rgba(255, 90, 0, 0.35);

    transform:
        translateY(-50%);
}

.process-line::after {
    content: "";

    position: absolute;

    right: 0;
    top: 50%;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background:
        var(--orange);

    box-shadow:
        0 0 0 6px
        rgba(255, 90, 0, 0.10);

    transform:
        translateY(-50%);
}

/* =========================================================
   PROJECTS
========================================================= */

.projects-grid {

    display: grid;

    grid-template-columns:
        1.3fr 0.7fr;

    gap: 20px;
}


.project-card {

    background: var(--surface);

    border-radius: var(--radius-md);

    overflow: hidden;

    border:
        1px solid
        var(--border-light);
}


.project-large {

    grid-row: span 2;
}


.project-placeholder {

    min-height: 280px;

    background:
        linear-gradient(
            135deg,
            #1a1a1d,
            #0b0b0c
        );

    display: grid;

    place-items: center;

    color:
        rgba(255, 255, 255, 0.35);

    font-size: 0.8rem;

    text-transform: uppercase;

    letter-spacing: 0.15em;
}


.project-large .project-placeholder {
    min-height: 600px;
}


.project-info {

    padding: 25px;
}


.project-info > span {

    color: var(--orange);

    font-size: 0.72rem;

    text-transform: uppercase;

    letter-spacing: 0.12em;
}


.project-info h3 {

    font-size: 1.45rem;

    margin:
        6px
        0
        22px;
}


.project-info a {

    font-size: 0.82rem;

    font-weight: 800;

    display: flex;

    justify-content: space-between;

    border-top:
        1px solid
        var(--border-light);

    padding-top: 18px;
}


.project-info a:hover {
    color: var(--orange);
}


/* =========================================================
   ABOUT
========================================================= */

.about-grid {

    display: grid;

    grid-template-columns:
        0.7fr 1.3fr;

    gap: 80px;

    align-items: start;
}


.about-tag {

    font-size: clamp(
        4rem,
        8vw,
        8rem
    );

    font-weight: 800;

    letter-spacing: -0.07em;

    writing-mode: vertical-rl;

    color:
        rgba(255, 90, 0, 0.1);
}


.about-content p {

    max-width: 680px;

    color: var(--text-soft);

    margin-top: 26px;

    line-height: 1.9;
}


/* =========================================================
   SETKENT - COMMUNICATION TERMINAL
========================================================= */

.contact-stage {
    position: relative;
    padding: 68px 0;
    overflow: hidden;
    background: var(--surface-alt);
}

.contact-stage-glow {
    position: absolute;
    width: 520px;
    height: 520px;
    right: -220px;
    top: 80px;
    border-radius: 50%;
    background: rgba(255, 90, 0, 0.12);
    filter: blur(150px);
    pointer-events: none;
}


/* INTRO */

.contact-intro {
    position: relative;
    z-index: 2;
    max-width: 1040px;
    margin: 0 auto 30px;
}

.contact-eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 18px;
    color: var(--text-soft);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.contact-live-dot {
    width: 8px;
    height: 8px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 6px rgba(255, 90, 0, 0.10);
}

.contact-intro-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.10fr)
        minmax(280px, 0.90fr);
    gap: 48px;
    align-items: end;
}

.contact-title {
    max-width: 610px;
    font-size: clamp(2.9rem, 4vw, 4.4rem);
    line-height: 0.90;
    letter-spacing: -0.075em;
    font-weight: 800;
}

.contact-title span {
    display: block;
    color: var(--orange);
}

.contact-intro-side > p {
    max-width: 470px;
    color: var(--text-soft);
    font-size: 0.94rem;
    line-height: 1.85;
}

.contact-availability {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
}

.contact-availability > span {
    position: relative;
    width: 11px;
    height: 11px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--orange);
}

.contact-availability > span::after {
    content: "";
    position: absolute;
    inset: -6px;
    border: 1px solid rgba(255, 90, 0, 0.30);
    border-radius: 50%;
    animation: contactLivePulse 2.2s ease-out infinite;
}

.contact-availability div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-availability small {
    color: var(--text-soft);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.13em;
}

.contact-availability strong {
    font-size: 0.82rem;
}


/* TERMINAL */

.contact-terminal {
    position: relative;
    z-index: 2;
    max-width: 1040px;
    margin-inline: auto;
    overflow: hidden;
    border-radius: 28px;
    color: #f5f2ec;

    background:
        radial-gradient(
            circle at 77% 45%,
            rgba(255, 90, 0, 0.13),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #121214 0%,
            #080809 68%,
            #0c0c0e 100%
        );

    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 45px 100px rgba(0,0,0,0.18);
}

.terminal-grid {
    position: absolute;
    inset: 0;
    opacity: 0.055;
    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.7) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.7) 1px,
            transparent 1px
        );

    background-size: 52px 52px;
}

.terminal-sweep {
    position: absolute;
    top: -30%;
    left: -25%;
    width: 25%;
    height: 160%;
    transform: skewX(-18deg);
    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,90,0,0.07),
            transparent
        );

    animation: terminalSweep 9s ease-in-out infinite;
}


/* TOP BAR */

.terminal-topbar {
    position: relative;
    z-index: 3;
    min-height: 52px;
    padding: 0 26px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    border-bottom: 1px solid rgba(255,255,255,0.08);

    color: rgba(255,255,255,0.42);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.terminal-id {
    display: flex;
    align-items: center;
    gap: 10px;
}

.terminal-status-dot {
    width: 7px;
    height: 7px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 5px rgba(255,90,0,0.10);
}


/* BODY */

.terminal-body {
    position: relative;
    z-index: 3;

    display: grid;
    grid-template-columns:
        minmax(0, 1.12fr)
        minmax(280px, 0.88fr);

    min-height: 330px;
}

.terminal-main {
    padding: 34px 38px;
    border-right: 1px solid rgba(255,255,255,0.08);
}

.terminal-channel {
    display: flex;
    align-items: center;
    gap: 11px;

    color: rgba(255,255,255,0.42);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.terminal-channel > span {
    color: var(--orange);
}

.terminal-main h3 {
    max-width: 460px;
    margin-top: 18px;

    font-size: clamp(2.3rem, 3.3vw, 3.6rem);
    line-height: 0.88;
    letter-spacing: -0.065em;
}

.terminal-main h3 span {
    display: block;
    color: var(--orange);
}

.terminal-main > p {
    max-width: 560px;
    margin-top: 18px;

    color: rgba(255,255,255,0.52);
    font-size: 0.90rem;
    line-height: 1.75;
}


/* DESKTOP ACTIONS */

.terminal-actions-desktop {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.terminal-primary,
.terminal-secondary-button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 0.80rem;
    font-weight: 800;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.terminal-primary {
    gap: 18px;
    padding: 0 10px 0 21px;

    background: var(--orange);
    color: #fff;
    box-shadow: 0 16px 38px rgba(255,90,0,0.22);
}

.terminal-primary i {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;

    border-radius: 50%;
    background: rgba(255,255,255,0.16);

    font-style: normal;
    transition: transform 0.3s ease;
}

.terminal-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 44px rgba(255,90,0,0.30);
}

.terminal-primary:hover i {
    transform: translate(2px, -2px);
}

.terminal-secondary-button {
    gap: 13px;
    padding: 0 19px;

    color: rgba(255,255,255,0.70);
    border: 1px solid rgba(255,255,255,0.11);
    background: rgba(255,255,255,0.025);
}

.terminal-secondary-button i {
    color: var(--orange);
    font-style: normal;
    transition: transform 0.3s ease;
}

.terminal-secondary-button:hover {
    color: #fff;
    border-color: rgba(255,90,0,0.35);
    background: rgba(255,90,0,0.05);
    transform: translateY(-2px);
}

.terminal-secondary-button:hover i {
    transform: translateX(3px);
}


/* MOBILE ACTIONS */

.terminal-actions-mobile {
    display: none;
}


/* META */

.terminal-contact-meta {
    display: flex;
    gap: 34px;
    margin-top: 22px;
    padding-top: 16px;

    border-top: 1px solid rgba(255,255,255,0.08);
}

.terminal-contact-meta > div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.terminal-contact-meta small {
    color: rgba(255,255,255,0.30);
    font-size: 0.56rem;
    font-weight: 800;
    letter-spacing: 0.13em;
}

.terminal-contact-meta strong {
    color: rgba(255,255,255,0.82);
    font-size: 0.80rem;
}


/* SIGNAL CENTER */

.terminal-signal {
    position: relative;
    min-height: 330px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.signal-label {
    margin-bottom: 16px;

    color: rgba(255,255,255,0.34);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.signal-orbit {
    position: relative;
    width: 170px;
    height: 170px;

    display: grid;
    place-items: center;

    border-radius: 50%;
}

.signal-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,90,0,0.22);
}

.signal-ring-1 {
    inset: 0;
    animation: signalPulseA 4.5s ease-in-out infinite;
}

.signal-ring-2 {
    inset: 22px;
    border-color: rgba(255,90,0,0.16);
    animation: signalPulseB 4.5s ease-in-out infinite;
}

.signal-ring-3 {
    inset: 45px;
    border-color: rgba(255,255,255,0.08);
}

.signal-core {
    position: relative;
    z-index: 3;

    width: 80px;
    height: 80px;

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

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 30%,
            #ff7a31,
            var(--orange) 48%,
            #d94700 100%
        );

    box-shadow:
        0 0 0 10px rgba(255,90,0,0.07),
        0 24px 65px rgba(255,90,0,0.28);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.signal-core small {
    color: rgba(255,255,255,0.72);
    font-size: 0.50rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.signal-core strong {
    margin-top: 2px;
    color: #fff;
    font-size: 0.92rem;
    letter-spacing: -0.02em;
}

.signal-orbit:hover .signal-core {
    transform: scale(1.07);

    box-shadow:
        0 0 0 14px rgba(255,90,0,0.07),
        0 30px 80px rgba(255,90,0,0.38);
}

.signal-status {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 18px;

    color: rgba(255,255,255,0.38);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.13em;
}

.signal-status > span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
}


/* ROUTE */

.terminal-route {
    position: relative;
    z-index: 3;

    min-height: 72px;
    padding: 0 28px;

    display: grid;
    grid-template-columns:
        auto 1fr auto 1fr auto;

    align-items: center;
    gap: 18px;

    border-top: 1px solid rgba(255,255,255,0.08);
}

.route-node {
    display: flex;
    align-items: center;
    gap: 12px;
}

.route-node > span {
    color: var(--orange);
    font-size: 0.62rem;
    font-weight: 800;
}

.route-node div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.route-node strong {
    font-size: 0.66rem;
    letter-spacing: 0.10em;
}

.route-node small {
    color: rgba(255,255,255,0.32);
    font-size: 0.57rem;
}

.route-line {
    position: relative;
    height: 1px;
    background: rgba(255,255,255,0.08);
}

.route-line span {
    position: absolute;
    left: 0;
    top: 50%;

    width: 24%;
    height: 1px;

    background: var(--orange);
    transform: translateY(-50%);

    animation: routeSignal 3.2s ease-in-out infinite;
}


/* ANIMATIONS */

@keyframes contactLivePulse {
    0% {
        transform: scale(0.7);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

@keyframes terminalSweep {
    0%,
    20% {
        left: -30%;
        opacity: 0;
    }

    40% {
        opacity: 1;
    }

    100% {
        left: 115%;
        opacity: 0;
    }
}

@keyframes signalPulseA {
    0%,
    100% {
        transform: scale(0.96);
        opacity: 0.55;
    }

    50% {
        transform: scale(1.04);
        opacity: 1;
    }
}

@keyframes signalPulseB {
    0%,
    100% {
        transform: scale(1.04);
        opacity: 0.40;
    }

    50% {
        transform: scale(0.96);
        opacity: 0.9;
    }
}

@keyframes routeSignal {
    0% {
        left: 0;
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    70% {
        opacity: 1;
    }

    100% {
        left: 76%;
        opacity: 0;
    }
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .contact-intro-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .terminal-body {
        grid-template-columns: 1fr;
    }

    .terminal-main {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .terminal-signal {
        min-height: 255px;
    }
}


@media (max-width: 767px) {

    .terminal-actions-desktop {
        display: none;
    }

    .terminal-actions-mobile {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: 22px;
    }

    .terminal-mobile-call,
    .terminal-mobile-whatsapp {
        min-height: 50px;
        padding: 0 14px;

        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;

        border-radius: 999px;
        font-size: 0.78rem;
        font-weight: 800;
    }

    .terminal-mobile-call {
        color: #fff;
        background: var(--orange);
        box-shadow: 0 14px 34px rgba(255,90,0,0.22);
    }

    .terminal-mobile-whatsapp {
        color: #fff;
        background: rgba(255,255,255,0.045);
        border: 1px solid rgba(255,255,255,0.13);
    }

    .terminal-mobile-call i,
    .terminal-mobile-whatsapp i {
        width: 30px;
        height: 30px;

        display: grid;
        place-items: center;

        border-radius: 50%;
        background: rgba(255,255,255,0.12);
        font-style: normal;
    }

    .terminal-mobile-mail {
        grid-column: 1 / -1;

        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 9px;

        min-height: 40px;

        color: rgba(255,255,255,0.56);
        font-size: 0.74rem;
        font-weight: 750;
    }

    .terminal-mobile-mail span {
        color: var(--orange);
    }
}


@media (max-width: 600px) {

    .contact-stage {
        padding: 60px 0;
    }

    .contact-intro {
        margin-bottom: 24px;
    }

    .contact-title {
        font-size: clamp(3rem, 15vw, 4.2rem);
    }

    .contact-terminal {
        border-radius: 23px;
    }

    .terminal-topbar {
        min-height: 54px;
        padding: 0 18px;
        font-size: 0.56rem;
    }

    .terminal-code {
        display: none;
    }

    .terminal-main {
        padding: 30px 20px;
    }

    .terminal-channel {
        font-size: 0.58rem;
    }

    .terminal-main h3 {
        font-size: clamp(2.55rem, 12vw, 3.7rem);
    }

    .terminal-main > p {
        font-size: 0.86rem;
    }

    .terminal-contact-meta {
        gap: 22px;
        flex-wrap: wrap;
    }

    .terminal-signal {
        min-height: 235px;
        padding: 24px 0;
    }

    .signal-orbit {
        width: 150px;
        height: 150px;
    }

    .signal-ring-2 {
        inset: 20px;
    }

    .signal-ring-3 {
        inset: 41px;
    }

    .signal-core {
        width: 74px;
        height: 74px;
    }

    .terminal-route {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 20px 18px;
    }

    .route-node {
        padding: 11px 0;
    }

    .route-line {
        width: 1px;
        height: 20px;
        margin-left: 11px;
    }

    .route-line span {
        width: 1px;
        height: 35%;
        top: 0;
        left: 0;
        transform: none;
        animation: none;
    }
}


/* ACCESSIBILITY */

@media (prefers-reduced-motion: reduce) {

    .terminal-sweep,
    .signal-ring-1,
    .signal-ring-2,
    .contact-availability > span::after,
    .route-line span {
        animation: none;
    }
}


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

.footer {

    background: #080809;

    color: #f5f2ec;

    padding:
        80px
        0
        25px;
}


.footer-top {

    display: flex;

    justify-content: space-between;

    gap: 60px;

    padding-bottom: 70px;
}


.footer-brand img {

    width: 200px;

    margin-bottom: 25px;
}


.footer-brand p {

    color:
        rgba(255, 255, 255, 0.55);

    max-width: 320px;
}


.footer-links {

    display: flex;

    gap: 100px;
}


.footer-links > div {

    display: flex;

    flex-direction: column;

    gap: 10px;
}


.footer-links span {

    color: var(--orange);

    font-size: 0.72rem;

    text-transform: uppercase;

    letter-spacing: 0.12em;

    margin-bottom: 8px;
}


.footer-links a {

    color:
        rgba(255, 255, 255, 0.65);

    font-size: 0.88rem;
}


.footer-links a:hover {
    color: white;
}


.footer-bottom {

    border-top:
        1px solid
        rgba(255, 255, 255, 0.1);

    padding-top: 25px;

    display: flex;

    justify-content: space-between;

    gap: 20px;

    color:
        rgba(255, 255, 255, 0.45);

    font-size: 0.78rem;
}

/* =========================================================
   DESKTOP FIXED WHATSAPP
========================================================= */

.desktop-fixed-whatsapp {

    position: fixed;

    right: 28px;
    bottom: 28px;

    z-index: 950;

    min-width: 190px;
    height: 64px;

    padding: 0 18px;

    display: flex;
    align-items: center;

    gap: 12px;

    border-radius: 18px;

    background: #111113;

    color: #ffffff;

    border:
        1px solid
        rgba(255, 255, 255, 0.1);

    box-shadow:
        0 18px 50px
        rgba(0, 0, 0, 0.22);

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


.desktop-fixed-whatsapp:hover {

    transform: translateY(-4px);

    border-color:
        rgba(255, 90, 0, 0.55);

    box-shadow:
        0 22px 60px
        rgba(0, 0, 0, 0.3);
}


.whatsapp-status {

    width: 10px;
    height: 10px;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--orange);

    box-shadow:
        0 0 0 6px
        rgba(255, 90, 0, 0.13);
}


.whatsapp-text {

    display: flex;

    flex-direction: column;

    line-height: 1.15;

    flex: 1;
}


.whatsapp-text small {

    font-size: 0.64rem;

    font-weight: 700;

    color:
        rgba(255, 255, 255, 0.55);

    text-transform: uppercase;

    letter-spacing: 0.08em;
}


.whatsapp-text strong {

    margin-top: 4px;

    font-size: 0.9rem;

    font-weight: 800;
}


.whatsapp-arrow {

    width: 32px;
    height: 32px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--orange);

    font-size: 0.85rem;

    transition: transform 0.3s ease;
}


.desktop-fixed-whatsapp:hover
.whatsapp-arrow {

    transform: rotate(45deg);
}

/* =========================================================
   MOBILE FIXED ACTIONS
========================================================= */

.mobile-fixed-actions {
    display: none;
}


/* =========================================================
   REVEAL
========================================================= */

.reveal {

    opacity: 0;

    transform:
        translateY(24px);

    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
}


.reveal.visible {

    opacity: 1;

    transform:
        translateY(0);
}


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

@media (max-width: 1080px) {

    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-grid {
        gap: 45px;
    }

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

    .why-grid {
        gap: 60px;
    }

}


@media (max-width: 820px) {

.desktop-fixed-whatsapp {
    display: none;
}

    .section {
        padding: 90px 0;
    }

    .nav-container {
        height: 74px;
    }

    .mobile-menu {
        inset:
            74px
            0
            0
            0;
    }

    .main-logo {
        width: 145px;
    }

    .desktop-call {
        display: none;
    }

    .hero {

        min-height: auto;

        padding:
            135px
            0
            90px;
    }

    .hero-grid,
    .section-heading,
    .why-grid,
    .about-grid,
    .contact-grid {

        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 60px;
    }

    .hero h1 {
        font-size: clamp(
            4rem,
            17vw,
            7rem
        );
    }

    .hero-visual {
        min-height: auto;
    }

    .hero-card {
        min-height: 520px;
    }

    .floating-card-one {
        left: 0;
    }

    .floating-card-two {
        right: 0;
    }

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

    .why-content {
        position: static;
    }

    .process-grid {

        grid-template-columns: 1fr;

        gap: 15px;
    }

    .process-line {

        width: 1px;

        height: 40px;

        margin-left: 30px;
    }

    .process-line::after {

        left: 50%;
        right: auto;

        top: auto;
        bottom: 0;

        transform:
            translateX(-50%);
    }

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

    .project-large {
        grid-row: auto;
    }

    .project-large .project-placeholder {
        min-height: 340px;
    }

    .cta-box {

        padding: 45px 30px;

        flex-direction: column;

        align-items: stretch;
    }

    .cta-buttons {
        min-width: 0;
    }

    .about-tag {

        writing-mode: horizontal-tb;

        font-size: 4rem;
    }

    .footer-top {
        flex-direction: column;
    }

    .footer-links {
        gap: 60px;
    }

    .mobile-fixed-actions {

        position: fixed;

        left: 15px;
        right: 15px;
        bottom: 15px;

        z-index: 990;

        display: grid;

        grid-template-columns:
            1fr 1fr;

        gap: 8px;
    }

    .mobile-action {

        height: 52px;

        border-radius: 999px;

        display: flex;

        align-items: center;

        justify-content: center;

        font-size: 0.82rem;

        font-weight: 800;

        box-shadow:
            0 10px 40px
            rgba(0, 0, 0, 0.22);
    }

    .mobile-phone {

        background: var(--surface);

        border:
            1px solid
            var(--border-light);

        color: var(--text);
    }

    .mobile-whatsapp {

        background: var(--orange);

        color: white;
    }

    .footer {
        padding-bottom: 100px;
    }

}


@media (max-width: 560px) {

    .container {

        width:
            min(
                calc(100% - 28px),
                var(--container)
            );
    }

    .hero h1 {
        font-size: 4.25rem;
    }

    .hero-description {
        font-size: 0.94rem;
    }

    .hero-buttons {

        display: grid;

        grid-template-columns: 1fr;
    }

    .button {
        width: 100%;
    }

    .hero-highlights {

        display: grid;

        grid-template-columns:
            repeat(3, 1fr);

        gap: 15px;
    }

    .hero-highlight strong {
        font-size: 0.9rem;
    }

    .hero-highlight span {
        font-size: 0.63rem;
    }

    .hero-card {

        min-height: 480px;

        padding: 23px;
    }

    .hero-icon-box {
        width: 175px;
    }

    .floating-card {

        display: none;
    }

    .section-heading {
        gap: 22px;
    }

    .section-heading h2,
    .why-content h2,
    .about-content h2,
    .contact-content h2 {

        font-size: 2.7rem;
    }

    .why-item {

        grid-template-columns:
            45px 1fr;
    }

    .cta-box h2 {
        font-size: 3.1rem;
    }

    .contact-card {

        grid-template-columns:
            1fr auto;

        gap: 10px;

        padding: 18px 0;
    }

    .contact-card span {

        grid-column:
            1 / -1;
    }

    .footer-links {

        display: grid;

        grid-template-columns:
            1fr 1fr;

        gap: 35px;
    }

    .footer-bottom {

        flex-direction: column;

        align-items: flex-start;
    }

}

/* =========================================================
   SETKENT - HERO PREMIUM REVISION V1
========================================================= */

@media (min-width: 821px) {

    .hero {
        min-height: 92vh;
        padding: 135px 0 70px;
    }

    .hero-grid {
        grid-template-columns: 1.08fr 0.92fr;
        gap: 65px;
    }

    .hero h1 {
        font-size: clamp(4.4rem, 7vw, 7.4rem);
        line-height: 0.86;
        margin-bottom: 28px;
    }

    .hero-lead {
        margin-bottom: 14px;
    }

    .hero-description {
        max-width: 590px;
    }

    .hero-buttons {
        margin-top: 30px;
    }

    .hero-visual {
        min-height: 535px;
    }

    .hero-card {
        min-height: 515px;
        width: min(100%, 500px);
        padding: 30px 30px 28px;

        background:
            radial-gradient(
                circle at 85% 22%,
                rgba(255, 90, 0, 0.17),
                transparent 36%
            ),
            linear-gradient(
                160deg,
                #141416 0%,
                #09090a 58%,
                #080809 100%
            );

        box-shadow:
            0 45px 110px rgba(0, 0, 0, 0.28),
            inset 0 1px 0 rgba(255, 255, 255, 0.035);
    }

    .hero-icon-box {
        width: 190px;
    }

    .hero-card-copy h2 {
        font-size: clamp(2rem, 3vw, 2.85rem);
        max-width: 430px;
    }

    .floating-card {
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

    .floating-card-one {
        top: 70px;
        left: -18px;
    }

    .floating-card-two {
        right: -25px;
        bottom: 55px;
    }
}


/* HERO TRUST / HIGHLIGHTS */

.hero-highlights {
    margin-top: 38px;
    padding-top: 22px;

    border-top:
        1px solid
        var(--border-light);

    gap: 0;
}

.hero-highlight {
    padding-right: 28px;
    margin-right: 28px;

    position: relative;
}

.hero-highlight:not(:last-child)::after {
    content: "";

    position: absolute;

    right: 0;
    top: 4px;

    width: 1px;
    height: 34px;

    background:
        var(--border-light);
}

.hero-highlight:last-child {
    padding-right: 0;
    margin-right: 0;
}

.hero-highlight strong {
    font-size: 1.05rem;
    letter-spacing: -0.02em;
}

.hero-highlight span {
    margin-top: 2px;
    font-size: 0.68rem;
}


/* HERO BUTTON POLISH */

.hero-buttons .button {
    min-height: 56px;
    padding-inline: 26px;
}

.hero-buttons .button span {
    transition: transform 0.25s ease;
}

.hero-buttons .button:hover span {
    transform: translate(3px, -2px);
}


/* CARD MICRO INTERACTION */

.hero-card {
    transition:
        transform 0.45s cubic-bezier(.2,.8,.2,1),
        box-shadow 0.45s ease;
}

.hero-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 55px 130px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

/* =========================================================
   SETKENT - HEADER PREMIUM REVISION V1
========================================================= */

.site-header {
    background:
        color-mix(
            in srgb,
            var(--background) 78%,
            transparent
        );

    border-bottom:
        1px solid
        transparent;

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

.site-header.scrolled {
    background:
        color-mix(
            in srgb,
            var(--background) 92%,
            transparent
        );

    border-color:
        var(--border-light);

    box-shadow:
        0 10px 35px
        rgba(0, 0, 0, 0.06);
}


/* HEADER HEIGHT */

.nav-container {
    height: 80px;
}


/* LOGO */

.logo-area {
    position: relative;
}


/* DESKTOP NAV */

.desktop-nav {
    gap: 30px;
}

.desktop-nav a {
    position: relative;

    padding:
        10px
        0;

    font-size: 0.84rem;
    font-weight: 650;

    letter-spacing:
        -0.01em;

    color:
        var(--text-soft);
}

.desktop-nav a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 4px;

    width: 0;
    height: 2px;

    background:
        var(--orange);

    border-radius: 999px;

    transform:
        translateX(-50%);

    transition:
        width 0.25s ease;
}

.desktop-nav a:hover {
    color:
        var(--text);
}

.desktop-nav a:hover::after {
    width: 18px;
}


/* THEME BUTTON */

.theme-toggle {
    width: 44px;
    height: 44px;

    background:
        color-mix(
            in srgb,
            var(--surface) 88%,
            transparent
        );

    box-shadow:
        inset 0 1px 0
        rgba(255,255,255,0.035);
}

.theme-toggle:hover {
    transform:
        translateY(-1px);
}


/* WHATSAPP CTA */

.nav-call-button {
    height: 44px;

    padding:
        0
        20px;

    font-size:
        0.82rem;

    box-shadow:
        0 10px 30px
        rgba(255, 90, 0, 0.12);
}

.nav-call-button span {
    transition:
        transform 0.25s ease;
}

.nav-call-button:hover {
    transform:
        translateY(-1px);

    box-shadow:
        0 14px 34px
        rgba(255, 90, 0, 0.18);
}

.nav-call-button:hover span {
    transform:
        translate(2px, -2px);
}


/* HEADER ALIGNMENT */

.nav-actions {
    gap: 9px;
}

@media (max-width: 1080px) {

    .nav-container {
        height: 74px;
    }

    .main-logo {
        width: 148px;
    }
}

/* =========================================================
   SETKENT - THEME BRAND SYSTEM
   Light / Dark Logo + Hero Icon
========================================================= */


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

.theme-logo {
    position: relative;

    width: 165px;
    height: 44px;

    flex-shrink: 0;
}

.theme-logo .main-logo {
    position: absolute;

    left: 0;
    top: 50%;

    width: 165px;
    max-height: 44px;

    object-fit: contain;

    transform: translateY(-50%);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}


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

.theme-icon-box {
    position: relative;

    width: 190px;
    height: 190px;

    margin: 0 auto;
}

.theme-icon-box .hero-brand-icon {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: contain;

    transition:
        opacity 0.3s ease,
        transform 0.35s ease;
}


/* =========================
   LIGHT THEME
========================= */

.theme-logo .logo-light,
.theme-icon-box .icon-light {
    opacity: 1;
}

.theme-logo .logo-dark,
.theme-icon-box .icon-dark {
    opacity: 0;
}


/* =========================
   DARK THEME
========================= */

body.dark-theme .theme-logo .logo-light,
body.dark-theme .theme-icon-box .icon-light {
    opacity: 0;
}

body.dark-theme .theme-logo .logo-dark,
body.dark-theme .theme-icon-box .icon-dark {
    opacity: 1;
}


/* =========================
   HOVER
========================= */

.logo-area:hover .theme-logo .main-logo {
    transform:
        translateY(-50%)
        translateY(-1px);
}

.hero-card:hover .theme-icon-box .hero-brand-icon {
    transform: scale(1.035);
}


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

@media (max-width: 1080px) {

    .theme-logo {
        width: 148px;
    }

    .theme-logo .main-logo {
        width: 148px;
    }

}


@media (max-width: 820px) {

    .theme-icon-box {
        width: 165px;
        height: 165px;
    }

}


@media (max-width: 560px) {

    .theme-icon-box {
        width: 150px;
        height: 150px;
    }

}

/* =========================================================
   SETKENT - DARK MODE HERO CARD ALT STYLE
   Dark mode'da sağ hero kartı açık/kırık beyaz görünsün
========================================================= */

body.dark-theme .hero-card {
    background:
        radial-gradient(
            circle at 84% 22%,
            rgba(255, 90, 0, 0.14),
            transparent 38%
        ),
        linear-gradient(
            160deg,
            #f4efe8 0%,
            #ebe4da 100%
        );

    color: #111214;

    border: 1px solid rgba(17, 18, 20, 0.08);

    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.24);
}

body.dark-theme .hero-card::after {
    background: var(--orange);
    opacity: 0.10;
    filter: blur(130px);
}

body.dark-theme .status-indicator {
    color: rgba(17, 18, 20, 0.72);
}

body.dark-theme .hero-card-number {
    color: rgba(17, 18, 20, 0.45);
}

body.dark-theme .hero-card-copy > span {
    color: var(--orange);
}

body.dark-theme .hero-card-copy h2 {
    color: #111214;
}

body.dark-theme .hero-card-footer span {
    color: rgba(17, 18, 20, 0.78);
    border: 1px solid rgba(17, 18, 20, 0.12);
    background: rgba(255, 255, 255, 0.35);
}


/* Dark mode'da kart açık olduğu için
   ikonun siyah + turuncu olanı görünsün */

/* =========================================================
   SETKENT - HERO CARD ICON FIX
   Hero kartta ikon, kart zeminine göre değişsin
========================================================= */

/* LIGHT THEME:
   hero kart koyu olduğu için beyaz/turuncu ikon göster */
body:not(.dark-theme) .hero-card .theme-icon-box .icon-light {
    opacity: 0 !important;
}

body:not(.dark-theme) .hero-card .theme-icon-box .icon-dark {
    opacity: 1 !important;
}


/* DARK THEME:
   hero kart açık olduğu için siyah/turuncu ikon göster */
body.dark-theme .hero-card .theme-icon-box .icon-light {
    opacity: 1 !important;
}

body.dark-theme .hero-card .theme-icon-box .icon-dark {
    opacity: 0 !important;
}

/* Floating kartları da hafif aydınlatalım */

body.dark-theme .floating-card {
    background: linear-gradient(160deg, #16171a 0%, #0f1012 100%);
    color: #f5f2ec;

    border: 1px solid rgba(255, 255, 255, 0.08);

    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.24);
}

body.dark-theme .floating-card span {
    color: var(--orange);
}

.why-content h2 {
    max-width: 560px;

    font-size:
        clamp(3rem, 4vw, 4.4rem);

    line-height: 0.98;

    letter-spacing: -0.055em;
}

/* =========================================================
   SETKENT - ABOUT SHOWCASE
========================================================= */

.about-showcase {
    position: relative;

    padding:
        150px
        0
        90px;

    overflow: hidden;

    background:
        var(--background);
}


/* =========================================================
   GIANT BACKGROUND WORD
========================================================= */

.about-ghost {
    position: absolute;

    top: 55px;
    left: 50%;

    transform:
        translateX(-50%);

    font-size:
        clamp(8rem, 19vw, 20rem);

    font-weight:
        800;

    line-height:
        0.8;

    letter-spacing:
        -0.09em;

    white-space:
        nowrap;

    color:
        transparent;

    -webkit-text-stroke:
        1px
        rgba(11, 11, 12, 0.055);

    pointer-events:
        none;

    user-select:
        none;
}

body.dark-theme .about-ghost {
    -webkit-text-stroke:
        1px
        rgba(255, 255, 255, 0.055);
}


/* =========================================================
   MAIN GRID
========================================================= */

.about-showcase-inner {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(420px, 0.9fr);

    gap:
        100px;

    align-items:
        center;
}


/* =========================================================
   MANIFESTO
========================================================= */

.about-eyebrow {
    display: inline-flex;

    align-items:
        center;

    gap:
        11px;

    margin-bottom:
        28px;

    color:
        var(--text-soft);

    font-size:
        0.7rem;

    font-weight:
        800;

    letter-spacing:
        0.15em;
}

.about-eyebrow > span {
    width:
        8px;

    height:
        8px;

    border-radius:
        50%;

    background:
        var(--orange);

    box-shadow:
        0 0 0 6px
        rgba(255, 90, 0, 0.10);
}


.about-manifesto h2 {
    max-width:
        760px;

    font-size:
        clamp(4.2rem, 7vw, 7.5rem);

    line-height:
        0.86;

    letter-spacing:
        -0.075em;

    font-weight:
        800;
}

.about-manifesto h2 span {
    display:
        block;

    color:
        var(--orange);
}


.about-lead {
    max-width:
        610px;

    margin-top:
        42px;

    color:
        var(--text);

    font-size:
        1.06rem;

    font-weight:
        600;

    line-height:
        1.8;
}


.about-copy {
    max-width:
        590px;

    margin-top:
        20px;

    color:
        var(--text-soft);

    font-size:
        0.92rem;

    line-height:
        1.85;
}


/* SIGNATURE */

.about-signature {
    display:
        flex;

    align-items:
        center;

    gap:
        18px;

    margin-top:
        40px;
}

.signature-line {
    width:
        54px;

    height:
        1px;

    background:
        var(--orange);
}

.about-signature div {
    display:
        flex;

    flex-direction:
        column;

    gap:
        3px;
}

.about-signature small {
    color:
        var(--text-soft);

    font-size:
        0.62rem;

    font-weight:
        800;

    letter-spacing:
        0.14em;
}

.about-signature strong {
    font-size:
        0.86rem;

    font-weight:
        800;
}


/* =========================================================
   OPERATING SYSTEM CARD
========================================================= */

.about-system {
    position:
        relative;

    min-height:
        590px;

    padding:
        28px;

    overflow:
        hidden;

    border-radius:
        30px;

    color:
        #f5f2ec;

    background:
        radial-gradient(
            circle at 50% 42%,
            rgba(255, 90, 0, 0.16),
            transparent 30%
        ),
        linear-gradient(
            150deg,
            #151517,
            #080809
        );

    border:
        1px solid
        rgba(255, 255, 255, 0.08);

    box-shadow:
        0 40px 90px
        rgba(0, 0, 0, 0.16);
}


/* subtle technical grid */

.about-system::before {
    content:
        "";

    position:
        absolute;

    inset:
        0;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        );

    background-size:
        38px
        38px;

    pointer-events:
        none;
}


/* orange light */

.about-system::after {
    content:
        "";

    position:
        absolute;

    width:
        220px;

    height:
        220px;

    right:
        -100px;

    bottom:
        -100px;

    border-radius:
        50%;

    background:
        var(--orange);

    filter:
        blur(100px);

    opacity:
        0.16;

    pointer-events:
        none;
}


/* CARD HEADER */

.about-system-head {
    position:
        relative;

    z-index:
        3;

    display:
        flex;

    justify-content:
        space-between;

    align-items:
        center;

    color:
        rgba(255,255,255,0.42);

    font-size:
        0.65rem;

    font-weight:
        800;

    letter-spacing:
        0.13em;
}

.about-system-head > div {
    display:
        flex;

    align-items:
        center;

    gap:
        9px;
}

.system-dot {
    width:
        7px;

    height:
        7px;

    border-radius:
        50%;

    background:
        var(--orange);

    box-shadow:
        0 0 0 5px
        rgba(255,90,0,0.10);
}


/* =========================================================
   CORE
========================================================= */

.about-system-core {
    position:
        relative;

    width:
        260px;

    height:
        260px;

    margin:
        42px
        auto
        34px;

    display:
        grid;

    place-items:
        center;
}


.core-ring {
    position:
        absolute;

    border-radius:
        50%;

    border:
        1px solid
        rgba(255,90,0,0.24);
}


.core-ring-one {
    inset:
        0;

    animation:
        aboutRingOne
        6s
        ease-in-out
        infinite;
}


.core-ring-two {
    inset:
        30px;

    border-color:
        rgba(255,255,255,0.08);

    animation:
        aboutRingTwo
        6s
        ease-in-out
        infinite;
}


.core-center {
    position:
        relative;

    z-index:
        3;

    width:
        150px;

    height:
        150px;

    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        50%;

    background:
        linear-gradient(
            145deg,
            rgba(255,90,0,0.16),
            rgba(255,90,0,0.045)
        );

    border:
        1px solid
        rgba(255,90,0,0.30);

    box-shadow:
        inset 0 0 35px
        rgba(255,90,0,0.08),

        0 0 55px
        rgba(255,90,0,0.08);
}

.core-center small {
    color:
        var(--orange);

    font-size:
        0.62rem;

    font-weight:
        800;

    letter-spacing:
        0.18em;
}

.core-center strong {
    margin-top:
        4px;

    font-size:
        1.45rem;

    line-height:
        1;

    letter-spacing:
        -0.04em;
}

.core-center span {
    margin-top:
        4px;

    color:
        rgba(255,255,255,0.42);

    font-size:
        0.62rem;

    letter-spacing:
        0.15em;
}


/* =========================================================
   PRINCIPLES
========================================================= */

.about-principles {
    position:
        relative;

    z-index:
        3;

    display:
        grid;

    grid-template-columns:
        repeat(3, 1fr);

    border-top:
        1px solid
        rgba(255,255,255,0.08);
}

.about-principle {
    min-width:
        0;

    padding:
        20px
        14px
        4px;

    display:
        flex;

    gap:
        11px;

    border-right:
        1px solid
        rgba(255,255,255,0.08);

    transition:
        background 0.3s ease;
}

.about-principle:last-child {
    border-right:
        0;
}

.about-principle:hover {
    background:
        rgba(255,90,0,0.05);
}

.about-principle > span {
    color:
        var(--orange);

    font-size:
        0.65rem;

    font-weight:
        800;
}

.about-principle div {
    display:
        flex;

    flex-direction:
        column;

    gap:
        5px;
}

.about-principle strong {
    font-size:
        0.72rem;

    letter-spacing:
        0.08em;
}

.about-principle small {
    color:
        rgba(255,255,255,0.38);

    font-size:
        0.64rem;

    line-height:
        1.5;
}


/* =========================================================
   MOTION
========================================================= */

@keyframes aboutRingOne {

    0%,
    100% {
        transform:
            scale(0.97)
            rotate(0deg);
    }

    50% {
        transform:
            scale(1.04)
            rotate(7deg);
    }
}


@keyframes aboutRingTwo {

    0%,
    100% {
        transform:
            scale(1.04);
    }

    50% {
        transform:
            scale(0.96);
    }
}



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

@media (max-width: 1080px) {

    .about-showcase-inner {
        grid-template-columns:
            1fr
            0.9fr;

        gap:
            60px;
    }

    .about-system {
        min-height:
            540px;
    }

    .about-system-core {
        width:
            220px;

        height:
            220px;
    }

}


@media (max-width: 820px) {

    .about-showcase {
        padding-top:
            110px;
    }

    .about-showcase-inner {
        grid-template-columns:
            1fr;

        gap:
            65px;
    }

    .about-manifesto {
        max-width:
            680px;
    }

    .about-system {
        width:
            100%;

        min-height:
            auto;
    }

}


@media (max-width: 560px) {

    .about-showcase {
        padding:
            90px
            0
            65px;
    }

    .about-ghost {
        top:
            45px;

        font-size:
            7rem;
    }

    .about-manifesto h2 {
        font-size:
            clamp(
                3.8rem,
                17vw,
                5rem
            );
    }

    .about-lead {
        margin-top:
            30px;

        font-size:
            0.98rem;
    }

    .about-system {
        padding:
            23px;

        border-radius:
            24px;
    }

    .about-system-core {
        width:
            190px;

        height:
            190px;
    }

    .core-center {
        width:
            118px;

        height:
            118px;
    }

    .about-principles {
        grid-template-columns:
            1fr;
    }

    .about-principle {
        border-right:
            0;

        border-bottom:
            1px solid
            rgba(255,255,255,0.08);

        padding:
            16px
            8px;
    }

    .about-principle:last-child {
        border-bottom:
            0;
    }

    .about-marquee {
        margin-top:
            70px;
    }

}


/* accessibility */

@media (prefers-reduced-motion: reduce) {

    .core-ring-one,
    .core-ring-two,
    .about-marquee-track {
        animation:
            none;
    }

}

/* =========================================================
   SECTION ANCHOR / ALIGNMENT FIX
========================================================= */

#home,
#services,
#why-us,
#projects,
#process,
#about,
#contact {
    scroll-margin-top: 90px;

}

/* =========================================================
   SETKENT - FINAL INFINITE MARQUEE
========================================================= */

.about-marquee {
    position: relative;
    z-index: 3;

    width: 100%;

    margin-top: 90px;

    overflow: hidden;

    border-top:
        1px solid
        var(--border-light);

    border-bottom:
        1px solid
        var(--border-light);

    -webkit-mask-image:
        linear-gradient(
            to right,
            transparent 0%,
            #000 6%,
            #000 94%,
            transparent 100%
        );

    mask-image:
        linear-gradient(
            to right,
            transparent 0%,
            #000 6%,
            #000 94%,
            transparent 100%
        );
}


/* TRACK */

.about-marquee-track {
    display: flex;

    width: max-content;

    padding: 20px 0;

    animation:
        setkentInfiniteMarquee
        24s
        linear
        infinite;

    will-change: transform;
}


/* 
   İKİ GRUP TAM OLARAK AYNI GENİŞLİKTE.
   Bu kesintisiz loop için kritik.
*/

.about-marquee-group {
    flex:
        0 0 100vw;

    width: 100vw;

    display: flex;

    align-items: center;

    justify-content:
        space-evenly;

    padding:
        0
        28px;
}


.about-marquee-group span {
    flex-shrink: 0;

    white-space: nowrap;

    color:
        var(--text-soft);

    font-size:
        0.72rem;

    font-weight:
        800;

    letter-spacing:
        0.16em;

    text-transform:
        uppercase;
}


.about-marquee-group i {
    flex-shrink: 0;

    color:
        var(--orange);

    font-size:
        0.42rem;

    font-style:
        normal;
}


/* EXACT LOOP */

@keyframes setkentInfiniteMarquee {

    from {
        transform:
            translate3d(0, 0, 0);
    }

    to {
        transform:
            translate3d(-50%, 0, 0);
    }

}


/* Hover */

.about-marquee:hover
.about-marquee-track {
    animation-play-state:
        paused;
}


/* MOBILE */

@media (max-width: 560px) {

    .about-marquee {
        margin-top: 65px;
    }

    .about-marquee-track {
        animation-duration: 18s;
    }

    .about-marquee-group {
        flex-basis: 850px;
        width: 850px;

        padding:
            0
            18px;
    }

}



/* =========================================================
   SETKENT DISTINCT SECTIONS V2
   Each section deliberately uses a different visual language.
========================================================= */


/* =========================================================
   01 — HERO / EDITORIAL STORYBOARD
========================================================= */

.hero-editorial {
    position: relative;
    min-height: 100vh;
    padding: 148px 0 88px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            115deg,
            var(--background) 0%,
            var(--background) 65%,
            color-mix(in srgb, var(--surface-alt) 74%, var(--background)) 100%
        );
}

.hero-editorial-glow {
    position: absolute;
    width: 460px;
    height: 460px;
    right: -180px;
    top: 160px;
    border-radius: 50%;
    background: rgba(255,90,0,0.10);
    filter: blur(155px);
    pointer-events: none;
}

.hero-editorial-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:
        minmax(0, 0.96fr)
        minmax(440px, 1.04fr);
    gap: 82px;
    align-items: center;
}

.hero-editorial-copy {
    min-width: 0;
}

.hero-editorial-kicker {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 25px;
    color: var(--text-soft);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.hero-editorial-kicker > span {
    width: 34px;
    height: 2px;
    background: var(--orange);
}

.hero-editorial h1 {
    display: flex;
    flex-direction: column;
    max-width: 650px;
    font-size: clamp(4.6rem, 6.2vw, 6.8rem);
    line-height: 0.80;
    letter-spacing: -0.075em;
    font-weight: 800;
}

.hero-editorial h1 > span {
    display: block;
    width: fit-content;
}

.hero-editorial .hero-orange {
    color: var(--orange);
}

.hero-editorial-lead {
    margin-top: 32px;
    max-width: 580px;
    font-size: clamp(1.15rem, 1.8vw, 1.55rem);
    line-height: 1.4;
    letter-spacing: -0.025em;
}

.hero-editorial-lead strong {
    color: var(--orange);
}

.hero-editorial-text {
    max-width: 560px;
    margin-top: 14px;
    color: var(--text-soft);
    font-size: 0.93rem;
    line-height: 1.82;
}

.hero-editorial-actions {
    margin-top: 29px;
    align-items: center;
    gap: 14px;
}

.desktop-hero-actions {
    display: flex;
}

.mobile-hero-actions {
    display: none;
}

.hero-editorial-primary,
.hero-editorial-link {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    border-radius: 999px;
    font-size: 0.80rem;
    font-weight: 800;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.hero-editorial-primary {
    padding: 0 10px 0 20px;
    color: #fff;
    background: var(--orange);
    box-shadow: 0 15px 36px rgba(255,90,0,0.20);
}

.hero-editorial-primary > span {
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.16);
}

.hero-editorial-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 45px rgba(255,90,0,0.29);
}

.hero-editorial-link {
    padding: 0 18px;
    color: var(--text);
    border: 1px solid var(--border-light);
    background: var(--surface);
}

.hero-editorial-link > span {
    color: var(--orange);
}

.hero-editorial-link:hover {
    transform: translateY(-3px);
    border-color: rgba(255,90,0,0.32);
}

.hero-editorial-meta {
    width: fit-content;
    margin-top: 38px;
    display: flex;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.hero-editorial-meta > div {
    position: relative;
    min-width: 126px;
    padding: 13px 22px 13px 0;
    margin-right: 22px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--border-light);
}

.hero-editorial-meta > div:last-child {
    margin-right: 0;
    border-right: 0;
}

.hero-editorial-meta small {
    position: absolute;
    top: 10px;
    right: 10px;
    color: var(--orange);
    opacity: 0.55;
    font-size: 0.48rem;
    font-weight: 800;
}

.hero-editorial-meta strong {
    font-size: 0.84rem;
}

.hero-editorial-meta span {
    color: var(--text-soft);
    font-size: 0.57rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}


/* Storyboard — intentionally physical/editorial, not technical */

.hero-storyboard {
    position: relative;
    min-height: 590px;
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
}

.story-card {
    position: absolute;
    width: min(100%, 470px);
    height: 185px;
    padding: 22px 24px;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid var(--border-light);
    box-shadow: 0 24px 60px rgba(0,0,0,0.10);
    transition:
        transform 0.45s cubic-bezier(.2,.8,.2,1),
        box-shadow 0.45s ease;
}

.story-card::after {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    right: -75px;
    top: -86px;
    border-radius: 50%;
    border: 1px solid currentColor;
    opacity: 0.08;
    box-shadow:
        0 0 0 28px currentColor,
        0 0 0 56px currentColor;
}

.story-card-set {
    top: 55px;
    left: 14px;
    z-index: 1;
    color: var(--text);
    background: var(--surface);
    transform: rotate(-4deg);
}

.story-card-office {
    top: 202px;
    right: 0;
    z-index: 3;
    color: #fff;
    background:
        linear-gradient(135deg, var(--orange), #e84c00);
    border-color: transparent;
    box-shadow: 0 30px 70px rgba(255,90,0,0.22);
    transform: rotate(2.5deg);
}

.story-card-field {
    bottom: 54px;
    left: 42px;
    z-index: 2;
    color: #f5f2ec;
    background:
        linear-gradient(145deg, #171719, #080809);
    border-color: rgba(255,255,255,0.08);
    transform: rotate(-1.5deg);
}

.story-card:hover {
    z-index: 5;
    transform: rotate(0deg) translateY(-8px) scale(1.018);
    box-shadow: 0 36px 82px rgba(0,0,0,0.17);
}

.story-card-office:hover {
    box-shadow: 0 38px 85px rgba(255,90,0,0.32);
}

.story-card-top,
.story-card-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.story-card-top {
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.13em;
}

.story-card-top i {
    font-style: normal;
    opacity: 0.48;
}

.story-card-word {
    position: relative;
    z-index: 1;
    margin-top: 15px;
    font-size: clamp(4.1rem, 5.8vw, 6rem);
    line-height: 0.78;
    letter-spacing: -0.08em;
    font-weight: 800;
    opacity: 0.94;
}

.story-card-bottom {
    margin-top: 17px;
}

.story-card-bottom strong {
    font-size: 0.72rem;
}

.story-card-bottom span {
    opacity: 0.56;
    font-size: 0.58rem;
    font-weight: 750;
    letter-spacing: 0.04em;
}

.storyboard-caption {
    position: absolute;
    right: 4px;
    bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-soft);
    font-size: 0.53rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.storyboard-caption > span {
    width: 30px;
    height: 1px;
    background: var(--orange);
}


/* =========================================================
   02 — SERVICES / EDITORIAL INDEX
========================================================= */

.services-index {
    padding: 122px 0;
    background: var(--surface-alt);
}

.services-index-head {
    display: grid;
    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(280px, 0.75fr);
    gap: 80px;
    align-items: end;
    margin-bottom: 58px;
}

.services-index-kicker {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--orange);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.services-index-head h2 {
    max-width: 760px;
    font-size: clamp(3.4rem, 5.4vw, 5.8rem);
    line-height: 0.89;
    letter-spacing: -0.068em;
}

.services-index-head h2 span {
    display: block;
    color: var(--orange);
}

.services-index-head > p {
    max-width: 440px;
    color: var(--text-soft);
    font-size: 0.92rem;
    line-height: 1.82;
}

.services-index-list {
    border-top: 1px solid var(--border-light);
}

.service-index-row {
    position: relative;
    min-height: 128px;
    overflow: hidden;
    display: grid;
    grid-template-columns:
        58px
        minmax(230px, 0.88fr)
        minmax(290px, 1.15fr)
        120px
        42px;
    gap: 22px;
    align-items: center;
    border-bottom: 1px solid var(--border-light);
    transition:
        padding 0.35s ease,
        background 0.35s ease;
}

.service-index-row::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 72%;
    transform: translateY(-50%);
    background: rgba(255,90,0,0.075);
    transition: width 0.45s cubic-bezier(.2,.8,.2,1);
}

.service-index-row:hover {
    padding-left: 14px;
}

.service-index-row:hover::before {
    width: 100%;
}

.service-index-row > * {
    position: relative;
    z-index: 2;
}

.service-index-no {
    color: var(--orange);
    font-size: 0.63rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.service-index-name small {
    display: block;
    margin-bottom: 5px;
    color: var(--text-soft);
    font-size: 0.53rem;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.service-index-name h3 {
    font-size: clamp(1.4rem, 2.1vw, 1.95rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.service-index-row > p {
    max-width: 500px;
    color: var(--text-soft);
    font-size: 0.84rem;
    line-height: 1.72;
}

.service-index-mark {
    justify-self: end;
    color: transparent;
    -webkit-text-stroke: 1px color-mix(in srgb, var(--text) 16%, transparent);
    font-size: 1.24rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    transition:
        color 0.3s ease,
        -webkit-text-stroke 0.3s ease,
        transform 0.3s ease;
}

.service-index-row:hover .service-index-mark {
    color: var(--orange);
    -webkit-text-stroke: 1px var(--orange);
    transform: translateX(-5px);
}

.service-index-row > a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    justify-self: end;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    background: var(--surface);
    font-size: 0.88rem;
    font-weight: 800;
    transition:
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.service-index-row:hover > a {
    color: #fff;
    background: var(--orange);
    border-color: var(--orange);
    transform: rotate(45deg);
}

.services-index-footer {
    min-height: 86px;
    margin-top: 30px;
    padding: 0 27px;
    display: grid;
    grid-template-columns:
        minmax(220px, 0.7fr)
        minmax(300px, 1.3fr)
        44px;
    gap: 25px;
    align-items: center;
    color: #fff;
    background: var(--orange);
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(255,90,0,0.16);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.services-index-footer:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 60px rgba(255,90,0,0.26);
}

.services-index-footer > span {
    color: rgba(255,255,255,0.70);
    font-size: 0.65rem;
    font-weight: 750;
    letter-spacing: 0.04em;
}

.services-index-footer strong {
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    letter-spacing: -0.035em;
}

.services-index-footer i {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    justify-self: end;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    font-style: normal;
}


/* =========================================================
   03 — WHY / ASYMMETRIC PROOF MOSAIC
========================================================= */

.why-proof {
    position: relative;
    padding: 132px 0;
    overflow: hidden;
    background: var(--background);
}

.why-proof-word {
    position: absolute;
    left: -14px;
    top: 50%;
    transform:
        translateY(-50%)
        rotate(-90deg);
    transform-origin: center;
    color: transparent;
    -webkit-text-stroke: 1px color-mix(in srgb, var(--text) 8%, transparent);
    font-size: clamp(7rem, 12vw, 13rem);
    line-height: 1;
    letter-spacing: -0.08em;
    font-weight: 800;
    pointer-events: none;
    opacity: 0.9;
}

.why-proof-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:
        minmax(0, 0.72fr)
        minmax(580px, 1.28fr);
    gap: 86px;
    align-items: center;
}

.why-proof-intro {
    max-width: 500px;
}

.why-proof-kicker {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--orange);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.why-proof-intro h2 {
    font-size: clamp(3.8rem, 5.7vw, 6.2rem);
    line-height: 0.86;
    letter-spacing: -0.074em;
}

.why-proof-intro h2 span {
    display: block;
    color: var(--orange);
}

.why-proof-intro > p {
    margin-top: 28px;
    color: var(--text-soft);
    font-size: 0.92rem;
    line-height: 1.85;
}

.why-proof-intro > a {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-top: 28px;
    color: var(--orange);
    font-size: 0.79rem;
    font-weight: 800;
}

.why-proof-intro > a span {
    transition: transform 0.3s ease;
}

.why-proof-intro > a:hover span {
    transform: translate(3px,-3px);
}

.why-proof-mosaic {
    display: grid;
    grid-template-columns:
        0.88fr
        1.12fr;
    grid-template-rows:
        275px
        245px;
    gap: 16px;
}

.proof-tile {
    position: relative;
    overflow: hidden;
    padding: 25px;
    border-radius: 24px;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.proof-tile:hover {
    transform: translateY(-6px);
}

.proof-tile > span,
.proof-tile small {
    position: relative;
    z-index: 2;
    font-size: 0.56rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.proof-tile > span {
    color: var(--orange);
    margin-right: 10px;
}

.proof-tile h3 {
    position: relative;
    z-index: 2;
    margin-top: 34px;
    font-size: clamp(2rem, 3.3vw, 3.5rem);
    line-height: 0.92;
    letter-spacing: -0.06em;
}

.proof-tile p {
    position: relative;
    z-index: 2;
    max-width: 300px;
    margin-top: 14px;
    font-size: 0.78rem;
    line-height: 1.65;
}

.proof-tile-orange {
    color: #fff;
    background:
        linear-gradient(145deg, var(--orange), #e64b00);
    box-shadow: 0 24px 55px rgba(255,90,0,0.17);
}

.proof-tile-orange::after {
    content: "";
    position: absolute;
    width: 210px;
    height: 210px;
    right: -70px;
    bottom: -95px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow:
        0 0 0 32px rgba(255,255,255,0.045),
        0 0 0 64px rgba(255,255,255,0.025);
}

.proof-tile-orange > span,
.proof-tile-orange small {
    color: rgba(255,255,255,0.72);
}

.proof-tile-orange p {
    color: rgba(255,255,255,0.72);
}

.proof-tile-dark {
    color: #f5f2ec;
    background:
        linear-gradient(145deg, #171719, #080809);
    box-shadow: 0 26px 60px rgba(0,0,0,0.16);
}

.proof-tile-dark > span {
    color: var(--orange);
}

.proof-tile-dark small,
.proof-tile-dark p {
    color: rgba(255,255,255,0.45);
}

.proof-tile-dark h3 {
    font-size: clamp(2.5rem, 4.1vw, 4.3rem);
}

.proof-tile-line {
    color: var(--text);
    background: transparent;
    border: 1px solid var(--border-light);
}

.proof-tile-line h3 {
    font-size: clamp(1.55rem, 2.4vw, 2.35rem);
}

.proof-tile-line p {
    color: var(--text-soft);
}

.proof-line {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 25px;
    height: 1px;
    background: var(--border-light);
}

.proof-line i {
    position: absolute;
    top: -2px;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 6px rgba(255,90,0,0.08);
    animation: proofLineMove 4.5s ease-in-out infinite;
}

.proof-tile-city {
    display: grid;
    grid-template-columns:
        0.8fr
        1.2fr;
    align-items: center;
    gap: 18px;
    color: var(--text);
    background: var(--surface-alt);
    border: 1px solid var(--border-light);
}

.proof-city-number {
    color: transparent;
    -webkit-text-stroke: 1px var(--orange);
    font-size: clamp(4.5rem, 6.7vw, 7rem);
    line-height: 0.8;
    letter-spacing: -0.08em;
    font-weight: 800;
}

.proof-tile-city h3 {
    margin-top: 16px;
    font-size: clamp(1.4rem, 2.1vw, 2rem);
}

.proof-tile-city p {
    color: var(--text-soft);
}

@keyframes proofLineMove {
    0% { left: 0%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}


/* =========================================================
   04 — PROCESS / THREE ACTS
========================================================= */

.process-acts {
    position: relative;
    padding: 122px 0 100px;
    overflow: hidden;
    color: #f5f2ec;
    background:
        linear-gradient(145deg, #121214, #070708 70%);
}

.process-acts::before {
    content: "01  02  03";
    position: absolute;
    right: -35px;
    top: 78px;
    color: rgba(255,255,255,0.018);
    font-size: clamp(8rem, 16vw, 17rem);
    line-height: 0.8;
    letter-spacing: -0.08em;
    font-weight: 800;
    white-space: nowrap;
    pointer-events: none;
}

.process-acts-head {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:
        minmax(0, 1.18fr)
        minmax(300px, 0.82fr);
    gap: 85px;
    align-items: end;
    margin-bottom: 72px;
}

.process-acts-kicker {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--orange);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.process-acts-head h2 {
    font-size: clamp(3.8rem, 5.9vw, 6.5rem);
    line-height: 0.86;
    letter-spacing: -0.072em;
}

.process-acts-head h2 span {
    display: block;
    color: var(--orange);
}

.process-acts-head > p {
    max-width: 430px;
    color: rgba(255,255,255,0.45);
    font-size: 0.91rem;
    line-height: 1.82;
}

.process-acts-stage {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255,255,255,0.10);
    border-bottom: 1px solid rgba(255,255,255,0.10);
}

.process-acts-line {
    position: absolute;
    left: 0;
    right: 0;
    top: 47px;
    height: 1px;
    background:
        linear-gradient(
            to right,
            transparent,
            rgba(255,90,0,0.35) 10%,
            rgba(255,90,0,0.35) 90%,
            transparent
        );
}

.process-acts-line > span {
    position: absolute;
    top: -3px;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow:
        0 0 0 7px rgba(255,90,0,0.08),
        0 0 22px rgba(255,90,0,0.65);
    animation: actsSignal 6s ease-in-out infinite;
}

.process-act {
    position: relative;
    min-height: 390px;
    padding: 80px 34px 30px;
    overflow: hidden;
    border-right: 1px solid rgba(255,255,255,0.08);
    transition:
        background 0.35s ease,
        transform 0.35s ease;
}

.process-act:last-child {
    border-right: 0;
}

.process-act::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background:
        linear-gradient(
            165deg,
            rgba(255,90,0,0.10),
            transparent 58%
        );
    transition: opacity 0.35s ease;
}

.process-act:hover {
    transform: translateY(-7px);
}

.process-act:hover::before {
    opacity: 1;
}

.process-act-focus {
    background: rgba(255,255,255,0.025);
}

.process-act > * {
    position: relative;
    z-index: 2;
}

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

.process-act-top > span {
    color: var(--orange);
    font-size: 0.68rem;
    font-weight: 800;
}

.process-act-top small {
    color: rgba(255,255,255,0.32);
    font-size: 0.56rem;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.process-act h3 {
    margin-top: 56px;
    font-size: clamp(2.6rem, 4.4vw, 4.7rem);
    line-height: 0.88;
    letter-spacing: -0.065em;
}

.process-act p {
    max-width: 330px;
    margin-top: 22px;
    color: rgba(255,255,255,0.46);
    font-size: 0.84rem;
    line-height: 1.72;
}

.process-act-foot {
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 28px;
    padding-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.34);
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.13em;
}

.process-act-foot i {
    color: var(--orange);
    font-size: 0.86rem;
    font-style: normal;
}

.process-acts-statement {
    position: relative;
    z-index: 2;
    margin-top: 34px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.process-acts-statement::before {
    content: "";
    width: 55px;
    height: 1px;
    background: var(--orange);
}

.process-acts-statement small {
    color: rgba(255,255,255,0.33);
    font-size: 0.56rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.process-acts-statement strong {
    margin-left: auto;
    font-size: clamp(1.2rem, 2.3vw, 1.9rem);
    letter-spacing: -0.035em;
}

.process-acts-statement strong span {
    color: var(--orange);
}

@keyframes actsSignal {
    0% { left: 0%; opacity: 0; }
    8% { opacity: 1; }
    50% { left: 50%; opacity: 1; }
    92% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}


/* =========================================================
   DISTINCT V2 — RESPONSIVE
========================================================= */

@media (max-width: 1080px) {

    .hero-editorial-grid {
        grid-template-columns:
            minmax(0, 0.92fr)
            minmax(390px, 1.08fr);
        gap: 46px;
    }

    .hero-editorial h1 {
        font-size: clamp(4.1rem, 6.1vw, 5.5rem);
    }

    .hero-storyboard {
        min-height: 540px;
    }

    .story-card {
        width: min(100%, 425px);
    }

    .why-proof-inner {
        grid-template-columns:
            minmax(0, 0.68fr)
            minmax(530px, 1.32fr);
        gap: 46px;
    }
}


@media (max-width: 900px) {

    .hero-editorial {
        min-height: auto;
        padding-top: 125px;
    }

    .hero-editorial-grid,
    .why-proof-inner {
        grid-template-columns: 1fr;
    }

    .hero-editorial-copy,
    .why-proof-intro {
        max-width: 720px;
    }

    .hero-storyboard {
        width: min(100%, 680px);
        margin-inline: auto;
    }

    .services-index-head,
    .process-acts-head {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .service-index-row {
        grid-template-columns:
            46px
            minmax(190px, 0.8fr)
            1fr
            90px
            40px;
        gap: 16px;
    }

    .why-proof-word {
        display: none;
    }

    .why-proof-intro {
        margin-bottom: 12px;
    }

    .why-proof-mosaic {
        width: min(100%, 700px);
    }

    .process-acts-stage {
        grid-template-columns: 1fr;
        border-top: 0;
    }

    .process-acts-line {
        left: 31px;
        right: auto;
        top: 0;
        bottom: 0;
        width: 1px;
        height: auto;
        background:
            linear-gradient(
                to bottom,
                transparent,
                rgba(255,90,0,0.38) 8%,
                rgba(255,90,0,0.38) 92%,
                transparent
            );
    }

    .process-acts-line > span {
        top: 0;
        left: -3px;
        animation: actsSignalMobile 6s ease-in-out infinite;
    }

    .process-act {
        min-height: 270px;
        padding: 42px 30px 72px 72px;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .process-act h3 {
        margin-top: 28px;
    }

    .process-act-foot {
        left: 72px;
    }

    @keyframes actsSignalMobile {
        0% { top: 0%; opacity: 0; }
        8% { opacity: 1; }
        50% { top: 50%; opacity: 1; }
        92% { opacity: 1; }
        100% { top: 100%; opacity: 0; }
    }
}


@media (max-width: 720px) {

    .desktop-hero-actions {
        display: none;
    }

    .mobile-hero-actions {
        display: flex;
    }

    .hero-editorial h1 {
        font-size: clamp(4.3rem, 17vw, 6rem);
    }

    .hero-editorial-meta {
        width: 100%;
    }

    .hero-editorial-meta > div {
        min-width: 0;
        flex: 1;
        padding-right: 10px;
        margin-right: 10px;
    }

    .story-card {
        width: calc(100% - 20px);
        height: 170px;
    }

    .story-card-set {
        left: 0;
    }

    .story-card-office {
        right: 0;
    }

    .story-card-field {
        left: 10px;
    }

    .service-index-row {
        min-height: auto;
        padding: 24px 0;
        grid-template-columns:
            40px
            1fr
            42px;
    }

    .service-index-name {
        grid-column: 2;
    }

    .service-index-row > p {
        grid-column: 2 / 4;
    }

    .service-index-mark {
        display: none;
    }

    .service-index-row > a {
        grid-column: 3;
        grid-row: 1 / 3;
    }

    .services-index-footer {
        min-height: 126px;
        padding: 22px;
        grid-template-columns: 1fr 42px;
    }

    .services-index-footer > span {
        grid-column: 1 / -1;
    }

    .services-index-footer strong {
        grid-column: 1;
    }

    .services-index-footer i {
        grid-column: 2;
    }

    .why-proof-mosaic {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .proof-tile {
        min-height: 240px;
    }

    .proof-tile-city {
        grid-template-columns: 0.72fr 1.28fr;
    }

    .process-acts-statement {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .process-acts-statement strong {
        width: 100%;
        margin-left: 79px;
    }
}


@media (max-width: 520px) {

    .hero-editorial {
        padding: 112px 0 70px;
    }

    .hero-editorial-grid {
        gap: 48px;
    }

    .hero-editorial-kicker {
        font-size: 0.58rem;
    }

    .hero-editorial h1 {
        font-size: clamp(3.9rem, 20vw, 5.15rem);
    }

    .hero-editorial-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-storyboard {
        min-height: 500px;
    }

    .story-card {
        height: 160px;
        padding: 19px;
        border-radius: 20px;
    }

    .story-card-set {
        top: 28px;
    }

    .story-card-office {
        top: 175px;
    }

    .story-card-field {
        bottom: 25px;
    }

    .story-card-word {
        font-size: 4.1rem;
    }

    .storyboard-caption {
        display: none;
    }

    .services-index,
    .why-proof {
        padding: 90px 0;
    }

    .services-index-head h2,
    .why-proof-intro h2,
    .process-acts-head h2 {
        font-size: clamp(3.1rem, 15vw, 4.25rem);
    }

    .service-index-name h3 {
        font-size: 1.35rem;
    }

    .service-index-row > p {
        font-size: 0.80rem;
    }

    .proof-tile {
        min-height: 220px;
        padding: 22px;
    }

    .proof-tile h3 {
        margin-top: 28px;
    }

    .proof-tile-city {
        grid-template-columns: 0.65fr 1.35fr;
    }

    .process-acts {
        padding: 92px 0 74px;
    }

    .process-act {
        padding-right: 18px;
    }

    .process-act h3 {
        font-size: 2.8rem;
    }

    .process-acts-statement::before {
        width: 38px;
    }

    .process-acts-statement strong {
        margin-left: 0;
    }
}


@media (prefers-reduced-motion: reduce) {

    .proof-line i,
    .process-acts-line > span {
        animation: none;
    }
}



/* =========================================================
   SETKENT V3 — HYBRID HERO / COMPACT PROCESS / NEW FOOTER
========================================================= */


/* =========================================================
   HYBRID HERO VISUAL
========================================================= */

.hero-hybrid {
    --hybrid-bg: rgba(255,255,255,0.76);
    --hybrid-border: rgba(11,11,12,0.10);
    --hybrid-grid: rgba(11,11,12,0.09);
    --hybrid-text: #0b0b0c;
    --hybrid-soft: rgba(11,11,12,0.48);

    position: relative;
    min-height: 585px;
    overflow: hidden;
    border-radius: 34px;

    color: var(--hybrid-text);

    background:
        radial-gradient(
            circle at 50% 48%,
            rgba(255,90,0,0.12),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            rgba(255,255,255,0.94),
            rgba(235,231,223,0.78)
        );

    border: 1px solid var(--hybrid-border);

    box-shadow:
        0 38px 92px rgba(0,0,0,0.11),
        inset 0 1px 0 rgba(255,255,255,0.75);
}

body.dark-theme .hero-hybrid {
    --hybrid-bg: rgba(15,15,17,0.82);
    --hybrid-border: rgba(255,255,255,0.08);
    --hybrid-grid: rgba(255,255,255,0.08);
    --hybrid-text: #f5f2ec;
    --hybrid-soft: rgba(255,255,255,0.45);

    background:
        radial-gradient(
            circle at 50% 48%,
            rgba(255,90,0,0.15),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            #161618,
            #080809
        );

    box-shadow:
        0 40px 100px rgba(0,0,0,0.28),
        inset 0 1px 0 rgba(255,255,255,0.04);
}

.hero-hybrid-grid-bg {
    position: absolute;
    inset: 0;

    opacity: 0.36;

    background-image:
        linear-gradient(
            var(--hybrid-grid) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            var(--hybrid-grid) 1px,
            transparent 1px
        );

    background-size:
        52px
        52px;

    -webkit-mask-image:
        radial-gradient(
            circle at center,
            #000 0%,
            #000 46%,
            transparent 86%
        );

    mask-image:
        radial-gradient(
            circle at center,
            #000 0%,
            #000 46%,
            transparent 86%
        );

    pointer-events: none;
}

.hero-hybrid-orbit {
    position: absolute;

    left: 50%;
    top: 50%;

    border-radius: 50%;

    border:
        1px solid
        rgba(255,90,0,0.16);

    transform:
        translate(-50%, -50%);

    pointer-events: none;
}

.hero-hybrid-orbit-a {
    width: 380px;
    height: 380px;

    animation:
        hybridOrbitA
        10s
        linear
        infinite;
}

.hero-hybrid-orbit-b {
    width: 285px;
    height: 285px;

    border-color:
        var(--hybrid-border);

    animation:
        hybridOrbitB
        8s
        linear
        infinite
        reverse;
}

.hero-hybrid-brand {
    position: absolute;

    left: 50%;
    top: 50%;

    z-index: 5;

    width: 224px;
    min-height: 252px;

    padding:
        22px
        18px
        18px;

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

    border-radius: 28px;

    transform:
        translate(-50%, -50%);

    background:
        color-mix(
            in srgb,
            var(--hybrid-bg) 92%,
            transparent
        );

    border:
        1px solid
        var(--hybrid-border);

    box-shadow:
        0 28px 72px
        rgba(0,0,0,0.11);

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);
}

body.dark-theme .hero-hybrid-brand {
    box-shadow:
        0 30px 80px
        rgba(0,0,0,0.30);
}

.hero-hybrid-brand-top {
    width: 100%;

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

    gap: 8px;

    color:
        var(--hybrid-soft);

    font-size: 0.50rem;

    font-weight: 800;

    letter-spacing: 0.12em;
}

.hero-hybrid-status {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background:
        var(--orange);

    box-shadow:
        0 0 0 5px
        rgba(255,90,0,0.09);
}

.hero-hybrid-logo-core {
    position: relative;

    width: 92px;
    height: 92px;

    margin:
        21px
        auto
        13px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 30%,
            rgba(255,122,49,0.15),
            rgba(255,90,0,0.06) 58%,
            transparent
        );

    border:
        1px solid
        rgba(255,90,0,0.25);

    box-shadow:
        0 0 0 10px
        rgba(255,90,0,0.04),
        0 18px 42px
        rgba(255,90,0,0.10);
}

.hero-hybrid-logo {
    position: absolute;

    width: 57px;
    height: 57px;

    object-fit: contain;

    transition:
        opacity 0.3s ease,
        transform 0.35s ease;
}

.hybrid-logo-light {
    opacity: 1;
}

.hybrid-logo-dark {
    opacity: 0;
}

body.dark-theme
.hybrid-logo-light {
    opacity: 0;
}

body.dark-theme
.hybrid-logo-dark {
    opacity: 1;
}

.hero-hybrid-brand:hover
.hero-hybrid-logo {
    transform:
        scale(1.06)
        rotate(-3deg);
}

.hero-hybrid-brand > strong {
    font-size: 1.18rem;

    letter-spacing:
        -0.04em;
}

.hero-hybrid-brand > span {
    margin-top: 1px;

    color:
        var(--orange);

    font-size: 1rem;

    font-weight: 800;

    letter-spacing:
        -0.035em;
}

.hero-hybrid-brand-tags {
    width: 100%;

    margin-top: 17px;
    padding-top: 13px;

    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 5px;

    border-top:
        1px solid
        var(--hybrid-border);
}

.hero-hybrid-brand-tags i {
    padding:
        4px
        6px;

    border-radius: 999px;

    color:
        var(--hybrid-soft);

    background:
        color-mix(
            in srgb,
            var(--hybrid-bg) 88%,
            transparent
        );

    border:
        1px solid
        var(--hybrid-border);

    font-size: 0.43rem;

    font-weight: 800;

    font-style: normal;

    letter-spacing: 0.08em;
}


/* Story cards orbiting the logo */

.hybrid-story {
    position: absolute;

    z-index: 6;

    width: 195px;

    padding:
        15px
        16px
        14px;

    overflow: hidden;

    border-radius: 18px;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.hybrid-story > div {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;
}

.hybrid-story > div span,
.hybrid-story > div small {
    font-size: 0.48rem;

    font-weight: 800;

    letter-spacing: 0.12em;
}

.hybrid-story > div span {
    color:
        var(--orange);
}

.hybrid-story > div small {
    opacity: 0.48;
}

.hybrid-story > strong {
    display: block;

    margin-top: 13px;

    font-size: 2.4rem;

    line-height: 0.86;

    letter-spacing:
        -0.07em;
}

.hybrid-story > p {
    margin-top: 11px;

    font-size: 0.58rem;

    font-weight: 750;

    opacity: 0.58;
}

.hybrid-story-set {
    left: 27px;
    top: 61px;

    color:
        var(--hybrid-text);

    background:
        color-mix(
            in srgb,
            var(--hybrid-bg) 94%,
            transparent
        );

    border:
        1px solid
        var(--hybrid-border);

    box-shadow:
        0 18px 45px
        rgba(0,0,0,0.08);

    transform:
        rotate(-4deg);
}

.hybrid-story-office {
    right: 23px;
    top: 95px;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            var(--orange),
            #e84c00
        );

    box-shadow:
        0 22px 52px
        rgba(255,90,0,0.24);

    transform:
        rotate(4deg);
}

.hybrid-story-office
> div span {
    color:
        rgba(255,255,255,0.86);
}

.hybrid-story-field {
    right: 51px;
    bottom: 51px;

    color: #f5f2ec;

    background:
        linear-gradient(
            145deg,
            #171719,
            #080809
        );

    border:
        1px solid
        rgba(255,255,255,0.08);

    box-shadow:
        0 24px 56px
        rgba(0,0,0,0.19);

    transform:
        rotate(-3deg);
}

.hybrid-story:hover {
    z-index: 9;

    transform:
        rotate(0deg)
        translateY(-7px)
        scale(1.025);
}

.hero-hybrid-note {
    position: absolute;

    left: 27px;
    bottom: 30px;

    z-index: 6;

    display: flex;
    align-items: center;

    gap: 10px;

    color:
        var(--hybrid-soft);

    font-size: 0.51rem;

    font-weight: 800;

    letter-spacing: 0.13em;
}

.hero-hybrid-note > span {
    width: 31px;
    height: 1px;

    background:
        var(--orange);
}

@keyframes hybridOrbitA {

    from {
        transform:
            translate(-50%, -50%)
            rotate(0deg);
    }

    to {
        transform:
            translate(-50%, -50%)
            rotate(360deg);
    }
}

@keyframes hybridOrbitB {

    from {
        transform:
            translate(-50%, -50%)
            rotate(0deg);
    }

    to {
        transform:
            translate(-50%, -50%)
            rotate(-360deg);
    }
}


/* =========================================================
   PROCESS — TYPOGRAPHY & SCALE REFINEMENT
========================================================= */

.process-acts {
    padding:
        108px
        0
        88px;
}

.process-acts-head {
    margin-bottom:
        58px;
}

.process-acts-head h2 {
    max-width:
        710px;

    font-size:
        clamp(
            3.15rem,
            4.7vw,
            5.05rem
        );

    line-height:
        0.90;
}

.process-act {
    min-height:
        345px;

    padding:
        72px
        31px
        28px;
}

.process-act h3 {
    max-width:
        310px;

    margin-top:
        42px;

    font-size:
        clamp(
            2.05rem,
            3.05vw,
            3.25rem
        );

    line-height:
        0.93;
}

.process-act p {
    margin-top:
        18px;

    font-size:
        0.82rem;
}

.process-act-foot {
    left:
        31px;

    right:
        31px;
}


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

.footer-wow {
    position: relative;

    overflow: hidden;

    padding:
        88px
        0
        24px;

    color:
        #f5f2ec;

    background:
        radial-gradient(
            circle at 82% 10%,
            rgba(255,90,0,0.12),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            #101012,
            #060607 72%
        );
}

.footer-wow-glow {
    position: absolute;

    width: 430px;
    height: 430px;

    left: -180px;
    bottom: -210px;

    border-radius: 50%;

    background:
        var(--orange);

    opacity:
        0.08;

    filter:
        blur(150px);

    pointer-events: none;
}

.footer-wow-inner {
    position: relative;

    z-index: 2;
}


/* CTA */

.footer-wow-cta {
    padding-bottom:
        58px;

    border-bottom:
        1px solid
        rgba(255,255,255,0.08);
}

.footer-wow-kicker {
    display: flex;
    align-items: center;

    gap: 11px;

    margin-bottom:
        21px;

    color:
        rgba(255,255,255,0.38);

    font-size:
        0.60rem;

    font-weight:
        800;

    letter-spacing:
        0.15em;
}

.footer-wow-kicker > span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
        var(--orange);

    box-shadow:
        0 0 0 6px
        rgba(255,90,0,0.09);
}

.footer-wow-cta-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(300px, 0.8fr);

    gap: 70px;

    align-items:
        end;
}

.footer-wow-cta h2 {
    max-width:
        790px;

    font-size:
        clamp(
            3.2rem,
            5.2vw,
            5.7rem
        );

    line-height:
        0.88;

    letter-spacing:
        -0.07em;
}

.footer-wow-cta h2 span {
    display: block;

    color:
        var(--orange);
}

.footer-wow-actions {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;

    gap: 10px;
}

.footer-wow-primary,
.footer-wow-secondary {
    min-height:
        49px;

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

    gap: 12px;

    border-radius:
        999px;

    font-size:
        0.78rem;

    font-weight:
        800;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.footer-wow-primary {
    padding:
        0
        10px
        0
        19px;

    color:
        #fff;

    background:
        var(--orange);
}

.footer-wow-primary > span {
    width: 31px;
    height: 31px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        rgba(255,255,255,0.15);
}

.footer-wow-secondary {
    padding:
        0
        19px;

    color:
        rgba(255,255,255,0.72);

    border:
        1px solid
        rgba(255,255,255,0.12);

    background:
        rgba(255,255,255,0.025);
}

.footer-wow-secondary > span {
    color:
        var(--orange);
}

.footer-wow-primary:hover,
.footer-wow-secondary:hover {
    transform:
        translateY(-3px);
}


/* Main footer */

.footer-wow-main {
    display: grid;

    grid-template-columns:
        minmax(260px, 1.15fr)
        0.62fr
        0.62fr
        minmax(230px, 0.85fr);

    gap:
        62px;

    padding:
        54px
        0
        58px;

    border-bottom:
        1px solid
        rgba(255,255,255,0.08);
}

.footer-wow-brand img {
    width:
        180px;

    max-height:
        52px;

    object-fit:
        contain;

    margin-bottom:
        22px;
}

.footer-wow-brand p {
    max-width:
        315px;

    color:
        rgba(255,255,255,0.44);

    font-size:
        0.84rem;

    line-height:
        1.75;
}

.footer-wow-status {
    display: flex;
    align-items: center;

    gap:
        9px;

    margin-top:
        23px;

    color:
        rgba(255,255,255,0.37);

    font-size:
        0.56rem;

    font-weight:
        800;

    letter-spacing:
        0.13em;
}

.footer-wow-status > span {
    width:
        6px;

    height:
        6px;

    border-radius:
        50%;

    background:
        var(--orange);
}

.footer-wow-column {
    display: flex;
    flex-direction: column;

    align-items:
        flex-start;

    gap:
        9px;
}

.footer-wow-column > small {
    margin-bottom:
        10px;

    color:
        var(--orange);

    font-size:
        0.56rem;

    font-weight:
        800;

    letter-spacing:
        0.15em;
}

.footer-wow-column > a {
    color:
        rgba(255,255,255,0.55);

    font-size:
        0.79rem;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.footer-wow-column > a:hover {
    color:
        #fff;

    transform:
        translateX(3px);
}

.footer-wow-contact {
    gap:
        15px;
}

.footer-wow-contact > a {
    display: flex;
    flex-direction: column;

    gap: 3px;

    color:
        rgba(255,255,255,0.78);
}

.footer-wow-contact > a span {
    color:
        rgba(255,255,255,0.28);

    font-size:
        0.49rem;

    font-weight:
        800;

    letter-spacing:
        0.13em;
}


/* giant word */

.footer-wow-word {
    height:
        150px;

    overflow:
        hidden;

    display: flex;
    align-items: flex-end;

    color:
        transparent;

    -webkit-text-stroke:
        1px
        rgba(255,255,255,0.07);

    font-size:
        clamp(
            8rem,
            16vw,
            13rem
        );

    line-height:
        0.72;

    letter-spacing:
        -0.085em;

    font-weight:
        800;

    user-select:
        none;

    pointer-events:
        none;
}

.footer-wow-bottom {
    min-height:
        58px;

    display: grid;

    grid-template-columns:
        1fr
        auto
        1fr;

    align-items:
        center;

    gap:
        25px;

    border-top:
        1px solid
        rgba(255,255,255,0.06);

    color:
        rgba(255,255,255,0.30);

    font-size:
        0.60rem;
}

.footer-wow-bottom > span {
    letter-spacing:
        0.10em;

    text-transform:
        uppercase;
}

.footer-wow-bottom > a {
    justify-self:
        end;

    color:
        rgba(255,255,255,0.52);

    font-weight:
        750;

    transition:
        color 0.25s ease;
}

.footer-wow-bottom > a:hover {
    color:
        var(--orange);
}


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

@media (max-width: 1080px) {

    .hero-hybrid {
        min-height:
            545px;
    }

    .hybrid-story {
        width:
            170px;
    }

    .hybrid-story-set {
        left:
            15px;
    }

    .hybrid-story-office {
        right:
            14px;
    }

    .hybrid-story-field {
        right:
            25px;
    }

    .footer-wow-main {
        grid-template-columns:
            1.2fr
            0.7fr
            0.7fr;

        gap:
            44px;
    }

    .footer-wow-contact {
        grid-column:
            1 / -1;

        display:
            grid;

        grid-template-columns:
            repeat(3, 1fr);

        gap:
            20px;

        padding-top:
            28px;

        border-top:
            1px solid
            rgba(255,255,255,0.07);
    }

    .footer-wow-contact > small {
        grid-column:
            1 / -1;
    }
}


@media (max-width: 900px) {

    .hero-hybrid {
        width:
            min(100%, 690px);

        min-height:
            575px;

        margin-inline:
            auto;
    }

    .footer-wow-cta-grid {
        grid-template-columns:
            1fr;

        gap:
            30px;
    }

    .footer-wow-actions {
        justify-content:
            flex-start;
    }

    .footer-wow-main {
        grid-template-columns:
            1fr
            1fr;

        gap:
            42px;
    }

    .footer-wow-brand {
        grid-column:
            1 / -1;
    }

    .footer-wow-contact {
        grid-column:
            1 / -1;
    }
}


@media (max-width: 720px) {

    .hero-hybrid {
        min-height:
            610px;

        border-radius:
            26px;
    }

    .hero-hybrid-brand {
        width:
            200px;

        min-height:
            235px;
    }

    .hero-hybrid-orbit-a {
        width:
            330px;

        height:
            330px;
    }

    .hero-hybrid-orbit-b {
        width:
            245px;

        height:
            245px;
    }

    .hybrid-story {
        width:
            158px;

        padding:
            13px;
    }

    .hybrid-story > strong {
        font-size:
            2rem;
    }

    .hybrid-story-set {
        left:
            14px;

        top:
            43px;
    }

    .hybrid-story-office {
        right:
            12px;

        top:
            90px;
    }

    .hybrid-story-field {
        right:
            18px;

        bottom:
            44px;
    }

    .hero-hybrid-note {
        left:
            17px;

        bottom:
            23px;
    }

    .process-act {
        min-height:
            245px;

        padding:
            39px
            24px
            68px
            72px;
    }

    .process-act h3 {
        margin-top:
            25px;

        font-size:
            clamp(
                2rem,
                7vw,
                2.65rem
            );
    }

    .footer-wow {
        padding-top:
            72px;
    }

    .footer-wow-cta {
        padding-bottom:
            46px;
    }

    .footer-wow-cta h2 {
        font-size:
            clamp(
                3rem,
                13vw,
                4.2rem
            );
    }

    .footer-wow-main {
        grid-template-columns:
            1fr
            1fr;

        gap:
            38px
            25px;
    }

    .footer-wow-contact {
        display:
            flex;

        grid-column:
            1 / -1;
    }

    .footer-wow-word {
        height:
            105px;

        font-size:
            8rem;
    }

    .footer-wow-bottom {
        grid-template-columns:
            1fr
            auto;

        padding:
            17px
            0;

        gap:
            12px;
    }

    .footer-wow-bottom > span {
        display:
            none;
    }
}


@media (max-width: 520px) {

    .hero-hybrid {
        min-height:
            555px;
    }

    .hero-hybrid-brand {
        width:
            176px;

        min-height:
            216px;

        padding:
            18px
            13px
            14px;
    }

    .hero-hybrid-brand-top {
        font-size:
            0.42rem;
    }

    .hero-hybrid-logo-core {
        width:
            76px;

        height:
            76px;

        margin-top:
            17px;
    }

    .hero-hybrid-logo {
        width:
            46px;

        height:
            46px;
    }

    .hero-hybrid-brand > strong {
        font-size:
            1.02rem;
    }

    .hero-hybrid-brand > span {
        font-size:
            0.88rem;
    }

    .hero-hybrid-brand-tags {
        gap:
            3px;
    }

    .hero-hybrid-brand-tags i {
        font-size:
            0.38rem;
    }

    .hero-hybrid-orbit-a {
        width:
            285px;

        height:
            285px;
    }

    .hero-hybrid-orbit-b {
        width:
            215px;

        height:
            215px;
    }

    .hybrid-story {
        width:
            137px;

        padding:
            11px;

        border-radius:
            15px;
    }

    .hybrid-story > div small {
        display:
            none;
    }

    .hybrid-story > strong {
        font-size:
            1.72rem;
    }

    .hybrid-story > p {
        font-size:
            0.49rem;
    }

    .hybrid-story-set {
        left:
            9px;

        top:
            39px;
    }

    .hybrid-story-office {
        right:
            8px;

        top:
            79px;
    }

    .hybrid-story-field {
        right:
            13px;

        bottom:
            42px;
    }

    .hero-hybrid-note {
        font-size:
            0.43rem;
    }

    .process-acts-head h2 {
        font-size:
            clamp(
                2.9rem,
                13vw,
                3.8rem
            );
    }

    .process-act h3 {
        font-size:
            2.25rem;
    }

    .footer-wow-actions {
        flex-direction:
            column;

        align-items:
            stretch;
    }

    .footer-wow-primary,
    .footer-wow-secondary {
        width:
            100%;
    }

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

    .footer-wow-brand,
    .footer-wow-contact {
        grid-column:
            auto;
    }

    .footer-wow-contact {
        padding-top:
            24px;
    }

    .footer-wow-word {
        height:
            86px;

        font-size:
            6.5rem;
    }

    .footer-wow-bottom {
        grid-template-columns:
            1fr;

        text-align:
            left;
    }

    .footer-wow-bottom > a {
        justify-self:
            start;
    }
}


@media (prefers-reduced-motion: reduce) {

    .hero-hybrid-orbit-a,
    .hero-hybrid-orbit-b {
        animation:
            none;
    }
}



/* =========================================================
   SETKENT — PREMIUM MOTION SYSTEM V4
   Theme reveal / scroll motion / depth / ambient interaction
========================================================= */

/* ---------------------------------------------------------
   00 — USER-APPROVED DARK MODE SAHA CARD
--------------------------------------------------------- */

body.dark-theme .hybrid-story-field {
    color: #111113;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f3f0e9
        );

    border:
        1px solid
        rgba(255,255,255,0.22);

    box-shadow:
        0 26px 60px
        rgba(0,0,0,0.28);
}

body.dark-theme .hybrid-story-field > div span {
    color: var(--orange);
}

body.dark-theme .hybrid-story-field > div small,
body.dark-theme .hybrid-story-field > p {
    color: rgba(11,11,12,0.52);
}


/* ---------------------------------------------------------
   01 — THEME REVEAL
--------------------------------------------------------- */

:root {
    --theme-x: 50vw;
    --theme-y: 44px;
    --theme-radius: 150vmax;
}

::view-transition-old(root),
::view-transition-new(root) {
    animation: none;
    mix-blend-mode: normal;
}

::view-transition-old(root) {
    z-index: 1;
}

::view-transition-new(root) {
    z-index: 9999;

    clip-path:
        circle(
            0px
            at
            var(--theme-x)
            var(--theme-y)
        );

    animation:
        setkentThemeReveal
        560ms
        cubic-bezier(.22,.78,.18,1)
        both;
}

@keyframes setkentThemeReveal {
    to {
        clip-path:
            circle(
                var(--theme-radius)
                at
                var(--theme-x)
                var(--theme-y)
            );
    }
}

/* Do not let old CSS color transitions muddy the browser snapshot. */
html.theme-switching *,
html.theme-switching *::before,
html.theme-switching *::after {
    transition:
        none !important;
}

/* Premium theme button */
.theme-toggle {
    overflow:
        visible;

    isolation:
        isolate;
}

.theme-toggle::before {
    content: "";

    position:
        absolute;

    inset:
        -5px;

    z-index:
        -1;

    border-radius:
        50%;

    border:
        1px solid
        rgba(255,90,0,0);

    transform:
        scale(0.78);

    opacity:
        0;

    transition:
        transform 0.35s ease,
        opacity 0.35s ease,
        border-color 0.35s ease;
}

.theme-toggle:hover::before {
    transform:
        scale(1);

    opacity:
        1;

    border-color:
        rgba(255,90,0,0.28);
}

.theme-toggle.is-switching::before {
    animation:
        themeTogglePulse
        560ms
        cubic-bezier(.22,.78,.18,1);
}

.theme-toggle.is-switching .theme-icon {
    animation:
        themeIconSpin
        560ms
        cubic-bezier(.22,.78,.18,1);
}

@keyframes themeTogglePulse {
    0% {
        opacity: 0;
        transform: scale(0.72);
        border-color: rgba(255,90,0,0.12);
    }

    50% {
        opacity: 1;
        transform: scale(1.28);
        border-color: rgba(255,90,0,0.42);
    }

    100% {
        opacity: 0;
        transform: scale(1.48);
        border-color: rgba(255,90,0,0);
    }
}

@keyframes themeIconSpin {
    0% {
        rotate: 0deg;
    }

    100% {
        rotate: 180deg;
    }
}

/* Fallback for browsers without View Transitions */
.setkent-theme-fallback {
    position:
        fixed;

    z-index:
        99999;

    width:
        28px;

    height:
        28px;

    left:
        var(--fallback-x);

    top:
        var(--fallback-y);

    margin:
        -14px
        0
        0
        -14px;

    border-radius:
        50%;

    pointer-events:
        none;

    background:
        var(--fallback-color);

    transform:
        scale(0);

    opacity:
        0.98;

    will-change:
        transform,
        opacity;
}


/* ---------------------------------------------------------
   02 — REVEAL SYSTEM
--------------------------------------------------------- */

/*
   Content remains accessible if JS ever fails.
   JS adds html.motion-ready before activating motion.
*/
.reveal {
    opacity:
        1;

    transform:
        none;

    filter:
        none;
}

html.motion-ready .reveal {
    opacity:
        0;

    transform:
        translate3d(
            var(--reveal-x, 0px),
            var(--reveal-y, 24px),
            0
        )
        scale(
            var(--reveal-scale, 1)
        );

    filter:
        blur(
            var(--reveal-blur, 5px)
        );

    transition:
        opacity 760ms cubic-bezier(.2,.8,.2,1),
        transform 760ms cubic-bezier(.2,.8,.2,1),
        filter 760ms cubic-bezier(.2,.8,.2,1);

    transition-delay:
        var(--reveal-delay, 0ms);

    will-change:
        opacity,
        transform,
        filter;
}

html.motion-ready .reveal.visible {
    opacity:
        1;

    transform:
        translate3d(0,0,0)
        scale(1);

    filter:
        blur(0);
}

/* Different sections get different entrances. */
html.motion-ready .reveal.motion-left {
    --reveal-x: -28px;
    --reveal-y: 0px;
}

html.motion-ready .reveal.motion-right {
    --reveal-x: 28px;
    --reveal-y: 0px;
}

html.motion-ready .reveal.motion-scale {
    --reveal-y: 15px;
    --reveal-scale: 0.975;
    --reveal-blur: 7px;
}

html.motion-ready .reveal.motion-soft {
    --reveal-y: 17px;
    --reveal-blur: 3px;
}


/* ---------------------------------------------------------
   03 — HERO DEPTH
--------------------------------------------------------- */

.hero-hybrid {
    perspective:
        1100px;
}

.hero-hybrid-brand,
.hybrid-story {
    translate:
        var(--motion-x, 0px)
        var(--motion-y, 0px);

    transition:
        translate 420ms cubic-bezier(.2,.8,.2,1),
        transform 350ms ease,
        box-shadow 350ms ease;
}

.hero-hybrid.is-tracking .hero-hybrid-brand,
.hero-hybrid.is-tracking .hybrid-story {
    transition:
        translate 80ms linear,
        transform 350ms ease,
        box-shadow 350ms ease;
}

/* very subtle ambient light following the pointer */
.hero-hybrid::after {
    content: "";

    position:
        absolute;

    inset:
        0;

    z-index:
        1;

    pointer-events:
        none;

    opacity:
        0;

    background:
        radial-gradient(
            250px circle
            at
            var(--hero-light-x, 50%)
            var(--hero-light-y, 50%),
            rgba(255,90,0,0.09),
            transparent 70%
        );

    transition:
        opacity 0.35s ease;
}

.hero-hybrid.is-tracking::after {
    opacity:
        1;
}


/* ---------------------------------------------------------
   04 — SERVICES / POINTER MICRO LIGHT
--------------------------------------------------------- */

.service-index-row::after {
    content: "";

    position:
        absolute;

    inset:
        0;

    z-index:
        1;

    pointer-events:
        none;

    opacity:
        0;

    background:
        radial-gradient(
            250px circle
            at
            var(--service-x, 50%)
            var(--service-y, 50%),
            rgba(255,90,0,0.11),
            transparent 72%
        );

    transition:
        opacity 0.3s ease;
}

.service-index-row:hover::after {
    opacity:
        1;
}

.service-index-row .service-index-name h3,
.service-index-row .service-index-mark,
.service-index-row > a {
    transition:
        transform 0.35s cubic-bezier(.2,.8,.2,1),
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}

.service-index-row:hover
.service-index-name h3 {
    transform:
        translateX(4px);
}


/* ---------------------------------------------------------
   05 — WHY / MOSAIC DEPTH
--------------------------------------------------------- */

.proof-tile {
    transform-origin:
        center;

    will-change:
        transform;
}

.proof-tile.motion-hover {
    transform:
        translateY(-7px)
        rotate(
            var(--tile-rotate, 0deg)
        );
}


/* ---------------------------------------------------------
   06 — PROCESS SEQUENCE
--------------------------------------------------------- */

.process-act {
    --process-accent-opacity: 0;

    transition:
        transform 0.45s cubic-bezier(.2,.8,.2,1),
        background 0.45s ease,
        border-color 0.45s ease;
}

.process-act.is-active {
    background:
        linear-gradient(
            165deg,
            rgba(255,90,0,0.065),
            transparent 56%
        );
}

.process-act.is-active
.process-act-top > span {
    text-shadow:
        0 0 18px
        rgba(255,90,0,0.34);
}

.process-act.is-active
.process-act-foot {
    border-color:
        rgba(255,90,0,0.19);
}


/* ---------------------------------------------------------
   07 — FOOTER AMBIENT LIGHT
--------------------------------------------------------- */

.footer-wow::after {
    content: "";

    position:
        absolute;

    inset:
        0;

    pointer-events:
        none;

    z-index:
        1;

    opacity:
        0.72;

    background:
        radial-gradient(
            420px circle
            at
            var(--footer-x, 82%)
            var(--footer-y, 12%),
            rgba(255,90,0,0.09),
            transparent 70%
        );
}

.footer-wow-inner {
    z-index:
        2;
}


/* ---------------------------------------------------------
   08 — NAV ACTIVE STATE
--------------------------------------------------------- */

.desktop-nav a {
    position:
        relative;
}

.desktop-nav a::after {
    content: "";

    position:
        absolute;

    left:
        50%;

    bottom:
        -9px;

    width:
        4px;

    height:
        4px;

    border-radius:
        50%;

    background:
        var(--orange);

    opacity:
        0;

    transform:
        translateX(-50%)
        scale(0.4);

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.desktop-nav a.is-active {
    color:
        var(--text);
}

.desktop-nav a.is-active::after {
    opacity:
        1;

    transform:
        translateX(-50%)
        scale(1);
}


/* ---------------------------------------------------------
   09 — CTA MICRO MOTION
--------------------------------------------------------- */

.hero-editorial-primary,
.footer-wow-primary,
.nav-call-button,
.services-index-footer {
    will-change:
        transform;
}

.motion-magnetic {
    translate:
        var(--magnetic-x, 0px)
        var(--magnetic-y, 0px);

    transition:
        translate 180ms ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* ---------------------------------------------------------
   10 — REDUCED MOTION / TOUCH GUARDRAILS
--------------------------------------------------------- */

@media (max-width: 900px) {

    .hero-hybrid-brand,
    .hybrid-story,
    .motion-magnetic {
        translate:
            0
            0 !important;
    }

    .hero-hybrid::after {
        display:
            none;
    }
}

@media (prefers-reduced-motion: reduce) {

    ::view-transition-old(root),
    ::view-transition-new(root) {
        animation:
            none !important;

        clip-path:
            none !important;
    }

    html.motion-ready .reveal,
    html.motion-ready .reveal.visible {
        opacity:
            1 !important;

        transform:
            none !important;

        filter:
            none !important;

        transition:
            none !important;
    }

    .theme-toggle.is-switching::before,
    .theme-toggle.is-switching .theme-icon,
    .process-acts-line > span,
    .proof-line i {
        animation:
            none !important;
    }

    .hero-hybrid-brand,
    .hybrid-story,
    .motion-magnetic {
        translate:
            0
            0 !important;

        transition:
            none !important;
    }
}



/* =========================================================
   SETKENT — PROJECT / REFERENCE VAULT V5
   Distinct case-study showcase system
========================================================= */

.project-vault {
    position: relative;
    padding: 122px 0;
    overflow: hidden;
    background: var(--surface-alt);
}

.project-vault-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.18;

    background:
        linear-gradient(
            90deg,
            transparent 0,
            transparent calc(50% - 1px),
            var(--border-light) 50%,
            transparent calc(50% + 1px)
        );
}

.project-vault-head {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        minmax(0, 1.18fr)
        minmax(330px, 0.82fr);

    gap: 80px;
    align-items: end;
    margin-bottom: 54px;
}

.project-vault-kicker {
    display: inline-block;
    margin-bottom: 18px;

    color: var(--orange);

    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.project-vault-head h2 {
    max-width: 790px;

    font-size:
        clamp(
            3.5rem,
            5.5vw,
            6rem
        );

    line-height: 0.89;
    letter-spacing: -0.07em;
}

.project-vault-head h2 span {
    display: block;
    color: var(--orange);
}

.project-vault-head-side {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.project-vault-head-side > p {
    max-width: 470px;
    color: var(--text-soft);

    font-size: 0.91rem;
    line-height: 1.82;
}

.project-vault-counter {
    display: flex;
    align-items: baseline;
    gap: 8px;

    color: var(--text-soft);

    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.10em;
}

.project-vault-counter span {
    color: var(--orange);
    font-size: 1.15rem;
}

.project-vault-counter i {
    font-style: normal;
    opacity: 0.35;
}

.project-vault-counter strong {
    font-size: 0.75rem;
}


/* ---------------------------------------------------------
   MAIN VAULT
--------------------------------------------------------- */

.project-vault-stage {
    position: relative;
    z-index: 2;

    overflow: hidden;

    border-radius: 32px;
    border: 1px solid var(--border-light);

    background: var(--surface);

    box-shadow:
        0 34px 85px rgba(0,0,0,0.10);
}

body.dark-theme .project-vault-stage {
    box-shadow:
        0 40px 100px rgba(0,0,0,0.28);
}

.project-vault-stage-top {
    min-height: 55px;
    padding: 0 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    border-bottom: 1px solid var(--border-light);

    color: var(--text-soft);

    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.project-vault-live {
    display: flex;
    align-items: center;
    gap: 9px;
}

.project-vault-live > span {
    width: 7px;
    height: 7px;
    border-radius: 50%;

    background: var(--orange);

    box-shadow:
        0 0 0 6px rgba(255,90,0,0.08);
}

.project-vault-code {
    opacity: 0.72;
}


/* ---------------------------------------------------------
   PROJECT PANELS
--------------------------------------------------------- */

.project-case {
    display: none;

    min-height: 575px;

    grid-template-columns:
        minmax(0, 1.16fr)
        minmax(360px, 0.84fr);

    animation:
        projectCaseIn
        520ms
        cubic-bezier(.2,.8,.2,1)
        both;
}

.project-case.project-case-active {
    display: grid;
}

@keyframes projectCaseIn {
    from {
        opacity: 0;
        transform: translateY(12px);
        filter: blur(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}


/* ---------------------------------------------------------
   VISUAL AREA
--------------------------------------------------------- */

.project-case-visual {
    position: relative;
    min-height: 575px;
    overflow: hidden;
    isolation: isolate;
}

.project-visual-number {
    position: absolute;
    right: 22px;
    top: 18px;

    z-index: 6;

    color: rgba(255,255,255,0.25);

    font-size: 0.60rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.project-visual-caption {
    position: absolute;
    left: 24px;
    bottom: 22px;

    z-index: 6;

    color: rgba(255,255,255,0.50);

    font-size: 0.54rem;
    font-weight: 800;
    letter-spacing: 0.13em;
}


/* SET VISUAL */

.project-visual-set {
    color: #fff;

    background:
        radial-gradient(
            circle at 72% 28%,
            rgba(255,255,255,0.16),
            transparent 20%
        ),
        linear-gradient(
            145deg,
            #ff5a00,
            #df4700 72%
        );
}

.project-visual-grid {
    position: absolute;
    inset: 0;

    opacity: 0.14;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.55) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.55) 1px,
            transparent 1px
        );

    background-size: 52px 52px;
}

.project-visual-word {
    position: absolute;
    left: 50%;
    top: 50%;

    z-index: 4;

    transform:
        translate(-50%, -50%);

    font-size:
        clamp(
            8rem,
            15vw,
            14rem
        );

    line-height: 0.75;
    letter-spacing: -0.09em;
    font-weight: 800;

    color: rgba(255,255,255,0.94);
}

.project-visual-frame {
    position: absolute;

    z-index: 3;

    border:
        1px solid
        rgba(255,255,255,0.35);

    transform: rotate(-8deg);

    transition:
        transform 0.45s cubic-bezier(.2,.8,.2,1);
}

.project-frame-a {
    width: 310px;
    height: 205px;

    left: 12%;
    top: 17%;
}

.project-frame-b {
    width: 250px;
    height: 165px;

    right: 9%;
    bottom: 18%;

    transform: rotate(8deg);
}

.project-case-active .project-frame-a {
    animation:
        frameFloatA
        5s
        ease-in-out
        infinite;
}

.project-case-active .project-frame-b {
    animation:
        frameFloatB
        6s
        ease-in-out
        infinite;
}

.project-visual-node {
    position: absolute;
    z-index: 7;

    display: flex;
    align-items: center;
    gap: 8px;

    padding: 9px 12px;

    border-radius: 999px;

    color: #fff;

    background:
        rgba(20,20,22,0.26);

    border:
        1px solid
        rgba(255,255,255,0.18);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    font-size: 0.52rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.project-visual-node > span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
}

.project-node-a {
    left: 28px;
    top: 102px;
}

.project-node-b {
    right: 30px;
    bottom: 92px;
}

@keyframes frameFloatA {
    0%,100% {
        transform:
            rotate(-8deg)
            translateY(0);
    }

    50% {
        transform:
            rotate(-5deg)
            translateY(-8px);
    }
}

@keyframes frameFloatB {
    0%,100% {
        transform:
            rotate(8deg)
            translateY(0);
    }

    50% {
        transform:
            rotate(5deg)
            translateY(9px);
    }
}


/* OFFICE VISUAL */

.project-visual-office {
    color: #111113;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #ebe6dd
        );
}

body.dark-theme .project-visual-office {
    background:
        linear-gradient(
            145deg,
            #f8f5ef,
            #eae4da
        );
}

.project-visual-office .project-visual-number {
    color: rgba(11,11,12,0.26);
}

.project-visual-office .project-visual-caption {
    color: rgba(11,11,12,0.48);
}

.project-office-grid {
    position: absolute;
    inset: 0;

    opacity: 0.18;

    background-image:
        linear-gradient(
            rgba(11,11,12,0.35) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(11,11,12,0.35) 1px,
            transparent 1px
        );

    background-size: 46px 46px;
}

.project-office-title {
    position: absolute;
    left: 38px;
    top: 42px;

    z-index: 5;

    font-size:
        clamp(
            4.5rem,
            8.5vw,
            8rem
        );

    line-height: 0.78;
    letter-spacing: -0.08em;
    font-weight: 800;
}

.project-office-title span {
    display: block;
    color: var(--orange);
}

.project-office-plan {
    position: absolute;

    right: 8%;
    bottom: 14%;

    width: 52%;
    height: 46%;

    z-index: 4;

    border:
        1px solid
        rgba(11,11,12,0.24);

    background:
        rgba(255,255,255,0.16);

    box-shadow:
        18px 20px 0 rgba(255,90,0,0.08);

    transform:
        rotate(-4deg);
}

.office-plan-line,
.office-plan-box {
    position: absolute;
    display: block;

    border:
        1px solid
        rgba(11,11,12,0.28);
}

.office-plan-line-a {
    left: 13%;
    top: 17%;
    width: 74%;
    height: 1px;
    border: 0;
    background: rgba(11,11,12,0.26);
}

.office-plan-line-b {
    left: 25%;
    top: 17%;
    width: 1px;
    height: 68%;
    border: 0;
    background: rgba(11,11,12,0.26);
}

.office-plan-line-c {
    left: 25%;
    bottom: 28%;
    width: 62%;
    height: 1px;
    border: 0;
    background: rgba(11,11,12,0.26);
}

.office-plan-box-a {
    left: 35%;
    top: 31%;
    width: 28%;
    height: 24%;
}

.office-plan-box-b {
    right: 10%;
    bottom: 10%;
    width: 22%;
    height: 18%;
}


/* OPS VISUAL */

.project-visual-ops {
    color: #f5f2ec;

    background:
        radial-gradient(
            circle at 70% 35%,
            rgba(255,90,0,0.16),
            transparent 25%
        ),
        linear-gradient(
            145deg,
            #171719,
            #070708 74%
        );
}

.project-ops-grid {
    position: absolute;
    inset: 0;

    opacity: 0.07;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.55) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.55) 1px,
            transparent 1px
        );

    background-size: 58px 58px;
}

.project-ops-route {
    position: absolute;

    left: 9%;
    right: 9%;
    top: 24%;
    bottom: 22%;

    z-index: 4;
}

.ops-point {
    position: absolute;

    width: 18px;
    height: 18px;

    border-radius: 50%;

    background: var(--orange);

    border:
        4px solid
        #111113;

    box-shadow:
        0 0 0 1px
        rgba(255,90,0,0.45),
        0 0 28px
        rgba(255,90,0,0.24);
}

.ops-point-a {
    left: 7%;
    top: 64%;
}

.ops-point-b {
    left: 48%;
    top: 25%;
}

.ops-point-c {
    right: 7%;
    bottom: 8%;
}

.ops-line {
    position: absolute;

    height: 1px;

    background:
        linear-gradient(
            to right,
            rgba(255,90,0,0.22),
            var(--orange),
            rgba(255,90,0,0.22)
        );

    transform-origin: left center;
}

.ops-line-a {
    left: 10%;
    top: 65%;

    width: 46%;

    transform:
        rotate(-29deg);
}

.ops-line-b {
    left: 51%;
    top: 31%;

    width: 44%;

    transform:
        rotate(30deg);
}

.project-case-active .ops-line::after {
    content: "";

    position: absolute;
    top: -2px;
    left: 0;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #fff;

    animation:
        opsSignal
        3.8s
        ease-in-out
        infinite;
}

@keyframes opsSignal {
    from {
        left: 0%;
        opacity: 0;
    }

    12% {
        opacity: 1;
    }

    88% {
        opacity: 1;
    }

    to {
        left: 100%;
        opacity: 0;
    }
}

.project-ops-title {
    position: absolute;

    left: 38px;
    bottom: 50px;

    z-index: 6;

    font-size:
        clamp(
            3.8rem,
            7vw,
            7rem
        );

    line-height: 0.80;
    letter-spacing: -0.075em;
    font-weight: 800;
}

.project-ops-title span {
    display: block;
    color: var(--orange);
}


/* ---------------------------------------------------------
   INFO AREA
--------------------------------------------------------- */

.project-case-info {
    position: relative;

    padding:
        42px
        40px
        36px;

    display: flex;
    flex-direction: column;

    border-left:
        1px solid
        var(--border-light);

    background:
        var(--surface);
}

.project-case-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    color: var(--text-soft);

    font-size: 0.54rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.project-case-meta > span {
    color: var(--orange);
}

.project-case-info h3 {
    max-width: 470px;

    margin-top: 55px;

    font-size:
        clamp(
            2.7rem,
            4vw,
            4.5rem
        );

    line-height: 0.90;
    letter-spacing: -0.065em;
}

.project-case-info h3 span {
    display: block;
    color: var(--orange);
}

.project-case-info > p {
    max-width: 460px;

    margin-top: 22px;

    color: var(--text-soft);

    font-size: 0.87rem;
    line-height: 1.78;
}

.project-case-tags {
    margin-top: 25px;

    display: flex;
    flex-wrap: wrap;

    gap: 7px;
}

.project-case-tags span {
    padding: 7px 10px;

    border-radius: 999px;

    border:
        1px solid
        var(--border-light);

    color:
        var(--text-soft);

    background:
        var(--surface-alt);

    font-size: 0.50rem;
    font-weight: 800;
    letter-spacing: 0.10em;
}

.project-case-footer {
    margin-top: auto;
    padding-top: 28px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 25px;

    border-top:
        1px solid
        var(--border-light);
}

.project-case-footer > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.project-case-footer small {
    color: var(--text-soft);

    font-size: 0.49rem;
    font-weight: 800;
    letter-spacing: 0.13em;
}

.project-case-footer strong {
    font-size: 0.78rem;
}

.project-case-cta {
    min-height: 43px;
    padding: 0 8px 0 15px;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    border: 0;
    border-radius: 999px;

    color: #fff;
    background: var(--orange);

    font-size: 0.71rem;
    font-weight: 800;

    cursor: default;
}

.project-case-cta > span {
    width: 29px;
    height: 29px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        rgba(255,255,255,0.15);
}


/* ---------------------------------------------------------
   PROJECT INDEX / TABS
--------------------------------------------------------- */

.project-vault-index {
    display: grid;
    grid-template-columns:
        repeat(3, 1fr);

    border-top:
        1px solid
        var(--border-light);
}

.project-index-item {
    position: relative;

    min-height: 105px;
    padding: 18px 22px;

    display: grid;
    grid-template-columns:
        38px
        1fr
        30px;

    gap: 13px;
    align-items: center;

    border: 0;
    border-right:
        1px solid
        var(--border-light);

    color: var(--text);
    background: transparent;

    text-align: left;

    cursor: pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}

.project-index-item:last-child {
    border-right: 0;
}

.project-index-item::before {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    top: 0;

    height: 3px;

    background: var(--orange);

    transform: scaleX(0);
    transform-origin: left;

    transition:
        transform
        0.38s
        cubic-bezier(.2,.8,.2,1);
}

.project-index-item:hover,
.project-index-item.is-active {
    background:
        color-mix(
            in srgb,
            var(--surface-alt) 72%,
            transparent
        );
}

.project-index-item.is-active::before {
    transform: scaleX(1);
}

.project-index-item > span {
    color: var(--text-soft);

    font-size: 0.60rem;
    font-weight: 800;
}

.project-index-item.is-active > span {
    color: var(--orange);
}

.project-index-item > div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.project-index-item small {
    color: var(--text-soft);

    font-size: 0.47rem;
    font-weight: 800;
    letter-spacing: 0.11em;
}

.project-index-item strong {
    font-size: 0.76rem;
}

.project-index-item i {
    justify-self: end;

    color: var(--orange);

    font-size: 0.82rem;
    font-style: normal;

    transition:
        transform 0.3s ease;
}

.project-index-item:hover i,
.project-index-item.is-active i {
    transform:
        translate(2px, -2px);
}


/* ---------------------------------------------------------
   BOTTOM NOTE
--------------------------------------------------------- */

.project-vault-bottom {
    margin-top: 24px;

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

    gap: 30px;

    color: var(--text-soft);

    font-size: 0.69rem;
}

.project-vault-bottom > span {
    max-width: 620px;
}

.project-vault-bottom > a {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    flex-shrink: 0;

    color: var(--orange);

    font-size: 0.74rem;
    font-weight: 800;
}

.project-vault-bottom > a i {
    font-style: normal;

    transition:
        transform 0.3s ease;
}

.project-vault-bottom > a:hover i {
    transform:
        translate(3px, -3px);
}


/* ---------------------------------------------------------
   POINTER LIGHT
--------------------------------------------------------- */

.project-vault-stage::after {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 20;

    pointer-events: none;

    opacity: 0;

    background:
        radial-gradient(
            320px circle
            at
            var(--project-x, 50%)
            var(--project-y, 50%),
            rgba(255,90,0,0.07),
            transparent 72%
        );

    transition:
        opacity 0.3s ease;
}

.project-vault-stage.is-project-tracking::after {
    opacity: 1;
}


/* ---------------------------------------------------------
   RESPONSIVE
--------------------------------------------------------- */

@media (max-width: 1000px) {

    .project-vault-head {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .project-vault-head-side {
        max-width: 600px;
    }

    .project-case {
        grid-template-columns: 1fr;
    }

    .project-case-visual {
        min-height: 470px;
    }

    .project-case-info {
        min-height: 430px;

        border-left: 0;

        border-top:
            1px solid
            var(--border-light);
    }
}


@media (max-width: 720px) {

    .project-vault {
        padding: 92px 0;
    }

    .project-vault-head h2 {
        font-size:
            clamp(
                3.2rem,
                15vw,
                4.4rem
            );
    }

    .project-vault-stage {
        border-radius: 25px;
    }

    .project-vault-stage-top {
        padding: 0 17px;
    }

    .project-vault-code {
        display: none;
    }

    .project-case-visual {
        min-height: 395px;
    }

    .project-visual-word {
        font-size:
            clamp(
                7rem,
                32vw,
                10rem
            );
    }

    .project-frame-a {
        width: 240px;
        height: 160px;
    }

    .project-frame-b {
        width: 190px;
        height: 130px;
    }

    .project-office-title {
        left: 24px;
        top: 33px;

        font-size:
            clamp(
                4rem,
                18vw,
                6rem
            );
    }

    .project-office-plan {
        width: 62%;
        height: 43%;
        right: 8%;
        bottom: 13%;
    }

    .project-ops-title {
        left: 24px;

        font-size:
            clamp(
                3.4rem,
                16vw,
                5.6rem
            );
    }

    .project-case-info {
        min-height: 410px;

        padding:
            31px
            24px
            25px;
    }

    .project-case-info h3 {
        margin-top: 38px;

        font-size:
            clamp(
                2.5rem,
                11vw,
                3.7rem
            );
    }

    .project-vault-index {
        grid-template-columns: 1fr;
    }

    .project-index-item {
        min-height: 82px;

        border-right: 0;

        border-bottom:
            1px solid
            var(--border-light);
    }

    .project-index-item:last-child {
        border-bottom: 0;
    }

    .project-index-item::before {
        width: 3px;
        height: auto;

        top: 0;
        bottom: 0;
        right: auto;

        transform: scaleY(0);
        transform-origin: top;
    }

    .project-index-item.is-active::before {
        transform: scaleY(1);
    }

    .project-vault-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }
}


@media (max-width: 520px) {

    .project-case-visual {
        min-height: 350px;
    }

    .project-visual-node {
        font-size: 0.44rem;
        padding: 7px 9px;
    }

    .project-node-a {
        left: 15px;
        top: 80px;
    }

    .project-node-b {
        right: 15px;
        bottom: 68px;
    }

    .project-case-info h3 {
        font-size: 2.65rem;
    }

    .project-case-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .project-case-cta {
        display: none;
    }
}


@media (prefers-reduced-motion: reduce) {

    .project-case {
        animation: none;
    }

    .project-case-active .project-frame-a,
    .project-case-active .project-frame-b,
    .project-case-active .ops-line::after {
        animation: none;
    }
}



/* =========================================================
   SETKENT — LAUNCH READY POLISH V7
========================================================= */

/* Keyboard accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 4px;
}

/* Non-interactive upcoming project badge */
.project-case-cta {
    user-select: none;
}

/* Better anchor landing offset under fixed header */
#home,
#services,
#why-us,
#process,
#projects,
#about,
#contact {
    scroll-margin-top: 105px;
}

/* Prevent accidental text selection on decorative giant words */
.about-ghost,
.footer-wow-word,
.project-visual-word,
.why-proof-word {
    user-select: none;
}

/* Print fallback */
@media print {
    .site-header,
    .mobile-fixed-actions,
    .theme-toggle {
        display: none !important;
    }

    * {
        animation: none !important;
        transition: none !important;
    }
}



/* =========================================================
   SETKENT — MOBILE MENU & FIXED CTA V8
========================================================= */


/* ---------------------------------------------------------
   ACCESSIBILITY
--------------------------------------------------------- */

.visually-hidden {
    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;
}


/* ---------------------------------------------------------
   HAMBURGER → CLOSE
--------------------------------------------------------- */

.menu-toggle {
    position: relative;

    z-index: 1305;

    flex-shrink: 0;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.menu-toggle:hover {
    border-color:
        rgba(255,90,0,0.34);
}

.menu-toggle[aria-expanded="true"] {
    background:
        var(--text);

    border-color:
        var(--text);
}

.menu-toggle[aria-expanded="true"] span {
    background:
        var(--background);
}

.menu-toggle[aria-expanded="true"]
span:nth-child(1) {
    transform:
        translateY(7px)
        rotate(45deg);
}

.menu-toggle[aria-expanded="true"]
span:nth-child(2) {
    opacity: 0;

    transform:
        scaleX(0);
}

.menu-toggle[aria-expanded="true"]
span:nth-child(3) {
    transform:
        translateY(-7px)
        rotate(-45deg);
}


/* ---------------------------------------------------------
   PREMIUM MOBILE NAVIGATION
--------------------------------------------------------- */

@media (max-width: 1080px) {

    .mobile-menu {
        position: fixed;

        left: 0;
        right: 0;
        top: 74px;
        bottom: 0;

        z-index: 1290;

        display: flex;

        padding:
            0
            20px
            calc(
                98px +
                env(safe-area-inset-bottom)
            );

        overflow-y: auto;

        overscroll-behavior:
            contain;

        color:
            #0b0b0c;

        background:
            rgba(245,242,236,0.985);

        backdrop-filter:
            blur(28px);

        -webkit-backdrop-filter:
            blur(28px);

        opacity: 0;

        visibility: hidden;

        pointer-events: none;

        transform:
            translateY(-12px);

        transition:
            opacity 0.34s ease,
            visibility 0.34s ease,
            transform 0.42s cubic-bezier(.2,.8,.2,1);
    }

    body.dark-theme .mobile-menu {
        color:
            #f5f2ec;

        background:
            rgba(11,11,12,0.985);
    }

    .mobile-menu.active {
        display: flex;

        opacity: 1;

        visibility: visible;

        pointer-events: auto;

        transform:
            translateY(0);
    }

    .mobile-menu-inner {
        width:
            min(100%, 650px);

        margin:
            0 auto;

        padding:
            28px
            0
            34px;

        display: flex;
        flex-direction: column;

        min-height:
            100%;
    }

    .mobile-menu-head {
        display: flex;
        align-items: center;
        justify-content: space-between;

        gap: 20px;

        padding-bottom:
            19px;

        border-bottom:
            1px solid
            rgba(11,11,12,0.10);
    }

    body.dark-theme
    .mobile-menu-head {
        border-color:
            rgba(255,255,255,0.10);
    }

    .mobile-menu-head span {
        color:
            var(--orange);

        font-size:
            0.62rem;

        font-weight:
            800;

        letter-spacing:
            0.15em;
    }

    .mobile-menu-head small {
        color:
            rgba(11,11,12,0.38);

        font-size:
            0.49rem;

        font-weight:
            800;

        letter-spacing:
            0.13em;
    }

    body.dark-theme
    .mobile-menu-head small {
        color:
            rgba(255,255,255,0.34);
    }

    .mobile-menu-nav {
        display: flex;
        flex-direction: column;
    }

    .mobile-menu-nav a {
        min-height:
            72px;

        padding:
            0
            4px;

        display: grid;

        grid-template-columns:
            42px
            1fr
            34px;

        gap:
            12px;

        align-items: center;

        border-bottom:
            1px solid
            rgba(11,11,12,0.09);

        color:
            #0b0b0c;

        transition:
            padding 0.3s ease,
            color 0.3s ease,
            background 0.3s ease;
    }

    body.dark-theme
    .mobile-menu-nav a {
        color:
            #f5f2ec;

        border-color:
            rgba(255,255,255,0.09);
    }

    .mobile-menu-nav a small {
        color:
            var(--orange);

        font-size:
            0.52rem;

        font-weight:
            800;
    }

    .mobile-menu-nav a strong {
        font-size:
            clamp(
                1.45rem,
                6vw,
                2.1rem
            );

        line-height:
            1;

        letter-spacing:
            -0.045em;

        font-weight:
            800;
    }

    .mobile-menu-nav a i {
        justify-self:
            end;

        color:
            var(--orange);

        font-size:
            0.86rem;

        font-style:
            normal;

        transition:
            transform 0.3s ease;
    }

    .mobile-menu-nav a:hover,
    .mobile-menu-nav a:focus-visible {
        padding-left:
            10px;

        background:
            rgba(255,90,0,0.045);
    }

    .mobile-menu-nav a:hover i,
    .mobile-menu-nav a:focus-visible i {
        transform:
            translate(3px,-3px);
    }

    .mobile-menu-footer {
        margin-top:
            auto;

        padding-top:
            28px;

        display: grid;

        grid-template-columns:
            1fr
            auto;

        gap:
            20px;

        align-items:
            end;
    }

    .mobile-menu-footer p {
        max-width:
            310px;

        color:
            rgba(11,11,12,0.48);

        font-size:
            0.78rem;

        line-height:
            1.55;
    }

    body.dark-theme
    .mobile-menu-footer p {
        color:
            rgba(255,255,255,0.45);
    }

    .mobile-menu-footer p strong {
        color:
            var(--orange);
    }

    .mobile-menu-contact {
        min-height:
            45px;

        padding:
            0
            9px
            0
            16px;

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

        gap:
            11px;

        border-radius:
            999px;

        color:
            #fff;

        background:
            var(--orange);

        font-size:
            0.68rem;

        font-weight:
            800;
    }

    .mobile-menu-contact > span {
        width:
            28px;

        height:
            28px;

        display: grid;
        place-items: center;

        border-radius:
            50%;

        background:
            rgba(255,255,255,0.15);
    }

}


/* Header height differs at tablet widths in older CSS.
   Keep menu top synced with the actual header. */

@media (min-width: 821px) and (max-width: 1080px) {

    .mobile-menu {
        top:
            84px;
    }
}


@media (max-width: 560px) {

    .mobile-menu {
        padding-left:
            17px;

        padding-right:
            17px;
    }

    .mobile-menu-inner {
        padding-top:
            21px;
    }

    .mobile-menu-nav a {
        min-height:
            66px;
    }

    .mobile-menu-footer {
        grid-template-columns:
            1fr;

        align-items:
            stretch;

        gap:
            15px;
    }

    .mobile-menu-contact {
        width:
            100%;
    }
}


/* ---------------------------------------------------------
   FIXED ROUND CONTACT BUTTONS
--------------------------------------------------------- */

.fixed-contact-actions {
    position: fixed;

    right:
        27px;

    bottom:
        27px;

    z-index:
        1180;

    display: flex;
    align-items: center;

    gap:
        12px;

    pointer-events:
        none;

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.fixed-contact-button {
    position: relative;

    width:
        60px;

    height:
        60px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    border-radius:
        50%;

    pointer-events:
        auto;

    box-shadow:
        0 16px 42px
        rgba(0,0,0,0.20);

    transition:
        transform 0.3s cubic-bezier(.2,.8,.2,1),
        box-shadow 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.fixed-contact-button svg {
    width:
        25px;

    height:
        25px;

    fill:
        currentColor;
}

.fixed-contact-button:hover {
    transform:
        translateY(-5px)
        scale(1.045);

    box-shadow:
        0 22px 55px
        rgba(0,0,0,0.28);
}


/* Call is mobile-only. */

.fixed-call-button {
    display:
        none;

    color:
        #ffffff;

    background:
        #0b0b0c;

    border:
        1px solid
        rgba(255,255,255,0.12);
}

body.dark-theme
.fixed-call-button {
    color:
        #0b0b0c;

    background:
        #f5f2ec;

    border-color:
        rgba(255,255,255,0.34);
}


/* WhatsApp remains visible on desktop too. */

.fixed-whatsapp-button {
    color:
        #ffffff;

    background:
        #25D366;

    border:
        1px solid
        rgba(255,255,255,0.22);
}

.fixed-whatsapp-button::after {
    content: "";

    position: absolute;

    inset:
        -6px;

    z-index:
        -1;

    border-radius:
        50%;

    border:
        1px solid
        rgba(37,211,102,0.28);

    animation:
        setkentWhatsAppPulse
        2.8s
        ease-out
        infinite;
}

@keyframes setkentWhatsAppPulse {

    0% {
        opacity:
            0;

        transform:
            scale(0.83);
    }

    35% {
        opacity:
            0.75;
    }

    100% {
        opacity:
            0;

        transform:
            scale(1.28);
    }
}


/* Small desktop label, button itself stays circular. */

@media (min-width: 821px) {

    .fixed-whatsapp-button::before {
        content:
            "WhatsApp";

        position:
            absolute;

        right:
            calc(100% + 12px);

        top:
            50%;

        padding:
            7px
            10px;

        border-radius:
            999px;

        color:
            var(--text);

        background:
            var(--surface);

        border:
            1px solid
            var(--border-light);

        box-shadow:
            0 10px 30px
            rgba(0,0,0,0.12);

        font-size:
            0.60rem;

        font-weight:
            800;

        white-space:
            nowrap;

        opacity:
            0;

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

        pointer-events:
            none;

        transition:
            opacity 0.25s ease,
            transform 0.25s ease;
    }

    .fixed-whatsapp-button:hover::before {
        opacity:
            1;

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


@media (max-width: 820px) {

    .fixed-contact-actions {
        left:
            16px;

        right:
            16px;

        bottom:
            calc(
                16px +
                env(safe-area-inset-bottom)
            );

        justify-content:
            space-between;

        gap:
            0;
    }

    .fixed-contact-button {
        width:
            58px;

        height:
            58px;
    }

    .fixed-call-button {
        display:
            grid;
    }

    .footer-wow {
        padding-bottom:
            calc(
                105px +
                env(safe-area-inset-bottom)
            );
    }
}


/* Buttons disappear while full-screen mobile menu is open. */

body.menu-open
.fixed-contact-actions {
    opacity:
        0;

    transform:
        translateY(14px);

    pointer-events:
        none;
}


@media (prefers-reduced-motion: reduce) {

    .fixed-whatsapp-button::after {
        animation:
            none;
    }

    .mobile-menu {
        transition:
            none;
    }
}



/* =========================================================
   SETKENT — VIEWPORT MOBILE NAV FIX V9
   IMPORTANT:
   The menu overlay is now a BODY-level sibling of the header.
   It is no longer a fixed child of a backdrop-filter header.
========================================================= */

.site-header {
    z-index: 1500;
}


/* ---------------------------------------------------------
   TRUE VIEWPORT OVERLAY
--------------------------------------------------------- */

.mobile-nav-overlay {
    display: none;
}


@media (max-width: 1080px) {

    .mobile-nav-overlay {
        position: fixed;

        inset:
            74px
            0
            0
            0;

        z-index: 1400;

        display: block;

        overflow:
            hidden
            auto;

        overscroll-behavior:
            contain;

        color:
            #0b0b0c;

        background:
            #f5f2ec;

        opacity:
            0;

        visibility:
            hidden;

        pointer-events:
            none;

        transform:
            translateY(-8px);

        transition:
            opacity 0.28s ease,
            visibility 0.28s ease,
            transform 0.38s cubic-bezier(.2,.8,.2,1);
    }


    body.dark-theme
    .mobile-nav-overlay {
        color:
            #f5f2ec;

        background:
            #0b0b0c;
    }


    .mobile-nav-overlay.active {
        opacity:
            1;

        visibility:
            visible;

        pointer-events:
            auto;

        transform:
            translateY(0);
    }


    .mobile-nav-shell {
        width:
            min(
                100%,
                680px
            );

        min-height:
            100%;

        margin:
            0 auto;

        padding:
            20px
            20px
            calc(
                34px +
                env(safe-area-inset-bottom)
            );

        display:
            flex;

        flex-direction:
            column;
    }


    .mobile-nav-topline {
        min-height:
            42px;

        display:
            flex;

        align-items:
            center;

        justify-content:
            space-between;

        gap:
            20px;

        border-bottom:
            1px solid
            rgba(11,11,12,0.10);
    }


    body.dark-theme
    .mobile-nav-topline {
        border-color:
            rgba(255,255,255,0.10);
    }


    .mobile-nav-topline span {
        color:
            var(--orange);

        font-size:
            0.55rem;

        font-weight:
            800;

        letter-spacing:
            0.15em;
    }


    .mobile-nav-topline small {
        color:
            rgba(11,11,12,0.34);

        font-size:
            0.46rem;

        font-weight:
            800;

        letter-spacing:
            0.13em;
    }


    body.dark-theme
    .mobile-nav-topline small {
        color:
            rgba(255,255,255,0.32);
    }


    .mobile-nav-links {
        width:
            100%;

        display:
            flex;

        flex-direction:
            column;
    }


    .mobile-nav-links a {
        min-height:
            70px;

        padding:
            0
            2px;

        display:
            grid;

        grid-template-columns:
            38px
            minmax(0, 1fr)
            28px;

        gap:
            12px;

        align-items:
            center;

        color:
            #0b0b0c;

        border-bottom:
            1px solid
            rgba(11,11,12,0.09);

        background:
            transparent;

        transition:
            padding 0.28s ease,
            background 0.28s ease;
    }


    body.dark-theme
    .mobile-nav-links a {
        color:
            #f5f2ec;

        border-color:
            rgba(255,255,255,0.09);
    }


    .mobile-nav-links a > span {
        color:
            var(--orange);

        font-size:
            0.50rem;

        font-weight:
            800;

        letter-spacing:
            0.10em;
    }


    .mobile-nav-links a > strong {
        min-width:
            0;

        font-size:
            clamp(
                1.35rem,
                5.6vw,
                1.85rem
            );

        line-height:
            1;

        letter-spacing:
            -0.045em;

        white-space:
            nowrap;

        overflow:
            hidden;

        text-overflow:
            ellipsis;
    }


    .mobile-nav-links a > i {
        justify-self:
            end;

        color:
            var(--orange);

        font-size:
            0.82rem;

        font-style:
            normal;

        transition:
            transform 0.28s ease;
    }


    .mobile-nav-links a:hover,
    .mobile-nav-links a:focus-visible {
        padding-left:
            8px;

        background:
            rgba(255,90,0,0.045);
    }


    .mobile-nav-links a:hover > i,
    .mobile-nav-links a:focus-visible > i {
        transform:
            translate(
                2px,
                -2px
            );
    }


    .mobile-nav-bottom {
        margin-top:
            auto;

        padding-top:
            24px;

        display:
            grid;

        grid-template-columns:
            1fr
            auto;

        gap:
            20px;

        align-items:
            end;
    }


    .mobile-nav-bottom > div > small {
        color:
            var(--orange);

        font-size:
            0.48rem;

        font-weight:
            800;

        letter-spacing:
            0.14em;
    }


    .mobile-nav-bottom p {
        max-width:
            300px;

        margin-top:
            6px;

        color:
            rgba(11,11,12,0.48);

        font-size:
            0.75rem;

        line-height:
            1.52;
    }


    body.dark-theme
    .mobile-nav-bottom p {
        color:
            rgba(255,255,255,0.44);
    }


    .mobile-nav-bottom p strong {
        color:
            var(--orange);
    }


    .mobile-nav-whatsapp {
        min-height:
            44px;

        padding:
            0
            9px
            0
            15px;

        display:
            inline-flex;

        align-items:
            center;

        justify-content:
            center;

        gap:
            10px;

        border-radius:
            999px;

        color:
            #fff;

        background:
            #25D366;

        font-size:
            0.67rem;

        font-weight:
            800;
    }


    .mobile-nav-whatsapp > span {
        width:
            27px;

        height:
            27px;

        display:
            grid;

        place-items:
            center;

        border-radius:
            50%;

        background:
            rgba(255,255,255,0.16);
    }


    /* Header always stays above overlay */
    .site-header {
        z-index:
            1500;
    }

}


/* Header is 84px between tablet and desktop breakpoints */
@media (min-width: 821px) and (max-width: 1080px) {

    .mobile-nav-overlay {
        inset:
            84px
            0
            0
            0;
    }
}


@media (max-width: 560px) {

    .mobile-nav-shell {
        padding:
            14px
            14px
            calc(
                26px +
                env(safe-area-inset-bottom)
            );
    }


    .mobile-nav-links a {
        min-height:
            64px;

        grid-template-columns:
            34px
            minmax(0,1fr)
            24px;
    }


    .mobile-nav-links a > strong {
        font-size:
            clamp(
                1.28rem,
                6vw,
                1.65rem
            );
    }


    .mobile-nav-bottom {
        grid-template-columns:
            1fr;

        align-items:
            stretch;

        gap:
            14px;
    }


    .mobile-nav-whatsapp {
        width:
            100%;
    }
}


/* ---------------------------------------------------------
   HAMBURGER X — more exact geometry
--------------------------------------------------------- */

.menu-toggle[aria-expanded="true"]
span:nth-child(1) {
    transform:
        translateY(7px)
        rotate(45deg);
}

.menu-toggle[aria-expanded="true"]
span:nth-child(2) {
    opacity:
        0;

    transform:
        scaleX(0);
}

.menu-toggle[aria-expanded="true"]
span:nth-child(3) {
    transform:
        translateY(-7px)
        rotate(-45deg);
}


/* ---------------------------------------------------------
   CTA FINAL POSITIONING
--------------------------------------------------------- */

@media (max-width: 820px) {

    .fixed-contact-actions {
        left:
            18px;

        right:
            18px;

        bottom:
            calc(
                18px +
                env(safe-area-inset-bottom)
            );
    }


    .fixed-contact-button {
        width:
            56px;

        height:
            56px;
    }


    .fixed-contact-button svg {
        width:
            24px;

        height:
            24px;
    }
}


@media (prefers-reduced-motion: reduce) {

    .mobile-nav-overlay {
        transition:
            none;
    }
}

