/* ====== IMAGE OPTIMIZATION ====== */

/* Improve image rendering performance */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Placeholder background for lazy-loaded images */
.galleryItem:not(.loaded),
.featureCard:not(.loaded),
.slide:not(.loaded) {
    background-color: #1a1a1a;
    background-image: linear-gradient(90deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Smooth transition when images load */
.galleryItem,
.featureCard,
.slide {
    transition: opacity 0.3s ease-in-out;
}

/* Critical images should be loaded immediately */
.heroMedia,
.brandLogo {
    content-visibility: auto;
}

/* Use will-change for smoother animations on images */
.galleryItem:hover,
.featureCard:hover {
    will-change: transform;
}

/* Reduce paint on scroll */
.heroImgCard,
.galleryItem,
.featureCard {
    contain: layout style paint;
}

/* Low bandwidth mode - reduce image quality expectations */
.low-bandwidth .galleryItem,
.low-bandwidth .featureCard {
    image-rendering: auto;
}

/* ====== RESET / BASE ====== */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
html,body{height:100%;margin:0;padding:0}
body{
    margin:0;
    padding:0;
    font-family:var(--font-sans);
    font-size:16px;
    line-height:1.45;
    color:var(--c-text);
    background:var(--c-bg);
    text-rendering:optimizeLegibility;
    -webkit-font-smoothing:antialiased;
}
main,
.page{
    margin:0;
    padding:0;
}
img,video{max-width:100%;display:block;height:auto}
img{
    image-rendering:-webkit-optimize-contrast;
    image-rendering:crisp-edges;
}
a{color:inherit;text-decoration:none}
button,input,textarea{font:inherit;color:inherit}
ul{list-style:none}

/* ====== CSS VARIABLES ====== */
:root{
    /* Colors */
    --c-bg:#0b0b0b;
    --c-bg2:#000;
    --c-surface:#121212;
    --c-surface2:#1a1a1a;
    --c-surfaceMuted:#2a2a2a;
    --c-border:rgba(255,255,255,.14);
    --c-borderStrong:rgba(255,255,255,.22);
    --c-text:#fff;
    --c-textMuted:rgba(255,255,255,.72);
    --c-textDim:rgba(255,255,255,.58);
    --c-textOnLight:#0b0b0b;
    --c-lightBg:#fff;
    --c-lightSurface:#f6f6f6;
    --c-lightBorder:rgba(0,0,0,.12);
    --c-lightTextMuted:rgba(0,0,0,.62);
    --c-accent:#fff;
    --c-accentInk:#000;
    --shadow-soft:0 12px 40px rgba(0,0,0,.35);
    --shadow-strong:0 24px 80px rgba(0,0,0,.55);
    
    /* Typography */
    --font-sans:'PP Neue Montreal',-apple-system,BlinkMacSystemFont,'Clarkson',ui-sans-serif,system-ui,Segoe UI,Roboto,Helvetica,Arial,"Apple Color Emoji","Segoe UI Emoji",sans-serif;
    --font-serif:ui-serif,Georgia,Cambria,"Times New Roman",Times,serif;
    --tracking-tight:-0.03em;
    --tracking-normal:-0.01em;
    --tracking-wide:0.08em;
    
    /* Spacing */
    --radius-sm:12px;
    --radius-md:18px;
    --radius-lg:26px;
    --radius-pill:999px;
    --container:1240px;
    --pad:clamp(14px,2.5vw,28px);
    --secY:clamp(48px,6vw,80px);
    --secY2:clamp(64px,8vw,110px);
    
    /* Animation */
    --ease-out:cubic-bezier(.16,1,.3,1);
    --ease-io:cubic-bezier(.65,0,.35,1);
    --ease-soft:cubic-bezier(.2,.9,.2,1);
    --dur-xs:140ms;
    --dur-sm:220ms;
    --dur-md:420ms;
    --dur-lg:780ms;
    --dur-xl:1200ms;
}

/* Performance optimizations */
@media (max-width: 768px){
    :root{
        --secY:clamp(48px,10vw,80px);
        --secY2:clamp(64px,12vw,100px);
    }
    /* Reduce animations on mobile for better performance */
    *{
        animation-duration: 0.5s !important;
    }
    /* Optimize font rendering on mobile */
    body{
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
}

/* ====== UTILITY CLASSES ====== */
.container{
    width:min(var(--container),100% - (var(--pad)*2));
    margin-inline:auto;
}
.container.narrow{
    width:min(860px,100% - (var(--pad)*2));
}
.center{text-align:center}
.invert{color:var(--c-text)}
.invertMuted{color:var(--c-textMuted)}
.micro{font-size:12px;opacity:.9}

/* Focus accessibility */
:focus-visible{
    outline:3px solid rgba(144,238,144,.8);
    outline-offset:3px;
    border-radius:10px;
}
/* Selection highlight */
::selection{
    background:rgba(144,238,144,0.3);
    color:#000;
}
::-moz-selection{
    background:rgba(144,238,144,0.3);
    color:#000;
}

/* Reduce motion */
@media (prefers-reduced-motion:reduce){
    *,*::before,*::after{
        animation-duration:1ms!important;
        animation-iteration-count:1!important;
        transition-duration:1ms!important;
        scroll-behavior:auto!important;
    }
}

/* ====== TYPOGRAPHY ====== */
.displayH2{
    font-size:clamp(32px,5.2vw,72px);
    line-height:1.05;
    letter-spacing:var(--tracking-tight);
    margin:0;
    font-weight:700;
}
@media (max-width: 560px){
    .displayH2{
        font-size:clamp(28px,7.5vw,42px);
        line-height:1.15;
    }
}
.subhead{
    font-size:17px;
    line-height:1.5;
    color:rgba(0,0,0,.62);
    margin:10px 0 0;
}
@media (max-width: 560px){
    .subhead{
        font-size:15px;
        line-height:1.55;
    }
}
.blackSection .subhead{color:var(--c-textMuted)}
.heroTitle{
    font-size:clamp(42px,7vw,96px);
    line-height:1.05;
    letter-spacing:var(--tracking-tight);
    margin:0;
    padding:0;
    font-weight:700;
}
.title-line{
    display:block;
}
@media (max-width: 560px){
    .heroTitle{
        font-size:clamp(32px,9vw,48px);
        line-height:1.1;
        padding:0;
    }
    .heroTitle br{
        display:none;
    }
    .title-line{
        display:block;
        margin:0;
    }
    .title-word{
        animation-duration:0.5s;
    }
}
.centerKicker{
    margin:0 0 44px;
    text-align:center;
    color:var(--c-textMuted);
}

/* ====== BUTTONS ====== */
.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:12px 28px;
    border-radius:12px;
    border:1px solid transparent;
    transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor:pointer;
    font-weight:600;
    font-size:15px;
    letter-spacing:0.01em;
    min-height:44px;
    touch-action:manipulation;
}
.btnPrimary{
    background:linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 100%);
    color:#000;
    border:1px solid rgba(255,255,255,0.3);
    backdrop-filter:blur(20px) saturate(180%);
    -webkit-backdrop-filter:blur(20px) saturate(180%);
    box-shadow:0 8px 32px rgba(0,0,0,.15),
               0 1px 0 rgba(255,255,255,.6) inset,
               0 -1px 0 rgba(0,0,0,.05) inset;
    position:relative;
    overflow:hidden;
}
.btnPrimary::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition:left 0.5s ease;
}
.btnPrimary:hover::before{
    left:100%;
}
.btnPrimary:hover{
    transform:translateY(-2px);
    box-shadow:0 12px 40px rgba(0,0,0,.25),
               0 2px 0 rgba(255,255,255,.7) inset,
               0 -1px 0 rgba(0,0,0,.08) inset;
    background:linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.9) 100%);
}
.btnPrimary:active{
    transform:translateY(0px) scale(.98);
    box-shadow:0 4px 16px rgba(0,0,0,.2),
               0 1px 0 rgba(255,255,255,.5) inset;
}
.iconBtn{
    width:44px;
    height:44px;
    border-radius:14px;
    border:1px solid rgba(255,255,255,.14);
    background:rgba(255,255,255,.06);
    display:grid;
    place-items:center;
    transition:transform var(--dur-sm) var(--ease-out), background var(--dur-sm) var(--ease-out);
    cursor:pointer;
    touch-action:manipulation;
}
.iconBtn:hover{
    transform:translateY(-1px);
    background:rgba(255,255,255,.10);
}
.circleIconBtn{
    width:44px;
    height:44px;
    border-radius:999px;
    border:1px solid rgba(255,255,255,.18);
    background:transparent;
    display:grid;
    place-items:center;
    transition:transform var(--dur-sm) var(--ease-out), background var(--dur-sm) var(--ease-out);
    cursor:pointer;
    touch-action:manipulation;
}
.circleIconBtn:hover{
    transform:scale(1.04);
    background:rgba(255,255,255,.06);
}
@media (max-width: 768px){
    .iconBtn,
    .circleIconBtn{
        width:48px;
        height:48px;
    }
}

/* ====== HEADER ====== */
.siteHeader{
    position:fixed;
    top:0;
    left:0;
    right:0;
    z-index:50;
    background:linear-gradient(to bottom, rgba(0,0,0,.72), rgba(0,0,0,.32), rgba(0,0,0,0));
    backdrop-filter:saturate(120%) blur(8px);
}
.headerInner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 0;
}
.brand{
    display:flex;
    align-items:center;
}
.brandLogo{
    height:70px;
    width:auto;
    object-fit:contain;
    filter:brightness(0) invert(1);
}
@media (max-width: 900px){
    .brandLogo{
        height:60px;
    }
}
@media (max-width: 560px){
    .brandLogo{
        height:50px;
    }
}
.topNav{
    display:flex;
    align-items:center;
    gap:28px;
}
.navLink{
    font-size:13px;
    letter-spacing:var(--tracking-wide);
    text-transform:uppercase;
    opacity:.92;
    position:relative;
    padding:10px 4px;
    transition:opacity var(--dur-sm) var(--ease-out);
}
.navLink.subtle{opacity:.82}
.navLink::after{
    content:"";
    position:absolute;
    left:8px;
    right:8px;
    bottom:6px;
    height:1px;
    background:rgba(255,255,255,.75);
    transform:scaleX(0);
    transform-origin:center;
    transition:transform var(--dur-sm) var(--ease-out);
}
.navLink:hover::after{transform:scaleX(1)}
.headerActions{
    display:flex;
    align-items:center;
    gap:14px;
}
/* Mobile Menu Button */
.mobileMenuBtn{
    display:none;
    flex-direction:column;
    justify-content:space-around;
    width:40px;
    height:40px;
    background:transparent;
    border:none;
    cursor:pointer;
    padding:8px;
    z-index:52;
}
.mobileMenuBtn span{
    width:100%;
    height:2px;
    background:#fff;
    border-radius:2px;
    transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin:center;
}
.mobileMenuBtn.active span:nth-child(1){
    transform:translateY(9px) rotate(45deg);
}
.mobileMenuBtn.active span:nth-child(2){
    opacity:0;
    transform:translateX(-20px);
}
.mobileMenuBtn.active span:nth-child(3){
    transform:translateY(-9px) rotate(-45deg);
}

/* Mobile Navigation */
.mobileNav{
    position:fixed;
    top:70px;
    left:0;
    right:0;
    background:rgba(0,0,0,0.98);
    backdrop-filter:blur(20px);
    padding:32px;
    display:flex;
    flex-direction:column;
    gap:20px;
    transform:translateY(-100%);
    opacity:0;
    pointer-events:none;
    transition:all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index:49;
    box-shadow:0 10px 40px rgba(0,0,0,0.3);
}
.mobileNav.active{
    transform:translateY(0);
    opacity:1;
    pointer-events:all;
}
.mobileNavLink{
    font-size:18px;
    font-weight:600;
    padding:12px 0;
    border-bottom:1px solid rgba(255,255,255,0.1);
    transition:all 0.3s ease;
}
.mobileNavLink:hover{
    padding-left:10px;
    color:rgba(255,255,255,0.7);
}

@media (max-width: 900px){
    .topNav{display:none}
    .brand{font-size:11px;letter-spacing:0.05em}
    .mobileMenuBtn{display:flex}
    .headerActions .btn{display:none}
}
@media (max-width: 560px){
    .headerActions .navLink{display:none}
    .brand{font-size:10px}
}

/* ====== NEW HERO SECTION ====== */
.hero {
    width: 100%;
    background: #ffffff;
    color: #000000;
    padding: 0;
    margin: 0;
    contain: layout style paint;
}

.heroContainer {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 40px 96px;
}

/* Row 1: Content Area */
.heroContent {
    margin-bottom: 56px;
    max-width: 672px;
}

/* Micro Badge */
.heroBadge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 9999px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.03);
    margin-bottom: 24px;
}

.heroBadgeDot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #000000;
}

.heroBadgeText {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.6);
}

/* Hero Title */
.heroTitle {
    font-size: clamp(2.6rem, 6vw, 4.25rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #000000;
    margin: 0 0 clamp(32px, 5vw, 48px);
    padding-top: clamp(24px, 4vw, 40px);
}

.heroTitleBreak {
    display: none;
}

.heroTitleSterlings {
    display: none;
}

/* Hero Subtitle */
.heroSubtitle {
    max-width: 512px;
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.65);
    margin: 0 0 32px;
}

/* Hero Actions (CTAs) */
.heroActions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 12px;
}

.btnHero {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 24px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 9999px;
    transition: all 0.2s ease;
}

.btnPrimary.btnHero {
    background: #000000;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btnPrimary.btnHero:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btnOutline.btnHero {
    background: transparent;
    color: #000000;
    border: 1px solid rgba(0, 0, 0, 0.15);
}

.btnOutline.btnHero:hover {
    border-color: rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.03);
}

.btnIcon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.heroCallWrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.heroCallHelper {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.4);
    padding-left: 16px;
    margin-top: 6px;
}

/* Helper Text */
.heroHelperText {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.65);
    margin: 0 0 8px;
}

/* Process Steps */
.heroProcess {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 32px;
}

.heroProcessStep {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.heroProcessNum {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.06);
    font-size: 10px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.5);
}

.heroProcessArrow {
    color: rgba(0, 0, 0, 0.2);
}

/* Trust Chips */
.heroTrust {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.heroTrustChip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 9999px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: rgba(0, 0, 0, 0.03);
    font-size: 14px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.7);
}

.heroTrustIcon {
    width: 16px;
    height: 16px;
    color: rgba(0, 0, 0, 0.5);
}

.heroTrustDivider {
    width: 1px;
    height: 20px;
    background: rgba(0, 0, 0, 0.1);
}

.heroTrustMetric {
    font-size: 14px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.5);
}

.heroTrustChipHidden {
    display: none;
}

/* Service Cards Grid */
.heroServicesGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.heroServiceCard {
    position: relative;
    display: flex;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    contain: layout style paint;
    will-change: transform, box-shadow;
}

.heroServiceCard:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-6px);
}

.heroServiceImage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #e5e5e5;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.heroServiceImage.lazy-bg:not(.loaded) {
    background-image: linear-gradient(135deg, #e5e5e5 0%, #d0d0d0 100%);
}

.heroServiceImage.loaded {
    background-color: transparent;
}

.heroServiceCard:hover .heroServiceImage {
    transform: scale(1.05);
}

.heroServiceGradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3) 40%, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.heroServiceImage.loaded ~ .heroServiceGradient {
    opacity: 1;
}

.heroServiceTag {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #000000;
    z-index: 2;
}

.heroServiceContent {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    z-index: 2;
}

.heroServiceTitle {
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px;
}

.heroServiceDesc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.heroServiceArrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    color: #ffffff;
    flex-shrink: 0;
    margin-bottom: 4px;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.heroServiceCard:hover .heroServiceArrow {
    opacity: 1;
    transform: translateX(0);
}

/* Explore Link */
.heroExploreLink {
    display: flex;
    justify-content: center;
}

.heroExplore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.5);
    text-decoration: none;
    transition: color 0.2s ease;
}

.heroExplore:hover {
    color: #000000;
}

.heroExplore svg {
    width: 14px;
    height: 14px;
    transition: transform 0.2s ease;
}

.heroExplore:hover svg {
    transform: translateX(2px);
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .heroContainer {
        padding: 64px 32px 80px;
    }
    
    .heroTitle {
        padding-top: 60px;
        margin-bottom: 56px;
    }
    
    .heroServicesGrid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .heroTrustChipHidden {
        display: inline-flex;
    }
    
    .heroServiceCard {
        height: 360px;
    }
}

/* Mobile Landscape & Small Tablets */
@media (max-width: 900px) and (orientation: landscape) {
    .heroContainer {
        padding: 32px 24px 48px;
    }
    
    .heroTitle {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .heroServicesGrid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .heroServiceCard {
        height: 280px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .heroContainer {
        padding-top: 100px !important;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 48px;
    }
    
    .heroTitle {
        padding-top: 0px;
        margin-top: 0px;
        margin-bottom: 96px;
    }
    
    .heroContent {
        margin-bottom: 40px;
    }
    
    .heroActions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .heroCallWrapper {
        width: 100%;
    }
    
    .btnHero {
        width: 100%;
        justify-content: center;
        padding: 20px 32px;
    }
    
    .heroServicesGrid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .heroServiceCard {
        height: 320px;
    }
    
    .heroExploreLink {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .heroTrustChipHidden {
        display: none;
    }
    
    .heroTrustDivider,
    .heroTrustMetric {
        display: none;
    }
    
    .heroContainer {
        padding: 32px 16px 40px;
    }
    
    .heroTitle {
        padding-top: 16px;
        margin-bottom: 24px;
    }
    
    .heroSubtitle {
        font-size: 15px;
        margin-bottom: 24px;
    }
    
    .btnHero {
        padding: 18px 28px;
        font-size: 15px;
    }
}

/* iPhone SE and smaller */
@media (max-width: 375px) {
    .heroContainer {
        padding: 24px 16px 32px;
    }
    
    .heroTitle {
        font-size: clamp(2rem, 8vw, 2.6rem);
        padding-top: 12px;
        margin-bottom: 20px;
    }
    
    .heroSubtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .heroActions {
        gap: 8px;
    }
    
    .btnHero {
        padding: 16px 24px;
        font-size: 14px;
    }
    
    .heroServiceCard {
        height: 280px;
    }
    
    .heroServiceTitle {
        font-size: 18px;
    }
    
    .heroServiceDesc {
        font-size: 13px;
    }
}

/* Large Desktop */
@media (min-width: 1280px) {
    .heroContainer {
        padding: 100px 60px 120px;
    }
    
    .heroContent {
        margin-bottom: 64px;
    }
    
    .heroServicesGrid {
        gap: 24px;
    }
    
    .heroServiceCard {
        height: 440px;
    }
}

/* Touch devices - larger tap targets */
@media (hover: none) and (pointer: coarse) {
    .btnHero {
        min-height: 48px;
    }
    
    .heroServiceCard {
        min-height: 300px;
    }
    
    .heroTrustChip {
        padding: 10px 16px;
    }
    
    /* Better touch targets for all interactive elements */
    .btn {
        min-height: 48px;
        padding: 14px 32px;
    }
    
    .pillTab {
        min-height: 48px;
        padding: 12px 18px;
    }
    
    .navLink {
        padding: 14px 8px;
    }
    
    .galleryItem {
        min-height: 200px;
    }
    
    .accSummary {
        min-height: 64px;
        padding: 20px 24px;
    }
}
/* ====== STATS BAND ====== */
.blackBand{
    background:#000;
    color:#fff;
    padding:var(--secY) 0;
}
.statsRow{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    align-items:end;
    text-align:center;
}
.statValue{
    font-size:clamp(44px,5vw,72px);
    line-height:1;
    letter-spacing:var(--tracking-tight);
    font-weight:700;
}
.statLabel{
    margin-top:10px;
    color:rgba(255,255,255,.65);
    font-size:13px;
}
@media (max-width: 900px){
    .statsRow{grid-template-columns:1fr;gap:28px}
}

/* Subtle count shimmer */
.statValue{
    background:linear-gradient(90deg, rgba(255,255,255,.75), rgba(255,255,255,1), rgba(255,255,255,.75));
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
    background-size:220% 100%;
    animation:textShimmer 4.5s linear infinite;
}
@keyframes textShimmer{
    0%{background-position:0% 0}
    100%{background-position:220% 0}
}

/* ====== LIGHT SECTIONS ====== */
.lightSection{
    background:var(--c-lightBg);
    color:var(--c-textOnLight);
    padding:var(--secY) 0;
}
.lightSection .subhead{
    margin:12px auto 0;
    max-width:56ch;
}
.twoColHeader{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:36px;
    align-items:start;
    margin-bottom:36px;
}
@media (max-width: 900px){
    .twoColHeader{grid-template-columns:1fr}
}

/* ====== PILL TABS & CAROUSEL ====== */
.pillTabs{
    margin-top:26px;
    display:flex;
    gap:10px;
    justify-content:center;
    flex-wrap:wrap;
    padding:0 10px;
    overflow-x:auto;
    overflow-y:hidden;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
}
.pillTabs::-webkit-scrollbar{
    display:none;
}
@media (max-width: 768px){
    .pillTabs{
        justify-content:flex-start;
        flex-wrap:nowrap;
        padding:10px;
        margin-left:-10px;
        margin-right:-10px;
        gap:8px;
    }
}
.pillTab{
    border:1px solid rgba(0,0,0,.14);
    background:rgba(0,0,0,.04);
    padding:10px 16px;
    border-radius:999px;
    font-size:14px;
    transition:background var(--dur-sm) var(--ease-out), transform var(--dur-sm) var(--ease-out);
    cursor:pointer;
    white-space:nowrap;
    min-height:44px;
    display:flex;
    align-items:center;
}
.pillTab:hover{
    background:rgba(0,0,0,.08);
    transform:translateY(-1px);
}
.pillTab.isActive{
    background:rgba(0,0,0,.10);
    border-color:rgba(0,0,0,.18);
}
.snapCarousel{
    margin-top:28px;
    display:grid;
    grid-auto-flow:column;
    grid-auto-columns:min(880px,78vw);
    gap:22px;
    overflow:auto;
    scroll-snap-type:x mandatory;
    padding:10px 6px 22px;
    -webkit-overflow-scrolling:touch;
}
.snapCarousel::-webkit-scrollbar{height:10px}
.snapCarousel::-webkit-scrollbar-thumb{
    background:rgba(0,0,0,.18);
    border-radius:999px;
}
@media (max-width: 768px){
    .snapCarousel{
        grid-auto-columns:min(90vw,100%);
        gap:16px;
        padding:10px 10px 22px;
    }
    .snapCarousel::-webkit-scrollbar{
        display:none;
    }
}
@media (max-width: 560px){
    .snapCarousel{
        grid-auto-columns:85vw;
        gap:12px;
    }
}
.snapCarousel .slide{
    scroll-snap-align:center;
    border-radius:28px;
    overflow:hidden;
    position:relative;
    min-height:480px;
    background:#111;
    box-shadow:0 20px 72px rgba(0,0,0,.28);
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
}
.slideOverlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to bottom, rgba(0,0,0,.05), rgba(0,0,0,.75));
    pointer-events:none;
}
.slideContent{
    position:relative;
    z-index:2;
    padding:28px;
    color:#fff;
}
.slideContent h3{
    font-size:28px;
    margin:0 0 10px;
    letter-spacing:var(--tracking-tight);
}
.slideContent p{
    margin:0;
    opacity:.9;
    line-height:1.6;
}
@media (max-width: 560px){
    .slideContent{
        padding:24px 20px;
    }
    .slideContent h3{
        font-size:22px;
    }
    .slideContent p{
        font-size:14px;
    }
    .snapCarousel .slide{
        min-height:320px;
    }
}
.snapCarousel .slide{
    transform:scale(.96);
    transition:transform var(--dur-md) var(--ease-out);
}
.snapCarousel .slide:hover{transform:scale(.98)}

/* ====== FEATURE CARDS ====== */
.featureGrid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
    margin-top:18px;
}
@media (max-width: 1100px){
    .featureGrid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width: 560px){
    .featureGrid{grid-template-columns:1fr}
}
.featureCard{
    border-radius:24px;
    overflow:hidden;
    min-height:520px;
    position:relative;
    background:#141414;
    color:#fff;
    box-shadow:0 20px 72px rgba(0,0,0,.22);
    cursor:pointer;
    transition:all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    user-select:none;
}
.featureCard:active{
    transform:scale(0.98) rotate(-1deg);
    box-shadow:0 8px 30px rgba(0,0,0,.25);
}
.featureCard:active::before{
    background:radial-gradient(1100px 620px at 20% 20%, rgba(255,255,255,.18), rgba(255,255,255,0) 65%), linear-gradient(to bottom, rgba(255,255,255,.10), rgba(0,0,0,.95));
}
.featureCard:active .floatingUi{
    transform:translateY(-8px) scale(0.95);
}
.featureCard:active .cardText{
    transform:scale(0.98);
}
.featureCard:hover{
    transform:translateY(-8px) scale(1.02);
    box-shadow:0 24px 80px rgba(0,0,0,.35);
}
.featureCard:hover .floatingUi{
    transform:translateY(-12px) scale(1.05);
    filter:drop-shadow(0 32px 80px rgba(0,0,0,.6));
}
.featureCard:hover .uiBit{
    animation-duration:2.5s;
    background:rgba(255,255,255,1);
    transform:translateY(10px) rotate(1deg);
}
.featureCard:hover .cardText h3{
    transform:translateX(4px);
}
.featureCard:hover::before{
    background:radial-gradient(900px 520px at 20% 20%, rgba(255,255,255,.15), rgba(255,255,255,0) 60%), linear-gradient(to bottom, rgba(255,255,255,.08), rgba(0,0,0,.85));
}
.featureCard::before{
    content:"";
    position:absolute;
    inset:0;
    background:radial-gradient(700px 420px at 20% 20%, rgba(255,255,255,.10), rgba(255,255,255,0) 55%), linear-gradient(to bottom, rgba(255,255,255,.06), rgba(0,0,0,.7));
    pointer-events:none;
    transition:all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.featureCard .cardText{
    position:absolute;
    left:22px;
    right:22px;
    top:20px;
    transition:transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.featureCard h3{
    margin:0;
    font-size:22px;
    letter-spacing:var(--tracking-tight);
    transition:transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.featureCard p{
    margin:10px 0 0;
    color:rgba(255,255,255,.72);
    font-size:13px;
    line-height:1.55;
    max-width:32ch;
}
.featureCard .floatingUi{
    position:absolute;
    inset:auto 0 0 0;
    height:64%;
    display:grid;
    place-items:center;
    filter:drop-shadow(0 24px 60px rgba(0,0,0,.5));
    transition:all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.featureCard .uiBit{
    border-radius:16px;
    background:rgba(255,255,255,.92);
    color:#000;
    border:1px solid rgba(0,0,0,.08);
    padding:10px 12px;
    transform:translateY(10px);
    animation:uiBob 4.2s var(--ease-io) infinite alternate;
    font-weight:600;
    font-size:14px;
    transition:all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes uiBob{
    from{transform:translateY(12px) rotate(-.2deg)}
    to{transform:translateY(0px) rotate(.2deg)}
}
.featureCard:hover .uiBit{animation-duration:3.2s}

/* ====== GLASSY CARDS ====== */
.glassCard{
    background:linear-gradient(135deg, rgba(240,242,245,0.6) 0%, rgba(250,251,252,0.4) 100%);
    backdrop-filter:blur(16px) saturate(180%);
    -webkit-backdrop-filter:blur(16px) saturate(180%);
    border:1px solid rgba(0,0,0,0.06);
    border-radius:24px;
    padding:36px;
    box-shadow:0 10px 40px rgba(0,0,0,.06),
               0 1px 2px rgba(0,0,0,.04),
               0 1px 0 rgba(255,255,255,.8) inset;
    position:relative;
    overflow:hidden;
    margin-bottom:24px;
    transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.glassCard:hover{
    transform:translateY(-2px);
    box-shadow:0 16px 56px rgba(0,0,0,.08),
               0 2px 4px rgba(0,0,0,.05),
               0 1px 0 rgba(255,255,255,.9) inset;
    border:1px solid rgba(0,0,0,0.08);
}
.glassCard::before{
    content:"";
    position:absolute;
    inset:0;
    background:radial-gradient(circle at 30% 20%, rgba(255,255,255,0.8), transparent 60%);
    pointer-events:none;
    opacity:0.5;
}
.glassCard h3{
    position:relative;
    z-index:1;
    margin-top:0;
}
.glassCard p{
    position:relative;
    z-index:1;
    margin-bottom:0;
}
.glassCardDark{
    background:linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.04) 100%);
    border:1px solid rgba(255,255,255,0.14);
    box-shadow:0 12px 48px rgba(0,0,0,.5),
               0 2px 4px rgba(0,0,0,.3),
               0 1px 0 rgba(255,255,255,.15) inset;
    padding:60px 40px;
    transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.glassCardDark:hover{
    transform:translateY(-3px);
    box-shadow:0 20px 64px rgba(0,0,0,.6),
               0 4px 8px rgba(0,0,0,.4),
               0 1px 0 rgba(255,255,255,.2) inset;
    border:1px solid rgba(255,255,255,0.2);
}
.glassCardDark::before{
    background:radial-gradient(circle at 50% 30%, rgba(255,255,255,0.1), transparent 70%);
    opacity:0.6;
}

/* ====== ABOUT SECTION ====== */
.aboutSection{
    background:#ffffff;
    color:#000;
}
.aboutChip{
    display:inline-block;
    padding:8px 18px;
    background:rgba(0,0,0,0.06);
    border:1px solid rgba(0,0,0,0.1);
    border-radius:999px;
    font-size:13px;
    font-weight:600;
    letter-spacing:0.02em;
    text-transform:uppercase;
    margin:0 auto 20px;
    display:block;
    width:fit-content;
    text-align:center;
}
.aboutHeader{
    margin-bottom:48px;
    text-align:center;
}
.aboutContent{
    display:grid;
    grid-template-columns:1.2fr 0.8fr;
    gap:48px;
    align-items:start;
}
.aboutText h3{
    font-size:24px;
    margin:32px 0 16px;
    letter-spacing:var(--tracking-tight);
    color:#000;
}
.aboutText h3:first-of-type{
    margin-top:0;
}
.aboutText p{
    color:rgba(0,0,0,.75);
    line-height:1.7;
    margin:0 0 20px;
}
.aboutStats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    margin:44px 0 32px;
    padding:32px 0;
    border-top:1px solid rgba(0,0,0,.1);
    border-bottom:1px solid rgba(0,0,0,.1);
}
.aboutStatItem{
    text-align:center;
    display:flex;
    flex-direction:column;
    gap:8px;
}
.aboutStatItem strong{
    font-size:36px;
    font-weight:700;
    letter-spacing:var(--tracking-tight);
    color:#000;
}
.aboutStatItem span{
    font-size:13px;
    color:rgba(0,0,0,.6);
}
.aboutCta{
    margin-top:32px;
}
.aboutImage{
    position:sticky;
    top:120px;
}
.aboutImgWrapper{
    aspect-ratio:3/5;
    border-radius:24px;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    box-shadow:0 32px 96px rgba(0,0,0,.2);
    filter:grayscale(0.15) contrast(1.08);
    overflow:hidden;
    position:relative;
}
.aboutImgWrapper video{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
@media (max-width: 768px){
    .aboutImgWrapper{
        aspect-ratio:16/9;
        border-radius:16px;
    }
    .aboutImgWrapper video{
        object-fit:cover;
    }
}
@media (max-width: 560px){
    .aboutImgWrapper{
        aspect-ratio:4/3;
        border-radius:12px;
    }
}
@media (max-width: 900px){
    .aboutContent{
        grid-template-columns:1fr;
        gap:40px;
    }
    .aboutImage{
        position:relative;
        top:0;
    }
    .aboutStats{
        grid-template-columns:1fr;
        gap:20px;
    }
}
@media (max-width: 560px){
    .aboutText h3{
        font-size:20px;
        margin:24px 0 12px;
    }
    .aboutText p{
        font-size:15px;
    }
    .aboutStats{
        margin:32px 0 24px;
        padding:24px 0;
    }
    .aboutStatItem strong{
        font-size:28px;
    }
}

/* ====== TESTIMONIALS SECTION ====== */
.testimonialsSection{
    background:#ffffff;
    color:#000;
}
.testimonialsGrid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:32px;
    margin-top:44px;
    max-width:1100px;
    margin-left:auto;
    margin-right:auto;
}
@media (max-width: 900px){
    .testimonialsGrid{
        grid-template-columns:1fr;
        gap:24px;
    }
}
.testimonialCard{
    background:linear-gradient(135deg, rgba(240,242,245,0.7) 0%, rgba(250,251,252,0.5) 100%);
    backdrop-filter:blur(16px) saturate(180%);
    -webkit-backdrop-filter:blur(16px) saturate(180%);
    border:1px solid rgba(0,0,0,0.08);
    border-radius:24px;
    padding:40px;
    box-shadow:0 12px 48px rgba(0,0,0,.08),
               0 1px 2px rgba(0,0,0,.04),
               0 1px 0 rgba(255,255,255,.9) inset;
    position:relative;
    overflow:hidden;
    transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonialCard:hover{
    transform:translateY(-4px);
    box-shadow:0 20px 64px rgba(0,0,0,.12),
               0 2px 4px rgba(0,0,0,.06),
               0 1px 0 rgba(255,255,255,1) inset;
    border:1px solid rgba(0,0,0,0.1);
}
.testimonialCard::before{
    content:"";
    position:absolute;
    inset:0;
    background:radial-gradient(circle at 30% 20%, rgba(255,255,255,0.9), transparent 65%);
    pointer-events:none;
    opacity:0.6;
}
.testimonialStars{
    color:#fbbf24;
    font-size:24px;
    margin-bottom:20px;
    letter-spacing:4px;
    position:relative;
    z-index:1;
}
.testimonialText{
    position:relative;
    z-index:1;
    font-size:16px;
    line-height:1.7;
    color:rgba(0,0,0,.85);
    margin:0 0 24px;
    font-style:italic;
}
.testimonialAuthor{
    position:relative;
    z-index:1;
    display:flex;
    flex-direction:column;
    gap:4px;
    padding-top:20px;
    border-top:1px solid rgba(0,0,0,.1);
}
.testimonialAuthor strong{
    font-size:16px;
    font-weight:700;
    color:#000;
}
.testimonialAuthor span{
    font-size:14px;
    color:rgba(0,0,0,.6);
}
@media (max-width: 560px){
    .testimonialCard{
        padding:32px 24px;
    }
    .testimonialText{
        font-size:15px;
    }
}

/* ====== GRADIENT CTA SECTION ====== */
.gradientSection{
    background:#ffffff;
    padding:var(--secY2) 0;
    color:#000;
}
.splitCards{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:22px;
    margin-top:44px;
}
@media (max-width: 900px){
    .splitCards{grid-template-columns:1fr}
}
@media (max-width: 560px){
    .bigCard{
        min-height:320px;
        padding:28px 24px;
    }
    .cardContent span{
        font-size:20px!important;
    }
    .cardContent p{
        font-size:14px!important;
    }
}
.bigCard{
    border-radius:24px;
    min-height:560px;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:40px;
    position:relative;
    overflow:hidden;
    transition:all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border:none;
}
.darkCard{
    background:#0b0b0b;
    color:#fff;
    box-shadow:0 20px 60px rgba(0,0,0,.35),
               0 0 0 1px rgba(255,255,255,.15) inset;
}
.cardOverlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to bottom, 
                rgba(0,0,0,0.2) 0%, 
                rgba(0,0,0,0.65) 50%,
                rgba(0,0,0,0.88) 100%);
    z-index:1;
    transition:opacity 0.4s ease;
}
.cardContent{
    position:relative;
    z-index:3;
}
.cardContent span{
    text-shadow:0 2px 8px rgba(0,0,0,0.5);
}
.cardContent p{
    text-shadow:0 1px 4px rgba(0,0,0,0.4);
}
.darkCard::before{
    content:"";
    position:absolute;
    inset:0;
    background:radial-gradient(800px 500px at 30% 30%, rgba(255,255,255,.12), rgba(255,255,255,0) 65%);
    z-index:2;
    opacity:0.6;
    transition:opacity 0.4s ease;
}
.bigCard:hover{
    transform:translateY(-4px) scale(1.01);
    box-shadow:0 32px 80px rgba(0,0,0,.45);
}
.bigCard:hover .cardOverlay{
    opacity:0.8;
}
.bigCard:hover::before{
    opacity:0.85;
}
.bigCard::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:inherit;
    background:linear-gradient(135deg, 
                rgba(255,255,255,.12) 0%, 
                rgba(255,255,255,0) 50%);
    z-index:2;
    pointer-events:none;
}

/* ====== BLACK SECTION ====== */
.blackSection{
    background:#000;
    color:#fff;
    padding:var(--secY) 0;
}

/* ====== DOMAIN FINDER / CONTACT ====== */
.domainFinder{
    padding:var(--secY2) 0;
    background:#000;
    color:#fff;
    position:relative;
    overflow:hidden;
}
.domainFinder::before{
    content:"";
    position:absolute;
    inset:0;
    background:radial-gradient(900px 500px at 50% 0%, rgba(255,255,255,.10), rgba(255,255,255,0) 60%);
}
.domainSearch{margin-top:28px}
.searchShell{
    display:flex;
    align-items:center;
    gap:12px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.14);
    border-radius:16px;
    padding:14px 14px 14px 16px;
    backdrop-filter:blur(10px);
}
.searchInput{
    flex:1;
    background:transparent;
    border:0;
    outline:none;
    color:#fff;
    font-size:16px;
    border-bottom:1px solid rgba(255,255,255,.2);
    min-height:44px;
    -webkit-appearance:none;
    -moz-appearance:none;
    appearance:none;
}
.searchInput::placeholder{color:rgba(255,255,255,.55)}
.searchInput:focus{
    border-bottom-color:rgba(255,255,255,.5);
}
@media (max-width: 768px){
    .searchInput{
        font-size:16px;
    }
    .searchShell{
        padding:20px;
    }
}
.icon{opacity:.85}

/* ====== GALLERY ====== */
.galleryHeader{
    margin-bottom:44px;
}
.galleryGrid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}
@media (max-width: 1100px){
    .galleryGrid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width: 560px){
    .galleryGrid{grid-template-columns:1fr}
}
.galleryItem{
    aspect-ratio:5/4;
    border-radius:20px;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    box-shadow:0 20px 72px rgba(0,0,0,.5);
    transition:transform var(--dur-md) var(--ease-out);
    cursor:pointer;
    will-change:transform;
    filter:saturate(1.2) contrast(1.15) brightness(1.05);
    position:relative;
}
.galleryItem::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to bottom, 
                rgba(0,0,0,0) 0%, 
                rgba(0,0,0,0.15) 100%);
    pointer-events:none;
    border-radius:inherit;
    opacity:0.6;
    transition:opacity 0.3s ease;
}
.galleryItem:hover{
    transform:translateY(-6px) scale(1.03);
    filter:saturate(1.3) contrast(1.2) brightness(1.1);
}
.galleryItem:hover::before{
    opacity:0.3;
}
@media (max-width: 768px){
    .galleryItem{
        border-radius:16px;
        filter:saturate(1.15) contrast(1.1) brightness(1.03);
    }
    .galleryItem:hover{
        transform:translateY(-3px) scale(1.02);
        filter:saturate(1.25) contrast(1.15) brightness(1.08);
    }
}

/* ====== FAQ ====== */
.faq{padding:var(--secY) 0}
.accordion{
    margin-top:32px;
    max-width:900px;
}
.accItem{
    border-top:1px solid rgba(255,255,255,.14);
    padding:24px 0;
}
.accItem:last-child{
    border-bottom:1px solid rgba(255,255,255,.14);
}
.accSummary{
    font-size:20px;
    font-weight:600;
    letter-spacing:var(--tracking-normal);
    cursor:pointer;
    list-style:none;
    display:flex;
    justify-content:space-between;
    align-items:center;
    transition:color var(--dur-sm) var(--ease-out);
    min-height:44px;
    padding:8px 0;
    touch-action:manipulation;
}
@media (max-width: 560px){
    .accSummary{
        font-size:18px;
    }
}
.accSummary::-webkit-details-marker{display:none}
.accSummary::after{
    content:"+";
    font-size:28px;
    font-weight:400;
    transition:transform var(--dur-sm) var(--ease-out);
}
.accItem[open] .accSummary::after{
    transform:rotate(45deg);
}
.accSummary:hover{color:rgba(255,255,255,.85)}
.accBody{
    margin-top:16px;
    color:rgba(255,255,255,.75);
    line-height:1.7;
    max-width:72ch;
}
.accBody p{margin:0}

/* ====== FOOTER CTA ====== */
.footerCta{
    padding:var(--secY2) 0;
    position:relative;
    overflow:hidden;
    text-align:center;
}
.particleSphere{
    position:absolute;
    inset:0;
    opacity:.1;
    background:radial-gradient(circle at 50% 50%, 
        transparent 0%, 
        transparent 30%, 
        rgba(255,255,255,.05) 30.5%, 
        rgba(255,255,255,.05) 31%, 
        transparent 31.5%,
        transparent 40%,
        rgba(255,255,255,.05) 40.5%,
        rgba(255,255,255,.05) 41%,
        transparent 41.5%
    );
    background-size:50px 50px;
    animation:particleDrift 20s linear infinite;
}
@keyframes particleDrift{
    from{transform:rotate(0deg) scale(1)}
    to{transform:rotate(360deg) scale(1.1)}
}

/* ====== FOOTER ====== */
.siteFooter{padding:var(--secY) 0 40px}
.footerGrid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
    padding-bottom:44px;
    border-bottom:1px solid rgba(255,255,255,.14);
}
@media (max-width: 900px){
    .footerGrid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width: 560px){
    .footerGrid{grid-template-columns:1fr}
}
.footerTitle{
    font-size:14px;
    font-weight:700;
    letter-spacing:var(--tracking-wide);
    text-transform:uppercase;
    margin:0 0 18px;
}
.footerText{
    color:rgba(255,255,255,.65);
    font-size:14px;
    line-height:1.6;
    margin:0;
}
.footerLinks{
    display:flex;
    flex-direction:column;
    gap:12px;
}
.footerLinks a{
    color:rgba(255,255,255,.65);
    font-size:14px;
    transition:color var(--dur-sm) var(--ease-out);
}
.footerLinks a:hover{color:rgba(255,255,255,.95)}
.footerLinks li{color:rgba(255,255,255,.65);font-size:14px}
.footerBottom{
    margin-top:28px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:13px;
    color:rgba(255,255,255,.55);
}
@media (max-width: 560px){
    .footerBottom{flex-direction:column;gap:18px;text-align:center}
    .footerBottomLinks{justify-content:center}
}
/* Additional mobile padding adjustments */
@media (max-width: 560px){
    .container{
        padding-left:16px;
        padding-right:16px;
    }
    .lightSection,
    .blackSection{
        padding:clamp(48px,10vw,80px) 0;
    }
}
.footerBottomLinks{
    display:flex;
    gap:20px;
}
.footerBottomLinks a{
    transition:color var(--dur-sm) var(--ease-out);
}
.footerBottomLinks a:hover{color:rgba(255,255,255,.85)}

/* ====== LIGHTBOX ====== */
.lightbox{
    position:fixed;
    inset:0;
    z-index:9999;
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    pointer-events:none;
    transition:opacity 0.3s ease;
}
.lightbox.active{
    opacity:1;
    pointer-events:all;
}
.lightbox-backdrop{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.95);
}
.lightbox-content{
    position:relative;
    max-width:90vw;
    max-height:90vh;
    z-index:2;
}
.lightbox-content img{
    max-width:90vw;
    max-height:90vh;
    width:auto;
    height:auto;
    border-radius:8px;
    box-shadow:0 24px 80px rgba(0,0,0,0.5);
}
.lightbox-close{
    position:absolute;
    top:-50px;
    right:0;
    background:transparent;
    border:none;
    color:#fff;
    font-size:48px;
    cursor:pointer;
    width:50px;
    height:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:transform 0.2s ease;
}
.lightbox-close:hover{
    transform:scale(1.2);
}
.lightbox-prev,
.lightbox-next{
    position:fixed;
    top:50%;
    transform:translateY(-50%);
    background:rgba(255,255,255,0.15);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,0.3);
    color:#fff;
    font-size:48px;
    cursor:pointer;
    width:60px;
    height:60px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    transition:all 0.3s ease;
    z-index:10000;
}
.lightbox-prev{
    left:20px;
}
.lightbox-next{
    right:20px;
}
.lightbox-prev:hover,
.lightbox-next:hover{
    background:rgba(255,255,255,0.25);
    transform:translateY(-50%) scale(1.1);
    border-color:rgba(255,255,255,0.5);
}
@media (max-width: 900px){
    .lightbox-prev{
        left:10px;
        width:50px;
        height:50px;
        font-size:36px;
    }
    .lightbox-next{
        right:10px;
        width:50px;
        height:50px;
        font-size:36px;
    }
    .lightbox-close{
        top:10px;
        right:10px;
    }
}

/* ====== SCROLL ANIMATIONS ====== */
.animate-in{
    opacity:1!important;
    transform:translate(0) scale(1)!important;
}

/* Header scroll states */
.siteHeader{
    transition:transform 0.3s ease, box-shadow 0.3s ease;
}
.siteHeader.scrolled{
    background:rgba(0,0,0,0.95);
    backdrop-filter:saturate(120%) blur(12px);
    box-shadow:0 4px 20px rgba(0,0,0,0.2);
}
/* ====== PERFORMANCE OPTIMIZATIONS ====== */

/* GPU Acceleration for animations */
.heroServiceCard,
.heroServiceImage,
.heroServiceArrow,
.btnHero {
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Reduce repaints */
.heroServicesGrid {
    contain: layout;
}

/* Optimize font rendering */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Low bandwidth mode - reduce image quality */
@media (prefers-reduced-data: reduce) {
    .heroServiceImage {
        filter: blur(2px);
        transform: scale(1.05);
    }
    
    .heroServiceImage.loaded {
        filter: none;
        transform: scale(1);
    }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Content visibility for off-screen optimization */
.heroServicesGrid {
    content-visibility: auto;
    contain-intrinsic-size: 0 400px;
}
/* Cache buster */
