﻿/* =========================================================
   COSHIFT STUDIO
   Global Design System
   ========================================================= */


/* =========================================================
   1. DESIGN TOKENS
   ========================================================= */

:root {
    /* Brand colours */
    --ink: #151B24;
    --ink-soft: #27313D;
    --ink-muted: #3B4653;

    --paper: #F7F5F0;
    --paper-deep: #EFECE5;
    --white: #FFFFFF;

    --blue: #4A67E8;
    --blue-dark: #354FCB;
    --blue-bright: #6D7DFF;
    --blue-pale: #E9EDFF;

    --teal: #2F9C95;
    --teal-dark: #237B76;
    --teal-pale: #E2F4F1;

    --coral: #E07A5F;
    --coral-dark: #C96249;
    --coral-pale: #FBE7E1;

    --mist: #E9EDEF;
    --mist-light: #F2F4F5;

    --slate: #626E78;
    --slate-light: #8C969F;

    /* Borders */
    --border: rgba(21, 27, 36, 0.13);
    --border-strong: rgba(21, 27, 36, 0.22);
    --border-light: rgba(255, 255, 255, 0.16);

    /* Gradients */
    --gradient-primary:
        linear-gradient(135deg, #4A67E8 0%, #6D7DFF 100%);

    --gradient-progress:
        linear-gradient(135deg, #4A67E8 0%, #2F9C95 100%);

    --gradient-warm:
        linear-gradient(135deg, #E07A5F 0%, #F0A07E 100%);

    --gradient-dark:
        linear-gradient(135deg, #151B24 0%, #263345 100%);

    --gradient-soft:
        linear-gradient(135deg, #F7F5F0 0%, #E9EDFF 100%);

    /* Typography */
    --font-heading:
        "Manrope",
        "Segoe UI",
        Arial,
        sans-serif;

    --font-body:
        "Inter",
        "Segoe UI",
        Arial,
        sans-serif;

    /* Layout */
    --container: 1240px;
    --container-wide: 1440px;
    --reading-width: 760px;

    /* Spacing */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 24px;
    --space-6: 32px;
    --space-7: 48px;
    --space-8: 64px;
    --space-9: 96px;
    --space-10: 128px;
    --space-11: 160px;

    /* Corners */
    --radius-small: 8px;
    --radius-medium: 14px;
    --radius-large: 24px;
    --radius-xl: 36px;
    --radius-pill: 999px;

    /* Shadows */
    --shadow-small:
        0 10px 30px rgba(21, 27, 36, 0.08);

    --shadow-medium:
        0 24px 60px rgba(21, 27, 36, 0.13);

    --shadow-large:
        0 38px 90px rgba(21, 27, 36, 0.18);

    --shadow-blue:
        0 18px 42px rgba(74, 103, 232, 0.25);

    /* Transitions */
    --transition-fast: 180ms ease;
    --transition-standard: 300ms ease;
    --transition-slow: 650ms cubic-bezier(0.22, 1, 0.36, 1);
}


/* =========================================================
   2. RESET
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    min-height: 100%;
    margin: 0;
    overflow-x: hidden;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.68;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

main {
    display: block;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    margin-top: 0;
}

p:last-child {
    margin-bottom: 0;
}

ul,
ol {
    margin-top: 0;
}

::selection {
    background: var(--blue);
    color: var(--white);
}


/* =========================================================
   3. ACCESSIBILITY
   ========================================================= */

:focus-visible {
    outline: 3px solid var(--blue);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    top: 14px;
    left: 14px;
    z-index: 9999;
    padding: 12px 18px;
    transform: translateY(-180%);
    border-radius: var(--radius-small);
    background: var(--white);
    color: var(--ink);
    font-weight: 700;
    box-shadow: var(--shadow-medium);
    transition: transform var(--transition-fast);
}

.skip-link:focus {
    transform: translateY(0);
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}


/* =========================================================
   4. TYPOGRAPHY
   ========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 0.7em;
    color: var(--ink);
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.045em;
}

h1 {
    font-size: clamp(3rem, 6vw, 6.4rem);
}

h2 {
    font-size: clamp(2.3rem, 4.3vw, 4.6rem);
}

h3 {
    font-size: clamp(1.45rem, 2.2vw, 2.25rem);
}

h4 {
    font-size: 1.25rem;
}

.lead {
    max-width: 760px;
    color: var(--slate);
    font-size: clamp(1.08rem, 1.6vw, 1.3rem);
    line-height: 1.72;
}

.text-small {
    font-size: 0.9rem;
}

.text-muted {
    color: var(--slate);
}

.text-white {
    color: var(--white);
}

.text-blue {
    color: var(--blue);
}

.text-teal {
    color: var(--teal);
}

.text-coral {
    color: var(--coral);
}

.gradient-text {
    background: var(--gradient-progress);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: var(--space-5);
    color: var(--blue);
    font-family: var(--font-heading);
    font-size: 0.77rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 28px;
    height: 2px;
    border-radius: 10px;
    background: currentColor;
    content: "";
}

.eyebrow--teal {
    color: var(--teal);
}

.eyebrow--coral {
    color: var(--coral);
}

.eyebrow--light {
    color: #AFC0FF;
}

.section-heading {
    max-width: 920px;
}

.section-heading--center {
    margin-inline: auto;
    text-align: center;
}

.section-heading__copy {
    max-width: 720px;
    color: var(--slate);
    font-size: 1.08rem;
}

.section-heading--center .section-heading__copy {
    margin-inline: auto;
}


/* =========================================================
   5. LAYOUT
   ========================================================= */

.site-shell {
    position: relative;
    min-height: 100vh;
    overflow: clip;
}

.site-main {
    position: relative;
    min-height: 65vh;
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

.container--wide {
    width: min(calc(100% - 48px), var(--container-wide));
    margin-inline: auto;
}

.reading-width {
    max-width: var(--reading-width);
}

.section {
    position: relative;
    padding-block: var(--space-10);
}

.section--compact {
    padding-block: var(--space-8);
}

.section--large {
    padding-block: var(--space-11);
}

.section--paper {
    background: var(--paper);
}

.section--white {
    background: var(--white);
}

.section--mist {
    background: var(--mist-light);
}

.section--blue-soft {
    background: var(--blue-pale);
}

.section--teal-soft {
    background: var(--teal-pale);
}

.section--dark {
    overflow: hidden;
    background: var(--gradient-dark);
    color: var(--white);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
    color: var(--white);
}

.section--dark p {
    color: #BBC5CE;
}

.stack {
    display: flex;
    flex-direction: column;
}

.stack--small {
    gap: var(--space-3);
}

.stack--medium {
    gap: var(--space-5);
}

.stack--large {
    gap: var(--space-7);
}

.cluster {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-4);
}

.grid {
    display: grid;
    gap: var(--space-6);
}

.grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: clamp(48px, 8vw, 120px);
}


/* =========================================================
   6. BUTTONS AND LINKS
   ========================================================= */

.btn,
.button {
    position: relative;
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px 23px;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: var(--radius-small);
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 0.94rem;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    transition:
        transform var(--transition-fast),
        color var(--transition-fast),
        background-color var(--transition-fast),
        border-color var(--transition-fast),
        box-shadow var(--transition-fast);
}

.btn::before,
.button::before {
    position: absolute;
    inset: 0;
    transform: translateX(-105%);
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent
        );
    content: "";
    transition: transform 650ms ease;
}

.btn:hover::before,
.button:hover::before {
    transform: translateX(105%);
}

.btn:hover,
.button:hover {
    transform: translateY(-3px);
}

.btn--primary,
.button--primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-blue);
}

.btn--primary:hover,
.button--primary:hover {
    box-shadow: 0 22px 48px rgba(74, 103, 232, 0.34);
}

.btn--secondary,
.button--secondary {
    border-color: var(--border-strong);
    background: rgba(255, 255, 255, 0.35);
    color: var(--ink);
}

.btn--secondary:hover,
.button--secondary:hover {
    border-color: var(--ink);
    background: var(--white);
}

.btn--light,
.button--light {
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow-small);
}

.btn--dark,
.button--dark {
    background: var(--ink);
    color: var(--white);
}

.btn--ghost {
    min-height: auto;
    padding: 8px 0;
    border-radius: 0;
    background: transparent;
    color: var(--blue);
    box-shadow: none;
}

.btn__arrow {
    display: inline-block;
    transition: transform var(--transition-fast);
}

.btn:hover .btn__arrow {
    transform: translateX(5px);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-family: var(--font-heading);
    font-weight: 800;
}

.text-link::after {
    content: "↗";
    transition: transform var(--transition-fast);
}

.text-link:hover::after {
    transform: translate(3px, -3px);
}


/* =========================================================
   7. CARDS AND PANELS
   ========================================================= */

.card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-large);
    background: var(--white);
    box-shadow: var(--shadow-small);
}

.card__body {
    padding: clamp(24px, 3vw, 38px);
}

.card--soft {
    background: var(--blue-pale);
}

.card--dark {
    border-color: var(--border-light);
    background: var(--ink);
    color: var(--white);
}

.card--dark h3,
.card--dark h4 {
    color: var(--white);
}

.card--dark p {
    color: #BBC5CE;
}

.card--featured {
    border-color: rgba(74, 103, 232, 0.35);
    box-shadow: var(--shadow-blue);
}

.glass-panel {
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-medium);
    backdrop-filter: blur(18px);
}

.icon-box {
    display: inline-flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-5);
    border-radius: 14px;
    background: var(--blue-pale);
    color: var(--blue);
}

.icon-box--teal {
    background: var(--teal-pale);
    color: var(--teal);
}

.icon-box--coral {
    background: var(--coral-pale);
    color: var(--coral);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 13px;
    border-radius: var(--radius-pill);
    background: var(--blue-pale);
    color: var(--blue-dark);
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 800;
}

.badge--teal {
    background: var(--teal-pale);
    color: var(--teal-dark);
}

.badge--coral {
    background: var(--coral-pale);
    color: var(--coral-dark);
}

.badge--dark {
    background: var(--ink);
    color: var(--white);
}

.price {
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.2vw, 3.3rem);
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 1;
}

.price__suffix {
    color: var(--slate);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0;
}


/* =========================================================
   8. LISTS
   ========================================================= */

.check-list {
    display: grid;
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 31px;
    color: var(--slate);
}

.check-list li::before {
    position: absolute;
    top: 5px;
    left: 0;
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    border-radius: 50%;
    background: var(--teal-pale);
    color: var(--teal-dark);
    content: "✓";
    font-size: 0.73rem;
    font-weight: 900;
}

.number-list {
    display: grid;
    gap: var(--space-5);
    margin: 0;
    padding: 0;
    list-style: none;
}

.number-list li {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: var(--space-4);
}

.number-list__number {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 50%;
    background: var(--blue-pale);
    color: var(--blue);
    font-family: var(--font-heading);
    font-weight: 800;
}


/* =========================================================
   9. HEADER
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    background: rgba(247, 245, 240, 0.88);
    backdrop-filter: blur(20px);
    transition:
        background-color var(--transition-standard),
        border-color var(--transition-standard),
        box-shadow var(--transition-standard);
}

.site-header.is-scrolled {
    border-bottom-color: var(--border);
    background: rgba(247, 245, 240, 0.97);
    box-shadow: 0 12px 34px rgba(21, 27, 36, 0.06);
}

.site-header__inner {
    display: flex;
    min-height: 82px;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-5);
}

.brand {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: baseline;
    gap: 7px;
    color: var(--ink);
    font-family: var(--font-heading);
}

.brand__name {
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.055em;
}

.brand__suffix {
    color: var(--blue);
    font-size: 0.84rem;
    font-weight: 800;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.site-nav__item {
    position: relative;
}

.site-nav__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding-block: 12px;
    color: var(--ink-soft);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
}

.site-nav__link::after {
    position: absolute;
    right: 0;
    bottom: 4px;
    left: 0;
    height: 2px;
    transform: scaleX(0);
    transform-origin: right;
    border-radius: 10px;
    background: var(--blue);
    content: "";
    transition: transform var(--transition-fast);
}

.site-nav__link:hover::after,
.site-nav__link.is-active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.site-nav__link:hover,
.site-nav__link.is-active {
    color: var(--blue);
}

.nav-caret {
    display: inline-block;
    color: var(--blue);
    font-size: 0.8rem;
    transition: transform var(--transition-fast);
}

.site-nav__item:hover .nav-caret,
.site-nav__item:focus-within .nav-caret {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% - 2px);
    left: 50%;
    z-index: 20;
    min-width: 290px;
    padding: 12px;
    transform: translate(-50%, 12px);
    visibility: hidden;
    opacity: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-medium);
    background: var(--white);
    box-shadow: var(--shadow-medium);
    transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
}

.site-nav__item:hover .dropdown-menu,
.site-nav__item:focus-within .dropdown-menu {
    transform: translate(-50%, 0);
    visibility: visible;
    opacity: 1;
}

.dropdown-menu__link {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 15px 16px;
    border-radius: var(--radius-small);
    transition: color var(--transition-fast), background-color var(--transition-fast), transform var(--transition-fast);
}

    .dropdown-menu__link + .dropdown-menu__link {
        margin-top: 3px;
    }

    .dropdown-menu__link:hover,
    .dropdown-menu__link.is-active {
        transform: translateX(3px);
        background: var(--blue-pale);
    }

.dropdown-menu__title {
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: 0.93rem;
    font-weight: 800;
    line-height: 1.3;
}

.dropdown-menu__label {
    color: var(--blue);
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.4;
}

.dropdown-menu__description {
    color: var(--slate);
    font-size: 0.78rem;
    font-weight: 500;
    line-height: 1.48;
}

.dropdown-menu__link:hover .dropdown-menu__title,
.dropdown-menu__link.is-active .dropdown-menu__title {
    color: var(--blue-dark);
}

.site-nav__cta {
    min-height: 44px;
    padding: 12px 18px;
}

.menu-toggle {
    display: none;
    width: 47px;
    height: 47px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-small);
    background: rgba(255, 255, 255, 0.55);
    color: var(--ink);
    cursor: pointer;
}

.menu-toggle__icon {
    position: relative;
    width: 21px;
    height: 15px;
}

.menu-toggle__icon span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 10px;
    background: currentColor;
    transition:
        top var(--transition-fast),
        transform var(--transition-fast),
        opacity var(--transition-fast);
}

.menu-toggle__icon span:nth-child(1) {
    top: 0;
}

.menu-toggle__icon span:nth-child(2) {
    top: 6px;
}

.menu-toggle__icon span:nth-child(3) {
    top: 12px;
}

.menu-toggle[aria-expanded="true"]
.menu-toggle__icon span:nth-child(1) {
    top: 6px;
    transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"]
.menu-toggle__icon span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"]
.menu-toggle__icon span:nth-child(3) {
    top: 6px;
    transform: rotate(-45deg);
}


/* =========================================================
   10. MOBILE NAVIGATION
   ========================================================= */

.mobile-navigation {
    position: fixed;
    inset: 82px 0 0;
    z-index: 999;
    height: calc(100dvh - 82px);
    overflow: hidden;
    padding: 18px 24px 24px;
    background: var(--paper);
}

    .mobile-navigation[hidden] {
        display: none;
    }

.mobile-navigation__inner {
    width: min(100%, 680px);
    height: 100%;
    margin-inline: auto;
}

.mobile-navigation__panel {
    display: flex;
    height: 100%;
    flex-direction: column;
}

    .mobile-navigation__panel[hidden] {
        display: none;
    }


/* Main menu links */

.mobile-navigation__link {
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    background: transparent;
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: 1.08rem;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
}

    .mobile-navigation__link::after {
        color: var(--blue);
        content: "↗";
        font-size: 0.88rem;
    }

.mobile-navigation__link--button::after {
    display: none;
}

.mobile-navigation__link:hover {
    color: var(--blue);
}

.mobile-navigation__action {
    color: var(--blue);
    font-size: 1.1rem;
    transition: transform var(--transition-fast);
}

.mobile-navigation__link--button:hover
.mobile-navigation__action {
    transform: translateX(5px);
}

.mobile-navigation__cta {
    width: 100%;
    margin-top: auto;
}


/* Services screen */

.mobile-navigation__panel--services {
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--border-strong) transparent;
}

.mobile-navigation__back {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 9px;
    padding: 8px 0;
    background: transparent;
    color: var(--blue);
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 800;
    cursor: pointer;
}

    .mobile-navigation__back:hover {
        color: var(--blue-dark);
    }

.mobile-navigation__panel-heading {
    padding: 18px 0 12px;
}

.mobile-navigation__eyebrow {
    display: block;
    margin-bottom: 7px;
    color: var(--blue);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.mobile-navigation__panel-heading h2 {
    max-width: 390px;
    margin-bottom: 0;
    font-size: clamp(1.55rem, 7vw, 2.25rem);
    line-height: 1.1;
}

.mobile-navigation__services {
    display: grid;
}

.mobile-navigation__service-link {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    transition: padding-left var(--transition-fast), color var(--transition-fast);
}

    .mobile-navigation__service-link:hover {
        padding-left: 6px;
    }

    .mobile-navigation__service-link strong {
        color: var(--ink);
        font-family: var(--font-heading);
        font-size: 0.95rem;
        font-weight: 800;
        line-height: 1.35;
    }

    .mobile-navigation__service-link span {
        color: var(--slate);
        font-size: 0.76rem;
        line-height: 1.4;
    }

    .mobile-navigation__service-link:hover strong {
        color: var(--blue);
    }


/* Compact layout for shorter phone screens */

@media (max-height: 680px) {
    .mobile-navigation {
        padding-top: 12px;
        padding-bottom: 16px;
    }

    .mobile-navigation__link {
        min-height: 46px;
        padding-block: 10px;
        font-size: 1rem;
    }

    .mobile-navigation__panel-heading {
        padding-top: 10px;
    }

    .mobile-navigation__service-link {
        padding-block: 9px;
    }

        .mobile-navigation__service-link span {
            display: none;
        }
}


/* =========================================================
   11. FOOTER
   ========================================================= */

.site-footer {
    position: relative;
    overflow: hidden;
    background: var(--ink);
    color: var(--white);
}

.site-footer::before {
    position: absolute;
    top: -180px;
    right: -140px;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: rgba(74, 103, 232, 0.17);
    filter: blur(20px);
    content: "";
}

.site-footer__main {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.35fr 0.65fr 0.75fr;
    gap: var(--space-8);
    padding-block: var(--space-9);
}

.site-footer__brand .brand {
    margin-bottom: var(--space-5);
    color: var(--white);
}

.site-footer__intro {
    max-width: 520px;
    color: #B9C3CC;
}

.site-footer__heading {
    margin-bottom: var(--space-4);
    color: var(--white);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-footer__links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.site-footer__link {
    color: #B9C3CC;
    transition:
        color var(--transition-fast),
        transform var(--transition-fast);
}

.site-footer__link:hover {
    transform: translateX(4px);
    color: var(--white);
}

.site-footer__bottom {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-5);
    padding-block: var(--space-5);
    border-top: 1px solid var(--border-light);
    color: #8E99A4;
    font-size: 0.85rem;
}

.site-footer__bottom p {
    margin-bottom: 0;
}

.site-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-5);
}

.site-footer__social a:hover {
    color: var(--white);
}


/* =========================================================
   12. SHARED VISUAL ELEMENTS
   ========================================================= */

.trust-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 15px;
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.56);
    color: var(--ink-soft);
    font-size: 0.84rem;
    font-weight: 700;
}

.trust-pill::before {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal);
    content: "";
}

.media-frame {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-large);
    background: var(--white);
    box-shadow: var(--shadow-medium);
}

.media-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.divider {
    height: 1px;
    border: 0;
    background: var(--border);
}

.accent-line {
    width: 72px;
    height: 4px;
    border-radius: 20px;
    background: var(--gradient-progress);
}


/* =========================================================
   13. WHATSAPP BUTTON
   ========================================================= */

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 800;
    display: inline-flex;
    width: 56px;
    height: 56px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--teal);
    color: var(--white);
    box-shadow: 0 18px 40px rgba(47, 156, 149, 0.32);
    transition:
        transform var(--transition-fast),
        background-color var(--transition-fast);
}

.floating-whatsapp:hover {
    transform: translateY(-4px) scale(1.04);
    background: var(--teal-dark);
}

/* =========================================================
   COSHIFT IMAGE LOGO
   ========================================================= */

.brand--image {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    width: auto;
    height: auto;
    line-height: 1;
}

.site-header .brand--image {
    width: 182px;
    height: 46px;
}

.site-header .brand__logo--header {
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-width: 182px !important;
    max-height: 46px !important;
    object-fit: contain;
    object-position: left center;
}

.site-footer .brand--footer {
    width: 230px;
    height: 58px;
}

.site-footer .brand__logo--footer {
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-width: 230px !important;
    max-height: 58px !important;
    object-fit: contain;
    object-position: left center;
    opacity: 0.98;
}

@media (max-width: 900px) {
    .site-header .brand--image {
        width: 158px;
        height: 40px;
    }

    .site-header .brand__logo--header {
        max-width: 158px !important;
        max-height: 40px !important;
    }
}

@media (max-width: 520px) {
    .site-header .brand--image {
        width: 138px;
        height: 35px;
    }

    .site-header .brand__logo--header {
        max-width: 138px !important;
        max-height: 35px !important;
    }

    .site-footer .brand--footer {
        width: 205px;
        height: 52px;
    }

    .site-footer .brand__logo--footer {
        max-width: 205px !important;
        max-height: 52px !important;
    }
}