:root {
    /* Color Palette */
    --bg-base: #050505;
    --bg-surface: rgba(25, 25, 30, 0.4);
    --primary: #00E5FF;
    --primary-dark: #00B4CC;
    --secondary: #8C00FF;
    --accent: #FF0055;
    --text-main: #FFFFFF;
    --text-muted: #A1A1AA;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-glow: linear-gradient(90deg, #00E5FF, #8C00FF, #00E5FF);
    
    /* Glassmorphism */
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
    --glass-blur: blur(16px);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing & Layout */
    --container-max: 1280px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================= Reset & Base ================= */
* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    background-color: var(--bg-base);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a { text-decoration: none; color: inherit; transition: color var(--transition-fast); }

img, svg { max-width: 100%; display: block; }

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ================= Utilities ================= */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.glass-card {
    background: var(--bg-surface);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--glass-shadow);
}

/* ================= Animations ================= */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}


/* ================= Buttons ================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    outline: none;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-sm { padding: 10px 24px; font-size: 0.9rem; }
.btn-block { width: 100%; padding: 16px; }

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    position: relative;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.btn-primary:hover::before { opacity: 1; }

.btn-glow { box-shadow: 0 0 25px rgba(0, 229, 255, 0.4); }
.btn-glow:hover {
    box-shadow: 0 0 35px rgba(140, 0, 255, 0.6);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.btn-login {
    background: rgba(0, 229, 255, 0.08);
    color: var(--primary);
    border: 1px solid rgba(0, 229, 255, 0.3);
    position: relative;
    overflow: hidden;
    gap: 8px;
    backdrop-filter: var(--glass-blur);
    transition: all 0.4s ease;
}

.btn-login::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.4), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn-login:hover {
    background: rgba(0, 229, 255, 0.15);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
    transform: translateY(-2px);
    color: #fff;
}

.btn-login:hover::before { left: 100%; }

.mobile-login-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #fff !important;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600 !important;
    background: var(--gradient-primary);
    margin-top: 24px;
    border-radius: 50px;
    padding: 14px !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.3);
    text-decoration: none;
}

/* ================= Background Mesh ================= */
.bg-mesh {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, #0a0a0f 0%, #000000 100%);
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    animation: float 25s infinite alternate;
}

.blob-1 {
    top: -10%; left: -10%; width: 50vw; height: 50vw;
    background: radial-gradient(circle, rgba(140,0,255,0.4) 0%, rgba(0,0,0,0) 70%);
}

.blob-2 {
    bottom: -10%; right: -10%; width: 60vw; height: 60vw;
    background: radial-gradient(circle, rgba(0,229,255,0.3) 0%, rgba(0,0,0,0) 70%);
    animation-delay: -5s;
}

.blob-3 {
    top: 40%; left: 40%; width: 40vw; height: 40vw;
    background: radial-gradient(circle, rgba(255,0,85,0.15) 0%, rgba(0,0,0,0) 70%);
    animation-delay: -10s;
}

.parallax-wrap {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    transition: transform 0.1s ease-out;
}

#particles-js canvas {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(5%, 10%) scale(1.1); }
    66% { transform: translate(-5%, 5%) scale(0.9); }
    100% { transform: translate(0, -5%) scale(1.05); }
}

/* ================= Header ================= */
.glass-nav {
    position: fixed;
    top: 0; width: 100%;
    z-index: 100;
    background: rgba(5, 5, 5, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: all var(--transition-normal);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.logo-d {
    color: var(--primary);
    font-size: 2rem;
    text-shadow: 0 0 15px rgba(0, 229, 255, 0.5);
}

.logo-tech { font-weight: 400; color: var(--text-muted); }

.nav-links { display: flex; gap: 40px; }

.nav-links a {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-main);
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-fast);
}

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

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-main);
    cursor: pointer;
}

/* ================= Mobile Sidebar ================= */
.mobile-sidebar-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.mobile-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-sidebar {
    position: fixed;
    top: 0; right: -320px;
    width: 320px; height: 100vh;
    background: rgba(5, 5, 8, 0.98);
    backdrop-filter: blur(24px);
    border-left: 1px solid var(--glass-border);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transition: right var(--transition-normal);
}

.mobile-sidebar.active {
    right: 0;
}

.mobile-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid var(--glass-border);
}

.mobile-close {
    background: transparent;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 50%;
    transition: background var(--transition-fast);
}

.mobile-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-sidebar-links {
    display: flex;
    flex-direction: column;
    padding: 24px;
    flex: 1;
}

.mobile-sidebar-footer {
    padding: 24px;
    border-top: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.3);
}

.mobile-link {
    padding: 16px 0;
    font-size: 1.25rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-link:last-child {
    border-bottom: none;
}

/* ================= Hero Section ================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 90px;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.3);
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 48px;
    max-width: 90%;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Hero Login Card */
.hero-login-wrapper {
    display: flex;
    justify-content: flex-end;
}

.login-card {
    width: 100%;
    max-width: 420px;
    padding: 40px;
    background: linear-gradient(180deg, rgba(25, 25, 30, 0.6) 0%, rgba(10, 10, 15, 0.8) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.login-header {
    text-align: center;
    margin-bottom: 32px;
}

.login-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 229, 255, 0.3);
}

.login-icon svg { width: 28px; height: 28px; color: #fff; }

.login-header h3 {
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.login-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ================= Trusted Clients Carousel ================= */
.clients-section {
    padding: 60px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
}

.clients-title {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 3px;
    margin-bottom: 32px;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carousel-container::before,
.carousel-container::after {
    content: '';
    position: absolute;
    top: 0; width: 150px; height: 100%;
    z-index: 2;
}

.carousel-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-base) 0%, transparent 100%);
}

.carousel-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-base) 0%, transparent 100%);
}

.carousel-track {
    display: flex;
    width: calc(250px * 10); /* 5 original + 5 duplicated */
    animation: scroll 30s linear infinite;
    gap: 60px;
    align-items: center;
}

.client-logo {
    width: 250px;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: rgba(255,255,255,0.4);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.client-logo:hover {
    color: var(--primary);
    text-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 5 - 60px * 5)); }
}

/* ================= Services Section ================= */
.services { padding: 120px 0; }

.section-header {
    text-align: center;
    margin-bottom: 72px;
    max-width: 800px;
    margin-left: auto; margin-right: auto;
}

.section-title { font-size: 3.5rem; margin-bottom: 20px; letter-spacing: -1px; }

.section-desc { font-size: 1.2rem; color: var(--text-muted); font-weight: 300; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.service-card {
    padding: 48px 36px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(25, 25, 30, 0.5) 0%, rgba(10, 10, 15, 0.8) 100%);
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%, rgba(255,255,255,0.05) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: background 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(140, 0, 255, 0.15);
    background: linear-gradient(145deg, rgba(30, 30, 35, 0.7) 0%, rgba(15, 15, 20, 0.9) 100%);
}

.service-card:hover::after {
    background: var(--gradient-primary);
}

.service-icon {
    width: 64px; height: 64px;
    border-radius: 18px;
    background: rgba(255,255,255,0.03);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 28px;
    color: var(--primary);
    border: 1px solid var(--glass-border);
    transition: all var(--transition-normal);
}

.service-card:hover .service-icon {
    background: var(--gradient-primary);
    color: #fff;
    border-color: transparent;
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 10px 20px rgba(0, 229, 255, 0.3);
}

.service-card h3 { font-size: 1.6rem; margin-bottom: 16px; }

.service-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* ================= Reviews Section ================= */
.reviews-section {
    padding: 120px 0;
    position: relative;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.review-card {
    padding: 48px 36px;
    position: relative;
    background: rgba(15,15,20, 0.5);
    transition: transform var(--transition-normal);
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.review-quote-icon {
    position: absolute;
    top: 20px; right: 30px;
    font-size: 6rem;
    font-family: Georgia, serif;
    color: rgba(255,255,255,0.05);
    line-height: 1;
}

.review-stars {
    color: #FFD700;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.review-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 32px;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid var(--glass-border);
    padding-top: 24px;
}

.author-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
}

.author-info h4 { font-size: 1.1rem; margin-bottom: 4px; }
.author-info span { font-size: 0.9rem; color: var(--primary); }


/* ================= Contact Section ================= */
.contact { padding: 120px 0; }

.contact-wrapper {
    display: flex;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(15,15,20,0.8) 0%, rgba(20,20,25,0.6) 100%);
}

.contact-info {
    flex: 1;
    padding: 80px;
    background: rgba(0, 0, 0, 0.3);
    border-right: 1px solid var(--glass-border);
}

.contact-desc {
    color: var(--text-muted);
    margin-bottom: 56px;
    font-size: 1.15rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: rgba(255,255,255,0.03);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    border: 1px solid rgba(255,255,255,0.05);
}
.contact-icon svg { width: 24px; height: 24px; }

.contact-text h4 {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.contact-text p {
    font-size: 1.25rem;
    font-weight: 500;
}

.contact-form-container { flex: 1.2; padding: 80px; }

.contact-form {
    display: flex; flex-direction: column; gap: 28px;
}

.form-group { position: relative; }

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 18px 20px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1.05rem;
    transition: all var(--transition-fast);
    outline: none;
}

.form-group select {
    appearance: none; -webkit-appearance: none; cursor: pointer;
}

.form-group select option { background: #111; color: var(--text-main); }

.form-group label {
    position: absolute;
    left: 20px; top: 18px;
    color: var(--text-muted);
    pointer-events: none;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.1);
}

/* Floating Label Logic */
.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -12px; left: 16px;
    font-size: 0.85rem;
    background: #15151a;
    padding: 0 6px;
    color: var(--primary);
    border-radius: 4px;
    font-weight: 500;
}

/* ================= Footer ================= */
footer {
    padding: 60px 0;
    border-top: 1px solid var(--glass-border);
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
}

.footer-tagline {
    color: var(--text-muted);
    margin-top: 12px;
    max-width: 600px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.footer-links a {
    color: var(--text-muted);
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.footer-links a:hover {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0,229,255,.5);
}

.footer-divider { color: var(--glass-border); }

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 24px;
    width: 100%;
    margin-top: 20px;
}

/* ================= Toast ================= */
.toast {
    position: fixed;
    bottom: 30px; right: 30px;
    background: var(--bg-surface);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--primary);
    padding: 16px 24px;
    border-radius: 12px;
    display: flex; align-items: center; gap: 12px;
    color: #fff;
    font-weight: 500;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    transform: translateY(100px);
    opacity: 0;
    transition: all var(--transition-slow);
    z-index: 1000;
}

.toast.show { transform: translateY(0); opacity: 1; }
.toast svg { width: 24px; height: 24px; color: #00E5FF; }

/* ================= Responsive ================= */
@media (max-width: 1024px) {
    .hero-title { font-size: 3.5rem; }
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-text-wrapper { margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    
    .hero-login-wrapper { justify-content: center; }
    
    .contact-wrapper { flex-direction: column; }
    .contact-info, .contact-form-container { padding: 48px; border-right: none; }
    .contact-info { border-bottom: 1px solid var(--glass-border); }
}

@media (max-width: 768px) {
    .nav-links, .hidden-mobile { display: none; }
    .mobile-toggle { display: block; }
    
    .hero-title { font-size: 2.8rem; }
    .section-title { font-size: 2.8rem; }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }
    .hero-cta .btn {
        width: 100%;
    }
    
    .services-grid, .reviews-grid { grid-template-columns: 1fr; }
    
    .carousel-track {
        gap: 40px;
    }
    .client-logo { font-size: 1.4rem; width: 200px; }
}