 *,
 *::before,
 *::after {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 :root {
     --black: #000000;
     --g100: #e6e6e6;
     --g200: #cccccc;
     --g300: #aaaaaa;
     --g400: #888888;
     --g500: #555555;
     --g600: #3a3a3a;
     --g700: #2a2a2a;
     --g800: #191919;
     --g900: #0c0c0c;
     --accent: #c96a00;
     --fh: 'Rajdhani', sans-serif;
     --fm: 'Space Mono', monospace;
     --nav-h: 72px;
 }

 html {
     scroll-behavior: smooth;
     background: var(--black);
 }

 body {
     background: var(--black);
     color: var(--g100);
     font-family: var(--fh);
     overflow-x: hidden;
 }

 /* ─── CONTAINER ──────────────────────────────────────────── */
 .container {
     max-width: 1600px;
     margin: 0 auto;
     padding: 0 64px;
     width: 100%;
 }

 /* ─── NAVIGATION ──────────────────────────────────────────── */
 .site-nav {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     z-index: 100;
     height: var(--nav-h);
     background: linear-gradient(to bottom, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0) 100%);
 }

 .site-nav .container {
     height: 100%;
     display: flex;
     align-items: center;
     justify-content: space-between;
 }

 .nav-logo {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     text-decoration: none;
     transition: opacity 0.2s;
 }

 .nav-logo-mark {
     height: 30px;
     width: auto;
     display: block;
 }

 .nav-logo-text {
     font-family: var(--fh);
     font-size: 18px;
     font-weight: 700;
     letter-spacing: 0.18em;
     text-transform: uppercase;
     color: var(--g100);
 }

 .nav-logo:hover {
     opacity: 0.85;
 }

 .nav-links {
     list-style: none;
     display: flex;
     gap: 40px;
     align-items: center;
 }

 .nav-links a {
     font-family: var(--fm);
     font-size: 11px;
     letter-spacing: 0.14em;
     text-transform: uppercase;
     color: var(--g400);
     text-decoration: none;
     transition: color 0.2s;
     position: relative;
 }

 .nav-links a::after {
     content: '';
     position: absolute;
     left: 0;
     bottom: -2px;
     width: 0;
     height: 1px;
     background: var(--g400);
     transition: width 0.25s ease;
 }

 .nav-links a:hover {
     color: var(--g100);
 }

 .nav-links a:hover::after {
     width: 100%;
 }

 /* ─── HAMBURGER ───────────────────────────────────────────── */
 .nav-hamburger {
     display: none;
     flex-direction: column;
     justify-content: center;
     gap: 5px;
     background: none;
     border: none;
     cursor: pointer;
     padding: 8px;
     z-index: 102;
 }

 .nav-hamburger span {
     display: block;
     width: 22px;
     height: 1.5px;
     background: var(--g200);
     transition: transform 0.3s ease, opacity 0.3s ease;
     transform-origin: center;
 }

 .nav-hamburger.is-open span:nth-child(1) {
     transform: translateY(6.5px) rotate(45deg);
 }

 .nav-hamburger.is-open span:nth-child(2) {
     opacity: 0;
     transform: scaleX(0);
 }

 .nav-hamburger.is-open span:nth-child(3) {
     transform: translateY(-6.5px) rotate(-45deg);
 }

 /* ─── MOBILE MENU OVERLAY ─────────────────────────────────── */
 .mobile-menu {
     display: none;
     position: fixed;
     inset: 0;
     z-index: 99;
     background: rgba(0, 0, 0, 0.97);
     flex-direction: column;
     align-items: center;
     justify-content: center;
     gap: 48px;
 }

 .mobile-menu.is-open {
     display: flex;
 }

 .mobile-menu a {
     font-family: var(--fh);
     font-size: clamp(36px, 9vw, 56px);
     font-weight: 700;
     letter-spacing: 0.06em;
     text-transform: uppercase;
     color: var(--g500);
     text-decoration: none;
     transition: color 0.2s;
 }

 .mobile-menu a:hover,
 .mobile-menu a:focus {
     color: #fff;
     outline: none;
 }

 /* ─── HERO — DESKTOP ──────────────────────────────────────── */
 .hero {
     position: relative;
     height: 100vh;
     overflow: hidden;
 }

 .hero::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     height: 20%;
     background: linear-gradient(to bottom, transparent 0%, #000 95%);
     z-index: 3;
     pointer-events: none;
 }

 /* Full-bleed background video */
 .hero-video {
     position: absolute;
     inset: 0;
     z-index: 0;
 }

 .hero-video video {
     width: 100%;
     height: 115%;
     object-fit: cover;
     display: block;
 }

 /* Gradient overlay: dark left for text, dark bottom for card/tabs */
 .hero-overlay {
     position: absolute;
     inset: 0;
     z-index: 1;
     background:
         linear-gradient(to right, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.22) 50%, rgba(0, 0, 0, 0.42) 100%),
         linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, transparent 38%);
     pointer-events: none;
 }

 /* Mobile-only fade — hidden on desktop */
 .hero-video-fade {
     display: none;
 }

 /* Content layer on top of video */
 .hero-content {
     position: absolute;
     top: 0;
     bottom: 0;
     left: 50%;
     transform: translateX(-50%);
     width: 100%;
     max-width: 1600px;
     z-index: 4;
     padding: calc(var(--nav-h) + 28px) 64px 44px;
     display: flex;
     flex-direction: column;
     box-sizing: border-box;
 }

 /* Title + specs row — grows to fill space */
 .hero-main {
     flex: 1;
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
     padding-top: 3rem;
     gap: 24px;
 }

 .hero-left {
     display: flex;
     flex-direction: column;
     gap: 24px;
 }

 .title {
     font-family: var(--fh);
     font-size: clamp(44px, 5.4vw, 76px);
     font-weight: 700;
     line-height: 0.95;
     letter-spacing: -0.005em;
     text-transform: uppercase;
     color: var(--g100);
 }

 .title-accent {
     color: var(--accent);
 }

 .title .slash {
     color: rgba(255, 255, 255, 0.35);
     font-weight: 300;
 }

 .description {
     font-size: 1rem;
     color: rgba(255, 255, 255, 0.55);
     line-height: 1.68;
     max-width: 450px;
     letter-spacing: 0.01em;
 }

 /* ─── HERO CTA ROW ───────────────────────────────────────── */
 .hero-cta-row {
     display: flex;
     gap: 12px;
     flex-wrap: wrap;
 }

 .hero-cta {
     display: inline-flex;
     align-items: center;
     gap: 12px;
     padding: 16px 32px;
     border-radius: 4px;
     font-family: var(--fm);
     font-size: 13px;
     letter-spacing: 0.08em;
     text-transform: uppercase;
     text-decoration: none;
     cursor: pointer;
     transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.15s ease;
 }

 .hero-cta svg {
     width: 14px;
     height: 14px;
     transition: transform 0.25s ease;
 }

 .hero-cta-primary {
     background: var(--accent);
     border: 1px solid var(--accent);
     color: #fff;
     box-shadow: 0 0 24px rgba(201, 106, 0, 0.25);
 }

 .hero-cta-primary:hover {
     background: #e07a10;
     border-color: #e07a10;
     transform: translateY(-1px);
 }

 .hero-cta-primary:hover svg {
     transform: translateX(3px);
 }

 .hero-cta-secondary {
     background: rgba(255, 255, 255, 0.04);
     border: 1px solid rgba(255, 255, 255, 0.22);
     color: rgba(255, 255, 255, 0.92);
     backdrop-filter: blur(6px);
 }

 .hero-cta-secondary:hover {
     border-color: rgba(255, 255, 255, 0.5);
     background: rgba(255, 255, 255, 0.08);
     transform: translateY(-1px);
 }

 .hero-cta-secondary:hover svg {
     transform: translate(2px, -2px);
 }

 .hero-cta:active {
     transform: translateY(1px);
 }

 /* ─── CTA STRIP ───────────────────────────────────────────── */
 .cta-strip {
     padding: 72px 0;
     border-top: 1px solid var(--g800);
     border-bottom: 1px solid var(--g800);
     background: linear-gradient(180deg, rgba(201, 106, 0, 0.04) 0%, rgba(0, 0, 0, 0) 100%);
 }

 .cta-strip-inner {
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 48px;
     flex-wrap: wrap;
 }

 .cta-strip-text {
     max-width: 600px;
 }

 .cta-strip-eyebrow {
     font-family: var(--fm);
     font-size: 11px;
     letter-spacing: 0.24em;
     text-transform: uppercase;
     color: var(--accent);
     margin-bottom: 14px;
 }

 .cta-strip-heading {
     font-family: var(--fh);
     font-size: clamp(28px, 3vw, 42px);
     font-weight: 700;
     line-height: 1.1;
     text-transform: uppercase;
     color: var(--g100);
 }

 .cta-strip-actions {
     display: flex;
     gap: 12px;
     flex-wrap: wrap;
 }

 @media (max-width: 768px) {
     .cta-strip {
         padding: 48px 0;
     }

     .cta-strip-inner {
         flex-direction: column;
         align-items: flex-start;
         gap: 28px;
     }
 }

 /* Specs — floats on the right side over the video */
 .specs {
     flex-shrink: 0;
     align-self: flex-start;
     max-width: 380px;
 }

 .specs-title {
     font-family: var(--fm);
     font-size: 10px;
     letter-spacing: 0.28em;
     color: rgba(255, 255, 255, 0.38);
     text-transform: uppercase;
     margin-bottom: 16px;
 }

 .spec-row {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 13px 0;
     border-bottom: 1px solid rgba(255, 255, 255, 0.09);
     min-width: 220px;
     gap: 24px;
 }

 .spec-row:first-of-type {
     border-top: 1px solid rgba(255, 255, 255, 0.09);
 }

 .spec-key {
     font-family: var(--fm);
     font-size: 11px;
     color: rgba(255, 255, 255, 0.3);
     letter-spacing: 0.03em;
     white-space: nowrap;
 }

 .spec-key.is-accent {
     color: var(--accent);
     font-weight: 700;
 }

 .spec-val {
     font-family: var(--fm);
     font-size: 11px;
     color: rgba(255, 255, 255, 0.75);
     letter-spacing: 0.03em;
     text-align: right;
 }

 /* Hero bottom — card + tabs anchored to base */
 .hero-bottom {
     display: flex;
     justify-content: space-between;
     align-items: flex-end;
 }

 .card {
     background: rgba(6, 6, 6, 0.82);
     border: 1px solid rgba(255, 255, 255, 0.08);
     border-radius: 18px;
     padding: 16px 20px;
     display: flex;
     align-items: center;
     gap: 18px;
     width: 406px;
     backdrop-filter: blur(12px);
     -webkit-backdrop-filter: blur(12px);
 }

 .card-thumb {
     width: 86px;
     height: 60px;
     border-radius: 8px;
     overflow: hidden;
     flex-shrink: 0;
     background: #111;
     border: 1px solid rgba(255, 255, 255, 0.08);
 }

 .card-thumb img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .card-info {
     flex: 1;
 }

 .card-label {
     font-family: var(--fm);
     font-size: 10px;
     letter-spacing: 0.18em;
     color: var(--accent);
     font-weight: 700;
     margin-bottom: 6px;
 }

 .card-desc {
     font-size: 12px;
     color: var(--g200);
     line-height: 1.55;
     margin-bottom: 12px;
 }

 .card-cta {
     display: inline-block;
     background: transparent;
     border: 1px solid rgba(255, 255, 255, 0.18);
     color: rgba(255, 255, 255, 0.55);
     font-family: var(--fh);
     font-size: 12px;
     font-weight: 500;
     padding: 6px 14px;
     border-radius: 6px;
     cursor: pointer;
     letter-spacing: 0.04em;
     text-decoration: none;
     transition: border-color 0.2s, color 0.2s, transform 0.12s ease;
 }

 .card-cta:hover {
     border-color: rgba(255, 255, 255, 0.45);
     color: var(--g100);
 }

 .card-cta:active {
     transform: translateY(1px);
 }

 .tabs {
     display: flex;
     align-items: center;
     gap: 6px;
 }

 .tab {
     padding: 7px 16px;
     border-radius: 4px;
     font-family: var(--fm);
     font-size: 10px;
     letter-spacing: 0.1em;
     cursor: pointer;
     border: 1px solid transparent;
     color: rgba(255, 255, 255, 0.28);
     transition: color 0.2s, border-color 0.2s;
     background: none;
 }

 .tab:hover {
     color: rgba(255, 255, 255, 0.55);
 }

 .tab.active {
     border-color: var(--accent);
     color: #d07212;
 }

 /* ─── SHARED SECTION STYLES ───────────────────────────────── */

 .section {
     padding: 140px 0;
     scroll-margin-top: var(--nav-h);
 }

 .section-label {
     font-family: var(--fm);
     font-size: 12px;
     letter-spacing: 0.28em;
     text-transform: uppercase;
     color: var(--g400);
     margin-bottom: 52px;
     display: flex;
     align-items: center;
     gap: 16px;
 }

 .section-label::after {
     content: '';
     flex: 0 0 48px;
     height: 1px;
     background: var(--g700);
 }

 /* ─── STARDUST ZONE ──────────────────────────────────────── */
 .stardust-zone {
     position: relative;
     background-image: url('../images/stardust-texture.png');
     background-repeat: repeat;
     background-size: contain;
     background-color: #0a0a0a;
 }

 .stardust-zone::before {
     content: '';
     position: absolute;
     inset: 0;
     background:
         linear-gradient(to bottom, var(--black) 0%, transparent 6%),
         linear-gradient(to top, var(--black) 0%, transparent 6%);
     pointer-events: none;
     z-index: 0;
 }

 .stardust-zone>* {
     position: relative;
     z-index: 1;
 }

 /* ─── ABOUT INTRO ROW ────────────────────────────────────── */
 .about-intro {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 80px;
     align-items: end;
     margin-bottom: 64px;
 }

 .about-heading {
     font-family: var(--fh);
     font-size: clamp(34px, 3.4vw, 54px);
     font-weight: 700;
     line-height: 1.0;
     text-transform: uppercase;
     color: var(--g100);
     margin-bottom: 20px;
 }

 .about-heading .dim {
     color: var(--g600);
     font-weight: 300;
 }

 .about-status {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     font-family: var(--fm);
     font-size: 10.5px;
     letter-spacing: 0.16em;
     text-transform: uppercase;
     color: var(--g200);
     padding: 8px 14px;
     border: 1px solid var(--g600);
     border-radius: 999px;
     background: rgba(255, 255, 255, 0.02);
     margin-bottom: 20px;
 }

 .about-status-dot {
     width: 8px;
     height: 8px;
     border-radius: 50%;
     background: #4ade80;
     box-shadow: 0 0 8px rgba(74, 222, 128, 0.6);
     animation: status-pulse 2s ease-in-out infinite;
 }

 @keyframes status-pulse {
     0%, 100% { opacity: 1; }
     50% { opacity: 0.5; }
 }

 .about-body {
     font-size: 1rem;
     color: var(--g200);
     line-height: 1.78;
 }

 /* ─── ABOUT STATS BAR (full-width) ───────────────────────── */
 .about-stats {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 0;
     padding: 36px 0;
     border-top: 1px solid var(--g700);
     border-bottom: 1px solid var(--g700);
     margin-bottom: 64px;
 }

 .stat-cell {
     padding: 0 32px;
     border-right: 1px solid var(--g800);
 }

 .stat-cell:last-child {
     border-right: none;
 }

 .stat-cell:first-child {
     padding-left: 0;
 }

 .stat-num {
     font-family: var(--fh);
     font-size: clamp(40px, 4vw, 56px);
     font-weight: 700;
     color: #fff;
     line-height: 1;
     margin-bottom: 10px;
 }

 .stat-cell:first-child .stat-num,
 .stat-cell:nth-child(3) .stat-num {
     color: var(--accent);
 }

 .stat-label {
     font-family: var(--fm);
     font-size: 10.5px;
     letter-spacing: 0.18em;
     color: var(--g300);
     text-transform: uppercase;
 }

 /* ─── ABOUT BOTTOM (image + services) ───────────────────── */
 .about-bottom {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 56px;
     align-items: start;
 }

 .about-image {
     position: relative;
     border-radius: 16px;
     overflow: hidden;
 }

 .about-image img {
     width: 100%;
     height: auto;
     display: block;
     border-radius: 16px;
     transition: transform 0.55s ease;
 }

 .about-image:hover img {
     transform: scale(1.025);
 }

 .about-image-tag {
     position: absolute;
     left: 20px;
     bottom: 20px;
     display: flex;
     flex-direction: column;
     gap: 4px;
     padding: 12px 16px;
     background: rgba(0, 0, 0, 0.75);
     backdrop-filter: blur(8px);
     border: 1px solid var(--g600);
     border-radius: 8px;
 }

 .about-image-tag-label {
     font-family: var(--fm);
     font-size: 10px;
     letter-spacing: 0.18em;
     color: var(--g100);
     text-transform: uppercase;
 }

 .about-image-tag-count {
     font-family: var(--fm);
     font-size: 9px;
     letter-spacing: 0.16em;
     color: var(--accent);
 }

 .about-services-wrap {
     padding-top: 4px;
 }

 .about-services-label {
     font-family: var(--fm);
     font-size: 12px;
     letter-spacing: 0.28em;
     text-transform: uppercase;
     color: var(--g300);
     margin-bottom: 24px;
 }

 .about-services {
     list-style: none;
     display: flex;
     flex-direction: column;
     gap: 14px;
 }

 .about-services li {
     display: flex;
     align-items: flex-start;
     gap: 16px;
     padding: 16px 18px;
     border: 1px solid var(--g700);
     border-radius: 10px;
     background: linear-gradient(180deg, rgba(34, 34, 34, 0.5) 0%, rgba(14, 14, 14, 0.4) 100%);
     transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
 }

 .about-services li:hover {
     border-color: rgba(201, 106, 0, 0.4);
     background: linear-gradient(180deg, rgba(201, 106, 0, 0.06) 0%, rgba(14, 14, 14, 0.4) 100%);
     transform: translateX(3px);
 }

 .about-service-icon {
     flex-shrink: 0;
     width: 38px;
     height: 38px;
     border: 1px solid var(--g500);
     border-radius: 8px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--accent);
     background: rgba(0, 0, 0, 0.4);
 }

 .about-service-icon svg {
     width: 18px;
     height: 18px;
 }

 .about-service-title {
     font-family: var(--fh);
     font-size: 16px;
     font-weight: 600;
     color: #fff;
     margin-bottom: 4px;
     line-height: 1.3;
 }

 .about-service-sub {
     font-family: var(--fm);
     font-size: 11.5px;
     line-height: 1.5;
     color: var(--g300);
 }

 /* ─── LOGO MARQUEE ───────────────────────────────────────── */
 .marquee-section {
     padding-top: 40px;
     padding-bottom: 80px;
     overflow: hidden;
 }

 .marquee-label {
     font-family: var(--fm);
     font-size: 1rem;
     letter-spacing: 0.28em;
     text-transform: uppercase;
     color: var(--g400);
     text-align: center;
     margin-bottom: 32px;
 }

 .marquee-track {
     overflow: hidden;
     -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
     mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
 }

 .marquee-inner {
     display: flex;
     gap: 64px;
     width: max-content;
     animation: marquee 28s linear infinite;
 }

 .marquee-inner:hover {
     animation-play-state: paused;
 }

 @keyframes marquee {
     from {
         transform: translateX(0);
     }

     to {
         transform: translateX(-50%);
     }
 }

 .marquee-item {
     display: flex;
     align-items: center;
     gap: 10px;
     font-family: var(--fh);
     font-size: 2.5rem;
     font-weight: 700;
     letter-spacing: 0.06em;
     text-transform: uppercase;
     color: var(--g600);
     white-space: nowrap;
     transition: color 0.2s;
     user-select: none;
 }

 .marquee-item:hover {
     color: var(--g400);
 }

 .marquee-item svg {
     width: 24px;
     height: 24px;
     opacity: 0.5;
     flex-shrink: 0;
 }

 .marquee-logo img {
     height: 38px;
     width: auto;
     opacity: 0.75;
     display: block;
     transition: opacity 0.25s ease;
 }

 .marquee-logo:hover img {
     opacity: 1;
 }

 .marquee-dot {
     font-family: var(--fh);
     font-size: 22px;
     font-weight: 700;
     color: var(--accent);
     flex-shrink: 0;
     line-height: 1;
     display: flex;
     align-items: center;
 }

 /* ─── WORK ────────────────────────────────────────────────── */
 .work-header {
     text-align: center;
     max-width: 780px;
     margin: 0 auto 56px;
 }

 .work-header .section-label {
     justify-content: center;
     margin-bottom: 28px;
 }

 .work-heading {
     font-size: clamp(36px, 4.2vw, 56px);
     line-height: 1.05;
     margin-bottom: 24px;
 }

 .work-sub {
     font-family: var(--fm);
     font-size: 13.5px;
     line-height: 1.8;
     color: var(--g200);
 }

 @media (max-width: 720px) {
     .work-header {
         margin-bottom: 40px;
     }
 }

 .work-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 18px;
 }

 .project-card {
     background: var(--g900);
     border: 1px solid var(--g800);
     border-radius: 14px;
     overflow: hidden;
     transition: border-color 0.22s, transform 0.3s ease, box-shadow 0.3s ease;
     color: inherit;
     text-decoration: none;
     display: block;
 }

 .project-card:hover {
     border-color: var(--g600);
     transform: translateY(-5px);
     box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
 }

 a.project-card:focus-visible {
     outline: 2px solid var(--accent, #fff);
     outline-offset: 3px;
 }

 .project-thumb {
     width: 100%;
     aspect-ratio: 16/9;
     overflow: hidden;
     background: #0d0d0d;
     position: relative;
 }

 .project-visit {
     position: absolute;
     top: 12px;
     right: 12px;
     display: inline-flex;
     align-items: center;
     gap: 6px;
     padding: 6px 10px;
     font-family: var(--fm);
     font-size: 10.5px;
     font-weight: 600;
     letter-spacing: 0.08em;
     text-transform: uppercase;
     color: #fff;
     background: var(--accent);
     border: 1px solid var(--accent);
     border-radius: 4px;
     opacity: 0;
     transform: translateY(-6px);
     transition: opacity 0.25s ease, transform 0.25s ease;
     pointer-events: none;
     z-index: 2;
 }

 .project-card:hover .project-visit,
 a.project-card:focus-visible .project-visit {
     opacity: 1;
     transform: translateY(0);
 }

 .project-thumb img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.4s ease;
 }

 .project-card:hover .project-thumb img {
     transform: scale(1.04);
 }

 .project-info {
     padding: 20px 22px 24px;
 }

 .project-num {
     font-family: var(--fm);
     font-size: .75rem;
     color: var(--g500);
     letter-spacing: 0.1em;
     margin-bottom: 8px;
 }

 .project-name {
     font-family: var(--fh);
     font-size: 20px;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.04em;
     color: var(--g100);
     margin-bottom: 6px;
 }

 .project-desc {
     font-size: 1rem;
     color: var(--g300);
     line-height: 1.55;
     margin-bottom: 18px;
 }

 .project-tags {
     display: flex;
     gap: 6px;
     flex-wrap: wrap;
 }

 .tag {
     font-family: var(--fm);
     font-size: 9.5px;
     letter-spacing: 0.08em;
     color: var(--g500);
     border: 1px solid var(--g700);
     border-radius: 4px;
     padding: 4px 8px;
     transition: border-color 0.2s, color 0.2s, transform 0.2s ease;
     cursor: default;
 }

 .tag:hover {
     border-color: var(--g400);
     color: var(--g200);
     transform: translateY(-2px);
 }

 .tag-accent {
     color: var(--accent);
     border-color: var(--accent);
 }

 .tag-accent:hover {
     background: rgba(201, 106, 0, 0.08);
     transform: translateY(-2px);
 }

 /* ─── STACK ───────────────────────────────────────────────── */
 .stack-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 1px;
     background: var(--g800);
     border: 1px solid var(--g800);
     border-radius: 12px;
     overflow: hidden;
 }

 .stack-item {
     background: var(--black);
     padding: 32px 28px;
     display: flex;
     flex-direction: column;
     gap: 10px;
     transition: background 0.2s;
 }

 .stack-item:hover {
     background: var(--g900);
 }

 .stack-category {
     font-family: var(--fm);
     font-size: 9.5px;
     letter-spacing: 0.2em;
     color: var(--g500);
     text-transform: uppercase;
 }

 .stack-name {
     font-family: var(--fh);
     font-size: 22px;
     font-weight: 700;
     color: var(--g100);
     text-transform: uppercase;
     letter-spacing: 0.04em;
 }

 .stack-detail {
     font-size: 1rem;
     color: var(--g400);
     line-height: 1.5;
 }

 /* ─── CONTACT ─────────────────────────────────────────────── */
 #contact {
     position: relative;
     overflow: hidden;
 }

 .contact-paths {
     position: absolute;
     inset: 0;
     pointer-events: none;
     z-index: 0;
 }

 .contact-paths svg {
     width: 100%;
     height: 100%;
 }

 .contact-glow {
     position: absolute;
     bottom: -80px;
     left: -5%;
     width: 75%;
     height: 600px;
     background: radial-gradient(ellipse at center, rgba(201, 106, 0, 0.45) 0%, rgba(201, 106, 0, 0.12) 40%, transparent 70%);
     pointer-events: none;
     z-index: 0;
 }

 .contact-inner {
     position: relative;
     z-index: 1;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 80px;
     align-items: start;
 }

 .contact-form {
     display: flex;
     flex-direction: column;
     gap: 16px;
 }

 .form-row {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 16px;
 }

 .form-field {
     display: flex;
     flex-direction: column;
     gap: 8px;
 }

 .form-field label {
     font-family: var(--fm);
     font-size: 11px;
     letter-spacing: 0.14em;
     text-transform: uppercase;
     color: var(--g300);
 }

 .form-field input,
 .form-field textarea,
 .form-field select {
     background: rgba(255, 255, 255, 0.03);
     border: 1px solid var(--g600);
     border-radius: 6px;
     padding: 16px 18px;
     font-family: var(--fm);
     font-size: 0.92rem;
     color: var(--g100);
     outline: none;
     transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
     -webkit-appearance: none;
     appearance: none;
 }

 .form-field input::placeholder,
 .form-field textarea::placeholder {
     color: var(--g500);
 }

 .form-field input:hover,
 .form-field textarea:hover,
 .form-field select:hover {
     border-color: var(--g500);
 }

 .form-field input:focus,
 .form-field textarea:focus,
 .form-field select:focus {
     border-color: var(--accent);
     background: rgba(255, 255, 255, 0.05);
     box-shadow: 0 0 0 3px rgba(201, 106, 0, 0.15);
 }

 .form-field textarea {
     resize: vertical;
     min-height: 130px;
 }

 .form-field select option {
     background: #111;
     color: var(--g100);
 }

 .form-submit {
     display: inline-flex;
     align-items: center;
     gap: 12px;
     margin-top: 8px;
     padding: 16px 32px;
     background: transparent;
     border: 1px solid var(--g600);
     border-radius: 4px;
     font-family: var(--fm);
     font-size: 13px;
     letter-spacing: 0.08em;
     text-transform: uppercase;
     color: var(--g100);
     cursor: pointer;
     transition: border-color 0.2s, color 0.2s, transform 0.12s ease;
     align-self: flex-start;
 }

 .form-submit:hover {
     border-color: var(--g300);
     color: #fff;
 }

 .form-submit:active {
     transform: translateY(1px);
 }

 .form-submit svg {
     width: 14px;
     height: 14px;
 }

 .form-submit:disabled {
     opacity: 0.55;
     cursor: not-allowed;
 }

 /* Honeypot — hidden from real users, bots fill it */
 .form-honeypot {
     position: absolute;
     left: -9999px;
     width: 1px;
     height: 1px;
     overflow: hidden;
 }

 /* Conditional fields — fade in when revealed, removed from layout when hidden */
 .form-conditional[hidden] {
     display: none;
 }

 .form-conditional {
     opacity: 0;
     transform: translateY(-4px);
     transition: opacity 0.25s ease, transform 0.25s ease;
 }

 .form-conditional.is-visible {
     opacity: 1;
     transform: translateY(0);
 }

 .form-status {
     font-family: var(--fm);
     font-size: 12px;
     line-height: 1.6;
     margin-top: 16px;
     min-height: 1.6em;
     color: var(--g300);
 }

 .form-status[data-type="success"] {
     color: #4ade80;
 }

 .form-status[data-type="error"] {
     color: #f87171;
 }

 @media (max-width: 768px) {
     .contact-inner {
         grid-template-columns: 1fr;
         gap: 48px;
     }

     .marquee-section {
         padding-bottom: 64px;
         overflow: hidden;
     }

     .form-row {
         grid-template-columns: 1fr;
     }

     .contact-methods li {
         grid-template-columns: 100px 1fr;
         gap: 16px;
         padding: 14px 0;
     }

     .contact-method-val {
         font-size: 12px;
         word-break: break-word;
     }

     /* Prevent iOS zoom-on-focus by keeping input font-size >= 16px */
     .form-field input,
     .form-field textarea,
     .form-field select {
         font-size: 16px;
     }
 }

 .contact-heading {
     font-family: var(--fh);
     font-size: clamp(40px, 5vw, 72px);
     font-weight: 700;
     line-height: 0.95;
     text-transform: uppercase;
     color: var(--g100);
     margin-bottom: 24px;
 }

 .contact-heading .dim {
     color: var(--g500);
     font-weight: 300;
 }

 .contact-sub {
     font-size: 1rem;
     color: var(--g200);
     line-height: 1.75;
     margin-bottom: 40px;
     max-width: 440px;
 }

 /* ─── UPWORK CTA SECTION (Upwork-friendly variant only) ─── */
 .upwork-cta-section {
     position: relative;
 }

 .upwork-cta-inner {
     max-width: 760px;
     margin: 0 auto;
     text-align: center;
 }

 .upwork-cta-inner .section-label {
     justify-content: center;
     margin-bottom: 32px;
 }

 .upwork-cta-inner .contact-heading {
     text-align: center;
     margin-bottom: 32px;
 }

 .upwork-cta-sub {
     font-family: var(--fm);
     font-size: 13.5px;
     line-height: 1.85;
     color: var(--g200);
     max-width: 640px;
     margin: 0 auto 40px;
 }

 .upwork-cta-button {
     display: inline-flex !important;
 }

 /* ─── CONTACT METHODS LIST ───────────────────────────────── */
 .contact-methods {
     list-style: none;
     padding: 0;
     margin: 0;
     border-top: 1px solid var(--g700);
 }

 .contact-methods li {
     display: grid;
     grid-template-columns: 120px 1fr;
     align-items: center;
     gap: 24px;
     padding: 18px 0;
     border-bottom: 1px solid var(--g700);
 }

 .contact-method-label {
     font-family: var(--fm);
     font-size: 10.5px;
     letter-spacing: 0.22em;
     text-transform: uppercase;
     color: var(--g400);
 }

 .contact-method-val {
     font-family: var(--fm);
     font-size: 13px;
     color: var(--g100);
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 10px;
     transition: color 0.2s;
 }

 a.contact-method-val:hover {
     color: var(--accent);
 }

 .contact-method-dot {
     display: inline-block;
     width: 8px;
     height: 8px;
     border-radius: 50%;
     background: #4ade80;
     box-shadow: 0 0 8px rgba(74, 222, 128, 0.6);
     animation: status-pulse 2s ease-in-out infinite;
 }

 .contact-cta {
     display: inline-flex;
     align-items: center;
     gap: 12px;
     background: transparent;
     border: 1px solid var(--g600);
     color: var(--g100);
     font-family: var(--fm);
     font-size: 11px;
     letter-spacing: 0.14em;
     text-transform: uppercase;
     padding: 16px 32px;
     border-radius: 8px;
     text-decoration: none;
     transition: border-color 0.2s, color 0.2s;
 }

 .contact-cta:hover {
     border-color: var(--g300);
     color: #fff;
 }

 @keyframes path-drift {
     0% {
         stroke-dashoffset: 1000;
         opacity: 0.4;
     }

     50% {
         opacity: 0.15;
     }

     100% {
         stroke-dashoffset: 0;
         opacity: 0.4;
     }
 }

 .contact-cta svg {
     width: 14px;
     height: 14px;
 }

 /* ─── TESTIMONIALS ───────────────────────────────────────── */
 .testimonial-header {
     display: flex;
     align-items: flex-end;
     justify-content: space-between;
     margin-bottom: 52px;
 }

 .testimonial-nav {
     display: flex;
     gap: 10px;
     padding-bottom: 6px;
 }

 .testimonial-btn {
     width: 48px;
     height: 48px;
     border-radius: 50%;
     border: 1px solid var(--g600);
     background: transparent;
     color: var(--g200);
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.12s ease;
     flex-shrink: 0;
 }

 .testimonial-btn:hover {
     border-color: var(--accent);
     color: var(--accent);
 }

 .testimonial-btn:active {
     transform: scale(0.92);
 }

 .testimonial-track-wrap {
     overflow: hidden;
 }

 .testimonial-track {
     display: flex;
     gap: 24px;
     transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
 }

 .testimonial-card {
     flex: 0 0 calc(50% - 12px);
     background: var(--g900);
     border: 1px solid var(--g800);
     border-radius: 16px;
     padding: 36px;
     display: flex;
     flex-direction: column;
     gap: 20px;
     transition: border-color 0.22s, background 0.22s;
 }

 .testimonial-card:hover {
     border-color: var(--g500);
     background: rgba(255, 255, 255, 0.025);
 }

 .testimonial-type {
     font-family: var(--fm);
     font-size: .75rem;
     letter-spacing: 0.18em;
     text-transform: uppercase;
     color: var(--accent);
     margin-bottom: 4px;
 }

 .testimonial-service {
     font-family: var(--fh);
     font-size: 1.75rem;
     font-weight: 700;
     letter-spacing: 0.04em;
     text-transform: uppercase;
     color: var(--g100);
 }

 .testimonial-stars {
     display: flex;
     gap: 3px;
     font-size: 15px;
     color: #f5a623;
 }

 .testimonial-quote {
     font-size: 1rem;
     color: var(--g300);
     line-height: 1.78;
     font-style: italic;
     flex: 1;
 }

 .testimonial-author {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding-top: 20px;
     border-top: 1px solid var(--g800);
 }

 .testimonial-name {
     font-family: var(--fh);
     font-size: 14px;
     font-weight: 600;
     letter-spacing: 0.05em;
     color: var(--g300);
 }

 .testimonial-platform {
     font-family: var(--fm);
     font-size: 10px;
     letter-spacing: 0.1em;
     color: var(--g500);
     text-transform: uppercase;
 }

 /* ─── FOOTER ──────────────────────────────────────────────── */
 footer {
     border-top: 1px solid var(--g800);
     padding: 72px 0 32px;
 }

 footer .container {
     display: block;
 }

 .footer-grid {
     display: grid;
     grid-template-columns: 2fr 1fr 1fr;
     gap: 80px;
     padding-bottom: 56px;
     border-bottom: 1px solid var(--g800);
 }

 .footer-brand {
     display: flex;
     flex-direction: column;
     gap: 18px;
     max-width: 380px;
 }

 .footer-logo {
     display: inline-flex;
     align-items: center;
     gap: 14px;
     text-decoration: none;
     transition: opacity 0.2s;
 }

 .footer-logo-mark {
     height: 40px;
     width: auto;
     display: block;
 }

 .footer-logo-text {
     font-family: var(--fh);
     font-size: 22px;
     font-weight: 700;
     letter-spacing: 0.18em;
     text-transform: uppercase;
     color: var(--g100);
 }

 .footer-logo:hover {
     opacity: 0.85;
 }

 .footer-tagline {
     font-family: var(--fm);
     font-size: 12px;
     line-height: 1.7;
     color: var(--g400);
 }

 .footer-col-label {
     font-family: var(--fm);
     font-size: 10px;
     letter-spacing: 0.24em;
     text-transform: uppercase;
     color: var(--g500);
     margin-bottom: 20px;
 }

 .footer-links {
     list-style: none;
     padding: 0;
     margin: 0;
     display: flex;
     flex-direction: column;
     gap: 12px;
 }

 .footer-links a {
     font-family: var(--fm);
     font-size: 13px;
     color: var(--g200);
     text-decoration: none;
     transition: color 0.2s;
 }

 .footer-links a:hover {
     color: var(--accent);
 }

 .footer-bottom {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding-top: 28px;
 }

 .footer-copy {
     font-family: var(--fm);
     font-size: 10.5px;
     color: var(--g500);
     letter-spacing: 0.08em;
 }

 .footer-top {
     font-family: var(--fm);
     font-size: 10.5px;
     letter-spacing: 0.16em;
     text-transform: uppercase;
     color: var(--g400);
     text-decoration: none;
     transition: color 0.2s;
 }

 .footer-top:hover {
     color: var(--accent);
 }

 /* ─── MOBILE ──────────────────────────────────────────────── */
 @media (max-width: 768px) {

     /* Container */
     .container {
         padding: 0 24px;
     }

     /* Nav */
     .site-nav {
         padding: 0;
     }

     .nav-links {
         display: none;
     }

     .nav-hamburger {
         display: flex;
     }

     /* Hero becomes stacked (not relative/absolute) */
     .hero {
         position: static;
         height: auto;
         overflow: visible;
         display: flex;
         flex-direction: column;
     }

     /* Video fills top — normal flow */
     .hero-video {
         position: relative;
         inset: auto;
         height: 47vh;
         overflow: hidden;
         flex-shrink: 0;
     }

     .hero-video video {
         width: 100%;
         height: 115%;
     }

     /* Seamless bottom fade into black */
     .hero-video-fade {
         display: block;
         position: absolute;
         bottom: 0;
         left: 0;
         right: 0;
         height: 55%;
         background: linear-gradient(to bottom, transparent 0%, var(--black) 100%);
         pointer-events: none;
         z-index: 1;
     }

     /* No overlay on mobile — video is not a background */
     .hero-overlay {
         display: none;
     }

     /* Content below the video, normal flow on black */
     .hero-content {
         position: static;
         inset: auto;
         left: auto;
         transform: none;
         width: 100%;
         max-width: 100%;
         padding: 32px 24px 48px;
         display: flex;
         flex-direction: column;
         gap: 40px;
     }

     /* Stack title and specs vertically */
     .hero-main {
         flex-direction: column;
         gap: 36px;
         padding-top: 0rem;
         flex: none;
     }

     .title {
         font-size: clamp(40px, 10vw, 60px);
     }

     .description {
         max-width: 100%;
     }

     /* Specs full width on mobile */
     .specs {
         max-width: 100%;
         margin-right: 0;
     }

     .spec-row {
         min-width: 0;
         gap: 16px;
     }

     .spec-key,
     .spec-val {
         font-size: 11px;
     }

     /* Hide hero card + tabs on mobile — content is covered by Services + Hero copy */
     .hero-bottom {
         display: none;
     }

     /* Sections */
     .section {
         padding: 64px 0;
     }

     .about-intro {
         grid-template-columns: 1fr;
         gap: 28px;
         align-items: start;
         margin-bottom: 48px;
     }

     .about-bottom {
         grid-template-columns: 1fr;
         gap: 40px;
     }

     .about-stats {
         grid-template-columns: repeat(2, 1fr);
         padding: 28px 0;
         gap: 24px 0;
         margin-bottom: 48px;
     }

     .stat-cell {
         padding: 0 16px;
         border-right: none;
     }

     .stat-cell:nth-child(odd) {
         padding-left: 0;
         border-right: 1px solid var(--g800);
     }

     .stat-num {
         font-size: 38px;
     }

     .work-grid {
         grid-template-columns: 1fr;
         gap: 16px;
     }

     .testimonial-card {
         flex: 0 0 100%;
     }

     .testimonial-header {
         align-items: flex-start;
         flex-direction: column;
         gap: 20px;
     }

     .stack-grid {
         grid-template-columns: repeat(2, 1fr);
     }

     footer {
         padding: 48px 0 24px;
     }

     .footer-grid {
         grid-template-columns: 1fr;
         gap: 40px;
         padding-bottom: 36px;
     }

     .footer-bottom {
         flex-direction: column;
         gap: 12px;
         text-align: center;
         padding-top: 24px;
     }

     /* CTA strip — stack on mobile */
     .cta-strip {
         padding: 56px 0;
     }

     .cta-strip-actions {
         width: 100%;
     }

     .cta-strip-actions .hero-cta {
         flex: 1;
         justify-content: center;
         padding: 14px 18px;
     }

     /* Hero CTAs — fit and breathe */
     .hero-cta-row {
         gap: 10px;
     }

     .hero-cta {
         padding: 14px 22px;
         font-size: 12px;
     }

     /* Process timeline tightening */
     .process-heading {
         font-size: clamp(34px, 7vw, 44px);
     }

     /* Contact methods — keep labels readable */
     .contact-method-val {
         font-size: 11.5px;
     }

     /* Stats: keep numbers crisp */
     .stat-label {
         font-size: 9.5px;
     }

     /* Project card image: prevent over-tall on narrow screens */
     .project-thumb img {
         width: 100%;
         display: block;
     }
 }

 @media (max-width: 480px) {
     .stack-grid {
         grid-template-columns: 1fr;
     }

     /* Container — tighter on small phones */
     .container {
         padding: 0 20px;
     }

     /* Section padding tighter */
     .section {
         padding: 48px 0;
     }

     /* Hero CTAs — full width stacked */
     .hero-cta-row {
         flex-direction: column;
         width: 100%;
     }

     .hero-cta {
         width: 100%;
         justify-content: center;
     }

     /* Hero title — let 4 lines fit */
     .title {
         font-size: clamp(38px, 11vw, 56px);
         line-height: 1;
     }

     .description {
         font-size: 0.95rem;
     }

     /* Hero card — tighten */
     .card {
         flex-direction: column;
         align-items: stretch;
         width: 100%;
     }

     .card-thumb {
         width: 100%;
         height: 140px;
     }

     /* About — keep 2-column stats grid even on small phones */
     .about-stats {
         grid-template-columns: repeat(2, 1fr);
         padding: 24px 0;
         gap: 20px 0;
     }

     .stat-cell {
         padding: 14px 12px;
         border-right: none;
         border-bottom: none;
     }

     .stat-cell:nth-child(odd) {
         padding-left: 0;
         border-right: 1px solid var(--g800);
     }

     .stat-num {
         font-size: 34px;
     }

     .stat-label {
         font-size: 9px;
     }

     /* CTA strip — heading scales */
     .cta-strip-heading {
         font-size: 24px;
     }

     .cta-strip-actions {
         flex-direction: column;
         gap: 10px;
     }

     /* Process — marker + body breathing */
     .process-step {
         grid-template-columns: 36px 1fr;
         gap: 16px;
         padding-bottom: 32px;
     }

     .process-marker {
         width: 36px;
         height: 36px;
     }

     .process-title {
         font-size: 20px;
     }

     .process-desc,
     .process-bullets li {
         font-size: 12px;
     }

     /* Contact methods — collapse label + value vertically for very narrow */
     .contact-methods li {
         grid-template-columns: 1fr;
         gap: 4px;
         padding: 14px 0;
     }

     /* About services — tighten */
     .about-services li {
         padding: 14px 14px;
     }

     .about-service-title {
         font-size: 14px;
     }

     .about-service-sub {
         font-size: 11px;
     }

     /* Footer logo sizing */
     .footer-logo-mark {
         height: 34px;
     }

     .footer-logo-text {
         font-size: 18px;
     }

     .nav-logo-mark {
         height: 26px;
     }

     .nav-logo-text {
         font-size: 15px;
     }

     .footer-tagline {
         font-size: 11.5px;
     }
 }

 /* ─── SCROLL REVEAL ──────────────────────────────────────── */
 .reveal {
     opacity: 0;
     transform: translateY(28px);
     transition: opacity 0.65s ease, transform 0.65s ease;
 }

 .reveal.is-visible {
     opacity: 1;
     transform: translateY(0);
 }

 /* ─── HERO ENTRANCE ──────────────────────────────────────── */
 @keyframes hero-fade-up {
     from {
         opacity: 0;
         transform: translateY(22px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .title {
     animation: hero-fade-up 0.85s ease both 0.08s;
 }

 .description {
     animation: hero-fade-up 0.85s ease both 0.26s;
 }

 .hero-cta-row {
     animation: hero-fade-up 0.85s ease both 0.42s;
 }

 .specs {
     animation: hero-fade-up 0.85s ease both 0.32s;
 }

 .hero-bottom {
     animation: hero-fade-up 0.85s ease both 0.52s;
 }

 /* ─── TAG ENTRANCE ───────────────────────────────────────── */
 .project-card.is-visible .tag {
     animation: hero-fade-up 0.45s ease both;
 }

 .project-card.is-visible .tag:nth-child(1) {
     animation-delay: 0.20s;
 }

 .project-card.is-visible .tag:nth-child(2) {
     animation-delay: 0.29s;
 }

 .project-card.is-visible .tag:nth-child(3) {
     animation-delay: 0.38s;
 }

 .project-card.is-visible .tag:nth-child(4) {
     animation-delay: 0.47s;
 }

 .project-card.is-visible .tag:nth-child(5) {
     animation-delay: 0.56s;
 }

 /* ─── REDUCED MOTION ─────────────────────────────────────── */
 @media (prefers-reduced-motion: reduce) {

     .reveal,
     .title,
     .description,
     .hero-cta-row,
     .specs,
     .hero-bottom {
         animation: none;
         opacity: 1;
         transform: none;
         transition: none;
     }

     .project-card.is-visible .tag {
         animation: none;
         opacity: 1;
         transform: none;
     }

     .project-card,
     .about-image img {
         transition: border-color 0.2s;
     }

     .tag {
         transition: border-color 0.2s, color 0.2s;
     }
 }

 /* ─── WORK GRID: VIEW MORE TOGGLE ──────────────────────────── */
 .project-card.is-hidden {
     display: none;
 }

 .work-more-wrap {
     display: flex;
     justify-content: center;
     margin-top: 56px;
 }

 .work-more-btn {
     display: inline-flex;
     align-items: center;
     gap: 12px;
     padding: 14px 28px;
     background: transparent;
     border: 1px solid var(--g600);
     color: var(--g100);
     font-family: var(--fm);
     font-size: 11px;
     letter-spacing: 0.18em;
     text-transform: uppercase;
     cursor: pointer;
     transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
 }

 .work-more-btn:hover {
     border-color: var(--accent);
     color: #fff;
     background: rgba(201, 106, 0, 0.08);
 }

 .work-more-btn svg {
     width: 14px;
     height: 14px;
     transition: transform 0.3s ease;
 }

 .work-more-btn.is-open svg {
     transform: rotate(180deg);
 }

 /* ─── SERVICES ──────────────────────────────────────────────── */
 .services-section {
     position: relative;
 }

 .services-header {
     text-align: center;
     max-width: 780px;
     margin: 0 auto 64px;
 }

 .services-header .section-label {
     justify-content: center;
 }

 .services-heading {
     font-size: clamp(36px, 4.2vw, 56px);
     line-height: 1.05;
     margin-bottom: 24px;
 }

 .services-sub {
     font-family: var(--fm);
     font-size: 13.5px;
     line-height: 1.8;
     color: var(--g200);
 }

 .services-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 20px;
 }

 .service-card {
     display: flex;
     flex-direction: column;
     padding: 28px 26px 24px;
     border: 1px solid var(--g700);
     border-radius: 12px;
     background: linear-gradient(180deg, rgba(34, 34, 34, 0.55) 0%, rgba(14, 14, 14, 0.4) 100%);
     transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
 }

 .service-card:hover {
     border-color: rgba(201, 106, 0, 0.45);
     background: linear-gradient(180deg, rgba(201, 106, 0, 0.06) 0%, rgba(14, 14, 14, 0.4) 100%);
     transform: translateY(-3px);
 }

 .service-head {
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
     margin-bottom: 28px;
 }

 .service-icon {
     width: 42px;
     height: 42px;
     border: 1px solid var(--g500);
     border-radius: 8px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--accent);
     background: rgba(0, 0, 0, 0.4);
     flex-shrink: 0;
     transition: border-color 0.3s ease, background 0.3s ease;
 }

 .service-icon svg {
     width: 20px;
     height: 20px;
 }

 .service-card:hover .service-icon {
     border-color: var(--accent);
     background: rgba(201, 106, 0, 0.12);
 }

 .service-meta {
     display: flex;
     flex-direction: column;
     align-items: flex-end;
     gap: 4px;
     text-align: right;
 }

 .service-num {
     font-family: var(--fm);
     font-size: 12px;
     font-weight: 700;
     letter-spacing: 0.18em;
     color: var(--accent);
 }

 .service-type {
     font-family: var(--fm);
     font-size: 9.5px;
     letter-spacing: 0.18em;
     color: var(--g300);
     text-transform: uppercase;
 }

 .service-title {
     font-family: var(--fh);
     font-size: 24px;
     font-weight: 700;
     letter-spacing: 0.01em;
     color: #fff;
     margin-bottom: 14px;
     line-height: 1.2;
 }

 .service-desc {
     font-family: var(--fm);
     font-size: 12.5px;
     line-height: 1.7;
     color: var(--g200);
     margin-bottom: 28px;
     flex: 1;
 }

 .service-link {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     font-family: var(--fm);
     font-size: 11px;
     font-weight: 600;
     letter-spacing: 0.18em;
     text-transform: uppercase;
     color: var(--accent);
     text-decoration: none;
     transition: color 0.2s, gap 0.2s ease;
     align-self: flex-start;
 }

 .service-link svg {
     width: 14px;
     height: 14px;
     transition: transform 0.25s ease;
 }

 .service-link:hover {
     color: #e07a10;
 }

 .service-link:hover svg {
     transform: translateX(3px);
 }

 @media (max-width: 1024px) {
     .services-grid {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 @media (max-width: 640px) {
     .services-grid {
         grid-template-columns: 1fr;
     }

     .services-header {
         margin-bottom: 48px;
     }
 }

 /* ─── POV / PHILOSOPHY ──────────────────────────────────────── */
 .pov-section {
     position: relative;
 }

 .pov-inner {
     max-width: 820px;
     margin: 0 auto 64px;
     text-align: center;
 }

 .pov-inner .section-label {
     justify-content: center;
     margin-bottom: 28px;
 }

 .pov-heading {
     font-family: var(--fh);
     font-size: clamp(32px, 3.8vw, 56px);
     font-weight: 700;
     line-height: 1.1;
     text-transform: uppercase;
     color: #fff;
     margin-bottom: 32px;
 }

 .pov-body {
     font-family: var(--fm);
     font-size: 14px;
     line-height: 1.85;
     color: var(--g200);
     margin: 0 auto 16px;
     max-width: 880px;
 }

 .pov-body-emphasis {
     color: var(--accent);
     font-weight: 700;
     letter-spacing: 0.01em;
 }

 /* ─── Checklist ────────────────────────────────────────────── */
 .pov-checklist {
     max-width: 920px;
     margin: 0 auto 56px;
     padding: 32px 36px;
     border: 1px solid var(--g700);
     border-radius: 14px;
     background: linear-gradient(180deg, rgba(28, 28, 28, 0.6) 0%, rgba(10, 10, 10, 0.5) 100%);
 }

 .pov-checklist-label {
     font-family: var(--fm);
     font-size: 10.5px;
     letter-spacing: 0.28em;
     text-transform: uppercase;
     color: var(--g400);
     margin-bottom: 24px;
     text-align: center;
 }

 .pov-checklist-list {
     list-style: none;
     padding: 0;
     margin: 0;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 14px 36px;
 }

 .pov-checklist-list li {
     display: grid;
     grid-template-columns: 22px 1fr;
     gap: 14px;
     align-items: start;
     font-family: var(--fm);
     font-size: 12.5px;
     line-height: 1.55;
     color: var(--g100);
 }

 .pov-check {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 22px;
     height: 22px;
     border-radius: 50%;
     background: rgba(201, 106, 0, 0.14);
     color: var(--accent);
     flex-shrink: 0;
     margin-top: 1px;
 }

 .pov-check svg {
     width: 12px;
     height: 12px;
 }

 @media (max-width: 720px) {
     .pov-checklist {
         padding: 24px 22px;
         margin-bottom: 40px;
     }

     .pov-checklist-list {
         grid-template-columns: 1fr;
         gap: 12px;
     }

     .pov-checklist-list li {
         font-size: 12px;
     }
 }


 /* ─── Workflow flow row ────────────────────────────────────── */
 .pov-flow {
     max-width: 1120px;
     margin: 0 auto 48px;
     padding: 40px 32px;
     border: 1px solid var(--g700);
     border-radius: 20px;
     background:
         radial-gradient(circle at 50% 0%, rgba(201, 106, 0, 0.08) 0%, transparent 60%),
         linear-gradient(180deg, rgba(34, 34, 34, 0.5) 0%, rgba(8, 8, 8, 0.4) 100%);
     position: relative;
     overflow: hidden;
 }

 .pov-flow-label {
     font-family: var(--fm);
     font-size: 10.5px;
     letter-spacing: 0.32em;
     text-transform: uppercase;
     color: var(--g400);
     text-align: center;
     margin-bottom: 36px;
 }

 .pov-flow-row {
     display: grid;
     grid-template-columns: repeat(5, 1fr) ;
     /* alternating node + arrow columns; we'll render with auto cols actually */
     grid-template-columns: auto auto auto auto auto auto auto auto auto;
     align-items: center;
     justify-content: center;
     gap: 8px 12px;
 }

 .pov-node {
     display: flex;
     flex-direction: column;
     align-items: center;
     text-align: center;
     padding: 22px 16px 20px;
     min-width: 140px;
     border: 1px solid var(--g700);
     border-radius: 14px;
     background: linear-gradient(180deg, rgba(28, 28, 28, 0.8) 0%, rgba(10, 10, 10, 0.6) 100%);
     transition: transform 0.3s ease, border-color 0.3s ease;
 }

 .pov-node:hover {
     transform: translateY(-3px);
     border-color: rgba(201, 106, 0, 0.4);
 }

 .pov-node.is-ai {
     border-color: rgba(201, 106, 0, 0.55);
     background: linear-gradient(180deg, rgba(201, 106, 0, 0.12) 0%, rgba(10, 10, 10, 0.6) 100%);
     box-shadow: 0 0 28px rgba(201, 106, 0, 0.18), inset 0 0 0 1px rgba(201, 106, 0, 0.15);
 }

 .pov-node-num {
     font-family: var(--fm);
     font-size: 10px;
     font-weight: 700;
     letter-spacing: 0.22em;
     color: var(--g500);
     margin-bottom: 12px;
 }

 .pov-node.is-ai .pov-node-num {
     color: var(--accent);
 }

 .pov-node-icon {
     width: 44px;
     height: 44px;
     border: 1px solid var(--g600);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--g100);
     background: rgba(0, 0, 0, 0.45);
     margin-bottom: 14px;
 }

 .pov-node.is-ai .pov-node-icon {
     border-color: var(--accent);
     color: var(--accent);
     background: rgba(201, 106, 0, 0.08);
 }

 .pov-node-icon svg {
     width: 20px;
     height: 20px;
 }

 .pov-node-name {
     font-family: var(--fh);
     font-size: 17px;
     font-weight: 700;
     letter-spacing: 0.04em;
     text-transform: uppercase;
     color: #fff;
     margin-bottom: 6px;
 }

 .pov-node.is-ai .pov-node-name {
     color: var(--accent);
 }

 .pov-node-sub {
     font-family: var(--fm);
     font-size: 10.5px;
     line-height: 1.45;
     color: var(--g300);
     max-width: 130px;
 }

 .pov-connector {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     color: var(--g500);
 }

 .pov-connector svg {
     width: 32px;
     height: 12px;
 }

 .pov-signoff {
     text-align: center;
     font-family: var(--fm);
     font-size: 12px;
     letter-spacing: 0.24em;
     text-transform: uppercase;
     color: var(--g300);
 }

 /* ─── POV RESPONSIVE ───────────────────────────────────────── */
 @media (max-width: 1024px) {
     .pov-flow-row {
         grid-template-columns: 1fr;
         gap: 0;
     }

     .pov-node {
         width: 100%;
         max-width: 320px;
         margin: 0 auto;
         flex-direction: row;
         align-items: center;
         text-align: left;
         gap: 16px;
         padding: 18px 22px;
     }

     .pov-node-num {
         margin: 0;
         font-size: 11px;
     }

     .pov-node-icon {
         margin: 0;
         flex-shrink: 0;
     }

     .pov-node-name {
         margin-bottom: 2px;
     }

     .pov-node-sub {
         max-width: none;
     }

     .pov-connector {
         padding: 8px 0;
         transform: rotate(90deg);
     }
 }

 @media (max-width: 720px) {
     .pov-section {
         padding: 64px 0;
     }

     .pov-heading {
         font-size: clamp(26px, 7vw, 38px);
     }

     .pov-flow {
         padding: 28px 18px;
     }
 }

 /* ─── PROCESS / AI WORKFLOW ─────────────────────────────────── */
 .process-section {
     position: relative;
 }

 .process-header {
     text-align: center;
     max-width: 780px;
     margin: 0 auto 80px;
 }

 .process-header .section-label {
     justify-content: center;
 }

 .process-heading {
     font-size: clamp(42px, 5vw, 72px);
     line-height: 1.05;
     margin-bottom: 28px;
 }

 .process-sub {
     font-family: var(--fm);
     font-size: 13.5px;
     line-height: 1.85;
     color: var(--g200);
     margin: 0 auto;
 }

 /* ─── VERTICAL TIMELINE ─────────────────────────────────────── */
 .process-timeline {
     list-style: none;
     position: relative;
     max-width: 900px;
     margin: 0 auto;
     padding-left: 0;
 }

 .process-timeline::before {
     content: '';
     position: absolute;
     left: 23px;
     top: 12px;
     bottom: 12px;
     width: 1px;
     background: linear-gradient(180deg,
             rgba(201, 106, 0, 0) 0%,
             rgba(201, 106, 0, 0.45) 12%,
             rgba(201, 106, 0, 0.45) 88%,
             rgba(201, 106, 0, 0) 100%);
 }

 .process-step {
     position: relative;
     display: grid;
     grid-template-columns: 48px 1fr;
     gap: 28px;
     padding-bottom: 48px;
 }

 .process-step:last-child {
     padding-bottom: 0;
 }

 .process-marker {
     position: relative;
     z-index: 2;
     width: 48px;
     height: 48px;
     border-radius: 50%;
     background: var(--g900);
     border: 1px solid var(--accent);
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 0 0 4px var(--black), 0 0 24px rgba(201, 106, 0, 0.15);
     transition: background 0.3s ease, transform 0.3s ease;
 }

 .process-step:hover .process-marker {
     background: rgba(201, 106, 0, 0.12);
     transform: scale(1.06);
 }

 .process-num {
     font-family: var(--fm);
     font-size: 13px;
     font-weight: 700;
     letter-spacing: 0.08em;
     color: var(--accent);
 }

 .process-body {
     padding: 4px 0 8px;
 }

 .process-step-head {
     display: flex;
     justify-content: space-between;
     align-items: baseline;
     gap: 20px;
     margin-bottom: 14px;
     flex-wrap: wrap;
 }

 .process-title {
     font-family: var(--fh);
     font-size: 26px;
     font-weight: 700;
     letter-spacing: 0.01em;
     color: #fff;
     line-height: 1.2;
 }

 .process-tool {
     font-family: var(--fm);
     font-size: 10px;
     letter-spacing: 0.18em;
     color: var(--g300);
     text-transform: uppercase;
     white-space: nowrap;
 }

 .process-desc {
     font-family: var(--fm);
     font-size: 13px;
     line-height: 1.85;
     color: var(--g200);
     margin-bottom: 18px;
 }

 .process-bullets {
     list-style: none;
     padding: 0;
     margin: 0;
     display: flex;
     flex-direction: column;
     gap: 8px;
 }

 .process-bullets li {
     position: relative;
     padding-left: 22px;
     font-family: var(--fm);
     font-size: 12.5px;
     line-height: 1.6;
     color: var(--g100);
 }

 .process-bullets li::before {
     content: '';
     position: absolute;
     left: 0;
     top: 7px;
     width: 12px;
     height: 8px;
     border-left: 1.5px solid var(--accent);
     border-bottom: 1.5px solid var(--accent);
     transform: rotate(-45deg);
 }

 /* ─── PROCESS RESPONSIVE ─────────────────────────────────────── */
 @media (max-width: 720px) {
     .process-header {
         margin-bottom: 56px;
     }

     .process-timeline::before {
         left: 19px;
     }

     .process-step {
         grid-template-columns: 40px 1fr;
         gap: 20px;
         padding-bottom: 40px;
     }

     .process-marker {
         width: 40px;
         height: 40px;
     }

     .process-num {
         font-size: 12px;
     }

     .process-step-head {
         flex-direction: column;
         gap: 6px;
         align-items: flex-start;
     }

     .process-title {
         font-size: 22px;
     }
 }
