/* =========================================================
   ADFAX COMPANY LIMITED
   GLOBAL FOUNDATION
========================================================= */

/* =========================
   LOCAL FONTS
========================= */

@font-face {
    font-family: "Barlow";
    src: url("../fonts/Barlow-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Barlow";
    src: url("../fonts/Barlow-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Barlow";
    src: url("../fonts/Barlow-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Barlow";
    src: url("../fonts/Barlow-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Barlow";
    src: url("../fonts/Barlow-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* =========================
   DESIGN TOKENS
========================= */

:root {
    --adfax-gold: #d19c2a;
    --adfax-gold-bright: #e7b63e;
    --adfax-gold-dark: #a87316;
    --adfax-gold-soft: #ecd5a7;

    --adfax-black: #121212;
    --adfax-dark: #191919;
    --adfax-dark-soft: #232323;

    --adfax-grey: #767676;
    --adfax-grey-light: #d8d8d8;
    --adfax-surface: #f5f4ef;
    --adfax-white: #ffffff;

    --container-width: 1280px;
    --header-height: 88px;

    --radius-sm: 8px;
    --radius-md: 18px;
    --radius-lg: 30px;

    --shadow-soft:
        0 20px 60px rgba(0, 0, 0, 0.12);

    --shadow-dark:
        0 30px 80px rgba(0, 0, 0, 0.35);

    --transition:
        220ms ease;
}

/* =========================
   RESET
========================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Barlow", Arial, sans-serif;
    color: var(--adfax-dark);
    background: var(--adfax-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.mobile-menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
}

svg {
    display: block;
    width: 1em;
    height: 1em;
}

::selection {
    color: var(--adfax-black);
    background: var(--adfax-gold);
}

/* =========================
   ACCESSIBILITY
========================= */

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 9999;
    padding: 12px 18px;
    color: var(--adfax-black);
    background: var(--adfax-gold);
    transform: translateY(-150%);
    transition: transform var(--transition);
}

.skip-link:focus {
    transform: translateY(0);
}

/* =========================
   CONTAINER
========================= */

.container {
    width: min(
        calc(100% - 48px),
        var(--container-width)
    );
    margin-inline: auto;
}

/* =========================
   BUTTONS
========================= */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 52px;
    padding: 0 24px;
    border: 1px solid transparent;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1;
    transition:
        background-color var(--transition),
        color var(--transition),
        border-color var(--transition),
        transform var(--transition);
}

.button svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform var(--transition);
}

.button:hover svg {
    transform: translateX(4px);
}

.button:active {
    transform: translateY(1px);
}

.button-primary {
    color: var(--adfax-black);
    background: var(--adfax-gold);
}

.button-primary:hover {
    background: var(--adfax-gold-bright);
}

.button-secondary {
    color: var(--adfax-white);
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
}

.button-secondary:hover {
    color: var(--adfax-black);
    border-color: var(--adfax-white);
    background: var(--adfax-white);
}

/* =========================================================
   TOPBAR
========================================================= */

.topbar {
    position: relative;
    z-index: 100;
    color: rgba(255, 255, 255, 0.75);
    background: #0d0d0d;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-inner {
    min-height: 39px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.topbar-contact,
.topbar-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.topbar a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.77rem;
    font-weight: 500;
    letter-spacing: 0.025em;
    transition: color var(--transition);
}

.topbar a:hover {
    color: var(--adfax-gold);
}

.topbar svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

.topbar-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.2);
}

/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 90;
    color: var(--adfax-white);
    background: rgba(18, 18, 18, 0.88);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(18px);
    transition:
        background-color var(--transition),
        box-shadow var(--transition);
}

.site-header.scrolled {
    background: rgba(13, 13, 13, 0.97);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.header-inner {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* =========================
   BRAND
========================= */

.brand {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
}

.brand img {
    width: 166px;
    max-height: 61px;
    object-fit: contain;
}

/* =========================
   DESKTOP NAVIGATION
========================= */

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-left: auto;
}

.nav-link {
    position: relative;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 13px;
    color: rgba(255, 255, 255, 0.77);
    background: transparent;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: color var(--transition);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 13px;
    right: 13px;
    bottom: 5px;
    height: 2px;
    background: var(--adfax-gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--adfax-white);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* =========================
   DROPDOWNS
========================= */

.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    min-width: 230px;
    padding: 10px;
    color: var(--adfax-dark);
    background: var(--adfax-white);
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 12px);
    transition:
        opacity var(--transition),
        visibility var(--transition),
        transform var(--transition);
}

.nav-dropdown-menu::before {
    content: "";
    position: absolute;
    top: -13px;
    left: 0;
    width: 100%;
    height: 13px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.nav-dropdown-menu > a {
    display: block;
    padding: 12px 14px;
    font-size: 0.87rem;
    font-weight: 500;
    transition:
        color var(--transition),
        background-color var(--transition);
}

.nav-dropdown-menu > a:hover {
    color: var(--adfax-gold-dark);
    background: var(--adfax-surface);
}

.nav-dropdown-menu-wide {
    width: 420px;
    padding: 12px;
}

.nav-dropdown-menu-wide > a {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 13px 15px;
}

.nav-dropdown-menu-wide strong {
    font-size: 0.88rem;
    font-weight: 600;
}

.nav-dropdown-menu-wide span {
    color: var(--adfax-grey);
    font-size: 0.77rem;
    font-weight: 400;
}

/* =========================
   HEADER ACTIONS
========================= */

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.button-header {
    min-height: 46px;
    padding: 0 20px;
    color: var(--adfax-black);
    background: var(--adfax-gold);
}

.button-header:hover {
    background: var(--adfax-gold-bright);
}

.button-header svg {
    width: 17px;
    height: 17px;
}

/* =========================
   MOBILE MENU BUTTON
========================= */

.mobile-menu-toggle {
    width: 48px;
    height: 48px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    color: var(--adfax-white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.18);
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 21px;
    height: 2px;
    background: currentColor;
    transition:
        transform var(--transition),
        opacity var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =========================
   MOBILE NAVIGATION
========================= */

.mobile-navigation {
    display: none;
    max-height: 0;
    overflow: hidden;
    color: var(--adfax-white);
    background: #111111;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    transition: max-height 350ms ease;
}

.mobile-navigation.open {
    max-height: 650px;
}

.mobile-navigation-inner {
    width: min(calc(100% - 40px), 680px);
    margin-inline: auto;
    padding: 18px 0 28px;
    display: flex;
    flex-direction: column;
}

.mobile-navigation-inner > a:not(.button) {
    padding: 15px 4px;
    color: rgba(255, 255, 255, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 1rem;
    font-weight: 500;
}

.mobile-navigation-inner > a:hover {
    color: var(--adfax-gold);
}

.button-mobile {
    margin-top: 22px;
    color: var(--adfax-black);
    background: var(--adfax-gold);
}

/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;
    min-height: calc(100vh - 127px);
    display: flex;
    align-items: center;
    color: var(--adfax-white);
    background:
        linear-gradient(
            115deg,
            #111111 0%,
            #161616 42%,
            #202020 100%
        );
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.16;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.04) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.04) 1px,
            transparent 1px
        );
    background-size: 68px 68px;
    mask-image:
        linear-gradient(
            to right,
            rgba(0, 0, 0, 0.95),
            rgba(0, 0, 0, 0.15)
        );
}

.hero-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(12px);
}

.hero-glow-one {
    top: -180px;
    right: 6%;
    width: 480px;
    height: 480px;
    background:
        radial-gradient(
            circle,
            rgba(209, 156, 42, 0.28),
            transparent 67%
        );
}

.hero-glow-two {
    bottom: -300px;
    left: 21%;
    width: 560px;
    height: 560px;
    background:
        radial-gradient(
            circle,
            rgba(209, 156, 42, 0.12),
            transparent 70%
        );
}

.hero-container {
    position: relative;
    z-index: 2;
    min-height: inherit;
    padding-top: 84px;
    padding-bottom: 90px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(440px, 0.95fr);
    align-items: center;
    gap: clamp(50px, 7vw, 110px);
}

/* =========================
   HERO CONTENT
========================= */

.hero-content {
    max-width: 720px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 26px;
    color: var(--adfax-gold);
    font-size: 0.83rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-eyebrow-line {
    width: 42px;
    height: 2px;
    background: var(--adfax-gold);
}

.hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(3.4rem, 6.2vw, 6.4rem);
    font-weight: 300;
    line-height: 0.96;
    letter-spacing: -0.055em;
}

.hero h1 span {
    display: block;
    color: var(--adfax-gold);
    font-weight: 700;
}

.hero-description {
    max-width: 650px;
    margin: 30px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: clamp(1rem, 1.4vw, 1.18rem);
    font-weight: 400;
    line-height: 1.75;
}

.hero-actions {
    margin-top: 38px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-capabilities {
    margin-top: 58px;
    padding-top: 25px;
    display: flex;
    align-items: flex-start;
    gap: clamp(20px, 4vw, 48px);
    border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.hero-capability {
    display: flex;
    align-items: center;
    gap: 11px;
}

.hero-capability span {
    color: var(--adfax-gold);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.hero-capability p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
}

/* =========================
   HERO VISUAL
========================= */

.hero-visual {
    position: relative;
}

.hero-visual-frame {
    position: relative;
    min-height: 610px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.09),
            rgba(255, 255, 255, 0.02)
        );
    box-shadow: var(--shadow-dark);
    backdrop-filter: blur(14px);
}

.hero-visual-frame::before {
    content: "";
    position: absolute;
    top: -15px;
    right: -15px;
    width: 112px;
    height: 112px;
    border-top: 2px solid var(--adfax-gold);
    border-right: 2px solid var(--adfax-gold);
}

.hero-visual-frame::after {
    content: "";
    position: absolute;
    left: -15px;
    bottom: -15px;
    width: 90px;
    height: 90px;
    border-left: 2px solid rgba(255, 255, 255, 0.35);
    border-bottom: 2px solid rgba(255, 255, 255, 0.35);
}

.hero-visual-top {
    min-height: 75px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
}

.hero-visual-top > span {
    color: var(--adfax-gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.hero-visual-top p {
    max-width: 140px;
    margin: 0;
    color: rgba(255, 255, 255, 0.54);
    font-size: 0.74rem;
    font-weight: 500;
    line-height: 1.5;
    text-align: right;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-project-card-main {
    position: relative;
    height: 455px;
    overflow: hidden;
    background: #2d2d2d;
}

.hero-project-card-main::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.1) 60%,
            transparent 100%
        );
}

.hero-project-card-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.82) contrast(1.04);
    transition: transform 900ms ease;
}

.hero-project-card-main:hover img {
    transform: scale(1.035);
}

.hero-project-overlay {
    position: absolute;
    z-index: 2;
    left: 30px;
    right: 30px;
    bottom: 28px;
}

.hero-project-overlay span {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--adfax-gold);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-project-overlay h2 {
    max-width: 410px;
    margin: 0;
    font-size: clamp(1.45rem, 2vw, 2rem);
    font-weight: 500;
    line-height: 1.2;
}

/* =========================
   FLOATING CARDS
========================= */

.hero-floating-card {
    position: absolute;
    z-index: 5;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.3);
}

.hero-floating-card-one {
    top: 173px;
    left: -53px;
    width: 135px;
    min-height: 136px;
    padding: 22px;
    color: var(--adfax-black);
    background: var(--adfax-gold);
}

.floating-card-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.hero-floating-card-one p {
    margin: 23px 0 0;
    font-size: 0.83rem;
    font-weight: 600;
    line-height: 1.25;
}

.hero-floating-card-two {
    right: -42px;
    bottom: 58px;
    min-width: 246px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--adfax-dark);
    background: var(--adfax-white);
}

.floating-card-dot {
    width: 14px;
    height: 14px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--adfax-gold);
    box-shadow:
        0 0 0 6px rgba(209, 156, 42, 0.18);
}

.hero-floating-card-two div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.hero-floating-card-two strong {
    font-size: 0.82rem;
    font-weight: 600;
}

.hero-floating-card-two small {
    color: var(--adfax-grey);
    font-size: 0.72rem;
}

/* =========================
   SCROLL INDICATOR
========================= */

.hero-scroll-indicator {
    position: absolute;
    right: 34px;
    bottom: 24px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 14px;
    transform: rotate(90deg);
    transform-origin: right center;
}

.hero-scroll-indicator span {
    color: rgba(255, 255, 255, 0.46);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-scroll-line {
    width: 48px;
    height: 1px;
    background: rgba(255, 255, 255, 0.32);
}

/* =========================================================
   TEMPORARY NEXT-SECTION PLACEHOLDER
========================================================= */

.page-placeholder {
    padding: 120px 0;
    background: var(--adfax-surface);
}

.page-placeholder span {
    color: var(--adfax-gold-dark);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.page-placeholder h2 {
    max-width: 680px;
    margin: 15px 0 0;
    font-size: clamp(2.3rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.04em;
}
.hero h1 br {
    display: none;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 700px) {
    .hero h1 br {
        display: block;
    }
}

@media (max-width: 1180px) {

    .desktop-nav {
        gap: 0;
    }

    .nav-link {
        padding-inline: 9px;
        font-size: 0.83rem;
    }

    .nav-link::after {
        left: 9px;
        right: 9px;
    }

    .button-header {
        display: none;
    }

    .hero-container {
        grid-template-columns: minmax(0, 1fr) minmax(390px, 0.85fr);
        gap: 65px;
    }

    .hero-visual-frame {
        min-height: 560px;
    }

    .hero-project-card-main {
        height: 410px;
    }

    .hero-floating-card-one {
        left: -25px;
    }

    .hero-floating-card-two {
        right: -20px;
    }
}

@media (max-width: 980px) {

    :root {
        --header-height: 78px;
    }

    .topbar-links {
        display: none;
    }

    .topbar-inner {
        justify-content: center;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-navigation {
        display: block;
    }

    .brand img {
        width: 145px;
    }

    .hero {
        min-height: auto;
    }

    .hero-container {
        padding-top: 85px;
        padding-bottom: 120px;
        grid-template-columns: 1fr;
        gap: 75px;
    }

    .hero-content {
        max-width: 800px;
    }

    .hero h1 {
        max-width: 850px;
    }

    .hero-description {
        max-width: 720px;
    }

    .hero-visual {
        width: min(100%, 680px);
        margin-inline: auto;
    }

    .hero-visual-frame {
        min-height: 620px;
    }

    .hero-project-card-main {
        height: 470px;
    }
}

@media (max-width: 700px) {

    .container {
        width: min(calc(100% - 32px), var(--container-width));
    }

    .topbar {
        display: none;
    }

    .site-header {
        top: 0;
    }

    .header-inner {
        min-height: 72px;
    }

    .brand img {
        width: 134px;
        max-height: 51px;
    }

    .mobile-menu-toggle {
        width: 44px;
        height: 44px;
    }

    .hero {
        min-height: auto;
    }

    .hero-container {
        padding-top: 68px;
        padding-bottom: 90px;
        gap: 58px;
    }

    .hero-eyebrow {
        margin-bottom: 20px;
        font-size: 0.72rem;
        letter-spacing: 0.12em;
    }

    .hero-eyebrow-line {
        width: 28px;
    }

    .hero h1 {
        font-size: clamp(3rem, 14vw, 4.5rem);
    }

    .hero-description {
        margin-top: 24px;
        font-size: 1rem;
        line-height: 1.65;
    }

    .hero-actions {
        margin-top: 30px;
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-capabilities {
        margin-top: 42px;
        gap: 18px;
        flex-direction: column;
    }

    .hero-capability p {
        white-space: normal;
    }

    .hero-visual-frame {
        min-height: auto;
        padding: 18px;
    }

    .hero-visual-frame::before {
        top: -8px;
        right: -8px;
        width: 70px;
        height: 70px;
    }

    .hero-visual-frame::after {
        left: -8px;
        bottom: -8px;
        width: 60px;
        height: 60px;
    }

    .hero-visual-top {
        min-height: 61px;
    }

    .hero-project-card-main {
        height: 405px;
    }

    .hero-project-overlay {
        left: 20px;
        right: 20px;
        bottom: 22px;
    }

    .hero-floating-card-one {
        top: 125px;
        left: -7px;
        width: 105px;
        min-height: 106px;
        padding: 15px;
    }

    .floating-card-number {
        font-size: 1.45rem;
    }

    .hero-floating-card-one p {
        margin-top: 14px;
        font-size: 0.69rem;
    }

    .hero-floating-card-two {
        right: -6px;
        bottom: 27px;
        min-width: 205px;
        padding: 14px 15px;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .page-placeholder {
        padding: 90px 0;
    }
}

@media (max-width: 430px) {

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-project-card-main {
        height: 350px;
    }

    .hero-floating-card-two {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        min-width: 0;
        margin-top: 14px;
    }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* =========================================================
   MOBILE HERO REFINEMENT
   Add this at the END of style.css
========================================================= */

@media (max-width: 700px) {

    .hero-container {
        padding-top: 72px;
        padding-bottom: 84px;
        gap: 64px;
    }

    /* Center the full hero introduction */
    .hero-content {
        width: 100%;
        max-width: 540px;
        margin-inline: auto;
        text-align: center;
    }

    .hero-eyebrow {
        justify-content: center;
        margin-bottom: 24px;
        font-size: 0.72rem;
        line-height: 1.4;
        letter-spacing: 0.12em;
    }

    .hero-eyebrow-line {
        width: 34px;
    }

    .hero h1 {
        max-width: 100%;
        margin-inline: auto;
        font-size: clamp(3rem, 13vw, 4.1rem);
        line-height: 0.98;
        letter-spacing: -0.045em;
        text-align: center;
    }

    .hero h1 span {
        margin-top: 7px;
    }

    .hero-description {
        max-width: 470px;
        margin: 28px auto 0;
        color: rgba(255, 255, 255, 0.72);
        font-size: 1rem;
        line-height: 1.65;
        text-align: center;
    }

    /* Buttons */
    .hero-actions {
        width: 100%;
        max-width: 470px;
        margin: 34px auto 0;
        gap: 14px;
    }

    .hero-actions .button {
        width: 100%;
        min-height: 64px;
        font-size: 1rem;
    }

    /* Capabilities */
    .hero-capabilities {
        width: 100%;
        max-width: 470px;
        margin: 52px auto 0;
        padding-top: 28px;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
        border-top: 1px solid rgba(255, 255, 255, 0.14);
    }

    .hero-capability {
        min-width: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 7px;
        text-align: center;
    }

    .hero-capability span {
        font-size: 0.66rem;
        line-height: 1;
    }

    .hero-capability p {
        margin: 0;
        font-size: 0.72rem;
        line-height: 1.25;
        white-space: normal;
    }

    /* Visual */
    .hero-visual {
        width: 100%;
        max-width: 540px;
        margin-inline: auto;
    }

    .hero-visual-frame {
        width: 100%;
        padding: 22px;
    }

    .hero-visual-top {
        min-height: 68px;
        align-items: flex-start;
    }

    .hero-visual-top > span {
        font-size: 0.72rem;
    }

    .hero-visual-top p {
        max-width: 140px;
        font-size: 0.68rem;
        line-height: 1.45;
    }

    .hero-project-card-main {
        height: 440px;
    }

    .hero-project-overlay {
        left: 24px;
        right: 24px;
        bottom: 25px;
        text-align: left;
    }

    .hero-project-overlay h2 {
        font-size: 1.7rem;
        line-height: 1.22;
    }

    /* Floating service pillars card */
    .hero-floating-card-one {
        top: 158px;
        left: -8px;
        width: 124px;
        min-height: 130px;
        padding: 18px;
        text-align: left;
    }

    .floating-card-number {
        font-size: 1.75rem;
    }

    .hero-floating-card-one p {
        margin-top: 18px;
        font-size: 0.76rem;
        line-height: 1.25;
    }

    /* Delivery card sits naturally below image */
    .hero-floating-card-two {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        min-width: 0;
        margin-top: 16px;
        padding: 18px 20px;
        text-align: left;
    }
}

@media (max-width: 430px) {

    .hero-container {
        padding-top: 62px;
        gap: 56px;
    }

    .hero-eyebrow {
        gap: 10px;
        font-size: 0.68rem;
        letter-spacing: 0.1em;
    }

    .hero-eyebrow-line {
        width: 28px;
    }

    .hero h1 {
        font-size: clamp(2.75rem, 13vw, 3.55rem);
        line-height: 0.99;
    }

    .hero-description {
        font-size: 0.98rem;
        line-height: 1.68;
    }

    .hero-capabilities {
        gap: 6px;
    }

    .hero-capability p {
        font-size: 0.66rem;
    }

    .hero-visual-frame {
        padding: 18px;
    }

    .hero-project-card-main {
        height: 400px;
    }

    .hero-project-overlay {
        left: 20px;
        right: 20px;
        bottom: 22px;
    }

    .hero-project-overlay h2 {
        font-size: 1.45rem;
    }

    .hero-floating-card-one {
        top: 152px;
        width: 112px;
        min-height: 118px;
        padding: 16px;
    }
}

/* =========================================================
   SHARED SECTION ELEMENTS
========================================================= */

.section-eyebrow {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 24px;
    color: var(--adfax-gold-dark);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.section-eyebrow > span {
    width: 39px;
    height: 2px;
    background: var(--adfax-gold);
}

/* =========================================================
   CAPABILITY STRIP
========================================================= */

.capability-strip {
    position: relative;
    z-index: 5;
    background: var(--adfax-white);
    border-bottom: 1px solid rgba(18, 18, 18, 0.09);
}

.capability-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.capability-strip-item {
    min-height: 152px;
    display: flex;
    align-items: flex-start;
    gap: 17px;
    padding: 36px 28px;
    border-right: 1px solid rgba(18, 18, 18, 0.09);
}

.capability-strip-item:first-child {
    border-left: 1px solid rgba(18, 18, 18, 0.09);
}

.capability-strip-number {
    padding-top: 3px;
    color: var(--adfax-gold-dark);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.capability-strip-item div {
    min-width: 0;
}

.capability-strip-item strong {
    display: block;
    margin-bottom: 8px;
    color: var(--adfax-dark);
    font-size: 0.96rem;
    font-weight: 600;
}

.capability-strip-item p {
    margin: 0;
    color: var(--adfax-grey);
    font-size: 0.82rem;
    line-height: 1.55;
}

/* =========================================================
   ABOUT ADFAX
========================================================= */

.about-section {
    position: relative;
    padding: 150px 0;
    background: var(--adfax-surface);
    overflow: hidden;
}

.about-section::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -180px;
    width: 480px;
    height: 480px;
    border: 1px solid rgba(209, 156, 42, 0.13);
    border-radius: 50%;
}

.about-section::after {
    content: "";
    position: absolute;
    top: -95px;
    right: -95px;
    width: 310px;
    height: 310px;
    border: 1px solid rgba(209, 156, 42, 0.11);
    border-radius: 50%;
}

.about-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(430px, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: clamp(70px, 9vw, 140px);
}

/* =========================
   ABOUT VISUAL
========================= */

.about-visual {
    position: relative;
    min-height: 650px;
}

.about-image-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 76%;
    height: 520px;
    overflow: hidden;
    background: #d8d8d8;
}

.about-image-main::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.26),
            transparent 55%
        );
}

.about-image-main img,
.about-image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-secondary {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 49%;
    height: 310px;
    overflow: hidden;
    border: 12px solid var(--adfax-surface);
    background: #cbcbc7;
}

.about-experience-card {
    position: absolute;
    left: 8%;
    bottom: 12px;
    z-index: 4;
    width: 210px;
    min-height: 220px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--adfax-black);
    background: var(--adfax-gold);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.16);
}

.about-experience-card span {
    font-size: 0.71rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.about-experience-card strong {
    font-size: 1.48rem;
    font-weight: 600;
    line-height: 1.2;
}

.about-visual-label {
    position: absolute;
    top: 38px;
    right: 2%;
    z-index: 4;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.about-visual-label span {
    color: var(--adfax-gold-dark);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.about-visual-label p {
    margin: 15px 0 0;
    color: var(--adfax-grey);
    font-size: 0.68rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

/* =========================
   ABOUT CONTENT
========================= */

.about-content {
    max-width: 650px;
}

.about-content h2 {
    margin: 0;
    color: var(--adfax-dark);
    font-size: clamp(3rem, 5vw, 5.1rem);
    font-weight: 300;
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.about-content h2 span {
    display: block;
    color: var(--adfax-gold-dark);
    font-weight: 700;
}

.about-lead {
    max-width: 620px;
    margin: 34px 0 0;
    color: var(--adfax-dark);
    font-size: clamp(1.15rem, 1.8vw, 1.45rem);
    font-weight: 400;
    line-height: 1.55;
}

.about-description {
    max-width: 610px;
    margin: 23px 0 0;
    color: var(--adfax-grey);
    font-size: 1rem;
    line-height: 1.78;
}

.about-principles {
    margin-top: 43px;
    padding-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    border-top: 1px solid rgba(18, 18, 18, 0.13);
}

.about-principle {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.about-principle > span {
    padding-top: 4px;
    color: var(--adfax-gold-dark);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.about-principle strong {
    display: block;
    margin-bottom: 8px;
    font-size: 0.93rem;
    font-weight: 600;
}

.about-principle p {
    margin: 0;
    color: var(--adfax-grey);
    font-size: 0.82rem;
    line-height: 1.58;
}

.about-link {
    width: max-content;
    margin-top: 40px;
    padding-bottom: 8px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--adfax-dark);
    border-bottom: 1px solid var(--adfax-dark);
    font-size: 0.9rem;
    font-weight: 600;
    transition:
        color var(--transition),
        border-color var(--transition);
}

.about-link svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform var(--transition);
}

.about-link:hover {
    color: var(--adfax-gold-dark);
    border-color: var(--adfax-gold-dark);
}

.about-link:hover svg {
    transform: translateX(5px);
}

/* =========================================================
   NEXT SECTION MARKER
========================================================= */

.next-section-marker {
    padding: 110px 0;
    color: var(--adfax-white);
    background: var(--adfax-dark);
}

.next-section-marker span {
    color: var(--adfax-gold);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.next-section-marker h2 {
    margin: 10px 0 0;
    font-size: clamp(2.8rem, 5vw, 5rem);
    font-weight: 300;
}

@media (max-width: 1050px) {

    .capability-strip-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .capability-strip-item:nth-child(2) {
        border-right: 0;
    }

    .capability-strip-item:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(18, 18, 18, 0.09);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 85px;
    }

    .about-visual {
        width: min(100%, 760px);
        margin-inline: auto;
    }

    .about-content {
        max-width: 760px;
    }
}

@media (max-width: 700px) {

    .capability-strip-grid {
        grid-template-columns: 1fr;
    }

    .capability-strip-item {
        min-height: auto;
        padding: 28px 4px;
        border-right: 0;
        border-left: 0 !important;
        border-bottom: 1px solid rgba(18, 18, 18, 0.09);
    }

    .capability-strip-item:last-child {
        border-bottom: 0;
    }

    .about-section {
        padding: 100px 0;
    }

    .about-grid {
        gap: 72px;
    }

    .about-visual {
        min-height: 570px;
    }

    .about-image-main {
        width: 88%;
        height: 425px;
    }

    .about-image-secondary {
        width: 56%;
        height: 245px;
        border-width: 8px;
    }

    .about-experience-card {
        left: 4%;
        bottom: 9px;
        width: 165px;
        min-height: 175px;
        padding: 23px;
    }

    .about-experience-card strong {
        font-size: 1.16rem;
    }

    .about-visual-label {
        display: none;
    }

    .about-content {
        text-align: center;
    }

    .section-eyebrow {
        justify-content: center;
    }

    .about-content h2 {
        font-size: clamp(3rem, 13vw, 4.1rem);
    }

    .about-lead,
    .about-description {
        margin-inline: auto;
    }

    .about-principles {
        max-width: 500px;
        margin-inline: auto;
        grid-template-columns: 1fr;
        text-align: left;
    }

    .about-link {
        margin-inline: auto;
    }
}

@media (max-width: 430px) {

    .about-visual {
        min-height: 495px;
    }

    .about-image-main {
        width: 91%;
        height: 365px;
    }

    .about-image-secondary {
        width: 62%;
        height: 205px;
    }

    .about-experience-card {
        width: 145px;
        min-height: 155px;
        padding: 19px;
    }

    .about-experience-card strong {
        font-size: 1rem;
    }

    .about-content h2 {
        font-size: 2.8rem;
    }
}

/* =========================================================
   OUR SOLUTIONS
========================================================= */

.solutions-section {
    position: relative;
    padding: 150px 0;
    color: var(--adfax-white);
    background:
        radial-gradient(
            circle at 85% 8%,
            rgba(209, 156, 42, 0.12),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #111111 0%,
            #181818 60%,
            #202020 100%
        );
    overflow: hidden;
}

.solutions-section::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.12;
    pointer-events: none;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        );
    background-size: 72px 72px;
}

.solutions-section > .container {
    position: relative;
    z-index: 2;
}

/* =========================
   HEADER
========================= */

.solutions-header {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    align-items: end;
    gap: clamp(60px, 9vw, 140px);
    margin-bottom: 82px;
}

.section-eyebrow-light {
    color: var(--adfax-gold);
}

.solutions-heading h2 {
    max-width: 820px;
    margin: 0;
    font-size: clamp(3.2rem, 5.7vw, 6rem);
    font-weight: 300;
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.solutions-heading h2 span {
    display: block;
    color: var(--adfax-gold);
    font-weight: 700;
}

.solutions-intro {
    max-width: 480px;
    padding-bottom: 8px;
}

.solutions-intro p {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
    line-height: 1.75;
}

.solutions-view-all {
    width: max-content;
    margin-top: 28px;
    padding-bottom: 8px;
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: var(--adfax-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
    font-weight: 600;
    transition:
        color var(--transition),
        border-color var(--transition);
}

.solutions-view-all svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform var(--transition);
}

.solutions-view-all:hover {
    color: var(--adfax-gold);
    border-color: var(--adfax-gold);
}

.solutions-view-all:hover svg {
    transform: translateX(5px);
}

/* =========================
   GRID
========================= */

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.solution-card {
    position: relative;
    min-height: 560px;
    padding: 38px 38px 34px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.012)
        );
    overflow: hidden;
    transition:
        background-color var(--transition),
        transform var(--transition);
}

.solution-card::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: var(--adfax-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 350ms ease;
}

.solution-card:hover {
    background: rgba(255, 255, 255, 0.075);
}

.solution-card:hover::before {
    transform: scaleX(1);
}

.solution-card-featured {
    color: var(--adfax-black);
    background: var(--adfax-gold);
}

.solution-card-featured:hover {
    background: var(--adfax-gold-bright);
}

.solution-card-featured::before {
    background: var(--adfax-black);
}

.solution-card-wide {
    grid-column: 1 / -1;
    min-height: 470px;
}

.solution-card-wide .solution-card-content {
    max-width: 760px;
}

/* =========================
   CARD TOP
========================= */

.solution-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
}

.solution-number {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--adfax-gold);
}

.solution-card-featured .solution-number {
    color: rgba(18, 18, 18, 0.65);
}

.solution-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.solution-icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: var(--adfax-gold);
    stroke-width: 1.45;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.solution-card-featured .solution-icon {
    border-color: rgba(18, 18, 18, 0.25);
}

.solution-card-featured .solution-icon svg {
    stroke: var(--adfax-black);
}

/* =========================
   CARD CONTENT
========================= */

.solution-card-content {
    margin-top: 75px;
}

.solution-category {
    display: block;
    margin-bottom: 16px;
    color: var(--adfax-gold);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.solution-card-featured .solution-category {
    color: rgba(18, 18, 18, 0.67);
}

.solution-card h3 {
    max-width: 500px;
    margin: 0;
    font-size: clamp(2rem, 3.2vw, 3.2rem);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.solution-card-content > p {
    max-width: 580px;
    margin: 23px 0 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.95rem;
    line-height: 1.7;
}

.solution-card-featured .solution-card-content > p {
    color: rgba(18, 18, 18, 0.72);
}

.solution-card ul {
    margin: 28px 0 0;
    padding: 0;
    display: grid;
    gap: 11px;
    list-style: none;
}

.solution-card li {
    position: relative;
    padding-left: 18px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.83rem;
    line-height: 1.45;
}

.solution-card li::before {
    content: "";
    position: absolute;
    top: 0.66em;
    left: 0;
    width: 6px;
    height: 1px;
    background: var(--adfax-gold);
}

.solution-card-featured li {
    color: rgba(18, 18, 18, 0.76);
}

.solution-card-featured li::before {
    background: var(--adfax-black);
}

/* =========================
   CARD LINK
========================= */

.solution-card-link {
    margin-top: auto;
    padding-top: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: var(--adfax-white);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.85rem;
    font-weight: 600;
}

.solution-card-link svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform var(--transition);
}

.solution-card:hover .solution-card-link svg {
    transform: translateX(6px);
}

.solution-card-featured .solution-card-link {
    color: var(--adfax-black);
    border-color: rgba(18, 18, 18, 0.2);
}

@media (max-width: 980px) {

    .solutions-header {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 38px;
    }

    .solutions-intro {
        max-width: 680px;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .solution-card-wide {
        grid-column: auto;
    }
}

@media (max-width: 700px) {

    .solutions-section {
        padding: 105px 0;
    }

    .solutions-header {
        margin-bottom: 60px;
        text-align: center;
    }

    .solutions-heading h2 {
        font-size: clamp(3rem, 13vw, 4.2rem);
    }

    .solutions-intro {
        margin-inline: auto;
    }

    .solutions-intro p {
        text-align: center;
    }

    .solutions-view-all {
        margin-inline: auto;
    }

    .solutions-grid {
        border-left: 0;
    }

    .solution-card {
        min-height: auto;
        padding: 30px 25px 28px;
        border-left: 1px solid rgba(255, 255, 255, 0.12);
    }

    .solution-card-content {
        margin-top: 52px;
        text-align: left;
    }

    .solution-card h3 {
        font-size: clamp(2.15rem, 10vw, 3rem);
    }

    .solution-card-link {
        margin-top: 44px;
    }
}

@media (max-width: 430px) {

    .solutions-heading h2 {
        font-size: 2.85rem;
    }

    .solution-card {
        padding: 26px 21px 25px;
    }

    .solution-icon {
        width: 52px;
        height: 52px;
    }

    .solution-card-content {
        margin-top: 45px;
    }

    .solution-card h3 {
        font-size: 2.15rem;
    }
}

/* =========================================================
   INTEGRATED BUSINESS MODEL
========================================================= */

.business-model-section {
    position: relative;
    padding: 150px 0;
    background: var(--adfax-white);
    overflow: hidden;
}

.business-model-section::before {
    content: "";
    position: absolute;
    top: -240px;
    left: -230px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(209, 156, 42, 0.12);
    border-radius: 50%;
}

.business-model-section::after {
    content: "";
    position: absolute;
    right: -110px;
    bottom: -170px;
    width: 360px;
    height: 360px;
    background:
        radial-gradient(
            circle,
            rgba(209, 156, 42, 0.11),
            transparent 70%
        );
}

.business-model-container {
    position: relative;
    z-index: 2;
}

/* =========================
   HEADER
========================= */

.business-model-header {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
    align-items: end;
    gap: clamp(60px, 9vw, 140px);
    margin-bottom: 95px;
}

.business-model-heading h2 {
    max-width: 800px;
    margin: 0;
    color: var(--adfax-dark);
    font-size: clamp(3.3rem, 5.8vw, 6rem);
    font-weight: 300;
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.business-model-heading h2 span {
    display: block;
    color: var(--adfax-gold-dark);
    font-weight: 700;
}

.business-model-intro {
    max-width: 500px;
    padding-bottom: 7px;
}

.business-model-intro p {
    margin: 0;
    color: var(--adfax-grey);
    font-size: 1rem;
    line-height: 1.75;
}

.business-model-intro p + p {
    margin-top: 16px;
}

/* =========================
   PROCESS VISUAL
========================= */

.business-model-visual {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(18, 18, 18, 0.12);
    border-left: 1px solid rgba(18, 18, 18, 0.12);
}

.business-model-line {
    position: absolute;
    top: 55px;
    left: 8%;
    right: 8%;
    height: 1px;
    background:
        linear-gradient(
            to right,
            var(--adfax-gold),
            rgba(209, 156, 42, 0.2)
        );
    pointer-events: none;
}

.business-model-step {
    position: relative;
    min-height: 450px;
    padding: 44px 34px 38px;
    border-right: 1px solid rgba(18, 18, 18, 0.12);
    border-bottom: 1px solid rgba(18, 18, 18, 0.12);
    background: rgba(255, 255, 255, 0.66);
    transition:
        background-color var(--transition),
        transform var(--transition);
}

.business-model-step:hover {
    background: var(--adfax-surface);
}

.business-model-step-impact {
    color: var(--adfax-white);
    background: var(--adfax-dark);
}

.business-model-step-impact:hover {
    background: #202020;
}

/* =========================
   NUMBER NODE
========================= */

.business-model-node {
    position: relative;
    z-index: 3;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    color: var(--adfax-black);
    background: var(--adfax-gold);
    border-radius: 50%;
    box-shadow:
        0 0 0 10px var(--adfax-white);
}

.business-model-step-impact .business-model-node {
    box-shadow:
        0 0 0 10px var(--adfax-dark);
}

.business-model-node span {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

/* =========================
   STEP CONTENT
========================= */

.business-model-step-content {
    margin-top: 67px;
}

.business-model-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    margin-bottom: 31px;
    border: 1px solid rgba(18, 18, 18, 0.13);
}

.business-model-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: var(--adfax-gold-dark);
    stroke-width: 1.45;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.business-model-step-impact .business-model-icon {
    border-color: rgba(255, 255, 255, 0.16);
}

.business-model-step-impact .business-model-icon svg {
    stroke: var(--adfax-gold);
}

.business-model-label {
    display: block;
    margin-bottom: 13px;
    color: var(--adfax-gold-dark);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.business-model-step-impact .business-model-label {
    color: var(--adfax-gold);
}

.business-model-step h3 {
    margin: 0;
    color: var(--adfax-dark);
    font-size: clamp(1.65rem, 2.5vw, 2.45rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.035em;
}

.business-model-step-impact h3 {
    color: var(--adfax-white);
}

.business-model-step p {
    margin: 20px 0 0;
    color: var(--adfax-grey);
    font-size: 0.88rem;
    line-height: 1.68;
}

.business-model-step-impact p {
    color: rgba(255, 255, 255, 0.63);
}

/* =========================
   FOOTER
========================= */

.business-model-footer {
    margin-top: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.business-model-statement {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.business-model-statement span {
    color: var(--adfax-grey);
    font-size: 0.83rem;
    font-weight: 500;
    letter-spacing: 0.03em;
}

.business-model-statement strong {
    color: var(--adfax-dark);
    font-size: clamp(1.6rem, 2.8vw, 2.6rem);
    font-weight: 500;
    letter-spacing: -0.035em;
}

.button-dark-outline {
    color: var(--adfax-dark);
    border-color: rgba(18, 18, 18, 0.28);
    background: transparent;
}

.button-dark-outline:hover {
    color: var(--adfax-white);
    border-color: var(--adfax-dark);
    background: var(--adfax-dark);
}

@media (max-width: 1050px) {

    .business-model-header {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 38px;
    }

    .business-model-intro {
        max-width: 700px;
    }

    .business-model-visual {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .business-model-line {
        display: none;
    }

    .business-model-node {
        box-shadow:
            0 0 0 8px var(--adfax-white);
    }

    .business-model-step-impact .business-model-node {
        box-shadow:
            0 0 0 8px var(--adfax-dark);
    }
}

@media (max-width: 700px) {

    .business-model-section {
        padding: 105px 0;
    }

    .business-model-header {
        margin-bottom: 65px;
        text-align: center;
    }

    .business-model-header .section-eyebrow {
        justify-content: center;
    }

    .business-model-heading h2 {
        font-size: clamp(3rem, 13vw, 4.2rem);
    }

    .business-model-intro {
        margin-inline: auto;
    }

    .business-model-intro p {
        text-align: center;
    }

    .business-model-visual {
        grid-template-columns: 1fr;
        border-left: 0;
    }

    .business-model-step {
        min-height: auto;
        padding: 31px 25px 36px;
        display: grid;
        grid-template-columns: 58px minmax(0, 1fr);
        gap: 24px;
        border-left: 1px solid rgba(18, 18, 18, 0.12);
    }

    .business-model-node {
        width: 50px;
        height: 50px;
        box-shadow: none;
    }

    .business-model-step-impact .business-model-node {
        box-shadow: none;
    }

    .business-model-step-content {
        margin-top: 0;
    }

    .business-model-icon {
        width: 46px;
        height: 46px;
        margin-bottom: 24px;
    }

    .business-model-step h3 {
        font-size: 2rem;
    }

    .business-model-step p {
        max-width: 460px;
    }

    .business-model-footer {
        margin-top: 50px;
        align-items: stretch;
        flex-direction: column;
        text-align: center;
    }

    .business-model-footer .button {
        width: 100%;
    }
}

@media (max-width: 430px) {

    .business-model-heading h2 {
        font-size: 2.85rem;
    }

    .business-model-step {
        padding: 27px 20px 32px;
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 17px;
    }

    .business-model-node {
        width: 44px;
        height: 44px;
    }

    .business-model-icon {
        width: 43px;
        height: 43px;
    }

    .business-model-step h3 {
        font-size: 1.8rem;
    }

    .business-model-statement strong {
        font-size: 1.75rem;
    }
}

/* =========================================================
   FEATURED PROJECTS
========================================================= */

.projects-section {
    position: relative;
    padding: 150px 0;
    background: var(--adfax-surface);
    overflow: hidden;
}

.projects-section::before {
    content: "";
    position: absolute;
    top: -170px;
    right: -180px;
    width: 440px;
    height: 440px;
    border: 1px solid rgba(209, 156, 42, 0.13);
    border-radius: 50%;
}

.projects-section::after {
    content: "";
    position: absolute;
    top: -80px;
    right: -90px;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(209, 156, 42, 0.1);
    border-radius: 50%;
}

.projects-section > .container {
    position: relative;
    z-index: 2;
}

/* =========================
   PROJECTS HEADER
========================= */

.projects-header {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    align-items: end;
    gap: clamp(60px, 9vw, 140px);
    margin-bottom: 84px;
}

.projects-heading h2 {
    margin: 0;
    color: var(--adfax-dark);
    font-size: clamp(3.3rem, 5.8vw, 6rem);
    font-weight: 300;
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.projects-heading h2 span {
    display: block;
    color: var(--adfax-gold-dark);
    font-weight: 700;
}

.projects-intro {
    max-width: 500px;
    padding-bottom: 8px;
}

.projects-intro p {
    margin: 0;
    color: var(--adfax-grey);
    font-size: 1rem;
    line-height: 1.75;
}

.projects-view-all {
    width: max-content;
    margin-top: 28px;
    padding-bottom: 8px;
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: var(--adfax-dark);
    border-bottom: 1px solid rgba(18, 18, 18, 0.45);
    font-size: 0.88rem;
    font-weight: 600;
    transition:
        color var(--transition),
        border-color var(--transition);
}

.projects-view-all svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform var(--transition);
}

.projects-view-all:hover {
    color: var(--adfax-gold-dark);
    border-color: var(--adfax-gold-dark);
}

.projects-view-all:hover svg {
    transform: translateX(5px);
}

/* =========================
   PROJECTS GRID
========================= */

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
}

.project-card {
    position: relative;
    background: var(--adfax-white);
    border: 1px solid rgba(18, 18, 18, 0.09);
    overflow: hidden;
    transition:
        transform 350ms ease,
        box-shadow 350ms ease;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgba(18, 18, 18, 0.13);
}

.project-card-featured {
    grid-column: 1 / -1;
}

.project-card-link {
    display: block;
}

/* =========================
   PROJECT IMAGE
========================= */

.project-image {
    position: relative;
    height: 410px;
    overflow: hidden;
    background: #d8d8d8;
}

.project-card-featured .project-image {
    height: 620px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 850ms ease;
}

.project-card:hover .project-image img {
    transform: scale(1.045);
}

.project-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.2),
            transparent 50%
        );
}

.project-card-badge {
    position: absolute;
    top: 28px;
    left: 28px;
    padding: 10px 14px;
    color: var(--adfax-black);
    background: var(--adfax-gold);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* =========================
   PROJECT CONTENT
========================= */

.project-card-content {
    padding: 32px 32px 35px;
}

.project-card-featured .project-card-content {
    padding: 38px 40px 42px;
}

.project-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 22px;
}

.project-card-meta span {
    color: var(--adfax-grey);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.project-card-meta span:first-child {
    color: var(--adfax-gold-dark);
}

.project-card-title-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 35px;
}

.project-card-title-row > div:first-child {
    min-width: 0;
}

.project-card h3 {
    max-width: 650px;
    margin: 0;
    color: var(--adfax-dark);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.project-card-featured h3 {
    max-width: 850px;
    font-size: clamp(2.8rem, 4.6vw, 4.8rem);
}

.project-card p {
    max-width: 660px;
    margin: 20px 0 0;
    color: var(--adfax-grey);
    font-size: 0.92rem;
    line-height: 1.68;
}

.project-card-featured p {
    max-width: 760px;
    font-size: 1rem;
}

.project-arrow {
    width: 54px;
    height: 54px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    color: var(--adfax-dark);
    border: 1px solid rgba(18, 18, 18, 0.18);
    transition:
        color var(--transition),
        background-color var(--transition),
        border-color var(--transition);
}

.project-arrow svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform var(--transition);
}

.project-card:hover .project-arrow {
    color: var(--adfax-black);
    border-color: var(--adfax-gold);
    background: var(--adfax-gold);
}

.project-card:hover .project-arrow svg {
    transform: translateX(5px);
}

/* =========================
   PROJECTS FOOTER
========================= */

.projects-footer {
    margin-top: 70px;
    padding-top: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    border-top: 1px solid rgba(18, 18, 18, 0.13);
}

.projects-footer-copy {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.projects-footer-copy span {
    color: var(--adfax-grey);
    font-size: 0.83rem;
    font-weight: 500;
}

.projects-footer-copy strong {
    color: var(--adfax-dark);
    font-size: clamp(1.6rem, 2.8vw, 2.6rem);
    font-weight: 500;
    letter-spacing: -0.035em;
}

@media (max-width: 1050px) {

    .projects-header {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 38px;
    }

    .projects-intro {
        max-width: 700px;
    }

    .project-card-featured .project-image {
        height: 520px;
    }
}

@media (max-width: 800px) {

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-card-featured {
        grid-column: auto;
    }

    .project-image,
    .project-card-featured .project-image {
        height: 470px;
    }

    .project-card-featured h3 {
        font-size: clamp(2.3rem, 7vw, 3.7rem);
    }
}

@media (max-width: 700px) {

    .projects-section {
        padding: 105px 0;
    }

    .projects-header {
        margin-bottom: 62px;
        text-align: center;
    }

    .projects-header .section-eyebrow {
        justify-content: center;
    }

    .projects-heading h2 {
        font-size: clamp(3rem, 13vw, 4.2rem);
    }

    .projects-intro {
        margin-inline: auto;
    }

    .projects-intro p {
        text-align: center;
    }

    .projects-view-all {
        margin-inline: auto;
    }

    .projects-grid {
        gap: 24px;
    }

    .project-image,
    .project-card-featured .project-image {
        height: 420px;
    }

    .project-card-badge {
        top: 18px;
        left: 18px;
    }

    .project-card-content,
    .project-card-featured .project-card-content {
        padding: 26px 24px 29px;
    }

    .project-card-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .project-card-title-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 26px;
    }

    .project-card h3,
    .project-card-featured h3 {
        font-size: clamp(2.15rem, 10vw, 3.1rem);
    }

    .project-arrow {
        width: 50px;
        height: 50px;
    }

    .projects-footer {
        margin-top: 54px;
        align-items: stretch;
        flex-direction: column;
        text-align: center;
    }

    .projects-footer .button {
        width: 100%;
    }
}

@media (max-width: 430px) {

    .projects-heading h2 {
        font-size: 2.85rem;
    }

    .project-image,
    .project-card-featured .project-image {
        height: 350px;
    }

    .project-card-content,
    .project-card-featured .project-card-content {
        padding: 23px 20px 25px;
    }

    .project-card h3,
    .project-card-featured h3 {
        font-size: 2.15rem;
    }

    .project-card p,
    .project-card-featured p {
        font-size: 0.88rem;
    }

    .projects-footer-copy strong {
        font-size: 1.75rem;
    }
}

/* =========================================================
   WHY CHOOSE ADFAX
========================================================= */

.why-adfax-section {
    position: relative;
    padding: 150px 0;
    color: var(--adfax-white);
    background:
        radial-gradient(
            circle at 14% 18%,
            rgba(209, 156, 42, 0.12),
            transparent 27%
        ),
        linear-gradient(
            135deg,
            #111111 0%,
            #171717 58%,
            #202020 100%
        );
    overflow: hidden;
}

.why-adfax-section::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.11;
    pointer-events: none;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        );
    background-size: 74px 74px;
}

.why-adfax-section::after {
    content: "";
    position: absolute;
    right: -190px;
    bottom: -190px;
    width: 470px;
    height: 470px;
    border: 1px solid rgba(209, 156, 42, 0.16);
    border-radius: 50%;
}

.why-adfax-grid,
.why-adfax-footer {
    position: relative;
    z-index: 2;
}

/* =========================
   MAIN GRID
========================= */

.why-adfax-grid {
    display: grid;
    grid-template-columns: minmax(380px, 0.88fr) minmax(0, 1.12fr);
    align-items: start;
    gap: clamp(70px, 9vw, 140px);
}

/* =========================
   INTRODUCTION
========================= */

.why-adfax-introduction {
    position: sticky;
    top: 135px;
}

.why-adfax-introduction h2 {
    max-width: 650px;
    margin: 0;
    font-size: clamp(3.3rem, 5.6vw, 5.8rem);
    font-weight: 300;
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.why-adfax-introduction h2 span {
    display: block;
    color: var(--adfax-gold);
    font-weight: 700;
}

.why-adfax-lead {
    max-width: 570px;
    margin: 31px 0 0;
    color: rgba(255, 255, 255, 0.67);
    font-size: 1.03rem;
    line-height: 1.75;
}

/* =========================
   VISUAL BLOCK
========================= */

.why-adfax-visual {
    position: relative;
    min-height: 380px;
    margin-top: 52px;
    padding: 38px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.07),
            rgba(255, 255, 255, 0.015)
        );
    overflow: hidden;
}

.why-adfax-visual::before {
    content: "";
    position: absolute;
    top: -110px;
    right: -80px;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(209, 156, 42, 0.3);
    border-radius: 50%;
}

.why-adfax-visual::after {
    content: "";
    position: absolute;
    top: -35px;
    right: -5px;
    width: 130px;
    height: 130px;
    background: rgba(209, 156, 42, 0.11);
    border-radius: 50%;
}

.why-adfax-visual-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px
        );
    background-size: 38px 38px;
}

.why-adfax-visual-content,
.why-adfax-visual-footer {
    position: relative;
    z-index: 2;
}

.why-adfax-visual-label {
    display: block;
    margin-bottom: 25px;
    color: var(--adfax-gold);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.why-adfax-visual strong {
    display: block;
    max-width: 430px;
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    font-weight: 500;
    line-height: 1.03;
    letter-spacing: -0.045em;
}

.why-adfax-visual p {
    max-width: 480px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.91rem;
    line-height: 1.7;
}

.why-adfax-visual-footer {
    margin-top: 50px;
    padding-top: 22px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.why-adfax-visual-footer span {
    position: relative;
    color: rgba(255, 255, 255, 0.57);
    font-size: 0.69rem;
    font-weight: 600;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.why-adfax-visual-footer span:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -14px;
    width: 4px;
    height: 4px;
    background: var(--adfax-gold);
    border-radius: 50%;
    transform: translateY(-50%);
}

/* =========================
   REASONS
========================= */

.why-adfax-reasons {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.why-adfax-card {
    min-height: 190px;
    padding: 34px 34px 36px;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 25px;
    border-right: 1px solid rgba(255, 255, 255, 0.13);
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.025);
    transition:
        background-color var(--transition),
        transform var(--transition);
}

.why-adfax-card:hover {
    background: rgba(255, 255, 255, 0.065);
}

.why-adfax-card-highlight {
    color: var(--adfax-black);
    background: var(--adfax-gold);
}

.why-adfax-card-highlight:hover {
    background: var(--adfax-gold-bright);
}

.why-adfax-card-number {
    padding-top: 5px;
    color: var(--adfax-gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.why-adfax-card-highlight .why-adfax-card-number {
    color: rgba(18, 18, 18, 0.62);
}

.why-adfax-card h3 {
    margin: 0;
    color: var(--adfax-white);
    font-size: clamp(1.45rem, 2.4vw, 2.2rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.why-adfax-card-highlight h3 {
    color: var(--adfax-black);
}

.why-adfax-card p {
    max-width: 620px;
    margin: 15px 0 0;
    color: rgba(255, 255, 255, 0.61);
    font-size: 0.89rem;
    line-height: 1.67;
}

.why-adfax-card-highlight p {
    color: rgba(18, 18, 18, 0.72);
}

/* =========================
   FOOTER CTA
========================= */

.why-adfax-footer {
    margin-top: 75px;
    padding-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.why-adfax-footer-copy {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.why-adfax-footer-copy span {
    color: var(--adfax-gold);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.why-adfax-footer-copy strong {
    max-width: 740px;
    font-size: clamp(1.65rem, 2.9vw, 2.8rem);
    font-weight: 500;
    line-height: 1.17;
    letter-spacing: -0.035em;
}

@media (max-width: 1050px) {

    .why-adfax-grid {
        grid-template-columns: 1fr;
        gap: 75px;
    }

    .why-adfax-introduction {
        position: relative;
        top: auto;
        max-width: 780px;
    }

    .why-adfax-visual {
        max-width: 760px;
    }
}

@media (max-width: 700px) {

    .why-adfax-section {
        padding: 105px 0;
    }

    .why-adfax-grid {
        gap: 62px;
    }

    .why-adfax-introduction {
        margin-inline: auto;
        text-align: center;
    }

    .why-adfax-introduction .section-eyebrow {
        justify-content: center;
    }

    .why-adfax-introduction h2 {
        font-size: clamp(3rem, 13vw, 4.2rem);
    }

    .why-adfax-lead {
        margin-inline: auto;
    }

    .why-adfax-visual {
        min-height: 360px;
        padding: 29px 25px;
        text-align: left;
    }

    .why-adfax-visual strong {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .why-adfax-visual-footer {
        gap: 12px 21px;
    }

    .why-adfax-reasons {
        border-left: 0;
    }

    .why-adfax-card {
        min-height: auto;
        padding: 28px 24px 31px;
        grid-template-columns: 45px minmax(0, 1fr);
        gap: 18px;
        border-left: 1px solid rgba(255, 255, 255, 0.13);
    }

    .why-adfax-card h3 {
        font-size: 1.85rem;
    }

    .why-adfax-footer {
        margin-top: 55px;
        align-items: stretch;
        flex-direction: column;
        text-align: center;
    }

    .why-adfax-footer .button {
        width: 100%;
    }
}

@media (max-width: 430px) {

    .why-adfax-introduction h2 {
        font-size: 2.85rem;
    }

    .why-adfax-visual {
        min-height: 345px;
        padding: 25px 21px;
    }

    .why-adfax-visual strong {
        font-size: 2.2rem;
    }

    .why-adfax-visual-footer span {
        font-size: 0.62rem;
    }

    .why-adfax-card {
        padding: 25px 20px 28px;
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 14px;
    }

    .why-adfax-card h3 {
        font-size: 1.65rem;
    }

    .why-adfax-card p {
        font-size: 0.86rem;
    }

    .why-adfax-footer-copy strong {
        font-size: 1.75rem;
    }
}

/* =========================================================
   ADFAX EXPRESS MAGAZINE
========================================================= */

.magazine-section {
    position: relative;
    padding: 150px 0;
    background:
        radial-gradient(
            circle at 11% 15%,
            rgba(209, 156, 42, 0.14),
            transparent 27%
        ),
        var(--adfax-white);
    overflow: hidden;
}

.magazine-section::before {
    content: "";
    position: absolute;
    top: -210px;
    right: -170px;
    width: 470px;
    height: 470px;
    border: 1px solid rgba(209, 156, 42, 0.15);
    border-radius: 50%;
}

.magazine-section::after {
    content: "";
    position: absolute;
    top: -100px;
    right: -60px;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(209, 156, 42, 0.11);
    border-radius: 50%;
}

.magazine-grid,
.magazine-sponsor {
    position: relative;
    z-index: 2;
}

/* =========================
   MAIN GRID
========================= */

.magazine-grid {
    display: grid;
    grid-template-columns: minmax(390px, 0.88fr) minmax(0, 1.12fr);
    align-items: center;
    gap: clamp(75px, 10vw, 150px);
}

/* =========================
   MAGAZINE VISUAL
========================= */

/* =========================================================
   MAGAZINE COVER FIX
========================================================= */

.magazine-visual {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.magazine-cover-frame {
    position: relative;
    top: auto;
    left: auto;

    width: min(72%, 470px);
    height: auto;
    aspect-ratio: 0.714 / 1;

    padding: 14px;
    background: var(--adfax-dark);
    box-shadow: 0 35px 90px rgba(18, 18, 18, 0.25);

    transform: rotate(-3deg);
    overflow: visible;
}

.magazine-cover-frame img {
    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center;

    background: var(--adfax-white);
}

.magazine-cover-frame::before {
    content: "";
    position: absolute;
    top: -16px;
    right: -16px;
    width: 105px;
    height: 105px;
    border-top: 2px solid var(--adfax-gold);
    border-right: 2px solid var(--adfax-gold);
}

.magazine-cover-label {
    position: absolute;
    top: 38px;
    left: -36px;
    z-index: 4;

    padding: 12px 18px;

    color: var(--adfax-black);
    background: var(--adfax-gold);

    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.magazine-cover-shadow {
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: -28px;
    height: 55px;

    background: rgba(18, 18, 18, 0.24);
    filter: blur(25px);
}

.magazine-edition-card {
    position: absolute;
    right: 0;
    bottom: 15px;
    z-index: 5;

    width: 280px;
    min-height: 230px;
    padding: 29px;

    display: flex;
    flex-direction: column;

    color: var(--adfax-white);
    background: var(--adfax-dark);
    box-shadow: 0 25px 65px rgba(18, 18, 18, 0.24);
}

.magazine-edition-card > span {
    color: var(--adfax-gold);
    font-size: 0.69rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.magazine-edition-card strong {
    margin-top: 24px;
    font-size: 1.62rem;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.magazine-edition-card a {
    width: max-content;
    margin-top: auto;
    padding-bottom: 7px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--adfax-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    font-size: 0.79rem;
    font-weight: 600;
}

.magazine-edition-card svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform var(--transition);
}

.magazine-edition-card a:hover {
    color: var(--adfax-gold);
    border-color: var(--adfax-gold);
}

.magazine-edition-card a:hover svg {
    transform: translateX(5px);
}

.magazine-visual-mark {
    position: absolute;
    left: 0;
    bottom: 32px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.magazine-visual-mark span {
    color: var(--adfax-gold-dark);
    font-size: 0.69rem;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.magazine-visual-mark p {
    margin: 15px 0 0;
    color: var(--adfax-grey);
    font-size: 0.67rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* =========================
   MAGAZINE CONTENT
========================= */

.magazine-content {
    max-width: 690px;
}

.magazine-content h2 {
    margin: 0;
    color: var(--adfax-dark);
    font-size: clamp(3.3rem, 5.6vw, 5.8rem);
    font-weight: 300;
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.magazine-content h2 span {
    display: block;
    color: var(--adfax-gold-dark);
    font-weight: 700;
}

.magazine-lead {
    max-width: 650px;
    margin: 34px 0 0;
    color: var(--adfax-dark);
    font-size: clamp(1.15rem, 1.7vw, 1.4rem);
    line-height: 1.58;
}

.magazine-description {
    max-width: 630px;
    margin: 23px 0 0;
    color: var(--adfax-grey);
    font-size: 1rem;
    line-height: 1.77;
}

/* =========================
   MAGAZINE FEATURES
========================= */

.magazine-features {
    margin-top: 43px;
    border-top: 1px solid rgba(18, 18, 18, 0.13);
}

.magazine-feature {
    padding: 24px 0;
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 22px;
    border-bottom: 1px solid rgba(18, 18, 18, 0.13);
}

.magazine-feature > span {
    padding-top: 4px;
    color: var(--adfax-gold-dark);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.magazine-feature strong {
    display: block;
    color: var(--adfax-dark);
    font-size: 1rem;
    font-weight: 600;
}

.magazine-feature p {
    max-width: 520px;
    margin: 7px 0 0;
    color: var(--adfax-grey);
    font-size: 0.84rem;
    line-height: 1.6;
}

.magazine-actions {
    margin-top: 39px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.magazine-button-secondary {
    color: var(--adfax-dark);
    border-color: rgba(18, 18, 18, 0.25);
    background: transparent;
}

.magazine-button-secondary:hover {
    color: var(--adfax-white);
    border-color: var(--adfax-dark);
    background: var(--adfax-dark);
}

/* =========================
   SPONSOR RECOGNITION
========================= */

.magazine-sponsor {
    margin-top: 120px;
    padding-top: 50px;
    display: grid;
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
    align-items: center;
    gap: 70px;
    border-top: 1px solid rgba(18, 18, 18, 0.13);
}

.magazine-sponsor-heading {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.magazine-sponsor-heading span {
    color: var(--adfax-gold-dark);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.magazine-sponsor-heading strong {
    max-width: 470px;
    color: var(--adfax-dark);
    font-size: clamp(1.7rem, 3vw, 2.8rem);
    font-weight: 500;
    line-height: 1.16;
    letter-spacing: -0.035em;
}

.magazine-sponsor-brand {
    min-height: 185px;
    padding: 28px 32px;
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    align-items: center;
    gap: 35px;
    border: 1px solid rgba(18, 18, 18, 0.11);
    background: var(--adfax-surface);
}

.magazine-sponsor-logo {
    min-height: 125px;
    padding: 20px;
    display: grid;
    place-items: center;
    background: var(--adfax-white);
}

.magazine-sponsor-logo img {
    width: 100%;
    max-height: 90px;
    object-fit: contain;
}

.magazine-sponsor-copy > span {
    color: var(--adfax-gold-dark);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.magazine-sponsor-copy strong {
    display: block;
    margin-top: 10px;
    color: var(--adfax-dark);
    font-size: 1.55rem;
    font-weight: 600;
}

.magazine-sponsor-copy p {
    margin: 10px 0 0;
    color: var(--adfax-grey);
    font-size: 0.88rem;
    line-height: 1.6;
}

@media (max-width: 1050px) {

    .magazine-grid {
        grid-template-columns: 1fr;
        gap: 95px;
    }

    .magazine-visual {
        width: min(100%, 700px);
        margin-inline: auto;
    }

    .magazine-content {
        max-width: 760px;
    }

    .magazine-sponsor {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

@media (max-width: 700px) {

    .magazine-section {
        padding: 105px 0;
    }

    .magazine-grid {
        gap: 74px;
    }

    .magazine-visual {
        min-height: 610px;
    }

    .magazine-cover-frame {
        left: 10%;
        width: 76%;
        height: 495px;
        padding: 12px;
    }

    .magazine-cover-frame::before {
        top: -9px;
        right: -9px;
        width: 70px;
        height: 70px;
    }

    .magazine-cover-label {
        top: 25px;
        left: -24px;
        padding: 9px 12px;
        font-size: 0.6rem;
    }

    .magazine-edition-card {
        right: 0;
        width: 240px;
        min-height: 195px;
        padding: 23px;
    }

    .magazine-edition-card strong {
        font-size: 1.35rem;
    }

    .magazine-visual-mark {
        display: none;
    }

    .magazine-content {
        text-align: center;
    }

    .magazine-content .section-eyebrow {
        justify-content: center;
    }

    .magazine-content h2 {
        font-size: clamp(3rem, 13vw, 4.2rem);
    }

    .magazine-lead,
    .magazine-description {
        margin-inline: auto;
    }

    .magazine-features {
        max-width: 550px;
        margin-inline: auto;
        text-align: left;
    }

    .magazine-actions {
        max-width: 500px;
        margin-inline: auto;
        flex-direction: column;
    }

    .magazine-actions .button {
        width: 100%;
    }

    .magazine-sponsor {
        margin-top: 85px;
        text-align: center;
    }

    .magazine-sponsor-heading strong {
        margin-inline: auto;
    }

    .magazine-sponsor-brand {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .magazine-sponsor-logo {
        min-height: 120px;
    }
}

@media (max-width: 430px) {

    .magazine-visual {
        min-height: 520px;
    }

    .magazine-cover-frame {
        left: 8%;
        width: 81%;
        height: 420px;
    }

    .magazine-edition-card {
        width: 215px;
        min-height: 175px;
        padding: 19px;
    }

    .magazine-edition-card strong {
        margin-top: 17px;
        font-size: 1.15rem;
    }

    .magazine-content h2 {
        font-size: 2.85rem;
    }

    .magazine-feature {
        grid-template-columns: 37px minmax(0, 1fr);
        gap: 14px;
    }

    .magazine-sponsor-brand {
        padding: 22px 20px;
    }

    .magazine-sponsor-copy strong {
        font-size: 1.35rem;
    }
}

@media (max-width: 1050px) {

    .magazine-visual {
        width: min(100%, 720px);
        min-height: 760px;
        margin-inline: auto;
    }

    .magazine-cover-frame {
        width: min(68%, 470px);
    }

    .magazine-edition-card {
        right: 6%;
    }
}

@media (max-width: 700px) {

    .magazine-visual {
        width: 100%;
        min-height: auto;
        padding-bottom: 0;

        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .magazine-cover-frame {
        position: relative;
        top: auto;
        left: auto;

        width: min(82%, 420px);
        height: auto;
        aspect-ratio: 0.714 / 1;

        padding: 11px;
        transform: rotate(-2deg);
    }

    .magazine-cover-frame img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }

    .magazine-cover-frame::before {
        top: -9px;
        right: -9px;
        width: 70px;
        height: 70px;
    }

    .magazine-cover-label {
        top: 27px;
        left: -21px;
        padding: 9px 13px;
        font-size: 0.6rem;
    }

    .magazine-edition-card {
        position: relative;
        right: auto;
        bottom: auto;

        width: min(86%, 420px);
        min-height: 180px;
        margin-top: -24px;
        margin-left: auto;

        padding: 24px;
    }

    .magazine-visual-mark {
        display: none;
    }
}

@media (max-width: 430px) {

    .magazine-cover-frame {
        width: 86%;
        padding: 9px;
    }

    .magazine-cover-label {
        top: 22px;
        left: -14px;
        padding: 8px 10px;
        font-size: 0.56rem;
    }

    .magazine-edition-card {
        width: 91%;
        min-height: 165px;
        margin-top: -18px;
        padding: 20px;
    }

    .magazine-edition-card strong {
        margin-top: 17px;
        font-size: 1.2rem;
    }
}

/* =========================================================
   LATEST INSIGHTS
========================================================= */

.insights-section {
    position: relative;
    padding: 150px 0;
    background: var(--adfax-surface);
    overflow: hidden;
}

.insights-section::before {
    content: "";
    position: absolute;
    left: -180px;
    bottom: -190px;
    width: 440px;
    height: 440px;
    border: 1px solid rgba(209, 156, 42, 0.13);
    border-radius: 50%;
}

.insights-section > .container {
    position: relative;
    z-index: 2;
}

/* =========================
   HEADER
========================= */

.insights-header {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    align-items: end;
    gap: clamp(60px, 9vw, 140px);
    margin-bottom: 82px;
}

.insights-heading h2 {
    margin: 0;
    color: var(--adfax-dark);
    font-size: clamp(3.3rem, 5.8vw, 6rem);
    font-weight: 300;
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.insights-heading h2 span {
    display: block;
    color: var(--adfax-gold-dark);
    font-weight: 700;
}

.insights-intro {
    max-width: 500px;
    padding-bottom: 8px;
}

.insights-intro p {
    margin: 0;
    color: var(--adfax-grey);
    font-size: 1rem;
    line-height: 1.75;
}

.insights-view-all {
    width: max-content;
    margin-top: 28px;
    padding-bottom: 8px;
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: var(--adfax-dark);
    border-bottom: 1px solid rgba(18, 18, 18, 0.4);
    font-size: 0.88rem;
    font-weight: 600;
}

.insights-view-all svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform var(--transition);
}

.insights-view-all:hover {
    color: var(--adfax-gold-dark);
    border-color: var(--adfax-gold-dark);
}

.insights-view-all:hover svg {
    transform: translateX(5px);
}

/* =========================
   GRID
========================= */

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.insight-card {
    background: var(--adfax-white);
    border: 1px solid rgba(18, 18, 18, 0.09);
    overflow: hidden;
    transition:
        transform 320ms ease,
        box-shadow 320ms ease;
}

.insight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 65px rgba(18, 18, 18, 0.12);
}

.insight-card-featured {
    grid-column: span 2;
}

.insight-card-link {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* =========================
   IMAGE
========================= */

.insight-image {
    position: relative;
    height: 285px;
    overflow: hidden;
    background: #d8d8d8;
}

.insight-card-featured .insight-image {
    height: 420px;
}

.insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 800ms ease;
}

.insight-card:hover .insight-image img {
    transform: scale(1.045);
}

.insight-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.32),
            transparent 58%
        );
}

.insight-category {
    position: absolute;
    left: 20px;
    bottom: 20px;
    padding: 9px 12px;
    color: var(--adfax-black);
    background: var(--adfax-gold);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* =========================
   CONTENT
========================= */

.insight-content {
    flex: 1;
    padding: 27px 27px 30px;
    display: flex;
    flex-direction: column;
}

.insight-card-featured .insight-content {
    padding: 34px 36px 37px;
}

.insight-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.insight-meta span {
    color: var(--adfax-grey);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.insight-card h3 {
    margin: 0;
    color: var(--adfax-dark);
    font-size: clamp(1.65rem, 2.5vw, 2.4rem);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.insight-card-featured h3 {
    max-width: 850px;
    font-size: clamp(2.4rem, 4vw, 4rem);
}

.insight-card p {
    margin: 18px 0 0;
    color: var(--adfax-grey);
    font-size: 0.88rem;
    line-height: 1.68;
}

.insight-card-featured p {
    max-width: 760px;
    font-size: 0.97rem;
}

/* =========================
   READ MORE
========================= */

.insight-read-more {
    margin-top: auto;
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: var(--adfax-dark);
    border-top: 1px solid rgba(18, 18, 18, 0.11);
    font-size: 0.82rem;
    font-weight: 600;
}

.insight-read-more svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform var(--transition);
}

.insight-card:hover .insight-read-more {
    color: var(--adfax-gold-dark);
}

.insight-card:hover .insight-read-more svg {
    transform: translateX(5px);
}

@media (max-width: 1050px) {

    .insights-header {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 38px;
    }

    .insights-intro {
        max-width: 700px;
    }

    .insights-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .insight-card-featured {
        grid-column: 1 / -1;
    }
}

@media (max-width: 700px) {

    .insights-section {
        padding: 105px 0;
    }

    .insights-header {
        margin-bottom: 62px;
        text-align: center;
    }

    .insights-header .section-eyebrow {
        justify-content: center;
    }

    .insights-heading h2 {
        font-size: clamp(3rem, 13vw, 4.2rem);
    }

    .insights-intro {
        margin-inline: auto;
    }

    .insights-intro p {
        text-align: center;
    }

    .insights-view-all {
        margin-inline: auto;
    }

    .insights-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .insight-card-featured {
        grid-column: auto;
    }

    .insight-image,
    .insight-card-featured .insight-image {
        height: 380px;
    }

    .insight-content,
    .insight-card-featured .insight-content {
        padding: 25px 23px 28px;
    }

    .insight-card h3,
    .insight-card-featured h3 {
        font-size: clamp(2rem, 9vw, 2.8rem);
    }
}

@media (max-width: 430px) {

    .insights-heading h2 {
        font-size: 2.85rem;
    }

    .insight-image,
    .insight-card-featured .insight-image {
        height: 320px;
    }

    .insight-content,
    .insight-card-featured .insight-content {
        padding: 22px 20px 25px;
    }

    .insight-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .insight-card h3,
    .insight-card-featured h3 {
        font-size: 2rem;
    }
}

/* =========================================================
   REQUEST A QUOTE
========================================================= */

.quote-section {
    position: relative;
    padding: 150px 0;
    color: var(--adfax-white);
    background:
        linear-gradient(
            125deg,
            #111111 0%,
            #181818 58%,
            #202020 100%
        );
    overflow: hidden;
}

.quote-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.quote-grid-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.13;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.04) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.04) 1px,
            transparent 1px
        );
    background-size: 70px 70px;
}

.quote-circle {
    position: absolute;
    border-radius: 50%;
}

.quote-circle-one {
    top: -220px;
    left: -180px;
    width: 480px;
    height: 480px;
    border: 1px solid rgba(209, 156, 42, 0.18);
}

.quote-circle-two {
    right: -190px;
    bottom: -210px;
    width: 500px;
    height: 500px;
    background:
        radial-gradient(
            circle,
            rgba(209, 156, 42, 0.14),
            transparent 69%
        );
}

.quote-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
    align-items: start;
    gap: clamp(70px, 9vw, 140px);
}

/* =========================
   QUOTE CONTENT
========================= */

.quote-content {
    position: sticky;
    top: 135px;
}

.quote-content h2 {
    max-width: 620px;
    margin: 0;
    font-size: clamp(3.3rem, 5.7vw, 5.9rem);
    font-weight: 300;
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.quote-content h2 span {
    display: block;
    color: var(--adfax-gold);
    font-weight: 700;
}

.quote-lead {
    max-width: 570px;
    margin: 31px 0 0;
    color: rgba(255, 255, 255, 0.67);
    font-size: 1.03rem;
    line-height: 1.75;
}

/* =========================
   BENEFITS
========================= */

.quote-benefits {
    margin-top: 45px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.quote-benefit {
    padding: 25px 0;
    display: grid;
    grid-template-columns: 45px minmax(0, 1fr);
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.quote-benefit > span {
    padding-top: 4px;
    color: var(--adfax-gold);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.quote-benefit strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
}

.quote-benefit p {
    max-width: 480px;
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.57);
    font-size: 0.84rem;
    line-height: 1.62;
}

/* =========================
   DIRECT CONTACT
========================= */

.quote-direct-contact {
    margin-top: 38px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 22px;
}

.quote-direct-contact > span {
    width: 100%;
    color: rgba(255, 255, 255, 0.47);
    font-size: 0.76rem;
    font-weight: 500;
}

.quote-direct-contact a {
    padding-bottom: 5px;
    color: var(--adfax-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.34);
    font-size: 0.85rem;
    font-weight: 600;
    transition:
        color var(--transition),
        border-color var(--transition);
}

.quote-direct-contact a:hover {
    color: var(--adfax-gold);
    border-color: var(--adfax-gold);
}

/* =========================
   FORM PANEL
========================= */

.quote-form-panel {
    padding: 52px;
    color: var(--adfax-dark);
    background: var(--adfax-white);
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.28);
}

.quote-form-heading > span {
    color: var(--adfax-gold-dark);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.quote-form-heading h3 {
    max-width: 620px;
    margin: 15px 0 0;
    font-size: clamp(2rem, 3.4vw, 3.4rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.quote-form-heading p {
    margin: 16px 0 0;
    color: var(--adfax-grey);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* =========================
   FORM
========================= */

.quote-form {
    margin-top: 42px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px 24px;
}

.form-group {
    min-width: 0;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group label:not(.form-consent) {
    display: block;
    margin-bottom: 10px;
    color: var(--adfax-dark);
    font-size: 0.76rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid rgba(18, 18, 18, 0.18);
    border-radius: 0;
    outline: 0;
    color: var(--adfax-dark);
    background: #fafafa;
    font-size: 0.9rem;
    transition:
        border-color var(--transition),
        background-color var(--transition),
        box-shadow var(--transition);
}

.form-group input,
.form-group select {
    min-height: 56px;
    padding: 0 16px;
}

.form-group textarea {
    min-height: 150px;
    padding: 16px;
    resize: vertical;
    line-height: 1.6;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9a9a9a;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--adfax-gold);
    background: var(--adfax-white);
    box-shadow: 0 0 0 3px rgba(209, 156, 42, 0.12);
}

/* =========================
   SELECT
========================= */

.select-wrapper {
    position: relative;
}

.select-wrapper select {
    appearance: none;
    padding-right: 48px;
    cursor: pointer;
}

.select-wrapper svg {
    position: absolute;
    top: 50%;
    right: 17px;
    width: 17px;
    height: 17px;
    fill: none;
    stroke: var(--adfax-grey);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    pointer-events: none;
    transform: translateY(-50%);
}

/* =========================
   CONSENT
========================= */

.form-consent {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 13px;
    cursor: pointer;
}

.form-consent input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.form-consent-box {
    position: relative;
    width: 19px;
    height: 19px;
    flex: 0 0 auto;
    margin-top: 1px;
    border: 1px solid rgba(18, 18, 18, 0.28);
    background: var(--adfax-white);
}

.form-consent input:checked + .form-consent-box {
    border-color: var(--adfax-gold);
    background: var(--adfax-gold);
}

.form-consent input:checked + .form-consent-box::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 6px;
    width: 5px;
    height: 9px;
    border-right: 2px solid var(--adfax-black);
    border-bottom: 2px solid var(--adfax-black);
    transform: rotate(45deg);
}

.form-consent input:focus-visible + .form-consent-box {
    box-shadow: 0 0 0 3px rgba(209, 156, 42, 0.18);
}

.form-consent-copy {
    color: var(--adfax-grey);
    font-size: 0.78rem;
    line-height: 1.55;
}

/* =========================
   SUBMIT BUTTON
========================= */

.quote-submit-button {
    width: 100%;
    min-height: 62px;
    margin-top: 29px;
    color: var(--adfax-black);
    background: var(--adfax-gold);
    cursor: pointer;
}

.quote-submit-button:hover {
    background: var(--adfax-gold-bright);
}

.quote-form-status {
    min-height: 22px;
    margin-top: 14px;
    color: var(--adfax-grey);
    font-size: 0.8rem;
    line-height: 1.5;
}

@media (max-width: 1050px) {

    .quote-layout {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .quote-content {
        position: relative;
        top: auto;
        max-width: 760px;
    }

    .quote-form-panel {
        max-width: 900px;
    }
}

@media (max-width: 700px) {

    .quote-section {
        padding: 105px 0;
    }

    .quote-layout {
        gap: 62px;
    }

    .quote-content {
        margin-inline: auto;
        text-align: center;
    }

    .quote-content .section-eyebrow {
        justify-content: center;
    }

    .quote-content h2 {
        font-size: clamp(3rem, 13vw, 4.2rem);
    }

    .quote-lead {
        margin-inline: auto;
    }

    .quote-benefits {
        max-width: 540px;
        margin-inline: auto;
        text-align: left;
    }

    .quote-direct-contact {
        justify-content: center;
    }

    .quote-form-panel {
        padding: 36px 26px;
    }

    .quote-form-heading {
        text-align: center;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group-full {
        grid-column: auto;
    }
}

@media (max-width: 430px) {

    .quote-content h2 {
        font-size: 2.85rem;
    }

    .quote-benefit {
        grid-template-columns: 36px minmax(0, 1fr);
        gap: 14px;
    }

    .quote-form-panel {
        padding: 30px 20px;
    }

    .quote-form-heading h3 {
        font-size: 2.15rem;
    }

    .form-grid {
        gap: 22px;
    }

    .form-group input,
    .form-group select {
        min-height: 54px;
    }
}

/* =========================================================
   CONTACT ADFAX
========================================================= */

.contact-section {
    position: relative;
    padding: 150px 0;
    background: var(--adfax-white);
    overflow: hidden;
}

.contact-section::before {
    content: "";
    position: absolute;
    top: -190px;
    right: -170px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(209, 156, 42, 0.13);
    border-radius: 50%;
}

.contact-section::after {
    content: "";
    position: absolute;
    left: -160px;
    bottom: -180px;
    width: 400px;
    height: 400px;
    background:
        radial-gradient(
            circle,
            rgba(209, 156, 42, 0.1),
            transparent 70%
        );
}

.contact-section > .container {
    position: relative;
    z-index: 2;
}

/* =========================
   HEADER
========================= */

.contact-header {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    align-items: end;
    gap: clamp(60px, 9vw, 140px);
    margin-bottom: 82px;
}

.contact-heading h2 {
    margin: 0;
    color: var(--adfax-dark);
    font-size: clamp(3.3rem, 5.8vw, 6rem);
    font-weight: 300;
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.contact-heading h2 span {
    display: block;
    color: var(--adfax-gold-dark);
    font-weight: 700;
}

.contact-intro {
    max-width: 500px;
    padding-bottom: 8px;
}

.contact-intro p {
    margin: 0;
    color: var(--adfax-grey);
    font-size: 1rem;
    line-height: 1.75;
}

/* =========================
   MAIN GRID
========================= */

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    align-items: stretch;
    gap: 36px;
}

/* =========================
   DETAILS PANEL
========================= */

.contact-details-panel {
    padding: 48px;
    color: var(--adfax-white);
    background:
        linear-gradient(
            145deg,
            #141414,
            #202020
        );
}

.contact-details-label {
    color: var(--adfax-gold);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.contact-details-top h3 {
    max-width: 520px;
    margin: 17px 0 0;
    font-size: clamp(2.3rem, 3.8vw, 3.8rem);
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.contact-details-top p {
    max-width: 540px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* =========================
   CONTACT ITEMS
========================= */

.contact-details-list {
    margin-top: 43px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-detail {
    padding: 24px 0;
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: var(--adfax-gold);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-detail-icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-detail div:last-child > span {
    display: block;
    margin-bottom: 7px;
    color: var(--adfax-gold);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.contact-detail strong,
.contact-detail a {
    color: var(--adfax-white);
    font-size: 1rem;
    font-weight: 600;
}

.contact-detail a {
    transition: color var(--transition);
}

.contact-detail a:hover {
    color: var(--adfax-gold);
}

.contact-detail p {
    margin: 7px 0 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.81rem;
    line-height: 1.55;
}

/* =========================
   CONTACT ACTIONS
========================= */

.contact-details-actions {
    margin-top: 34px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.contact-button-secondary {
    color: var(--adfax-white);
    border-color: rgba(255, 255, 255, 0.3);
    background: transparent;
}

.contact-button-secondary:hover {
    color: var(--adfax-black);
    border-color: var(--adfax-white);
    background: var(--adfax-white);
}

/* =========================
   MAP
========================= */

.contact-map-panel {
    min-height: 760px;
}

.contact-map-frame {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: inherit;
    overflow: hidden;
    background: #d8d8d8;
}

.contact-map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: inherit;
    border: 0;
    filter:
        grayscale(0.85)
        contrast(0.95)
        saturate(0.7);
}

.contact-map-card {
    position: absolute;
    right: 30px;
    bottom: 30px;
    width: min(340px, calc(100% - 60px));
    padding: 27px;
    color: var(--adfax-white);
    background: rgba(18, 18, 18, 0.94);
    box-shadow: 0 24px 60px rgba(18, 18, 18, 0.28);
    backdrop-filter: blur(14px);
}

.contact-map-card > span {
    color: var(--adfax-gold);
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.contact-map-card strong {
    display: block;
    margin-top: 10px;
    font-size: 1.35rem;
    font-weight: 600;
}

.contact-map-card p {
    margin: 9px 0 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.82rem;
    line-height: 1.55;
}

.contact-map-card a {
    width: max-content;
    margin-top: 22px;
    padding-bottom: 7px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--adfax-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.42);
    font-size: 0.8rem;
    font-weight: 600;
}

.contact-map-card svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform var(--transition);
}

.contact-map-card a:hover {
    color: var(--adfax-gold);
    border-color: var(--adfax-gold);
}

.contact-map-card a:hover svg {
    transform: translateX(5px);
}

@media (max-width: 1050px) {

    .contact-header {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 38px;
    }

    .contact-intro {
        max-width: 700px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-map-panel {
        min-height: 620px;
    }
}

@media (max-width: 700px) {

    .contact-section {
        padding: 105px 0;
    }

    .contact-header {
        margin-bottom: 62px;
        text-align: center;
    }

    .contact-header .section-eyebrow {
        justify-content: center;
    }

    .contact-heading h2 {
        font-size: clamp(3rem, 13vw, 4.2rem);
    }

    .contact-intro {
        margin-inline: auto;
    }

    .contact-intro p {
        text-align: center;
    }

    .contact-details-panel {
        padding: 35px 25px;
    }

    .contact-details-top {
        text-align: center;
    }

    .contact-details-top h3 {
        margin-inline: auto;
    }

    .contact-details-top p {
        margin-inline: auto;
    }

    .contact-details-actions {
        flex-direction: column;
    }

    .contact-details-actions .button {
        width: 100%;
    }

    .contact-map-panel {
        min-height: 520px;
    }

    .contact-map-card {
        right: 18px;
        bottom: 18px;
        width: calc(100% - 36px);
    }
}

@media (max-width: 430px) {

    .contact-heading h2 {
        font-size: 2.85rem;
    }

    .contact-details-panel {
        padding: 30px 20px;
    }

    .contact-details-top h3 {
        font-size: 2.2rem;
    }

    .contact-detail {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 14px;
    }

    .contact-detail-icon {
        width: 40px;
        height: 40px;
    }

    .contact-map-panel {
        min-height: 470px;
    }

    .contact-map-card {
        padding: 22px 20px;
    }
}

/* =========================================================
   ACCESSIBILITY UTILITY
========================================================= */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    white-space: nowrap;
    border: 0;
    clip: rect(0, 0, 0, 0);
}

/* =========================================================
   CORPORATE FOOTER
========================================================= */

.site-footer {
    color: var(--adfax-white);
    background: #0d0d0d;
}

/* =========================
   FOOTER CTA
========================= */

.footer-cta {
    position: relative;
    padding: 88px 0;
    background:
        radial-gradient(
            circle at 88% 20%,
            rgba(209, 156, 42, 0.18),
            transparent 25%
        ),
        var(--adfax-gold);
    overflow: hidden;
}

.footer-cta::before {
    content: "";
    position: absolute;
    top: -170px;
    right: -130px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(18, 18, 18, 0.18);
    border-radius: 50%;
}

.footer-cta::after {
    content: "";
    position: absolute;
    right: 85px;
    bottom: -180px;
    width: 330px;
    height: 330px;
    border: 1px solid rgba(18, 18, 18, 0.13);
    border-radius: 50%;
}

.footer-cta-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(400px, 0.9fr);
    align-items: center;
    gap: clamp(60px, 9vw, 140px);
}

.footer-cta-label {
    color: rgba(18, 18, 18, 0.66);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.footer-cta-content h2 {
    max-width: 760px;
    margin: 17px 0 0;
    color: var(--adfax-black);
    font-size: clamp(2.9rem, 5vw, 5.2rem);
    font-weight: 300;
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.footer-cta-content h2 span {
    display: block;
    font-weight: 700;
}

.footer-cta-content p {
    max-width: 660px;
    margin: 25px 0 0;
    color: rgba(18, 18, 18, 0.72);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* =========================
   NEWSLETTER
========================= */

.footer-newsletter {
    max-width: 580px;
    justify-self: end;
}

.footer-newsletter-field {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    border-bottom: 2px solid var(--adfax-black);
}

.footer-newsletter input {
    min-width: 0;
    min-height: 68px;
    padding: 0 20px 0 0;
    color: var(--adfax-black);
    background: transparent;
    border: 0;
    outline: 0;
    font-size: 1rem;
}

.footer-newsletter input::placeholder {
    color: rgba(18, 18, 18, 0.6);
}

.footer-newsletter button {
    min-height: 68px;
    padding: 0 4px 0 22px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--adfax-black);
    background: transparent;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
}

.footer-newsletter button svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform var(--transition);
}

.footer-newsletter button:hover svg {
    transform: translateX(5px);
}

.footer-newsletter > p {
    margin: 14px 0 0;
    color: rgba(18, 18, 18, 0.62);
    font-size: 0.72rem;
    line-height: 1.5;
}

.footer-newsletter-status {
    min-height: 20px;
    margin-top: 9px;
    color: rgba(18, 18, 18, 0.75);
    font-size: 0.75rem;
}

/* =========================
   MAIN FOOTER
========================= */

.footer-main {
    padding: 92px 0 80px;
    background:
        linear-gradient(
            145deg,
            #0d0d0d,
            #141414
        );
}

.footer-grid {
    display: grid;
    grid-template-columns:
        minmax(280px, 1.45fr)
        minmax(140px, 0.7fr)
        minmax(190px, 1fr)
        minmax(150px, 0.75fr)
        minmax(230px, 1fr);
    gap: clamp(38px, 5vw, 75px);
}

/* =========================
   FOOTER BRAND
========================= */

.footer-brand {
    max-width: 390px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
}

.footer-logo img {
    width: 180px;
    max-height: 72px;
    object-fit: contain;
}

.footer-brand > p {
    margin: 27px 0 0;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.86rem;
    line-height: 1.72;
}

.footer-socials {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.69);
    border: 1px solid rgba(255, 255, 255, 0.14);
    transition:
        color var(--transition),
        border-color var(--transition),
        background-color var(--transition);
}

.footer-socials a:hover {
    color: var(--adfax-black);
    border-color: var(--adfax-gold);
    background: var(--adfax-gold);
}

.footer-socials svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* =========================
   FOOTER COLUMNS
========================= */

.footer-column h3 {
    margin: 0 0 25px;
    color: var(--adfax-white);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.footer-column nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.footer-column nav a {
    color: rgba(255, 255, 255, 0.57);
    font-size: 0.82rem;
    line-height: 1.45;
    transition:
        color var(--transition),
        transform var(--transition);
}

.footer-column nav a:hover {
    color: var(--adfax-gold);
    transform: translateX(4px);
}

/* =========================
   FOOTER CONTACT
========================= */

.footer-contact-column address {
    display: flex;
    flex-direction: column;
    gap: 24px;
    font-style: normal;
}

.footer-contact-item > span {
    display: block;
    margin-bottom: 7px;
    color: var(--adfax-gold);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.footer-contact-item p,
.footer-contact-item a {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.82rem;
    line-height: 1.62;
}

.footer-contact-item a {
    transition: color var(--transition);
}

.footer-contact-item a:hover {
    color: var(--adfax-gold);
}

/* =========================
   FOOTER BOTTOM
========================= */

.footer-bottom {
    background: #090909;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-bottom-inner {
    min-height: 78px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 35px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.72rem;
}

.footer-bottom nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 22px;
}

.footer-bottom nav a {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.7rem;
    transition: color var(--transition);
}

.footer-bottom nav a:hover {
    color: var(--adfax-gold);
}

.back-to-top {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.7rem;
    font-weight: 600;
    white-space: nowrap;
    transition: color var(--transition);
}

.back-to-top svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform var(--transition);
}

.back-to-top:hover {
    color: var(--adfax-gold);
}

.back-to-top:hover svg {
    transform: translateY(-4px);
}

@media (max-width: 1180px) {

    .footer-grid {
        grid-template-columns:
            minmax(280px, 1.4fr)
            repeat(2, minmax(160px, 0.8fr))
            minmax(220px, 1fr);
    }

    .footer-grid .footer-column:nth-child(4) {
        display: none;
    }
}

@media (max-width: 980px) {

    .footer-cta-inner {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .footer-newsletter {
        width: min(100%, 680px);
        max-width: none;
        justify-self: start;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-brand {
        max-width: 520px;
    }

    .footer-bottom-inner {
        padding: 25px 0;
        grid-template-columns: 1fr auto;
    }

    .footer-bottom nav {
        grid-column: 1 / -1;
        grid-row: 2;
    }
}

@media (max-width: 700px) {

    .footer-cta {
        padding: 75px 0;
    }

    .footer-cta-inner {
        text-align: center;
    }

    .footer-cta-content h2 {
        font-size: clamp(2.8rem, 12vw, 4rem);
    }

    .footer-cta-content p {
        margin-inline: auto;
    }

    .footer-newsletter {
        margin-inline: auto;
    }

    .footer-newsletter-field {
        grid-template-columns: 1fr;
        border-bottom: 0;
        gap: 12px;
    }

    .footer-newsletter input {
        min-height: 58px;
        padding: 0 16px;
        border: 1px solid rgba(18, 18, 18, 0.3);
        background: rgba(255, 255, 255, 0.2);
        text-align: center;
    }

    .footer-newsletter button {
        min-height: 58px;
        justify-content: center;
        color: var(--adfax-white);
        background: var(--adfax-black);
    }

    .footer-main {
        padding: 75px 0 65px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-brand {
        max-width: none;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-brand > p {
        max-width: 520px;
        margin-inline: auto;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-column {
        text-align: center;
    }

    .footer-column nav {
        align-items: center;
    }

    .footer-contact-column address {
        align-items: center;
    }

    .footer-bottom-inner {
        min-height: auto;
        padding: 30px 0;
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .footer-bottom nav {
        grid-column: auto;
        grid-row: auto;
        justify-content: center;
    }
}

@media (max-width: 430px) {

    .footer-cta-content h2 {
        font-size: 2.75rem;
    }

    .footer-logo img {
        width: 160px;
    }

    .footer-bottom nav {
        gap: 10px 16px;
    }
}