/*
Theme Name: Motivent
Theme URI: https://darkviolet-locust-788537.hostingersite.com
Author: Motivent Marketing
Author URI: https://darkviolet-locust-788537.hostingersite.com
Description: Motivent Marketing — results-driven agency theme with scroll-driven hero, bento service grids, and animated stats.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: motivent
Tags: marketing, dark, custom-colors, full-width-template
*/

/* ══════════════════════════════════════════
   GLOBAL RESET & BASE
══════════════════════════════════════════ */
:root { --orange: #ff5800; }

* { margin: 0; padding: 0; box-sizing: border-box; }
::selection { background: var(--orange); color: #000; }

body {
    font-family: 'Montserrat', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    cursor: none;
}

/* ── Grain overlay ── */
.grain {
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.04;
    pointer-events: none;
    z-index: 9000;
}

/* ── Custom circular cursor ── */
body { cursor: none; }
#cursor-ring {
    position: fixed;
    top: 0; left: 0;
    width: 22px; height: 22px;
    background: var(--orange);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.2s ease, height 0.2s ease, opacity 0.2s ease;
    mix-blend-mode: normal;
}
#cursor-dot { display: none; }

/* ── Navbar ── */
#navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 32px;
    background: rgba(0,0,0,0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.5s ease;
}

/* Home page: navbar starts hidden, revealed by JS after hero scroll */
.home #navbar {
    transform: translateY(-100%);
    opacity: 0;
}
.home #navbar.nav-visible,
.has-service-intro #navbar.nav-visible {
    transform: translateY(0);
    opacity: 1;
}
/* Navbar starts hidden on service pages (same as homepage) */
.has-service-intro #navbar {
    transform: translateY(-100%);
    opacity: 0;
}

.nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.nav-logo a { display: block; }
.nav-logo img {
    height: 58px;
    width: auto;
    display: block;
}
.nav-cta {
    margin-left: auto;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    background: var(--orange);
    border: 1.5px solid var(--orange);
    padding: 10px 26px;
    border-radius: 100px;
    cursor: none;
    transition: background 0.3s, opacity 0.3s, transform 0.3s;
    white-space: nowrap;
}
.nav-cta:hover {
    opacity: 0.85;
    transform: scale(1.05);
}

/* ── Nav menu (wp_nav_menu) ── */
.nav-menu-wrap {
    /* Left-side flex item — shifted slightly right from the edge */
    margin-right: auto;
    margin-left: 80px;
}
.nav-menu-wrap ul {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
    margin: 0;
    padding: 0;
}
.nav-menu-wrap ul li a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}
.nav-menu-wrap ul li a:hover,
.nav-menu-wrap ul li.current-menu-item a {
    color: var(--orange);
}

/* ── Hamburger button (hidden on desktop) ── */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 510;
}
.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile nav panel ── */
#mobile-nav {
    position: fixed;
    top: 0; right: 0;
    width: min(320px, 85vw);
    height: 100%;
    background: rgba(8,8,8,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255,255,255,0.07);
    z-index: 9100;
    display: flex;
    flex-direction: column;
    padding: 28px 28px 40px;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.23, 1, 0.32, 1);
    overflow-y: auto;
}
#mobile-nav.is-open { transform: translateX(0); }

.mobile-nav-close {
    align-self: flex-end;
    background: none;
    border: none;
    color: rgba(255,255,255,0.55);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    padding: 4px;
    margin-bottom: 20px;
    transition: color 0.2s;
}
.mobile-nav-close:hover { color: var(--orange); }

.mobile-nav-logo { margin-bottom: 32px; }
.mobile-nav-logo img { height: 42px; width: auto; }

/* Mobile nav list */
.mobile-nav-list {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.mobile-nav-list li a {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: color 0.2s;
}
.mobile-nav-list li a:hover,
.mobile-nav-list li.current-menu-item > a { color: var(--orange); }

/* Mobile sub-menu (dropdown children) */
.mobile-nav-list .sub-menu {
    list-style: none;
    margin: 0; padding: 0 0 0 16px;
    display: flex;
    flex-direction: column;
}
.mobile-nav-list .sub-menu li a {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.mobile-nav-list .sub-menu li a:hover { color: var(--orange); }

/* Parent toggle arrow */
.mobile-nav-list .menu-item-has-children > a::after {
    content: ' ›';
    float: right;
    opacity: 0.45;
}

.mobile-nav-cta {
    display: block;
    margin-top: 32px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    background: var(--orange);
    border-radius: 100px;
    padding: 14px 28px;
    text-align: center;
    text-decoration: none;
    transition: opacity 0.3s;
}
.mobile-nav-cta:hover { opacity: 0.85; }

/* Backdrop overlay */
#mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 9090;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
#mobile-nav-overlay.is-open { opacity: 1; pointer-events: auto; }

/* ── Dropdown parent — needs relative positioning ── */
.nav-menu-wrap ul li {
    position: relative;
}

/* ── Caret on items that have children ── */
.nav-menu-wrap ul li.menu-item-has-children > a::after {
    content: ' ▾';
    font-size: 10px;
    opacity: 0.55;
    margin-left: 2px;
    transition: opacity 0.2s;
}
.nav-menu-wrap ul li.menu-item-has-children:hover > a::after {
    opacity: 1;
    color: var(--orange);
}

/* ── Sub-menu panel ──
   top: 100% puts the panel flush under the <li> — no gap means
   the mouse never leaves the hover zone when moving into the panel.
   Visual spacing comes from padding-top on the panel itself.
── */
.nav-menu-wrap ul .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    gap: 0;
    min-width: 230px;
    /* padding-top creates the visual gap without breaking hover */
    padding: 14px 0 8px;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    z-index: 600;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease;
}

/* Small arrow pointing up */
.nav-menu-wrap ul .sub-menu::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid rgba(255,255,255,0.08);
}

/* Show on hover — pointer-events keep the panel alive while cursor
   moves from the trigger link down into the panel items */
.nav-menu-wrap ul li.menu-item-has-children:hover > .sub-menu {
    display: flex;
    opacity: 1;
    pointer-events: auto;
}

/* Sub-menu items */
.nav-menu-wrap ul .sub-menu li {
    width: 100%;
    position: static;
}
.nav-menu-wrap ul .sub-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 11px;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.72);
    white-space: nowrap;
    border-radius: 0;
    transition: color 0.2s, background 0.2s;
}
.nav-menu-wrap ul .sub-menu li a:hover {
    color: var(--orange);
    background: rgba(255,88,0,0.07);
}
/* First / last rounded corners */
.nav-menu-wrap ul .sub-menu li:first-child a { border-radius: 10px 10px 0 0; }
.nav-menu-wrap ul .sub-menu li:last-child  a { border-radius: 0 0 10px 10px; }

/* ── Scroll Reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(55px);
    transition: opacity 0.85s cubic-bezier(0.23, 1, 0.32, 1),
                transform 0.85s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.reveal.delay-100 { transition-delay: 0.1s; }
.reveal.delay-200 { transition-delay: 0.2s; }
.reveal.delay-300 { transition-delay: 0.3s; }
.reveal.delay-400 { transition-delay: 0.4s; }

/* ── Strike-through text effect ── */
.strike {
    position: relative;
    display: inline-block;
}
.strike::after {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    width: 0; height: 7px;
    background: var(--orange);
    transition: width 1s cubic-bezier(0.23, 1, 0.32, 1);
    transition-delay: 0.4s;
}
.reveal.active .strike::after { width: 100%; }

/* ══════════════════════════════════════════
   HOME PAGE — HERO SCROLL STAGE
══════════════════════════════════════════ */
#hero-stage {
    position: relative;
    height: 500vh;
    height: 500svh;
    background: #000;
}
#hero-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    width: 100%;
    overflow: hidden;
}

.hero-layer {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

#symbol-wrap { z-index: 10; }
#symbol-wrap img {
    width: min(38vw, 300px);
    height: auto;
    display: block;
    filter: drop-shadow(0 0 50px rgba(255,88,0,0.2));
    will-change: transform, opacity;
}

#orange-bg {
    z-index: 15;
    background: var(--orange);
    opacity: 0;
    transition: none;
}

#statement-layer {
    z-index: 20;
    opacity: 0;
    flex-direction: column;
    text-align: center;
    padding: 0 6vw;
}
#statement-layer h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(56px, 10.5vw, 140px);
    line-height: 0.88;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: #fff;
    will-change: opacity, filter, transform;
}

#black-bg {
    z-index: 30;
    background: #000;
    opacity: 0;
    clip-path: circle(0vmax at 50% 50%);
}

#video-layer {
    z-index: 40;
    opacity: 0;
}
#video-layer video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65);
    will-change: transform;
}
#video-layer .vid-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(0,0,0,0.45) 0%,
        rgba(0,0,0,0.1) 50%,
        rgba(0,0,0,0.55) 100%
    );
}

#scroll-arrow {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.6s;
    pointer-events: none;
}
#scroll-arrow.visible { opacity: 1; }
.arrow-chevron { animation: chevronBounce 1.8s ease-in-out infinite; }
.arrow-chevron svg {
    width: 36px; height: 36px;
    color: #fff; display: block;
}
@keyframes chevronBounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(8px); }
}

/* ══════════════════════════════════════════
   HOME — Section 2: Statement
══════════════════════════════════════════ */
.stmt-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(60px, 13vw, 175px);
    line-height: 0.88;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.stmt-line {
    display: block;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1),
                transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.stmt-line.revealed { opacity: 1; transform: translateY(0); }
.stmt-line:nth-child(2) { transition-delay: 0.12s; }
.stmt-line:nth-child(3) { transition-delay: 0.24s; }
.stmt-outline {
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    -webkit-text-stroke: 5px var(--orange);
    paint-order: stroke fill;
    letter-spacing: 0.05em;
}
.stmt-white  { color: #fff; }
.stmt-orange { color: var(--orange); }

/* Service pages override stmt-heading font size */
.page #section-statement .stmt-heading,
.single #section-statement .stmt-heading {
    font-size: clamp(50px, 10vw, 140px);
    line-height: 0.9;
    letter-spacing: -0.025em;
}

/* ══════════════════════════════════════════
   HOME — Section 3: About + Media Grid
══════════════════════════════════════════ */
#section-about { background: #000; overflow: hidden; }

.about-top {
    position: relative;
    background-color: var(--orange);
    padding: 68px 40px 280px;
    overflow: visible;
    z-index: 0;
}
.about-top .pattern-overlay {
    position: absolute;
    inset: 0;
    background-image: url('https://darkviolet-locust-788537.hostingersite.com/wp-content/uploads/2026/05/Pattern.png');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    opacity: 0.55;
    pointer-events: none;
    z-index: 0;
}
.about-para {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: clamp(13px, 1.2vw, 16px);
    line-height: 1.8;
    color: #fff;
    text-align: center;
}

.about-bottom { position: inherit; background: #000; z-index: 2; padding-bottom: 29px; }
.media-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    margin: -240px 36px 0;
}
.media-col {
    aspect-ratio: 9 / 16;
    overflow: hidden;
    position: relative;
    border-radius: 4px;
}
.media-col img,
.media-col video {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}
.media-col:hover img,
.media-col:hover video { transform: scale(1.06); }
.media-col::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,88,0,0);
    transition: background 0.4s ease;
    pointer-events: none;
}
.media-col:hover::after { background: rgba(255,88,0,0.12); }

/* ── Logo Marquee ── */
#section-logos {
    background: #000;
    padding: 24px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.07);
}
.logo-track {
    display: flex;
    width: max-content;
    animation: logoScroll 30s linear infinite;
    align-items: center;
}
.logo-item {
    flex: 0 0 calc(100vw / 8);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
}
.logo-item img {
    height: 42px;
    max-width: 160px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.5;
    transition: opacity 0.3s, transform 0.3s;
}
.logo-item img:hover { opacity: 1; transform: scale(1.08); }
@keyframes logoScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════
   HOME — Section 4: Stats + Services
══════════════════════════════════════════ */
#section-stats-services { background: #000; }
.ss-wrapper {
    display: grid;
    grid-template-columns: 2.5fr 2.5fr 140px;
    min-height: 900px;
}
.stats-column {
    display: grid;
    grid-template-rows: repeat(4, 1fr);
    gap: 3px;
}
.stat-box {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 28px;
    background: #0a0a0a;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.stat-box:hover { transform: scale(1.02); z-index: 2; }
.stat-box.orange-bg { background: #ff5800; }
.stat-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 1;
}
.stat-bg-1 { background-image: url('https://darkviolet-locust-788537.hostingersite.com/wp-content/uploads/2026/05/2Motivent-Marketing-FINAL-OPTIONS.png'); background-size: 137%; background-repeat: no-repeat; opacity: 0.5; }
.stat-bg-2 { background-image: url('https://darkviolet-locust-788537.hostingersite.com/wp-content/uploads/2026/05/3Motivent-Marketing-FINAL-OPTIONS.png'); background-size: 165%; background-repeat: no-repeat; opacity: 0.15; }
.stat-bg-3 { background-image: url('https://darkviolet-locust-788537.hostingersite.com/wp-content/uploads/2026/05/2Motivent-Marketing-FINAL-OPTIONS.png'); background-size: 154%; background-repeat: no-repeat; opacity: 0.5; }
.stat-bg-4 { background-image: url('https://darkviolet-locust-788537.hostingersite.com/wp-content/uploads/2026/05/3Motivent-Marketing-FINAL-OPTIONS.png'); background-size: 64%;  background-repeat: no-repeat; opacity: 0.15; }
.stat-num {
    position: relative;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(38px, 4.5vw, 68px);
    line-height: 1;
    color: #fff;
}
.stat-num.orange { color: var(--orange); }
.stat-label {
    position: relative;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.45);
    margin-top: 7px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.stat-box.orange-bg .stat-num   { color: #000; }
.stat-box.orange-bg .stat-label { color: rgba(0,0,0,0.6); }

.services-column { background: #fff; }
.services-heading-mobile { display: none; }
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 30px;
    height: 100%;
}
.services-grid img {
    width: 100%;
    height: 50px;
    display: block;
    object-fit: contain;
    object-position: left center;
    padding: 4px 55px;
    background: #fff;
    transition: transform 0.3s ease, filter 0.3s ease;
}
.services-grid img:hover { transform: translateX(6px); filter: none; }

.our-services-label {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}
.our-services-label img {
    transform: rotate(0deg);
    width: 290px; height: 600px;
    object-fit: contain;
}

/* ══════════════════════════════════════════
   SERVICE PAGES — EDITORIAL HERO
══════════════════════════════════════════ */
#hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    padding: 130px 40px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #000;
}
#hero-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 30%, transparent 80%);
    opacity: 0.5;
}
#hero-glow {
    position: absolute;
    top: 20%; left: 50%;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(255,88,0,0.22) 0%, transparent 65%);
    transform: translate(-50%, -10%);
    pointer-events: none;
    filter: blur(20px);
}
.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}
.hero-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeIn 1s cubic-bezier(0.23, 1, 0.32, 1) 0.15s forwards;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    padding-bottom: 18px;
}
.hero-meta .left,
.hero-meta .right {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
}
.hero-meta .num { color: var(--orange); }

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(58px, 13vw, 200px);
    line-height: 0.82;
    text-transform: uppercase;
    letter-spacing: -0.025em;
    color: #fff;
    margin: 12px 0 0;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .word {
    display: block;
    transform: translateY(110%);
    animation: titleSlideUp 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.hero-title .l1 .word { animation-delay: 0.35s; }
.hero-title .dot { color: var(--orange); }
@keyframes titleSlideUp { to { transform: translateY(0); } }
@keyframes heroFadeIn   { to { opacity: 1; transform: translateY(0); } }

.hero-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 48px;
    align-items: end;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeIn 1s cubic-bezier(0.23, 1, 0.32, 1) 0.8s forwards;
}
.hero-sub {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: clamp(13px, 1.05vw, 16px);
    line-height: 1.75;
    color: rgba(255,255,255,0.72);
    max-width: 520px;
}
.hero-actions {
    display: flex;
    justify-content: flex-end;
    align-items: end;
    gap: 14px;
    flex-wrap: wrap;
}
.hero-btn-primary,
.hero-btn-ghost {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 15px 30px;
    border-radius: 100px;
    cursor: none;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s, background 0.3s, color 0.3s, border-color 0.3s;
}
.hero-btn-primary {
    background: var(--orange);
    border: 2px solid var(--orange);
    color: #fff;
}
.hero-btn-primary:hover { transform: scale(1.05); opacity: 0.92; }
.hero-btn-ghost {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.4);
    color: #fff;
}
.hero-btn-ghost:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: scale(1.05);
}

/* ══════════════════════════════════════════
   SERVICE PAGES — INTRO OVERLAY
   Fixed overlay so page content is always
   behind it — no black gap, no extra scroll.
══════════════════════════════════════════ */
#si-stage {
    position: fixed;
    inset: 0;
    z-index: 200;
    overflow: hidden;
    isolation: isolate;
    pointer-events: none;   /* scroll passes through to page content */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Orange fill — sits behind text */
#si-orange {
    position: absolute;
    inset: 0;
    background: var(--orange);
    z-index: 1;
    will-change: opacity;
}

/* Service name — in-flow flex child, always on top of orange */
#si-text {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 6vw;
    will-change: transform, opacity;
}
#si-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(56px, 10.5vw, 140px);
    line-height: 0.88;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: #fff;
    margin: 0;
}
#si-text h1 .si-dot { color: #000; }

/* Scroll hint */
#si-hint {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.5);
    pointer-events: none;
    animation: siHintBounce 1.6s ease-in-out infinite;
}
#si-hint svg { width: 18px; height: 18px; stroke: rgba(0,0,0,0.45); }
@keyframes siHintBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(7px); }
}

/* ══════════════════════════════════════════
   SERVICE PAGES — BENTO GRID
══════════════════════════════════════════ */
#section-services {
    background: #000;
    padding: 100px 0;
}
.services-header {
    max-width: 1400px;
    margin: 0 auto 56px;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
}
.services-header .label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 16px;
}
.services-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(36px, 4.5vw, 64px);
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: #fff;
}
.services-header h2 .orange { color: var(--orange); }
.services-header .intro {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.65);
    max-width: 520px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 12px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}
.bento-card {
    position: relative;
    background: #0c0c0c;
    border: none;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 220px;
    overflow: hidden;
    transition: background 0.4s ease, transform 0.4s ease;
}
.bento-card:hover {
    background: #111;
    transform: translateY(-4px);
}
.bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 0%, rgba(255,88,0,0.06) 0%, transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.bento-card:hover::before { opacity: 1; }

.bento-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--orange);
}
.bento-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(24px, 2.4vw, 34px);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: #fff;
    margin: 14px 0 16px;
}
.bento-copy {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.75;
    color: rgba(255,255,255,0.62);
    position: relative;
    z-index: 1;
}
.bento-arrow {
    margin-top: auto;
    align-self: flex-end;
    flex-shrink: 0;
    width: 38px; height: 38px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.bento-card:hover .bento-arrow {
    background: var(--orange);
    border-color: var(--orange);
    transform: rotate(-45deg);
}
.bento-arrow svg { width: 14px; height: 14px; color: #fff; }

/* Featured card */
.bento-card.feat {
    min-height: 460px;
    background:
        linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.85) 100%),
        url('https://darkviolet-locust-788537.hostingersite.com/wp-content/uploads/2026/05/P_1-scaled.jpg') center/cover;
}
.bento-card.feat:hover {
    background:
        linear-gradient(135deg, rgba(255,88,0,0.35) 0%, rgba(0,0,0,0.85) 100%),
        url('https://darkviolet-locust-788537.hostingersite.com/wp-content/uploads/2026/05/P_1-scaled.jpg') center/cover;
}
.bento-card.feat .bento-title { font-size: clamp(34px, 3vw, 46px); }
.bento-card.feat .bento-copy  { color: rgba(255,255,255,0.85); max-width: 520px; }
.bento-card.feat .feat-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #fff;
    background: var(--orange);
    padding: 6px 14px;
    border-radius: 100px;
    margin-top: 18px;
    width: fit-content;
}

/* Image bg cards */
.bento-card.has-img {
    background-color: transparent;
    background-image:
        linear-gradient(135deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.88) 100%),
        var(--card-img);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 0.5s ease, background-color 0.4s ease, border-color 0.4s ease, transform 0.4s ease;
}
.bento-card.has-img:hover {
    background-image:
        linear-gradient(135deg, rgba(255,88,0,0.22) 0%, rgba(0,0,0,0.82) 100%),
        var(--card-img);
}
.bento-card.has-img .bento-copy { color: rgba(255,255,255,0.75); }

/* Banner card */
.bento-card.banner {
    min-height: 220px;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    padding: 40px 50px;
}
.bento-card.banner .banner-left { flex: 0 0 auto; min-width: 280px; }
.bento-card.banner .banner-right { flex: 1; max-width: 580px; }
.bento-card.banner .bento-title { margin: 12px 0 0; }
.bento-card.banner .bento-arrow { position: static; flex-shrink: 0; }

/* Bento layout positions */
.b-dev      { grid-column: span 7; grid-row: span 2; }
.b-design   { grid-column: span 5; }
.b-ecom     { grid-column: span 5; }
.b-host     { grid-column: span 4; }
.b-email    { grid-column: span 4; }
.b-seo      { grid-column: span 4; }
.b-analytics{ grid-column: span 12; }

/* ══════════════════════════════════════════
   SERVICE PAGES — PROCESS TIMELINE
══════════════════════════════════════════ */
#section-process {
    background: #050505;
    padding: 110px 40px;
}
.process-inner { max-width: 1300px; margin: 0 auto; }
.process-header { text-align: center; margin-bottom: 80px; }
.process-header .label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.35em; text-transform: uppercase;
    color: var(--orange); margin-bottom: 14px;
}
.process-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(34px, 4.2vw, 56px);
    line-height: 1; text-transform: uppercase;
    letter-spacing: -0.01em; color: #fff;
}
.process-header h2 .orange { color: var(--orange); }
.process-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.process-track::before {
    content: '';
    position: absolute;
    top: 22px; left: 12%; right: 12%; height: 1px;
    background: linear-gradient(to right, transparent 0%, rgba(255,88,0,0.6) 15%, rgba(255,88,0,0.6) 85%, transparent 100%);
}
.process-step { position: relative; text-align: center; padding: 0 8px; }
.process-dot {
    position: relative; z-index: 2;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: #050505;
    border: 2px solid var(--orange);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 28px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900; font-size: 18px; color: var(--orange);
    transition: background 0.4s ease, color 0.4s ease, transform 0.4s ease;
}
.process-step:hover .process-dot {
    background: var(--orange); color: #fff; transform: scale(1.15);
}
.process-step h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(20px, 1.8vw, 26px);
    line-height: 1; text-transform: uppercase;
    color: #fff; margin-bottom: 14px;
}
.process-step p {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px; font-weight: 400; line-height: 1.7;
    color: rgba(255,255,255,0.55);
    max-width: 240px; margin: 0 auto;
}

/* ══════════════════════════════════════════
   SERVICE PAGES — STATS STRIP
══════════════════════════════════════════ */
#section-stats { background: #000; }
.stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
}
/* Service-page stat boxes (horizontal strip) */
.stats-strip .stat-box { padding: 56px 28px; }
.stats-strip .stat-bg-1 { opacity: 0.5; background-size: cover; background-position: center; }
.stats-strip .stat-bg-2 { opacity: 0.15; background-size: cover; background-position: center; }
.stats-strip .stat-bg-3 { opacity: 0.5; background-size: cover; background-position: center; }
.stats-strip .stat-bg-4 { opacity: 0.15; background-size: cover; background-position: center; }
.stats-strip .stat-num {
    font-size: clamp(32px, 3.8vw, 56px);
}
.stats-strip .stat-label { color: rgba(255,255,255,0.55); }

/* ══════════════════════════════════════════
   SHARED — Tagline Banner
══════════════════════════════════════════ */
#section-tagline {
    position: relative;
    overflow: hidden;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#tagline-video {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; z-index: 0;
}
.tagline-content {
    position: relative; z-index: 2;
    display: flex; flex-direction: column;
    align-items: center; gap: 14px;
}
.tagline-logo {
    height: 234px; width: auto;
    object-fit: contain; display: block;
}

/* ══════════════════════════════════════════
   SHARED — CTA "Let's Build Your System"
══════════════════════════════════════════ */
#section-cta-build {
    background: #000;
    padding: 80px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
#section-cta-build::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255,88,0,0.12) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 1.2s ease;
}
#section-cta-build.glow-active::before { opacity: 1; }

.build-heading {
    display: flex; flex-direction: column;
    align-items: center; text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(60px, 10vw, 140px);
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}
/* Service pages use slightly smaller CTA heading */
.page .build-heading,
.single .build-heading {
    font-size: clamp(46px, 8vw, 110px);
    letter-spacing: -0.025em;
}
.build-solid  { color: #fff; }
.build-outline {
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    -webkit-text-stroke: 5px var(--orange);
    paint-order: stroke fill;
    letter-spacing: 0.05em;
}

/* ══════════════════════════════════════════
   SHARED — Contact Form
══════════════════════════════════════════ */
#section-contact {
    background: #000;
    padding: 100px 60px;
}
.contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.contact-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(42px, 5.5vw, 72px);
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.ch-white  { color: #fff; }
.ch-orange { color: var(--orange); }
.contact-para {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px; font-weight: 400;
    color: rgba(255,255,255,0.6);
    line-height: 1.75; margin-bottom: 32px;
}
.contact-subhead {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px; font-weight: 700;
    color: #fff; margin-bottom: 16px;
}
.contact-list {
    list-style: none;
    display: flex; flex-direction: column; gap: 12px;
}
.contact-list li {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px; font-weight: 500;
    color: rgba(255,255,255,0.75);
    display: flex; align-items: center; gap: 10px;
    opacity: 0; transform: translateX(-20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.contact-list li.item-revealed { opacity: 1; transform: translateX(0); }
.check-icon {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 22px; height: 22px; min-width: 22px;
    background: var(--orange); color: #fff;
    border-radius: 50%;
    font-size: 12px; font-weight: 900;
}
.contact-form { display: flex; flex-direction: column; gap: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-right {
    background: #F2F4F8;
    border-radius: 12px;
    padding: 40px;
}
.contact-form input:not([type="checkbox"]),
.contact-form select {
    width: 100%;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 6px;
    padding: 14px 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px; color: #1a1a1a;
    outline: none;
    transition: border-color 0.3s, background 0.3s;
    appearance: none; -webkit-appearance: none;
}
.contact-form input::placeholder { color: rgba(0,0,0,0.35); }
.contact-form select { color: rgba(0,0,0,0.45); cursor: pointer; }
.contact-form select option { background: #fff; color: #1a1a1a; }
.contact-form input:focus,
.contact-form select:focus { border-color: var(--orange); background: #fff; }
.form-select-wrap { position: relative; }
.form-select-wrap select { padding-right: 40px; }
.select-arrow {
    position: absolute;
    right: 14px; top: 50%;
    transform: translateY(-50%);
    color: rgba(0,0,0,0.4); font-size: 18px;
    pointer-events: none;
}
.sms-consent {
    display: flex; align-items: flex-start; gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px; color: rgba(0,0,0,0.6);
    line-height: 1.6;
}
.sms-consent input[type="checkbox"] {
    width: 15px; min-width: 15px; height: 15px;
    margin-top: 2px; accent-color: var(--orange);
    cursor: pointer; border: none; background: none;
}
.sms-consent a { color: var(--orange); text-decoration: underline; }
.form-submit {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; font-size: 13px;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--orange);
    background: transparent;
    border: 2px solid var(--orange);
    border-radius: 100px;
    padding: 13px 36px;
    cursor: none;
    transition: background 0.3s, color 0.3s, transform 0.3s;
    margin-top: 8px;
}
.form-submit:hover {
    background: var(--orange); color: #fff; transform: scale(1.04);
}

/* ══════════════════════════════════════════
   Privacy Policy Page
══════════════════════════════════════════ */
#section-policy-hero {
    background: #000;
    padding: 160px 40px 100px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.policy-hero-inner {
    max-width: 860px;
    margin: 0 auto;
}
.policy-hero-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 24px;
}
.policy-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(52px, 9vw, 120px);
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0 0 32px;
}
.policy-hero-title span { color: var(--orange); }
.policy-hero-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75;
    color: rgba(255,255,255,0.55);
    max-width: 580px;
    margin: 0;
}
#section-policy {
    background: #0a0a0a;
    padding: 80px 40px 120px;
}
.policy-inner {
    max-width: 860px;
    margin: 0 auto;
}
.policy-updated {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
    margin: 0 0 56px;
}
.policy-block {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.policy-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.policy-block h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fff;
    margin: 0 0 18px;
}
.policy-block p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255,255,255,0.65);
    margin: 0 0 14px;
}
.policy-block p:last-child { margin-bottom: 0; }
.policy-block ul {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
}
.policy-block ul li {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255,255,255,0.65);
    padding-left: 20px;
    position: relative;
    margin-bottom: 6px;
}
.policy-block ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 700;
}
.policy-block a {
    color: var(--orange);
    text-decoration: none;
    transition: opacity 0.2s;
}
.policy-block a:hover { opacity: 0.75; }

/* ══════════════════════════════════════════
   SHARED — Footer
══════════════════════════════════════════ */
#site-footer {
    background: #0a0a0a;
    border-top: 1px solid rgba(255,255,255,0.07);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
}
.footer-copy {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px; font-weight: 400;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
}
.footer-copy a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-copy a:hover { color: var(--orange); }
.footer-logo {
    height: 44px; width: auto;
    object-fit: contain; display: block;
}

/* ── Stat counter animation ── */
.stat-num[data-target] { transition: none; }

/* ══════════════════════════════════════════
   TOUCH DEVICES
══════════════════════════════════════════ */
@media (pointer: coarse) {
    body { cursor: auto; }
    #cursor-ring, #cursor-dot { display: none; }
    .nav-cta, .form-submit,
    .hero-btn-primary, .hero-btn-ghost { cursor: pointer; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — TABLET (max 1024px)
══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .nav-logo img { height: 46px; }
    .nav-cta { font-size: 11px; padding: 9px 20px; }

    /* Home: About, Logos */
    .about-top { padding: 56px 32px 240px; }
    .media-grid { height: 400px; margin: -200px 24px 0; }
    .logo-item { flex: 0 0 calc(100vw / 5); }

    /* Home: Stats + Services */
    .ss-wrapper { grid-template-columns: 1fr 1fr 100px; }
    .services-grid img { padding: 4px 28px; }
    .our-services-label img { width: 200px; }
    .stat-bg-1,.stat-bg-2,.stat-bg-3,.stat-bg-4 {
        background-size: cover !important;
        background-position: center center !important;
    }

    /* Service: Bento */
    .bento-grid { grid-template-columns: repeat(6, 1fr); }
    .b-dev      { grid-column: span 6; grid-row: span 1; }
    .b-dev.feat { min-height: 420px; }
    .b-design   { grid-column: span 6; }
    .b-ecom     { grid-column: span 6; }
    .b-host     { grid-column: span 3; }
    .b-email    { grid-column: span 3; }
    .b-seo      { grid-column: span 6; }
    .b-analytics{ grid-column: span 6; }
    .bento-card.banner { flex-direction: column; align-items: flex-start; gap: 20px; }
    .bento-card.banner .banner-left { min-width: 0; }
    .bento-card.banner .bento-arrow { align-self: flex-end; }

    /* Service: Stats strip */
    .stats-strip { grid-template-columns: repeat(2, 1fr); }

    /* Service: Process */
    .process-track { grid-template-columns: repeat(2, 1fr); gap: 56px 24px; }
    .process-track::before { display: none; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — MOBILE (max 768px)
══════════════════════════════════════════ */
@media (max-width: 768px) {
    #navbar { padding: 14px 20px; }
    .nav-logo img { height: 36px; }
    .nav-cta { display: none; }            /* hide desktop CTA on mobile */
    .nav-menu-wrap { display: none; }      /* hide desktop menu on mobile */
    .nav-hamburger { display: flex; }      /* show hamburger on mobile   */

    /* Home hero */
    #hero-stage { height: 250vh; height: 250svh; height: 250dvh; }
    #symbol-wrap img { width: min(58vw, 340px); }
    #statement-layer h1 { font-size: clamp(28px, 8vw, 60px); padding: 0 8vw; }

    /* Home: Section 2 */
    #section-statement { padding: 72px 24px !important; }
    .stmt-heading { font-size: clamp(42px, 12vw, 90px); }
    .stmt-outline { -webkit-text-stroke-width: 3px; }

    /* Home: About */
    .about-top { padding: 48px 20px 180px; }
    .about-para { font-size: 14px; line-height: 1.7; }
    .media-grid {
        grid-template-columns: repeat(2, 1fr);
        height: auto; gap: 4px; margin: -120px 16px 0;
    }
    .media-col { aspect-ratio: unset; height: 260px; }

    /* Home: Logos */
    .logo-item { flex: 0 0 calc(100vw / 4); }
    .logo-item img { height: 22px; max-width: 90px; }
    #section-logos { padding: 20px 0; }

    /* Home: Stats + Services */
    .ss-wrapper { grid-template-columns: 1fr; min-height: unset; }
    .stats-column { order: 1; grid-template-rows: unset; grid-template-columns: repeat(2, 1fr); gap: 3px; }
    .stat-box { padding: 40px 16px; min-height: 220px; }
    .stat-num { font-size: clamp(32px, 8vw, 52px); }
    .stat-bg-1,.stat-bg-2,.stat-bg-3,.stat-bg-4 {
        background-size: cover !important;
        background-position: center center !important;
    }
    .our-services-label { display: none; }
    .services-column { order: 2; }
    .services-heading-mobile {
        display: block;
        font-family: 'Montserrat', sans-serif;
        font-weight: 900; font-size: clamp(32px, 9vw, 56px);
        text-transform: uppercase; color: #000;
        text-align: center; letter-spacing: -0.01em;
        padding: 28px 16px 4px;
    }
    .services-grid { grid-template-columns: repeat(2, 1fr); column-gap: 8px; row-gap: 32px; height: auto; padding: 12px 0 32px; }
    .services-grid img { height: 44px; padding: 4px 20px; object-position: center center; }

    /* Service: Hero */
    #hero { padding: 110px 22px 60px; min-height: auto; }
    .hero-meta { margin-bottom: 28px; padding-bottom: 12px; flex-wrap: wrap; gap: 8px; }
    .hero-meta .left, .hero-meta .right { font-size: 10px; letter-spacing: 0.25em; }
    .hero-title { font-size: clamp(44px, 14vw, 92px); }
    .hero-bottom { grid-template-columns: 1fr; gap: 28px; margin-top: 32px; }
    .hero-actions { justify-content: flex-start; }
    .hero-btn-primary, .hero-btn-ghost { padding: 13px 24px; font-size: 11px; }

    /* Service: Bento */
    #section-services { padding: 72px 0; }
    .services-header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; padding: 0 24px; }
    .services-header .intro { max-width: none; }
    .bento-grid { grid-template-columns: 1fr; gap: 10px; padding: 0 18px; }
    .b-dev,.b-design,.b-ecom,.b-host,.b-email,.b-seo,.b-analytics { grid-column: span 1; grid-row: span 1; }
    .bento-card { padding: 28px; min-height: 230px; }
    .bento-card.feat { min-height: 340px; padding: 28px; }
    .bento-card.banner { padding: 28px; gap: 16px; }
    .bento-title { font-size: clamp(22px, 6vw, 30px); }
    .bento-card.feat .bento-title { font-size: clamp(28px, 7vw, 38px); }

    /* Service: Process */
    #section-process { padding: 72px 24px; }
    .process-header { margin-bottom: 48px; }
    .process-track { grid-template-columns: 1fr; gap: 36px; }
    .process-track::before { display: none; }

    /* Service: Stats strip */
    .stats-strip { grid-template-columns: repeat(2, 1fr); }
    .stats-strip .stat-box { padding: 40px 16px; }

    /* Tagline */
    #section-tagline { min-height: 320px; }
    .tagline-logo { height: 160px; }

    /* CTA */
    #section-cta-build { padding: 60px 24px; }
    .build-heading { font-size: clamp(40px, 11vw, 100px); }
    .build-outline { -webkit-text-stroke-width: 3.5px; }

    /* Contact */
    #section-contact { padding: 72px 24px; }
    .contact-inner { grid-template-columns: 1fr; gap: 40px; }
    .form-row { grid-template-columns: 1fr; }

    /* Footer */
    #site-footer { flex-direction: column-reverse; gap: 16px; text-align: center; padding: 24px 20px; }
    .footer-logo { height: 36px; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (max 480px)
══════════════════════════════════════════ */
@media (max-width: 480px) {
    .nav-cta { display: none; }
    .nav-logo { position: static; transform: none; margin: 0 auto; }
    #navbar { justify-content: center; }
    .nav-logo img { height: 32px; }

    /* Home hero */
    #symbol-wrap img { width: 72vw; }
    #statement-layer h1 { font-size: clamp(26px, 8.5vw, 44px); padding: 0 6vw; }
    #section-statement { padding: 60px 16px !important; }
    .stmt-heading { font-size: clamp(36px, 13vw, 70px); }

    /* Home: About */
    .about-top { padding: 40px 16px 160px; }
    .about-para { font-size: 13px; }
    .media-grid { grid-template-columns: repeat(2, 1fr); margin: -100px 10px 0; gap: 3px; }
    .media-col { height: 200px; }

    /* Logos */
    .logo-item { flex: 0 0 calc(100vw / 3); }
    .logo-item img { height: 20px; max-width: 80px; }

    /* Home: Stats */
    .stats-column { grid-template-columns: 1fr 1fr; }
    .stat-box { padding: 32px 12px; min-height: 190px; }
    .services-heading-mobile { font-size: clamp(28px, 11vw, 48px); padding: 24px 12px 4px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid img { height: 40px; padding: 4px 14px; object-position: center center; }

    /* Service: Hero */
    .hero-title { font-size: clamp(36px, 12vw, 66px); }

    /* Bento */
    .bento-card { padding: 24px; }
    .bento-title { font-size: clamp(20px, 6vw, 28px); }

    /* Tagline */
    #section-tagline { min-height: 260px; }
    .tagline-logo { height: 120px; }

    /* CTA */
    #section-cta-build { padding: 56px 16px; }
    .build-outline { -webkit-text-stroke-width: 2.5px; }

    /* Contact */
    #section-contact { padding: 56px 16px; }
    .contact-heading { font-size: clamp(28px, 8vw, 44px); }
    .contact-right { padding: 28px 20px; border-radius: 8px; }

    /* Footer */
    #site-footer { padding: 20px 16px; gap: 12px; }
    .footer-copy { font-size: 10px; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — EXTRA SMALL (max 360px)
══════════════════════════════════════════ */
@media (max-width: 360px) {
    #statement-layer h1 { font-size: clamp(22px, 8vw, 36px); }
    .stmt-heading { font-size: clamp(32px, 14vw, 60px); }
    .build-heading { font-size: clamp(28px, 13vw, 55px); }
    .contact-heading { font-size: clamp(24px, 8vw, 40px); }
    .stat-num { font-size: clamp(26px, 8vw, 40px); }
    .media-col { height: 170px; }
    .media-grid { margin: -80px 8px 0; }
    .about-top { padding: 36px 14px 140px; }
    .tagline-logo { height: 90px; }
}
