/* ============================================
   RENOV DEVELOPER THEME - MAIN CSS
   Modern, Premium, Animation-Rich
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    --color-bg: #ffffff;
    --color-bg-alt: #F5F6F8;
    --color-bg-card: #ffffff;
    --color-bg-card-hover: #F5F6F8;
    --color-surface: #F5F6F8;
    --color-border: rgba(15, 30, 54, 0.08);
    --color-border-hover: rgba(15, 30, 54, 0.15);

    --color-text: #0F1E36;
    --color-text-muted: #4a5568;
    --color-text-dim: #8a94a6;

    --color-primary: #E53925;
    --color-primary-light: #f04e3c;
    --color-primary-dark: #CE1F0A;
    --color-primary-glow: rgba(229, 57, 37, 0.08);

    --color-accent: #26354A;
    --color-accent-glow: rgba(38, 53, 74, 0.08);

    --color-navy: #0F1E36;
    --color-navy-light: #26354A;
    --color-blue-accent: #3B82F6;

    --gradient-primary: linear-gradient(135deg, #E53925 0%, #f04e3c 50%, #ff6b5a 100%);
    --gradient-hero: linear-gradient(180deg, rgba(15, 30, 54, 0.3) 0%, rgba(15, 30, 54, 0.65) 40%, rgba(15, 30, 54, 0.95) 100%);
    --gradient-card: linear-gradient(145deg, #ffffff 0%, #F5F6F8 100%);
    --gradient-navy: linear-gradient(135deg, #0F1E36 0%, #26354A 100%);

    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Syne', 'Inter', sans-serif;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-sm: 0 2px 8px rgba(15, 30, 54, 0.06);
    --shadow-md: 0 8px 32px rgba(15, 30, 54, 0.08);
    --shadow-lg: 0 16px 64px rgba(15, 30, 54, 0.12);
    --shadow-glow: 0 0 40px rgba(229, 57, 37, 0.1);

    --header-height: 80px;
    --container-max: 1300px;
    --container-padding: 24px;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    font-size: 16px;
    scroll-behavior: auto; /* Lenis handles smooth scroll */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

ul, ol {
    list-style: none;
}

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

.section {
    padding: 120px 0;
    position: relative;
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }
}

/* ---------- Typography ---------- */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--color-primary);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--color-text);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    line-height: 1.7;
}

.section-header.center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.center .section-subtitle {
    margin: 0 auto;
}

.section-header.center .section-label::before {
    display: none;
}

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

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

.text-accent {
    color: var(--color-primary);
}

.section-text {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.section-cta {
    text-align: center;
    margin-top: 48px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #ffffff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(200, 164, 78, 0.3);
}

.btn-primary svg {
    transition: transform 0.3s var(--ease-out-expo);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-outline {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border-hover);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-border-hover);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

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

.link-arrow:hover {
    gap: 14px;
}

.link-arrow svg {
    transition: transform 0.3s var(--ease-out-expo);
}

.link-arrow:hover svg {
    transform: translateX(4px);
}

/* ---------- Preloader ---------- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    display: block;
    width: 80px;
    height: auto;
    margin: 0 auto 20px;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.preloader-text {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 8px;
    color: var(--color-navy);
    margin-top: 24px;
}

.preloader-line {
    width: 60px;
    height: 2px;
    background: var(--color-primary);
    margin: 0 auto;
    animation: preloaderLine 1.2s ease-in-out infinite;
}

@keyframes preloaderLine {
    0%, 100% { transform: scaleX(0.3); opacity: 0.3; }
    50% { transform: scaleX(1); opacity: 1; }
}

/* ---------- Custom Cursor ---------- */
.cursor-dot, .cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.cursor-ring {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(229, 57, 37, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}

.cursor-ring.hover {
    width: 60px;
    height: 60px;
    border-color: var(--color-primary);
}

@media (max-width: 1024px) {
    .cursor-dot, .cursor-ring { display: none; }
}

/* ---------- Header ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: all 0.4s var(--ease-out-expo);
}

.site-header .nav-link {
    color: #ffffff;
}

.site-header .nav-link:hover, .site-header .nav-link.active {
    color: #ffffff;
}

.site-header .nav-link::after {
    background: #ffffff;
}

.site-header .header-cta {
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.site-header .hamburger-line {
    background: #ffffff;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.site-header.scrolled .nav-link {
    color: var(--color-text-muted);
}

.site-header.scrolled .nav-link:hover, .site-header.scrolled .nav-link.active {
    color: var(--color-text);
}

.site-header.scrolled .nav-link::after {
    background: var(--color-primary);
}

.site-header.scrolled .hamburger-line {
    background: var(--color-text);
}

.header-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 7px var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    display: flex;
    align-items: center;
    z-index: 10;
}

.logo-img {
    height: 80px;
    width: auto;
    transition: height 0.3s ease;
}

.site-header.scrolled .logo-img {
    height: 58px;
}

.nav-list {
    display: flex;
    gap: 36px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-muted);
    position: relative;
    padding: 4px 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.4s var(--ease-out-expo);
}

.nav-link:hover, .nav-link.active {
    color: var(--color-text);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-translate {
    display: flex;
    align-items: center;
    gap: 4px;
}

.header-translate a {
    display: inline-block;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.header-translate a:hover {
    opacity: 1;
}

.header-translate img {
    display: block;
    height: 28px;
    width: auto;
    border-radius: 4px;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--gradient-primary);
    color: #ffffff;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.header-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(200, 164, 78, 0.3);
}

/* Hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 24px;
    position: relative;
    z-index: 10;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-text);
    position: absolute;
    left: 0;
    transition: all 0.4s var(--ease-out-expo);
}

.hamburger-line:nth-child(1) { top: 0; }
.hamburger-line:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger-line:nth-child(3) { bottom: 0; }

.hamburger.active .hamburger-line:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

@media (max-width: 900px) {
    .header-nav, .header-actions { display: none; }
    .hamburger { display: block; }
}

/* ---------- Mobile Menu ---------- */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    pointer-events: none;
    overflow: hidden;
}

.mobile-menu.active {
    pointer-events: all;
}

.mobile-menu-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 30, 54, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.active .mobile-menu-bg {
    opacity: 1;
    transform: scale(1);
}

.mobile-menu-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--header-height) 24px 40px;
}

.mobile-nav-list {
    text-align: center;
}

.mobile-nav-link {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
    padding: 16px 0;
    color: rgba(255, 255, 255, 0.7);
    transform: translateY(40px) scale(0.94);
    opacity: 0;
    filter: blur(8px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.active .mobile-nav-link {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
}

.mobile-menu.active .mobile-nav-list li:nth-child(1) .mobile-nav-link { transition-delay: 0.08s; }
.mobile-menu.active .mobile-nav-list li:nth-child(2) .mobile-nav-link { transition-delay: 0.14s; }
.mobile-menu.active .mobile-nav-list li:nth-child(3) .mobile-nav-link { transition-delay: 0.20s; }
.mobile-menu.active .mobile-nav-list li:nth-child(4) .mobile-nav-link { transition-delay: 0.26s; }
.mobile-menu.active .mobile-nav-list li:nth-child(5) .mobile-nav-link { transition-delay: 0.32s; }

.mobile-nav-link:hover, .mobile-nav-link.active {
    color: #ffffff;
    text-shadow: 0 0 20px rgba(0, 86, 167, 0.5);
}

.mobile-menu-footer {
    margin-top: 40px;
    text-align: center;
    opacity: 0;
    transform: translateY(24px) scale(0.95);
    filter: blur(6px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.38s;
}

.mobile-menu.active .mobile-menu-footer {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.mobile-cta {
    display: inline-block;
    padding: 14px 36px;
    background: var(--gradient-primary);
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
}

.mobile-phone {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero .container {
    max-width: var(--container-max);
}

/* Hero text is always white (over video) */
.hero-content,
.hero-content .hero-title,
.hero-content .hero-subtitle,
.hero-content .hero-supporting-text,
.hero-content .hero-badge {
    color: #ffffff;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.8) !important;
}

.hero-badge {
    background: rgba(229, 57, 37, 0.15) !important;
    border-color: rgba(229, 57, 37, 0.3) !important;
    color: #ffffff !important;
}

.hero .btn-outline {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

.hero .btn-outline:hover {
    border-color: #ffffff;
    color: #ffffff;
}

.hero-scroll-indicator span {
    color: rgba(255, 255, 255, 0.5) !important;
}

.hero-video-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
}

.hero-content {
    width: 100%;
    position: relative;
    z-index: 2;
    padding-top: 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(200, 164, 78, 0.08);
    border: 1px solid rgba(200, 164, 78, 0.2);
    border-radius: 50px;
    margin-bottom: 28px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary-light);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--color-text-muted);
    max-width: 560px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.hero-supporting-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 620px;
    line-height: 1.8;
    margin-bottom: 36px;
}

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

.hero-scroll-indicator {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-primary), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.01% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

.hero-scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-text-dim);
}

.hero-stats {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1300px;
    display: flex;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(15, 30, 54, 0.7);
    backdrop-filter: blur(20px);
}

.hero-stat {
    flex: 1;
    padding: 16px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
}

.hero-stat:last-child {
    border-right: none;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-primary);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-stat .stat-number,
.hero-stat .stat-suffix {
    color: #ffffff;
}

.hero-stat .stat-label {
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1440px) {
    .hero-title {
        font-size: clamp(1.8rem, 3.2vw, 2.8rem);
    }
    .hero-subtitle {
        font-size: 0.95rem;
    }
    .hero-stat {
        padding: 12px 20px;
    }
    .stat-number {
        font-size: 1.8rem;
    }
    .stat-label {
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .hero-stats {
        flex-wrap: wrap;
    }
    .hero-stat {
        flex: 1 1 33%;
        padding: 16px 12px;
    }
    .stat-number {
        font-size: 1.8rem;
    }
    .hero-scroll-indicator {
        display: none;
    }
}

/* ---------- About Preview ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.about-image-stack {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.about-img-accent {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 4px solid #ffffff;
    box-shadow: var(--shadow-md);
}

.about-img-accent img,
.about-img-accent video {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.about-float-card {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--color-navy);
    padding: 20px 28px;
    border-radius: var(--radius-md);
    text-align: center;
    color: #ffffff;
    box-shadow: var(--shadow-lg);
}

.float-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.float-text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .about-img-accent { left: -16px; bottom: -24px; }
    .about-float-card { right: -8px; top: -16px; }
}

/* ---------- Services Cards ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    position: relative;
    padding: 36px 32px;
    background: var(--gradient-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all 0.5s var(--ease-out-expo);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-out-expo);
}

.service-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-glow);
    border-radius: var(--radius-md);
    color: var(--color-primary);
    margin-bottom: 20px;
}

.service-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(15, 30, 54, 0.04);
    line-height: 1;
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
    transition: all 0.3s ease;
}

.service-card {
    box-shadow: var(--shadow-sm);
}

.service-card:hover .service-link {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
}

/* ---------- Marquee ---------- */
.marquee-section {
    padding: 32px 0;
    overflow: hidden;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    background: var(--color-bg-alt);
}

.marquee-track {
    overflow: hidden;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-content span {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-text-dim);
    white-space: nowrap;
    transition: color 0.3s ease;
}

.marquee-content span:hover {
    color: var(--color-primary);
}

.marquee-dot {
    width: 8px !important;
    height: 8px;
    background: var(--color-primary) !important;
    border-radius: 50%;
    flex-shrink: 0;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---------- Methodology ---------- */
.methodology-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 60px;
}

@media (max-width: 900px) {
    .methodology-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .methodology-grid {
        grid-template-columns: 1fr;
    }
}

.method-card {
    text-align: center;
    position: relative;
    padding: 40px 24px;
}

.method-step {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    line-height: 1;
}

.method-line {
    width: 40px;
    height: 2px;
    background: var(--color-primary);
    margin: 0 auto 20px;
}

.method-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.method-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ---------- Clients Carousel ---------- */
.clients-carousel {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.clients-track {
    display: flex;
    animation: clientsScroll 40s linear infinite;
    width: max-content;
}

.client-logo {
    flex-shrink: 0;
    width: 160px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    margin-right: 32px;
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transition: all 0.4s ease;
}

.client-logo:hover {
    filter: grayscale(100%) brightness(0.6);
    opacity: 0.5;
}

.client-logo img {
    max-height: 50px;
    max-width: 120px;
    object-fit: contain;
}

@keyframes clientsScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---------- CTA Section ---------- */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 30, 54, 0.88);
}

/* CTA with video bg needs white text */
.cta-section:not(.cta-simple) .cta-title,
.cta-section:not(.cta-simple) .cta-text {
    color: #ffffff;
}

.cta-section:not(.cta-simple) .cta-text {
    color: rgba(255, 255, 255, 0.7);
}

.cta-section:not(.cta-simple) .btn-glass {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 36px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-simple {
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
}

/* ---------- Page Hero (Inner Pages) ---------- */
.page-hero {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
    overflow: hidden;
}

.page-hero-short {
    min-height: 50vh;
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 40vh;
        padding-bottom: 48px;
    }
    .page-hero-short {
        min-height: 32vh;
    }
    .page-hero-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    .page-hero-subtitle {
        font-size: 0.9rem;
    }
}

.page-hero-bg {
    position: absolute;
    top: -15%;
    left: 0;
    width: 100%;
    height: 130%;
    background-size: cover;
    background-position: center top;
    background-color: var(--color-bg-alt);
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 30, 54, 0.4) 0%, rgba(15, 30, 54, 0.92) 100%);
}

/* Page hero text always white */
.page-hero-content .section-label,
.page-hero-title,
.page-hero-subtitle {
    color: #ffffff;
}

.page-hero-subtitle {
    color: rgba(255, 255, 255, 0.8) !important;
}

.page-hero-content .section-label {
    color: rgba(255, 255, 255, 0.8);
}

.page-hero-content .section-label::before {
    background: rgba(255, 255, 255, 0.5);
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
}

.page-hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    max-width: 500px;
}

.page-hero-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 60px;
    background: #ffffff;
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 100%);
}

/* ---------- Services Detail ---------- */
.service-detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid var(--color-border);
}

.service-detail-row:last-child {
    border-bottom: none;
}

.service-detail-row.reverse {
    direction: rtl;
}

.service-detail-row.reverse > * {
    direction: ltr;
}

@media (max-width: 768px) {
    .service-detail-row,
    .service-detail-row.reverse {
        grid-template-columns: 1fr;
        gap: 32px;
        direction: ltr;
    }
}

.service-detail-img {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.service-detail-img img {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

.service-detail-row:hover .service-detail-img img {
    transform: scale(1.05);
}

.service-detail-num {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--color-primary);
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
}

.service-detail-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.3;
}

.service-detail-content p {
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.service-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ---------- Methodology Timeline (Services Page) ---------- */
.methodology-timeline {
    position: relative;
    max-width: 700px;
    margin: 60px auto 0;
}

.methodology-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 28px;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--color-primary), var(--color-border));
}

.timeline-item {
    display: flex;
    gap: 32px;
    padding-bottom: 48px;
    position: relative;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: #ffffff;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.timeline-marker span {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    padding-top: 4px;
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ---------- Clients Grid (Clients Page) ---------- */
.clients-full-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 768px) {
    .clients-full-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .client-card {
        padding: 14px 10px;
        min-height: 70px;
        overflow: hidden;
    }
    .client-card img {
        max-width: 100%;
        width: 100%;
        max-height: 40px;
        object-fit: contain;
    }
}

@media (max-width: 400px) {
    .clients-full-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .client-card {
        padding: 10px 8px;
        min-height: 55px;
    }
    .client-card img {
        max-height: 32px;
    }
}

.client-card {
    background: var(--gradient-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    overflow: hidden;
    transition: all 0.4s var(--ease-out-expo);
}

.client-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.client-card img {
    max-height: 60px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.client-card:hover img {
    transform: scale(1.15);
}

/* ---------- Testimonials ---------- */
.testimonials-section {
    background: var(--color-bg-alt);
}

.testimonials-swiper {
    padding-bottom: 60px;
}

.testimonial-card {
    background: var(--gradient-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    color: var(--color-primary);
    margin-bottom: 20px;
}

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

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

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: var(--color-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #ffffff;
    font-size: 0.9rem;
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.swiper-pagination-bullet {
    background: var(--color-text-dim);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--color-primary);
    width: 24px;
    border-radius: 6px;
}

/* ---------- Values ---------- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 900px) {
    .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .values-grid { grid-template-columns: 1fr; }
}

.value-card {
    padding: 36px 28px;
    background: var(--gradient-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.4s var(--ease-out-expo);
}

.value-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-4px);
}

.value-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-glow);
    border-radius: var(--radius-md);
    color: var(--color-primary);
    margin: 0 auto 20px;
}

.value-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

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

/* ---------- Stats ---------- */
.stats-section {
    background: var(--color-navy);
    color: #ffffff;
}

.stats-section .stat-number,
.stats-section .stat-suffix {
    color: #ffffff;
}

.stats-section .stat-label {
    color: rgba(255, 255, 255, 0.6);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

.stat-card .stat-number {
    font-size: 3.5rem;
}

.stat-card .stat-label {
    font-size: 0.85rem;
    margin-top: 8px;
}

/* ---------- Story ---------- */
.story-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 900px) {
    .story-grid { grid-template-columns: 1fr; gap: 40px; }
}

.story-text p {
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.story-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.story-img-wrap img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

/* ---------- Contact ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
}

@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; }
}

.contact-form-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full {
    margin-bottom: 20px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-primary);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-dim);
}

.contact-info-card {
    background: var(--gradient-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 36px;
    margin-bottom: 24px;
}

.contact-info-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.contact-info-card > p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 28px;
    line-height: 1.7;
}

.contact-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-top: 1px solid var(--color-border);
}

.contact-item-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-glow);
    border-radius: var(--radius-sm);
    color: var(--color-primary);
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.contact-item a:hover {
    color: var(--color-primary);
}

.contact-map-full {
    width: 100%;
    line-height: 0;
}

.contact-map-full iframe {
    display: block;
    width: 100%;
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--color-navy);
    color: #ffffff;
    border-top: none;
}

.footer-top {
    padding: 80px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 0.8fr 1.2fr;
    gap: 40px;
}

@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
}

.footer-logo {
    height: 70px;
    width: auto;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.footer-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: var(--color-primary);
    transform: translateX(4px);
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: flex-start;
}

.footer-contact svg {
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact span,
.footer-contact a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.footer-contact a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 600px) {
    .footer-bottom-inner {
        flex-direction: column;
        gap: 8px;
    }
}

.footer-bottom a {
    color: var(--color-primary);
}

/* ---------- Scroll Top ---------- */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s var(--ease-out-expo);
    z-index: 100;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-4px);
}

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    z-index: 100;
    transition: all 0.3s ease;
    animation: whatsappPulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3); }
    50% { box-shadow: 0 4px 40px rgba(37, 211, 102, 0.5); }
}

/* ---------- Animations (initial states) ---------- */
[data-animate] {
    opacity: 0;
}

[data-animate="fade-up"] {
    transform: translateY(40px);
}

[data-animate="fade-left"] {
    transform: translateX(60px);
}

[data-animate="split-lines"] {
    opacity: 1;
}

[data-animate].animated {
    opacity: 1;
    transform: none;
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

/* ---------- Page Content (generic) ---------- */
.page-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-muted);
}

.page-content h2, .page-content h3 {
    font-family: var(--font-display);
    color: var(--color-text);
    margin: 32px 0 16px;
}

.page-content p {
    margin-bottom: 16px;
}

/* ---------- Selection ---------- */
::selection {
    background: rgba(200, 164, 78, 0.3);
    color: var(--color-text);
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #F5F6F8;
}

::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}


/* ========== ENVIRONMENTS SECTION ========== */
.environments-section {
    background: var(--color-bg-alt, #f8f9fa);
}

.environments-content {
    max-width: 750px;
    margin: 0 auto 48px;
    text-align: center;
}

.environments-content .section-text {
    color: var(--color-text-muted, #64748b);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.environments-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.env-card {
    background: var(--color-bg, #ffffff);
    border-radius: 12px;
    padding: 32px 20px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.env-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.env-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: rgba(0, 86, 167, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--color-accent, #0056A7);
}

.env-card h3 {
    font-family: var(--font-display, 'Syne', sans-serif);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text, #1a1a2e);
    margin: 0;
}

@media (max-width: 992px) {
    .environments-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .environments-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .env-card {
        padding: 24px 16px;
    }
}


/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
    background: var(--color-bg, #ffffff);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--color-bg-alt, #f8f9fa);
    border-radius: 16px;
    padding: 36px 32px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.testimonial-quote {
    margin-bottom: 20px;
}

.quote-icon {
    color: var(--color-accent, #0056A7);
    opacity: 0.2;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-muted, #64748b);
    margin-bottom: 24px;
    font-style: italic;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-accent, #0056A7);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display, 'Syne', sans-serif);
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-family: var(--font-display, 'Syne', sans-serif);
    font-size: 0.95rem;
    color: var(--color-text, #1a1a2e);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--color-text-muted, #64748b);
    margin-top: 2px;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .testimonial-card {
        padding: 28px 24px;
    }
}


/* ========== SERVICES INTRO ========== */
.services-intro {
    padding-bottom: 0;
}
.services-intro-content {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

/* ========== DIFFERENTIATORS SECTION ========== */
.differentiators-section {
    background: var(--color-bg-alt, #f8f9fa);
}

.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.diff-card {
    background: var(--color-bg, #ffffff);
    border-radius: 12px;
    padding: 32px 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.diff-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.diff-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(0, 86, 167, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--color-accent, #0056A7);
}

.diff-card h3 {
    font-family: var(--font-display, 'Syne', sans-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text, #1a1a2e);
    margin: 0 0 12px;
}

.diff-card p {
    color: var(--color-text-muted, #64748b);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 992px) {
    .differentiators-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .differentiators-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== OPERATE SECTION ========== */
.operate-section {
    background: var(--color-bg, #ffffff);
}

.operate-content {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

/* ========== VALUES LIST ========== */


.values-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
    width: 100%;
}

.values-list li {
    color: var(--color-text-muted, #64748b);
    font-size: 0.95rem;
    line-height: 1.5;
    position: relative;
    padding-left: 18px;
    display: block;
    width: 100%;
    text-align: left;
}

.values-list li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 0.55em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-accent, #0056A7);
}

/* ========== CONTACT SUPPORT BLOCK ========== */
.contact-support-block {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.support-item {
    display: flex;
    gap: 14px;
    padding: 16px;
    background: var(--color-bg-alt, #f8f9fa);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.support-item svg {
    flex-shrink: 0;
    color: var(--color-accent, #0056A7);
    margin-top: 2px;
}

.support-item strong {
    font-family: var(--font-display, 'Syne', sans-serif);
    font-size: 0.9rem;
    color: var(--color-text, #1a1a2e);
    display: block;
    margin-bottom: 4px;
}

.support-item p {
    color: var(--color-text-muted, #64748b);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* ========== CLIENTS CLOSING ========== */
.clients-closing {
    padding-top: 0;
}


/* ========== WHY CHOOSE RENOV ========== */
.why-choose-section {
    background: var(--color-bg-alt, #f8f9fa);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    background: var(--color-bg, #ffffff);
    border-radius: 12px;
    padding: 32px 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.why-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(0, 86, 167, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--color-accent, #0056A7);
}

.why-card h3 {
    font-family: var(--font-display, 'Syne', sans-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text, #1a1a2e);
    margin: 0 0 12px;
}

.why-card p {
    color: var(--color-text-muted, #64748b);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 992px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
}


/* ========== MISSION VISION VALUES 3-COL ========== */
.values-grid {
    grid-template-columns: repeat(3, 1fr) !important;
}

.values-list {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 10px !important;
    text-align: left !important;
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr !important;
    }
}


/* ========== STATS GRID CENTER ========== */
.stats-grid {
    justify-content: center;
}

.stat-card {
    text-align: center;
}


/* ========== STATS BIGGER FONT ========== */
.stats-section .stat-number {
    font-size: 3.5rem;
}

.stats-section .stat-suffix {
    font-size: 3.5rem;
}

.stats-section .stat-label {
    font-size: 1.1rem;
}
