/* KTECH Solutions - Multi-Page Website Styles */

:root {
    --primary: #8b5cf6;
    --primary-dark: #6d28d9;
    --primary-light: #c4b5fd;
    --secondary: #67e8f9;
    --accent: #f97316;
    --dark: #0b1020;
    --darker: #030712;
    --light: #f8fafc;
    --gray: #94a3b8;
    --gray-light: #e2e8f0;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --gradient-1: linear-gradient(135deg, #fcfcfd 0%, #d8b4fe 32%, #8b5cf6 66%, #22d3ee 100%);
    --gradient-2: linear-gradient(135deg, #67e8f9 0%, #8b5cf6 100%);
    --glass: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.12);
    --shadow-glow: 0 0 40px -10px var(--primary);
    --depth-shadow: 0 24px 55px rgba(2, 6, 23, 0.42), 0 10px 26px rgba(15, 23, 42, 0.2);
    --depth-shadow-strong: 0 38px 90px rgba(2, 6, 23, 0.52), 0 18px 40px rgba(99, 102, 241, 0.18);
    --surface-highlight: rgba(255, 255, 255, 0.08);
    --panel-bg: rgba(7, 12, 28, 0.64);
    --panel-border: rgba(255, 255, 255, 0.14);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--light);
    background: 
        linear-gradient(135deg, rgba(2, 6, 23, 0.82) 0%, rgba(15, 23, 42, 0.82) 100%),
        url('https://i.pinimg.com/originals/7f/26/98/7f2698c08e414c0222c86195ebdfd274.gif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    image-rendering: optimizeQuality;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(2, 6, 23, 0.46) 0%, rgba(7, 12, 28, 0.34) 48%, rgba(15, 23, 42, 0.44) 100%),
        radial-gradient(circle at 20% 20%, rgba(139, 92, 246, 0.08), transparent 34%),
        radial-gradient(circle at 80% 18%, rgba(103, 232, 249, 0.06), transparent 30%);
    z-index: -1;
    pointer-events: none;
}

.site-bg-media {
    position: fixed;
    inset: 0;
    z-index: -3;
    overflow: hidden;
    pointer-events: none;
    background: #030712;
}

.site-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.94;
    filter: saturate(1.22) brightness(0.96) contrast(1.14);
    transform: scale(1.02);
}

body.video-bg-disabled .site-bg-media {
    display: none;
}

body.immersive-home {
    perspective: 1200px;
    transform-style: preserve-3d;
}

body.immersive-site:not(.immersive-home) {
    perspective: 1200px;
    transform-style: preserve-3d;
}

body.immersive-site {
    background: transparent;
    background-image: none;
    background-attachment: scroll;
}

body.webgl-disabled .hero-particles,
body.reduced-motion .hero-particles {
    display: none;
}

body.webgl-disabled .hero::before {
    opacity: 0.8;
}

body.reduced-motion *,
body.reduced-motion *::before,
body.reduced-motion *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
}

main { flex: 1; }

header,
main,
footer,
.mobile-nav,
.overlay {
    position: relative;
    z-index: 1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-light); }

/* Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    padding: 20px 0;
}

header.scrolled {
    background: rgba(6, 10, 22, 0.84);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 0;
    box-shadow: 0 18px 60px rgba(2, 6, 23, 0.26);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
}

.logo-text span {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

.desktop-nav a {
    color: var(--gray-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.desktop-nav a:hover { color: white; }

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.desktop-nav a:hover::after { width: 100%; }

.desktop-nav a.active {
    color: var(--primary-light);
}

.desktop-nav a.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient-1);
    color: #050816;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 24px rgba(139, 92, 246, 0.32);
    border: none;
    cursor: pointer;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(139, 92, 246, 0.44);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* Page Header Spacing */
.page-header-space {
    height: 100px;
}

body.immersive-site .page-header-space {
    position: relative;
    height: 120px;
}

body.immersive-site .page-header-space::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 40%, rgba(139, 92, 246, 0.28), transparent 30%),
        radial-gradient(circle at 82% 30%, rgba(103, 232, 249, 0.18), transparent 28%);
    opacity: 0.9;
    pointer-events: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    background: 
        linear-gradient(135deg, rgba(2, 6, 23, 0.4) 0%, rgba(15, 23, 42, 0.35) 100%),
        url('https://i.pinimg.com/originals/7f/26/98/7f2698c08e414c0222c86195ebdfd274.gif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    image-rendering: optimizeQuality;
    animation: hero-background-slow 120s linear infinite;
    transform-style: preserve-3d;
}

.logo-image {
    max-height: 45px;
    width: auto;
    display: block;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.26) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(103, 232, 249, 0.18) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(236, 72, 153, 0.16) 0%, transparent 50%);
    pointer-events: none;
}

body.immersive-site .hero,
body.immersive-site .services,
body.immersive-site .hosting-section,
body.immersive-site .domain-section,
body.immersive-site .portfolio,
body.immersive-site .testimonials,
body.immersive-site .contact {
    background-image: none;
    background-color: transparent;
    background-attachment: scroll;
}

body.immersive-site .hero::after,
body.immersive-site .services::after,
body.immersive-site .hosting-section::after,
body.immersive-site .domain-section::after,
body.immersive-site .portfolio::after,
body.immersive-site .contact::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 7, 18, 0.18) 0%, rgba(3, 7, 18, 0.34) 100%);
    pointer-events: none;
}

body.immersive-site .hero::after {
    background: linear-gradient(180deg, rgba(3, 7, 18, 0.08) 0%, rgba(3, 7, 18, 0.24) 100%);
}

body.immersive-site .testimonials::after {
    background: linear-gradient(180deg, rgba(3, 7, 18, 0.14), rgba(3, 7, 18, 0.28));
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    pointer-events: none;
}

.hero-particles,
.hero-ambient,
.hero-ring {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-orbit-line {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: screen;
}

.hero-orbit-line-a {
    width: 540px;
    height: 540px;
    top: -8%;
    right: -6%;
}

.hero-orbit-line-b {
    width: 420px;
    height: 420px;
    bottom: -10%;
    left: -8%;
}

.hero-particles {
    z-index: 0;
    opacity: 0.95;
}

.hero-particles canvas {
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0.9;
}

.hero-ambient {
    filter: blur(20px);
    opacity: 0.65;
}

.hero-ambient-a {
    inset: auto auto 12% -10%;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.35) 0%, rgba(99, 102, 241, 0) 70%);
}

.hero-ambient-b {
    inset: 10% -8% auto auto;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.28) 0%, rgba(6, 182, 212, 0) 72%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    transform-style: preserve-3d;
}

.hero-text,
.hero-stats,
.hero-visual,
.floating-card,
.service-card,
.testimonial-card {
    transform-style: preserve-3d;
    will-change: transform;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(120, 50, 255, 0.09);
    border: 1px solid rgba(233, 197, 255, 0.34);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: #f5d0fe;
    margin-bottom: 24px;
    backdrop-filter: blur(14px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-badge i { color: var(--accent); }

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.94rem;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
}

.eyebrow-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f5d0fe, #67e8f9);
    box-shadow: 0 0 18px rgba(103, 232, 249, 0.65);
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero h1 span {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(226, 232, 240, 0.8);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gradient-1);
    color: #050816;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 18px 40px rgba(139, 92, 246, 0.28);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.magnetic-button {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.magnetic-button::after {
    content: '';
    position: absolute;
    inset: -120% auto auto -20%;
    width: 45%;
    height: 320%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: rotate(18deg) translateX(-180%);
    opacity: 0;
    pointer-events: none;
}

.magnetic-button:hover::after {
    opacity: 1;
    transform: rotate(18deg) translateX(340%);
    transition: transform 0.9s ease, opacity 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 48px rgba(139, 92, 246, 0.36);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(14px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(196, 181, 253, 0.65);
}

.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.76);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    font-size: 0.88rem;
}

.trust-pill i {
    color: var(--primary-light);
}

.hero-visual {
    position: relative;
    height: 500px;
    perspective: 1400px;
}

.floating-card {
    position: absolute;
    background: var(--panel-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--panel-border);
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--depth-shadow);
    animation: float 6s ease-in-out infinite;
    transform: translate3d(0, var(--scroll-shift, 0px), 0) rotateX(calc(var(--scroll-rotate-x, 0deg) + var(--card-rotate-x, 0deg))) rotateY(calc(var(--scroll-rotate-y, 0deg) + var(--card-rotate-y, 0deg)));
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
    overflow: hidden;
}

.floating-card::before,
.service-card::before,
.testimonial-card::before {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.01));
    opacity: 0.65;
    pointer-events: none;
}

.floating-card::after,
.service-card::after,
.testimonial-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at var(--glare-x, 50%) var(--glare-y, 50%), rgba(255, 255, 255, 0.22), transparent 45%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.hero-card-one { top: 10%; left: 10%; animation-delay: 0s; }
.hero-card-two { top: 50%; right: 0; animation-delay: 2s; }
.hero-card-three { bottom: 10%; left: 20%; animation-delay: 4s; }

.hero-ring {
    border-radius: 50%;
    inset: auto;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.04), 0 0 60px rgba(99, 102, 241, 0.08);
    backdrop-filter: blur(10px);
}

.hero-ring-one {
    width: 280px;
    height: 280px;
    top: 4%;
    right: 12%;
}

.hero-ring-two {
    width: 180px;
    height: 180px;
    bottom: 6%;
    right: 28%;
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.card-icon.purple { background: rgba(99, 102, 241, 0.2); color: var(--primary-light); }
.card-icon.cyan { background: rgba(6, 182, 212, 0.2); color: var(--secondary); }
.card-icon.orange { background: rgba(245, 158, 11, 0.2); color: var(--accent); }

.floating-card h4 { font-size: 0.9rem; margin-bottom: 4px; }
.floating-card p { font-size: 0.8rem; color: var(--gray); margin: 0; }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    padding: 18px 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.stat-item h3 {
    font-size: 2.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item p { color: var(--gray); font-size: 0.9rem; }

/* Section Styles */
section { padding: 120px 0; position: relative; }

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

body.immersive-site .section-header {
    position: relative;
    z-index: 1;
}

body.immersive-site main > section:first-of-type {
    padding-top: 70px;
}

body.immersive-site main > section:first-of-type::after {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 220px;
    background: linear-gradient(180deg, rgba(3, 7, 18, 0.72) 0%, rgba(3, 7, 18, 0) 100%);
    pointer-events: none;
}

.section-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #e9d5ff;
    padding: 9px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.section-header h2 span {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p { color: var(--gray); font-size: 1.1rem; }

[data-split-reveal] {
    overflow: hidden;
}

.split-line {
    display: block;
    overflow: hidden;
}

.split-word {
    display: inline-block;
    will-change: transform, opacity;
}

/* Services Section */
.services {
    background: 
        linear-gradient(180deg, rgba(2, 6, 23, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%),
        url('https://images.unsplash.com/photo-1518770660439-4636190af475?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(6, 182, 212, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

.services .container { position: relative; z-index: 1; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    perspective: 1400px;
}

.motion-stack-section {
    overflow: clip;
}

.motion-stack-grid .service-card {
    transform-origin: center top;
}

.service-card {
    background: var(--panel-bg);
    border: 1px solid var(--panel-border);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: var(--depth-shadow);
}

.service-card:hover {
    transform: translate3d(0, -10px, 18px) rotateX(var(--card-rotate-x, 0deg)) rotateY(var(--card-rotate-y, 0deg));
    border-color: var(--primary);
    box-shadow: var(--depth-shadow-strong);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image { transform: scale(1.1); }

.service-content { padding: 30px; }

.service-content > * {
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(196, 181, 253, 0.9));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #0b1020;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(196, 181, 253, 0.24);
}

.service-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.service-card p { color: rgba(226, 232, 240, 0.72); margin-bottom: 20px; font-size: 0.95rem; }

.service-link {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.service-link:hover { gap: 12px; }

/* Hosting Section */
.hosting-section {
    background: 
        linear-gradient(180deg, rgba(15, 23, 42, 0.95) 0%, rgba(2, 6, 23, 0.95) 100%),
        url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?ixlib=rb-4.0.3&auto=format&fit=crop&w=2069&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.hosting-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.hosting-section .container { position: relative; z-index: 1; }

.plans-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: start;
}

.plan-card {
    background: var(--panel-bg);
    border: 1px solid var(--panel-border);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    transition: all 0.4s ease;
    backdrop-filter: blur(16px);
    box-shadow: var(--depth-shadow);
    transform-style: preserve-3d;
}

.plan-card:hover {
    transform: translate3d(0, -10px, 16px) rotateX(var(--card-rotate-x, 0deg)) rotateY(var(--card-rotate-y, 0deg));
    box-shadow: var(--depth-shadow-strong);
}

.plan-card.featured {
    background: var(--gradient-1);
    border: none;
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(99, 102, 241, 0.5);
}

.plan-card.featured * { color: white !important; }

.plan-badge {
    position: absolute;
    top: -12px;
    right: 30px;
    background: var(--accent);
    color: var(--dark);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.plan-header { margin-bottom: 30px; }
.plan-name { font-size: 1.5rem; margin-bottom: 8px; }
.plan-description { color: var(--gray); font-size: 0.9rem; margin-bottom: 20px; }

.plan-price {
    font-size: 3.5rem;
    font-weight: 800;
    display: flex;
    align-items: flex-end;
    gap: 4px;
}

.plan-price span {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 500;
    margin-bottom: 8px;
}

.plan-features { list-style: none; margin-bottom: 30px; }

.plan-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray);
}

.plan-features li i { color: var(--success); font-size: 1.1rem; }
.plan-card.featured .plan-features li { border-color: rgba(255,255,255,0.2); }

.plan-btn {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.plan-card:not(.featured) .plan-btn {
    background: var(--glass);
    color: white;
    border: 1px solid var(--glass-border);
}

.plan-card:not(.featured) .plan-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.plan-card.featured .plan-btn {
    background: white;
    color: var(--primary);
}

.plan-card.featured .plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Domain Section */
.domain-section {
    background: 
        linear-gradient(180deg, rgba(2, 6, 23, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%),
        url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&auto=format&fit=crop&w=2072&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.domain-section .container { position: relative; z-index: 1; }

.domain-search-wrapper {
    background: var(--panel-bg);
    border: 1px solid var(--panel-border);
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    backdrop-filter: blur(16px);
    box-shadow: var(--depth-shadow);
}

.domain-search-box {
    display: flex;
    max-width: 700px;
    margin: 40px auto;
    background: rgba(4, 10, 22, 0.84);
    border-radius: 16px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.domain-input {
    flex: 1;
    background: none;
    border: none;
    padding: 16px 24px;
    color: white;
    font-size: 1.1rem;
    outline: none;
}

.domain-input::placeholder { color: var(--gray); }

.domain-search-btn {
    background: var(--gradient-2);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.domain-search-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.4);
}

.tld-tags {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.tld-tag {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tld-tag:hover, .tld-tag.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Portfolio Section */
.portfolio {
    background: 
        linear-gradient(180deg, rgba(15, 23, 42, 0.95) 0%, rgba(2, 6, 23, 0.95) 100%),
        url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.portfolio .container { position: relative; z-index: 1; }

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--depth-shadow);
    transform-style: preserve-3d;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.portfolio-item:hover {
    transform: translate3d(0, -10px, 18px) rotateX(var(--card-rotate-x, 0deg)) rotateY(var(--card-rotate-y, 0deg));
    box-shadow: var(--depth-shadow-strong);
    border-color: rgba(196, 181, 253, 0.35);
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-item:hover .portfolio-img { transform: scale(1.1); }

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.portfolio-overlay p {
    color: var(--gray);
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.portfolio-item:hover .portfolio-overlay h3,
.portfolio-item:hover .portfolio-overlay p { transform: translateY(0); }

/* Testimonials */
.testimonials {
    background: 
        linear-gradient(180deg, rgba(135, 206, 235, 0.75) 0%, rgba(70, 130, 180, 0.75) 100%),
        url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    position: relative;
}

.testimonials::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(135, 206, 235, 0.2), rgba(70, 130, 180, 0.3));
    pointer-events: none;
}

.testimonials .container { position: relative; z-index: 1; }

.testimonials-slider {
    display: flex;
    gap: 24px;
    width: max-content;
    overflow: hidden;
    padding: 20px 0 10px;
    animation: slide-testimonials 40s linear infinite;
    will-change: transform;
    perspective: 1400px;
}

.testimonials-intro-marquee {
    overflow: hidden;
    padding: 0 0 14px;
    margin-bottom: 12px;
    opacity: 0.72;
}

.testimonials-intro-track {
    display: flex;
    gap: 18px;
    width: max-content;
    animation: testimonials-marquee 22s linear infinite;
}

.testimonials-intro-track span {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.88);
    white-space: nowrap;
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.testimonials-intro-track span::after {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
}

@keyframes slide-testimonials {
    from { transform: translateX(100vw); }
    to { transform: translateX(-100%); }
}

@keyframes testimonials-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.testimonial-card {
    background: rgba(249, 250, 251, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.46);
    border-radius: 28px;
    padding: 40px;
    min-width: 320px;
    max-width: 420px;
    flex: 0 0 auto;
    backdrop-filter: blur(24px);
    box-shadow: var(--depth-shadow);
    scroll-snap-align: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translate3d(0, -10px, 20px) rotateX(var(--card-rotate-x, 0deg)) rotateY(var(--card-rotate-y, 0deg));
    box-shadow: var(--depth-shadow-strong);
    border-color: rgba(255, 255, 255, 0.35);
}

.testimonial-stars {
    color: var(--accent);
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 24px;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
}

.author-info h4 { font-size: 1rem; margin-bottom: 4px; color: var(--dark); }
.author-info p { color: var(--dark); font-size: 0.9rem; margin: 0; }

.insight-strip {
    padding: 40px 0 20px;
    background: linear-gradient(180deg, rgba(3, 7, 18, 0) 0%, rgba(3, 7, 18, 0.6) 100%);
}

.insight-strip-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    padding: 28px 32px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.insight-copy {
    max-width: 560px;
}

.insight-copy h3 {
    font-size: 1.8rem;
    color: #f8fafc;
}

.insight-metrics {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.insight-metric {
    min-width: 140px;
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
}

.insight-metric strong {
    display: block;
    font-size: 1.6rem;
    font-family: 'Space Grotesk', sans-serif;
    color: #fff;
    margin-bottom: 6px;
}

.insight-metric span {
    color: rgba(226, 232, 240, 0.68);
    font-size: 0.92rem;
}

[data-tilt-card].is-interactive {
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

[data-tilt-card].is-interactive::after {
    opacity: 1;
}

.has-basic-motion .floating-card:hover,
.has-basic-motion .service-card:hover,
.has-basic-motion .testimonial-card:hover {
    transform: translateY(-8px);
}

.scroll-reveal {
    opacity: 0;
    filter: blur(2px);
    transition: opacity 0.7s ease, filter 0.7s ease;
}

.scroll-reveal.is-visible {
    opacity: 1;
    filter: blur(0);
}

/* Contact */
.contact {
    background: 
        linear-gradient(180deg, rgba(15, 23, 42, 0.95) 0%, rgba(2, 6, 23, 0.95) 100%),
        url('https://images.unsplash.com/photo-1557804506-669a67965ba0?ixlib=rb-4.0.3&auto=format&fit=crop&w=2074&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.contact .container { position: relative; z-index: 1; }

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: var(--panel-bg);
    border: 1px solid var(--panel-border);
    border-radius: 24px;
    padding: 60px;
    backdrop-filter: blur(18px);
    box-shadow: var(--depth-shadow);
}

.contact-info h3 { font-size: 2rem; margin-bottom: 20px; }
.contact-info > p { color: var(--gray); margin-bottom: 40px; }

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
}

.method-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.method-details h4 { font-size: 1.1rem; margin-bottom: 4px; }
.method-details p, .method-details a { color: var(--gray); text-decoration: none; transition: color 0.3s ease; }
.method-details a:hover { color: var(--primary-light); }

.form-group { margin-bottom: 24px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; color: var(--gray-light); }

.form-control {
    width: 100%;
    padding: 16px 20px;
    background: var(--darker);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

textarea.form-control { min-height: 120px; resize: vertical; }

.form-status {
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 24px;
    display: none;
    font-weight: 500;
}

.form-status.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid var(--success);
    display: block;
}

.form-status.error {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error);
    border: 1px solid var(--error);
    display: block;
}

/* Footer */
footer {
    background: var(--darker);
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 0%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

footer::after {
    content: '';
    position: absolute;
    inset: auto -10% -30% auto;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.14) 0%, rgba(6, 182, 212, 0) 70%);
    filter: blur(18px);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.footer-brand p { color: var(--gray); margin: 20px 0; max-width: 300px; }

.social-links { display: flex; gap: 16px; }
.social-links a {
    width: 40px;
    height: 40px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer-badge-row {
    position: relative;
    z-index: 1;
    margin: 0 0 34px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(14px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.footer-badge-track {
    display: flex;
    align-items: center;
    gap: 14px;
    width: max-content;
    padding: 14px 16px;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-light);
    white-space: nowrap;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
}

.footer-badge i {
    color: var(--primary-light);
}

.footer-badge.is-accent i {
    color: var(--secondary);
}

.footer-badge.is-warm i {
    color: #f9c74f;
}

.footer-brand,
.footer-column,
.footer-badge-row,
.footer-bottom {
    transform: translate3d(0, 0, 0);
}

.footer-column h4 { font-size: 1.1rem; margin-bottom: 24px; color: white; }
.footer-column ul { list-style: none; }
.footer-column li { margin-bottom: 12px; }
.footer-column a {
    color: var(--gray);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-column a:hover {
    color: var(--primary-light);
    transform: translateX(5px);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 6, 23, 0.9);
    backdrop-filter: blur(10px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal-content {
    background: var(--dark);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-header {
    padding: 30px 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 { font-size: 1.5rem; }

.modal-close {
    background: none;
    border: none;
    color: var(--gray);
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover { background: var(--glass); color: white; }
.modal-body { padding: 30px; }

.selected-plan-info {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}

.selected-plan-info p { margin: 0; color: var(--gray); }
.selected-plan-info strong { color: white; font-size: 1.2rem; }

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--dark);
    border-left: 1px solid var(--glass-border);
    z-index: 2001;
    padding: 100px 40px 40px;
    transition: right 0.4s ease;
    overflow-y: auto;
    backdrop-filter: blur(18px);
}

.mobile-nav.active { right: 0; }
.mobile-nav ul { list-style: none; }
.mobile-nav li { margin-bottom: 8px; }

.mobile-nav a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.mobile-nav a:hover {
    color: var(--primary-light);
    padding-left: 10px;
}

.mobile-nav a.active {
    color: var(--primary-light);
}

.mobile-nav .nav-cta {
    margin-top: 30px;
    text-align: center;
    display: block;
    width: 100%;
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.overlay.active { opacity: 1; visibility: visible; }

.interactive-surface,
.domain-search-wrapper,
.contact-wrapper,
.plan-card,
.portfolio-item {
    will-change: transform;
}

[data-site-reveal] {
    opacity: 0;
    transform: translate3d(0, 36px, 0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-site-reveal].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-description { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-visual {
        display: block;
        height: 340px;
        max-width: 480px;
        margin: 0 auto;
    }
    .hero-card-three { left: 10%; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .insight-strip-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .hero-orbit-line-a {
        width: 380px;
        height: 380px;
    }
    .hero-orbit-line-b {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 768px) {
    .desktop-nav { display: none; }
    .mobile-menu-btn { display: flex; }
    .hero h1 { font-size: 2.5rem; }
    .section-header h2 { font-size: 2rem; }
    .services-grid { grid-template-columns: 1fr; }
    .plan-card.featured { transform: none; }
    .domain-search-wrapper { padding: 30px; }
    .domain-search-box { flex-direction: column; }
    .footer-content { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
    .footer-badge-row {
        border-radius: 28px;
    }
    .footer-badge-track {
        padding: 14px;
    }
    .hero {
        background-attachment: scroll;
    }
    .site-bg-video {
        opacity: 0.7;
        filter: saturate(1.08) brightness(0.72) contrast(1.06);
    }
    .hero-content {
        gap: 40px;
    }
    .hero-eyebrow {
        justify-content: center;
    }
    .hero-trust-row {
        justify-content: center;
    }
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    .hero-visual {
        height: 280px;
    }
    .floating-card {
        padding: 18px;
        max-width: 180px;
    }
    .hero-ambient-a,
    .hero-ambient-b {
        width: 220px;
        height: 220px;
    }
    .testimonials-slider {
        padding-inline: 20px;
    }
    .testimonial-card {
        min-width: 280px;
    }
    .insight-strip-inner {
        padding: 24px;
    }
    .insight-copy h3 {
        font-size: 1.45rem;
    }
    .insight-metrics {
        width: 100%;
    }
    .insight-metric {
        flex: 1 1 100%;
    }
    .testimonials-intro-track span {
        letter-spacing: 0.08em;
        font-size: 0.82rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-bg-media {
        display: none !important;
    }
    .floating-card,
    .testimonials-slider,
    .hero,
    .service-card,
    .testimonial-card {
        animation: none !important;
        transition: none !important;
    }
    .testimonials-intro-track {
        animation: none !important;
    }
    .magnetic-button::after {
        display: none !important;
    }
}
