/* ============================================================
   Clico Solution — Public Design System
   Modern · Responsive · User-friendly
   ============================================================ */

:root {
    /* New Design System Colors */
    --color-white: #FFFFFF;
    --color-ink: #132419;
    --color-lime: #89D000;
    --color-lime-text: #589E20;
    --color-soft-bg: #F2F7F0;
    --color-border: #E0E7DF;
    --color-gray: #6B7280;
    --color-gray-light: #9CA3AF;

    /* Hero wash gradient: lime 12% → white */
    --hero-wash: linear-gradient(135deg, rgba(137, 208, 0, 0.12) 0%, rgba(255, 255, 255, 1) 100%);

    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(19, 36, 25, 0.06);
    --shadow-glow: 0 8px 30px rgba(137, 208, 0, 0.25);

    /* Border radius */
    --radius-sm: 24px;
    --radius-md: 32px;
    --radius-lg: 40px;
    --radius-pill: 50px;

    /* Container */
    --container-max: 1280px;

    /* Section padding */
    --section-padding: 96px;

    /* Typography */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    /* Legacy variables for compatibility */
    --cs-primary: #89D000;
    --cs-primary-dark: #589E20;
    --cs-primary-light: #A3E94D;
    --cs-gradient: linear-gradient(135deg, #89D000 0%, #A3E94D 100%);
    --cs-dark: #132419;
    --cs-dark-soft: #1a3a2a;
    --cs-text: #132419;
    --cs-text-muted: #6B7280;
    --cs-bg: #FFFFFF;
    --cs-bg-soft: #F2F7F0;

    /* Tech Data Flow Colors */
    --ribbon-deep: #589E20;
    --ribbon-mid: #89D000;
    --ribbon-light: #A3E94D;
    --ribbon-neon: #C8F080;
    --cs-bg-muted: #E8F0E8;
    --cs-border: #E0E7DF;
    --cs-shadow: 0 4px 24px rgba(19, 36, 25, 0.08);
    --cs-shadow-lg: 0 20px 50px rgba(19, 36, 25, 0.12);
    --cs-radius: 24px;
    --cs-radius-sm: 24px;
    --cs-radius-pill: 50px;
    --cs-header-h: 72px;
    --cs-font: 'DM Sans', system-ui, -apple-system, sans-serif;
    --cs-font-display: 'Plus Jakarta Sans', var(--cs-font);
    --cs-transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);

    /* Header semantic color tokens */
    --accent: #89D000;
    --accent-strong: #589E20;
    --foreground: #132419;
    --border: #E0E7DF;
    --shadow-soft: 0 4px 20px rgba(19, 36, 25, 0.06);
    --shadow-glow: 0 8px 30px rgba(137, 208, 0, 0.25);
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-ink);
    background: var(--color-white);
    overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; transition: color var(--cs-transition); }
img { max-width: 100%; height: auto; display: block; }

/* ── Layout ─────────────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    height: var(--cs-header-h);
    background: transparent;
    transition: all 300ms ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.site-header .navbar {
    height: var(--cs-header-h);
    padding: 0;
}

.site-header .container {
    max-width: 80rem;
    height: 100%;
    padding: 0 1.25rem;
}

@media (min-width: 768px) {
    .site-header .container {
        padding: 0 2rem;
    }
}

/* Logo zone - left */
.navbar-brand {
    font-family: var(--cs-font-display);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--foreground) !important;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: translateY(-2px);
}

.navbar-brand img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(123, 179, 26, 0.15);
    transition: all 0.3s ease;
}

.navbar-brand:hover img {
    box-shadow: 0 6px 20px rgba(123, 179, 26, 0.25);
    transform: scale(1.05);
}

/* Navigation zone - center */
.navbar-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-nav .nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--foreground) !important;
    padding: 10px 16px !important;
    border-radius: var(--cs-radius-pill);
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 2px;
    background: var(--accent);
    transition: transform 0.3s ease;
    transform-origin: center;
}

.navbar-nav .nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.navbar-nav .nav-link.active {
    color: var(--accent-strong) !important;
}

.navbar-nav .nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
    background: var(--accent-strong);
}

/* CTA + Burger zone - right */
.nav-cta {
    background: var(--accent);
    color: white !important;
    padding: 10px 24px !important;
    border-radius: var(--cs-radius-pill);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-glow);
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(123, 179, 26, 0.4);
}

.nav-cta svg {
    transition: transform 0.3s ease;
}

.nav-cta:hover svg {
    transform: translateX(2px) translateY(-2px);
}

/* Mobile burger */
.navbar-toggler {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    border-color: var(--accent);
    background: rgba(123, 179, 26, 0.05);
}

.navbar-toggler-icon {
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231a2e1a' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile menu panel */
@media (max-width: 991px) {
    .navbar-collapse {
        position: fixed;
        top: var(--cs-header-h);
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, opacity 0.4s ease;
        opacity: 0;
        border-bottom: 1px solid var(--border);
    }

    .navbar-collapse.show {
        max-height: calc(100vh - var(--cs-header-h));
        opacity: 1;
    }

    .navbar-nav {
        flex-direction: column;
        width: 100%;
        padding: 2rem 1.5rem;
        gap: 0;
    }

    .navbar-nav .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--border);
    }

    .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }

    .navbar-nav .nav-link {
        padding: 1rem 0 !important;
        width: 100%;
        text-align: left;
    }

    .nav-cta {
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }

    .nav-account {
        width: 100%;
        margin-top: 1rem;
    }

    .nav-account .nav-link {
        width: 100%;
        text-align: center;
    }
}

/* Account dropdown (when logged in) */
.nav-account {
    margin-left: 1rem;
}

.nav-account .nav-link {
    padding: 10px 16px !important;
}

/* Dropdown styles */
.dropdown-menu {
    border: 1px solid var(--border);
    border-radius: var(--cs-radius);
    box-shadow: var(--shadow-lg);
    padding: 1rem;
}

.dropdown-item {
    padding: 0.75rem 1rem;
    border-radius: var(--cs-radius-sm);
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(123, 179, 26, 0.08);
    color: var(--accent-strong) !important;
}

.nav-cta:hover {
    color: #fff !important;
    background: linear-gradient(135deg, #5A8A12, #4A7A0F) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(123, 179, 26, 0.4);
}

/* Mega menu */
.mega-dropdown .dropdown-menu {
    border: none;
    border-radius: var(--cs-radius);
    box-shadow: var(--cs-shadow-lg);
    padding: 0.75rem;
    margin-top: 0.5rem;
    min-width: 260px;
    max-width: 320px;
}

/* Show dropdown on hover */
@media (min-width: 992px) {
    .mega-dropdown:hover .dropdown-menu {
        display: block;
        animation: fadeIn 0.3s ease;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mega-menu-list {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.mega-menu-list__heading,
.mega-menu-col h6 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--cs-primary);
    margin: 0.75rem 0 0.35rem;
    font-weight: 700;
}

.mega-menu-list__heading:first-child,
.mega-menu-col h6:first-child {
    margin-top: 0;
}

.mega-menu-list a,
.mega-menu-col a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 0.875rem;
    color: var(--cs-text);
    transition: all var(--cs-transition);
    white-space: nowrap;
}

.mega-menu-list a:hover,
.mega-menu-col a:hover {
    background: var(--cs-bg-muted);
    color: var(--cs-primary);
    padding-left: 14px;
}

.mega-menu-list a i,
.mega-menu-col a i { font-size: 0.7rem; color: var(--cs-primary); flex-shrink: 0; }

main { padding-top: var(--cs-header-h); min-height: 60vh; }

.page-home main {
    padding-top: var(--cs-header-h);
}

/* ── Buttons ────────────────────────────────────────────── */
.btn-primary {
    background: var(--cs-gradient);
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--cs-radius-pill);
    transition: all var(--cs-transition);
}

.btn-primary:hover {
    background: var(--cs-primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(123, 179, 26, 0.35);
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--cs-primary);
    color: var(--cs-primary);
    font-weight: 600;
    padding: 10px 26px;
    border-radius: var(--cs-radius-pill);
    transition: all var(--cs-transition);
}

.btn-outline-primary:hover {
    background: var(--cs-primary);
    color: #fff;
}

.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.8);
    color: #fff;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--cs-radius-pill);
    background: transparent;
}

.btn-outline-light:hover { background: #fff; color: var(--cs-primary); }

/* ── Hero (Home) ────────────────────────────────────────── */
.page-home .hero {
    position: relative;
    width: 100%;
    max-width: 1312px;
    height: 650px;
    margin: 0 auto;
    overflow: hidden;
}

.hero__split-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__split-left,
.hero__split-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    background-size: 200% 100%;
    background-repeat: no-repeat;
}

.hero__split-left {
    left: 0;
    background-position: 0% center;
    animation: slideInLeft 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    transform: translateX(-100%);
}

.hero__split-right {
    right: 0;
    background-position: 100% center;
    animation: slideInRight 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    transform: translateX(100%);
}

.hero__logo-center {
    position: relative;
    z-index: 10;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border-radius: 50%;
    box-shadow: var(--shadow-glow);
    animation: fadeInScale 1s cubic-bezier(0.4, 0, 0.2, 1) 0.75s forwards;
    opacity: 0;
    transform: scale(0.5);
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero__logo-center:hover {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(137, 208, 0, 0.4);
}

.hero__logo-center img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.page-home .hero__background {
    position: absolute;
    inset: 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.page-home .hero__overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 2;
    pointer-events: none;
}

.page-home .hero__content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 1.25rem 0;
}

.page-home .hero__text {
    max-width: 560px;
}

.page-home .hero__title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    max-width: 20ch;
}

.page-home .hero__desc {
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: rgba(255, 255, 255, 0.88);
    max-width: 560px;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.page-home .hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* ── Page Title Premium (Ramotion-inspired) ─────────────────── */
.page-title-premium {
    position: relative;
    background: #ffffff;
    padding: clamp(4rem, 10vw, 8rem) 0;
    overflow: hidden;
}

.page-title-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
   
    animation: slideInLeft 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    transform: translateX(-100%);
}

.page-title-premium::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
   
    animation: slideInRight 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    transform: translateX(100%);
}

.page-title-premium__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.page-title-premium__title {
    font-size: clamp(2.5rem, 6vw, 8rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
    background: linear-gradient(135deg, #0f172a 0%, #0f172a 50%, #7BB31A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    animation: fadeInScaleUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
}

.page-title-premium__highlight {
    background: var(--accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-underline-offset: 8px;
    text-decoration-thickness: 3px;
}

.page-title-premium__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.page-title-premium__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

@media (max-width: 768px) {
    .page-title-premium__actions .btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .page-home .hero {
        height: 400px;
    }

    .hero__logo-center {
        width: 140px;
        height: 140px;
    }

    .hero__logo-center img {
        width: 80px;
        height: 80px;
    }
}

/* ── Code Animation Background ───────────────────────────────── */
.code-animation {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.35;
}

/* Terminal Window */
.code-animation__terminal {
    position: absolute;
    top: 10%;
    right: 5%;
    width: 320px;
    background: rgba(19, 36, 25, 0.95);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(19, 36, 25, 0.3);
    overflow: hidden;
    animation: terminal-float 8s ease-in-out infinite;
}

.terminal__header {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terminal__dots {
    display: flex;
    gap: 8px;
}

.terminal__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal__dot--red { background: #FF5F56; }
.terminal__dot--yellow { background: #FFBD2E; }
.terminal__dot--green { background: #27C93F; }

.terminal__title {
    margin-left: 16px;
    font-family: 'Fira Code', 'Monaco', monospace;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.terminal__body {
    padding: 16px;
    font-family: 'Fira Code', 'Monaco', monospace;
    font-size: 0.8rem;
    line-height: 1.6;
}

.code-line {
    opacity: 0;
    transform: translateX(-10px);
    animation: code-typing 0.5s ease-out forwards;
}

.code-line--1 { animation-delay: 0.5s; }
.code-line--2 { animation-delay: 1s; }
.code-line--3 { animation-delay: 1.5s; }
.code-line--4 { animation-delay: 2s; }
.code-line--5 { animation-delay: 2.5s; }

.code-keyword { color: #C792EA; }
.code-variable { color: #82AAFF; }
.code-operator { color: #89DDFF; }
.code-function { color: #82AAFF; }
.code-bracket { color: #FFCB6B; }
.code-string { color: #C3E88D; }
.code-punctuation { color: #89DDFF; }
.code-class { color: #FFCB6B; }

/* Left Terminal Positioning */
.code-animation__terminal--left {
    top: 20%;
    left: 5%;
    right: auto;
    animation-delay: -2s;
}

.code-animation__terminal--right {
    top: 10%;
    right: 5%;
}

.code-animation__terminal--left .code-line--1 { animation-delay: 0.3s; }
.code-animation__terminal--left .code-line--2 { animation-delay: 0.6s; }
.code-animation__terminal--left .code-line--3 { animation-delay: 0.9s; }
.code-animation__terminal--left .code-line--4 { animation-delay: 1.2s; }
.code-animation__terminal--left .code-line--5 { animation-delay: 1.5s; }
.code-animation__terminal--left .code-line--6 { animation-delay: 1.8s; }
.code-animation__terminal--left .code-line--7 { animation-delay: 2.1s; }
.code-animation__terminal--left .code-line--8 { animation-delay: 2.4s; }
.code-animation__terminal--left .code-line--9 { animation-delay: 2.7s; }
.code-animation__terminal--left .code-line--10 { animation-delay: 3s; }

/* Floating Code Elements */
.code-elements {
    position: absolute;
    inset: 0;
}

.code-element {
    position: absolute;
    font-family: 'Fira Code', 'Monaco', monospace;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--cs-primary);
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(19, 36, 25, 0.1);
    opacity: 0;
    animation: element-float 6s ease-in-out infinite;
}

.code-element--1 {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.code-element--2 {
    top: 25%;
    left: 15%;
    animation-delay: 1s;
}

.code-element--3 {
    top: 60%;
    left: 5%;
    animation-delay: 2s;
}

.code-element--4 {
    top: 70%;
    right: 12%;
    animation-delay: 3s;
}

.code-element--5 {
    top: 80%;
    right: 8%;
    animation-delay: 4s;
}

.code-element--6 {
    top: 35%;
    right: 15%;
    animation-delay: 5s;
}

.code-element--7 {
    top: 45%;
    left: 10%;
    animation-delay: 2.5s;
}

.code-element--8 {
    top: 55%;
    right: 18%;
    animation-delay: 1.5s;
}

/* Syntax Highlighting Particles */
.syntax-particles {
    position: absolute;
    inset: 0;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cs-primary);
    opacity: 0;
    animation: particle-float 4s ease-in-out infinite;
}

.particle--1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.particle--2 {
    top: 30%;
    right: 25%;
    animation-delay: 0.5s;
}

.particle--3 {
    top: 50%;
    left: 30%;
    animation-delay: 1s;
}

.particle--4 {
    top: 65%;
    right: 30%;
    animation-delay: 1.5s;
}

.particle--5 {
    top: 75%;
    left: 15%;
    animation-delay: 2s;
}

.particle--6 {
    top: 85%;
    right: 20%;
    animation-delay: 2.5s;
}

/* Animations */
@keyframes terminal-float {
    0%, 100% {
        transform: translateY(0) rotate(-2deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

@keyframes code-typing {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes element-float {
    0%, 100% {
        opacity: 0.8;
        transform: translateY(0) rotate(-5deg);
    }
    50% {
        opacity: 1;
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes particle-float {
    0%, 100% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }
    50% {
        opacity: 0.6;
        transform: translateY(-30px) scale(1);
    }
}

/* Responsive adjustments for Code Animation */
@media (max-width: 1024px) {
    .code-animation__terminal {
        width: 280px;
        right: 3%;
    }

    .code-animation__terminal--left {
        width: 260px;
        left: 3%;
    }

    .code-element {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

@media (max-width: 768px) {
    .code-animation {
        display: none;
    }

    .rotating-nodes,
    .pc-display {
        display: none;
    }
}

/* ── Rotating Nodes Around Content ───────────────────────────── */
.rotating-nodes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.node-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(137, 208, 0, 0.2);
    animation: orbit-rotate 20s linear infinite;
}

.node-orbit--1 {
    width: 500px;
    height: 500px;
    animation-duration: 25s;
}

.node-orbit--2 {
    width: 650px;
    height: 650px;
    animation-duration: 30s;
    animation-direction: reverse;
}

.node-orbit--3 {
    width: 800px;
    height: 800px;
    animation-duration: 35s;
}

.orbit-node {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--cs-primary);
    box-shadow: 0 0 20px rgba(137, 208, 0, 0.6);
    animation: node-pulse 2s ease-in-out infinite;
}

.orbit-node--1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.orbit-node--2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation-delay: 0.5s;
}

.orbit-node--3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1s;
}

@keyframes orbit-rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes node-pulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translateX(-50%) scale(1.5);
        opacity: 1;
    }
}

/* ── PC Displaying E-commerce Site ───────────────────────────── */
.pc-display {
    position: absolute;
    bottom:5%;
    left: 82%;
    transform: translateX(-50%);
    pointer-events: none;
    animation: pc-float 6s ease-in-out infinite;
    display: flex;
    align-items: flex-end;
    gap: 20px;
}

.pc-monitor {
    position: relative;
    width: 400px;
    height: 280px;
}

.pc-screen {
    width: 100%;
    height: 240px;
    background: #1a1a2e;
    border-radius: 8px;
    border: 3px solid #2d2d44;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.ecommerce-site {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--cs-dark) 0%, var(--cs-dark-soft) 100%);
    display: flex;
    flex-direction: column;
}

.ecommerce-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(137, 208, 0, 0.15);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(137, 208, 0, 0.3);
}

.ecommerce-logo {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--cs-primary);
}

.ecommerce-nav {
    display: flex;
    gap: 12px;
    font-size: 0.75rem;
    color: #fff;
}

.ecommerce-content {
    flex: 1;
    display: flex;
    gap: 12px;
    padding: 16px;
}

.ecommerce-product {
    flex: 1;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 6px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border: 1px solid rgba(137, 208, 0, 0.2);
}

.product-image {
    width: 100%;
    height: 60px;
    background: linear-gradient(135deg, var(--cs-primary) 0%, var(--cs-primary-light) 100%);
    border-radius: 4px;
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.product-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--cs-dark);
}

.product-price {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--cs-primary-dark);
}

.pc-stand {
    width: 80px;
    height: 30px;
    background: linear-gradient(to bottom, #2d2d44, #1a1a2e);
    margin: 0 auto;
    border-radius: 0 0 4px 4px;
}

.pc-base {
    width: 120px;
    height: 8px;
    background: #2d2d44;
    margin: 0 auto;
    border-radius: 4px;
}

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

/* ── Tablet Device ─────────────────────────────────────────── */
.tablet-device {
    position: relative;
    width: 180px;
    height: 240px;
    animation: device-float 5s ease-in-out infinite;
    animation-delay: -1s;
}

.tablet-screen {
    width: 100%;
    height: 100%;
    background: #1a1a2e;
    border-radius: 12px;
    border: 3px solid #2d2d44;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.ecommerce-site--tablet .ecommerce-header {
    padding: 8px 12px;
}

.ecommerce-site--tablet .ecommerce-logo {
    font-size: 0.7rem;
}

.ecommerce-site--tablet .ecommerce-nav {
    gap: 8px;
    font-size: 0.65rem;
}

.ecommerce-site--tablet .ecommerce-content {
    gap: 8px;
    padding: 10px;
}

.ecommerce-site--tablet .ecommerce-product {
    padding: 8px;
}

.ecommerce-site--tablet .product-image {
    height: 40px;
}

.ecommerce-site--tablet .product-title {
    font-size: 0.65rem;
}

.ecommerce-site--tablet .product-price {
    font-size: 0.75rem;
}

/* ── Mobile Device ─────────────────────────────────────────── */
.mobile-device {
    position: relative;
    width: 100px;
    height: 200px;
    animation: device-float 5s ease-in-out infinite;
    animation-delay: -2s;
}

.mobile-screen {
    width: 100%;
    height: 100%;
    background: #1a1a2e;
    border-radius: 16px;
    border: 3px solid #2d2d44;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.ecommerce-site--mobile .ecommerce-header {
    padding: 6px 10px;
    justify-content: center;
}

.ecommerce-site--mobile .ecommerce-logo {
    font-size: 0.65rem;
}

.ecommerce-site--mobile .ecommerce-content {
    padding: 8px;
}

.ecommerce-site--mobile .ecommerce-product {
    padding: 6px;
}

.ecommerce-site--mobile .product-image {
    height: 35px;
}

.ecommerce-site--mobile .product-title {
    font-size: 0.6rem;
}

.ecommerce-site--mobile .product-price {
    font-size: 0.7rem;
}

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

/* Responsive for PC Display */
@media (max-width: 1024px) {
    .pc-monitor {
        width: 320px;
        height: 220px;
    }

    .pc-screen {
        height: 190px;
    }

    .ecommerce-nav {
        gap: 8px;
    }

    .tablet-device {
        width: 150px;
        height: 200px;
    }

    .mobile-device {
        width: 80px;
        height: 160px;
    }
}

@media (max-width: 768px) {
    .pc-display {
        bottom: 2%;
        gap: 15px;
    }

    .pc-monitor {
        width: 280px;
        height: 190px;
    }

    .pc-screen {
        height: 160px;
    }

    .ecommerce-content {
        gap: 8px;
        padding: 12px;
    }

    .product-image {
        height: 40px;
    }

    .tablet-device {
        width: 120px;
        height: 160px;
    }

    .mobile-device {
        width: 70px;
        height: 140px;
    }

    .ecommerce-site--tablet .ecommerce-nav {
        display: none;
    }
}

@media (max-width: 480px) {
    .page-home .hero {
        height: 250px;
        width: 350px;
    }

    .hero__logo-center {
        width: 100px;
        height: 100px;
    }

    .hero__logo-center img {
        width: 60px;
        height: 60px;
    }
}

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

@keyframes fadeInScaleUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ── Sections ───────────────────────────────────────────── */
.section { padding: var(--section-padding) 0; }
.section--muted { background: var(--color-soft-bg); }

/* ── Internal Page Header ─────────────────────────────────── */
.internal-page-header {
    position: relative;
    background: var(--hero-wash);
    padding: clamp(3rem, 6vw, 5rem) 0;
    overflow: hidden;
}

.internal-page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(137, 208, 0, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.internal-page-header__container {
    position: relative;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.internal-page-header__content {
    max-width: 700px;
}

.internal-page-header__breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-gray);
    margin-bottom: 1rem;
}

.internal-page-header__breadcrumb a {
    color: var(--color-gray);
    transition: color var(--cs-transition);
}

.internal-page-header__breadcrumb a:hover {
    color: var(--color-lime);
}

.internal-page-header__breadcrumb-separator {
    color: var(--color-gray-light);
}

.internal-page-header__eyebrow {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-lime-text);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.internal-page-header__eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--color-lime);
}

.internal-page-header__title {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 700;
    color: var(--color-ink);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.internal-page-header__intro {
    font-size: 1.125rem;
    color: var(--color-gray);
    line-height: 1.7;
    max-width: 600px;
}

/* ── About Page: History Section ───────────────────────────── */
.about-history {
    padding: var(--section-padding) 0;
}

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

.about-history__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-history__text {
    max-width: 600px;
}

.about-history__eyebrow {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-lime-text);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.about-history__eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--color-lime);
}

.about-history__title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-ink);
    margin-bottom: 1.5rem;
}

.about-history__description {
    font-size: 1.125rem;
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about-history__commitments {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-history__commitment {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border);
}

.about-history__commitment:last-child {
    border-bottom: none;
}

.about-history__commitment-icon {
    width: 24px;
    height: 24px;
    background: var(--color-lime);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.about-history__commitment-icon svg {
    width: 14px;
    height: 14px;
    color: white;
}

.about-history__commitment-text {
    font-size: 1rem;
    color: var(--color-ink);
    line-height: 1.6;
}

.about-history__image-wrapper {
    position: relative;
}

.about-history__image {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow-soft);
}

.about-history__logo-card {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-glow);
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 200px;
}

.about-history__logo-card img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.about-history__logo-card-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-ink);
}

@media (max-width: 992px) {
    .about-history__content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-history__logo-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: -2rem;
        align-self: flex-start;
    }
}

/* ── About Page: Stats Band ───────────────────────────────── */
.about-stats {
    background: var(--color-soft-bg);
    padding: 4rem 0;
}

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

.about-stats__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.about-stats__item {
    text-align: center;
}

.about-stats__number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--color-lime);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.about-stats__label {
    font-size: 1rem;
    color: var(--color-gray);
    font-weight: 500;
}

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

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

/* ── About Page: Vision Section ─────────────────────────────── */
.about-vision {
    padding: var(--section-padding) 0;
}

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

.about-vision__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-vision__visual {
    position: relative;
}

.about-vision__image {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow-soft);
}

.about-vision__text {
    max-width: 600px;
}

.about-vision__eyebrow {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-lime-text);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.about-vision__eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--color-lime);
}

.about-vision__title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-ink);
    margin-bottom: 1.5rem;
}

.about-vision__description {
    font-size: 1.125rem;
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about-vision__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--color-lime);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    transition: all var(--cs-transition);
    box-shadow: var(--shadow-glow);
}

.about-vision__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(137, 208, 0, 0.35);
}

.about-vision__cta svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 992px) {
    .about-vision__content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-vision__visual {
        order: -1;
    }
}

/* ── About Page: Values Section ─────────────────────────────── */
.about-values {
    padding: var(--section-padding) 0;
    background: var(--color-soft-bg);
}

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

.about-values__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.about-values__eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-lime-text);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.about-values__eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--color-lime);
}

.about-values__title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-ink);
    margin-bottom: 1rem;
}

.about-values__description {
    font-size: 1.125rem;
    color: var(--color-gray);
    line-height: 1.7;
}

.about-values__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.about-values__card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 2rem;
    border: 1px solid var(--color-border);
    transition: all var(--cs-transition);
}

.about-values__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
    border-color: var(--color-lime);
}

.about-values__icon {
    width: 56px;
    height: 56px;
    background: var(--color-soft-bg);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all var(--cs-transition);
}

.about-values__card:hover .about-values__icon {
    background: var(--color-lime);
    color: white;
}

.about-values__icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-lime-text);
    transition: color var(--cs-transition);
}

.about-values__card:hover .about-values__icon svg {
    color: white;
}

.about-values__card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-ink);
    margin-bottom: 0.75rem;
}

.about-values__card-description {
    font-size: 1rem;
    color: var(--color-gray);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-values__grid {
        grid-template-columns: 1fr;
    }
}

/* Professional Section Separator */
.section-separator {
    position: relative;
    height: 60px;
    background: #ffffff;
    overflow: hidden;
}

.section-separator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--border) 20%,
        var(--accent) 50%,
        var(--border) 80%,
        transparent 100%
    );
}

.section-separator::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: #ffffff;
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-separator svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    color: var(--accent);
}

.section-header { text-align: center; max-width: 640px; margin: 0 auto 3rem; }

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cs-primary);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--cs-text-muted);
    line-height: 1.7;
}

/* ── Service Cards ──────────────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    position: relative;
    background: var(--cs-bg);
    border: 1px solid var(--cs-border);
    border-radius: var(--cs-radius);
    padding: 2rem 1.5rem;
    overflow: hidden;
    transition: all var(--cs-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--cs-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--cs-transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--cs-shadow-lg);
    border-color: transparent;
}

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

.service-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(123, 179, 26, 0.1);
    border-radius: 14px;
    color: var(--cs-primary);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    transition: all var(--cs-transition);
}

.service-card:hover .service-card__icon {
    background: var(--cs-gradient);
    color: #fff;
}

.service-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.service-card__desc {
    font-size: 0.9rem;
    color: var(--cs-text-muted);
    line-height: 1.6;
    flex-grow: 1;
}

/* ── Realisations ───────────────────────────────────────── */
.realisation-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 2.5rem 0;
}

.realisation-card:nth-child(even) .realisation-card__image { order: -1; }

.realisation-card__image {
    overflow: hidden;
    border-radius: var(--cs-radius);
    max-width: 480px;
    width: 100%;
    justify-self: center;
}

.realisation-card__image img {
    width: 100%;
    max-height: 280px;
    border-radius: var(--cs-radius);
    box-shadow: var(--cs-shadow-lg);
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}

.realisation-card__tag {
    display: inline-block;
    background: rgba(123, 179, 26, 0.1);
    color: var(--cs-primary);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--cs-radius-pill);
    margin-bottom: 1rem;
}

.realisation-card__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.realisation-card__desc {
    color: var(--cs-text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.realisation-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cs-primary);
    font-weight: 600;
    transition: gap var(--cs-transition);
}

.realisation-card__link:hover { gap: 12px; }

/* ── Stats badges ───────────────────────────────────────── */
.stat-badges { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.5rem; }

.stat-badge {
    background: var(--cs-bg-muted);
    padding: 8px 14px;
    border-radius: var(--cs-radius-sm);
    font-size: 0.85rem;
}

.stat-badge strong { color: var(--cs-primary); }

/* ── Products catalog ───────────────────────────────────── */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.products-grid--single {
    grid-template-columns: 1fr;
    max-width: 900px;
    margin: 0 auto;
}

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

    .products-grid--single {
        max-width: 100%;
    }
}

.product-card--full {
    max-width: 100%;
}

.product-card--full .product-card__media {
    max-height: 400px;
}

.product-card {
    background: #fff;
    border: 1px solid rgba(123, 179, 26, 0.15);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(123, 179, 26, 0.2);
    border-color: rgba(123, 179, 26, 0.3);
}

.product-card__media {
    background: linear-gradient(135deg, rgba(123, 179, 26, 0.05), rgba(155, 207, 74, 0.1));
}

.product-card__body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--cs-dark);
    font-family: var(--cs-font-display);
}

.product-card__desc {
    color: var(--cs-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 1.25rem;
}

.product-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.product-carousel {
    position: relative;
    background: var(--cs-bg-muted);
}

.product-carousel--compact .product-carousel__img,
.product-carousel--compact .product-carousel__placeholder {
    height: 200px;
}

.product-carousel__img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.product-carousel__placeholder {
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cs-text-muted);
    font-size: 2.5rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--cs-border);
}

.product-showcase:last-child { border-bottom: none; }

.product-showcase:nth-child(even) .product-showcase__media { order: -1; }

.product-showcase__media {
    border-radius: var(--cs-radius);
    overflow: hidden;
    box-shadow: var(--cs-shadow-lg);
}

.product-showcase__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.product-showcase__desc {
    color: var(--cs-text-muted);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

/* ── Clients Section ─────────────────────────────────────── */
.clients-section {
    padding: 6rem 0;
    background: #fff;
}

.clients-section__header {
    margin-bottom: 4rem;
}

.clients-section__title {
    font-family: var(--cs-font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--cs-dark);
    margin: 0 0 2rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.clients-section__cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.clients-section__link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #7BB31A;
    text-decoration: none;
    transition: all var(--cs-transition);
}

.clients-section__link:hover {
    color: var(--cs-primary);
    gap: 1rem;
}

.clients-section__arrow svg {
    transition: transform var(--cs-transition);
}

.clients-section__link:hover .clients-section__arrow svg {
    transform: translateX(4px);
}

.clients-section__description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--cs-text);
    margin: 0;
}

.clients-section__logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
}

.clients-section__item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.clients-section__item:nth-child(1) { animation-delay: 0.1s; }
.clients-section__item:nth-child(2) { animation-delay: 0.2s; }
.clients-section__item:nth-child(3) { animation-delay: 0.3s; }
.clients-section__item:nth-child(4) { animation-delay: 0.4s; }
.clients-section__item:nth-child(5) { animation-delay: 0.5s; }
.clients-section__item:nth-child(6) { animation-delay: 0.6s; }

.clients-section__client {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.clients-section__client.first {
    padding-right: 1rem;
}

.clients-section__client.second {
    padding-left: 1rem;
}

@media (max-width: 768px) {
    .clients-section__client.first,
    .clients-section__client.second {
        padding: 0;
    }
}

.clients-section__logo {
display: flex;
align-items: center;
justify-content: center;
padding: 1.5rem;
background: #fff;
border-radius: var(--cs-radius);
box-shadow: var(--shadow-sm);
transition: all var(--cs-transition);
position: relative;
opacity: 0;
transform: translateY(60px) scale(0.8);
}

.clients-section__logo[data-scroll-item].is-visible {
opacity: 1;
transform: translateY(0) scale(1);
}

.clients-section__logo:hover {
transform: translateY(-4px);
}

.clients-section__logo img {
    max-width: 100%;
    max-height: 130px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.6;
    transition: all var(--cs-transition);
}

.clients-section__logo:hover img {
    opacity: 1;
    transform: scale(1.05);
}

.clients-section__client-name {
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%) translateY(-10px);
    background: var(--cs-dark);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all var(--cs-transition);
    z-index: 10;
}

.clients-section__logo:hover .clients-section__client-name {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(10px);
}

/* Fancy blur effect on non-hovered logos */
.clients-section__logos:hover .clients-section__logo:not(:hover) {
    opacity: 0.3;
    filter: blur(2px);
    transform: scale(0.95);
}

.clients-section__logos:hover .clients-section__logo:hover {
    opacity: 1;
    filter: blur(0);
    transform: scale(1.05);
}

.clients-section__client-desc {
    padding: 0 0.5rem;
}

.clients-section__client-desc p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--cs-text-muted);
    margin: 0;
}

/* ── Réalisations Section ─────────────────────────────────── */
.realisations-section {
    padding: 6rem 0;
    background: rgba(155, 207, 74, 0.1);
}

.realisations-section__header {
    margin-bottom: 4rem;
}

.realisations-section__title {
    font-family: var(--cs-font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--cs-dark);
    margin: 0 0 2rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.realisations-section__cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.realisations-section__link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #7BB31A;
    text-decoration: none;
    transition: all var(--cs-transition);
}

.realisations-section__link:hover {
    color: var(--cs-primary);
    gap: 1rem;
}

.realisations-section__arrow svg {
    transition: transform var(--cs-transition);
}

.realisations-section__link:hover .realisations-section__arrow svg {
    transform: translateX(4px);
}

.realisations-section__description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--cs-text);
    margin: 0;
}

.realisations-section__masonry {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

@media (max-width: 992px) {
    .realisations-section__masonry {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .realisations-section__masonry {
        grid-template-columns: 1fr;
    }
}

.realisations-section__card {
    display: flex;
    flex-direction: column;
    background: rgb(155 207 74 / 0%);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}

.realisations-section__card.featured {
    grid-row: span 2;
}

.realisations-section__card:hover {
    transform: translateY(-8px);
}

.realisations-section__card-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.realisations-section__card.featured .realisations-section__card-image {
    aspect-ratio: 4/3;
}

.realisations-section__card:not(.featured) .realisations-section__card-image {
    aspect-ratio: 16/10;
}

.realisations-section__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
}

.realisations-section__card:hover .realisations-section__card-image img {
    transform: scale(1.07);
}

.realisations-section__card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.4s ease-in-out;
}

.realisations-section__card:hover .realisations-section__card-overlay {
    background: rgba(0, 0, 0, 0.2);
}

.realisations-section__card-content {
    padding: 1.5rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.realisations-section__card-description {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--cs-text-muted);
    margin: 0;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s ease-in-out;
    max-height: 0;
    overflow: hidden;
}

.realisations-section__card:hover .realisations-section__card-description {
    opacity: 1;
    transform: translateY(0);
    max-height: 60px;
    margin-bottom: 0.5rem;
}

.realisations-section__card-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.realisations-section__card-title {
    font-family: var(--cs-font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cs-dark);
    margin: 0;
    transition: all 0.4s ease-in-out;
}

.realisations-section__card:hover .realisations-section__card-title {
    color: var(--cs-primary);
    transform: translateY(-4px);
}

.realisations-section__card-arrow {
    width: 20px;
    height: 20px;
    color: var(--cs-primary);
    opacity: 0;
    transform: translateX(20px) rotate(-10deg);
    transition: all 0.4s ease-in-out;
}

.realisations-section__card:hover .realisations-section__card-arrow {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
}

/* ── Services Section ─────────────────────────────────────── */
.services-section {
    padding: 6rem 0;
    background: #fff;
}

.services-section__header {
    margin-bottom: 4rem;
}

.services-section__title {
    font-family: var(--cs-font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--cs-dark);
    margin: 0 0 2rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.services-section__cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.services-section__link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #7BB31A;
    text-decoration: none;
    transition: all var(--cs-transition);
}

.services-section__link:hover {
    color: var(--cs-primary);
    gap: 1rem;
}

.services-section__arrow svg {
    transition: transform var(--cs-transition);
}

.services-section__link:hover .services-section__arrow svg {
    transform: translateX(4px);
}

.services-section__description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--cs-text);
    margin: 0;
}

.services-section__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

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

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

.services-section__card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s ease-in-out;
    position: relative;
    box-shadow: 0 4px 12px rgba(123, 179, 26, 0.15);
    cursor: pointer;
    border: 2px solid #7BB31A;
}

.services-section__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.services-section__card-icon {
    width: 60px;
    height: 60px;
    background: var(--service-color, var(--cs-primary));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease-in-out;
}

.services-section__card:hover .services-section__card-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.services-section__card-title {
    font-family: var(--cs-font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cs-dark);
    margin: 0 0 0.75rem;
    transition: all 0.4s ease-in-out;
}

.services-section__card:hover .services-section__card-title {
    color: var(--service-color, var(--cs-primary));
    transform: translateY(-4px);
}

.services-section__card-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--cs-text-muted);
    margin: 0 0 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.services-section__card-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.services-section__card-badge {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--cs-text-muted);
    background: rgba(0, 0, 0, 0.05);
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
    transition: all 0.3s ease;
}

.services-section__card:hover .services-section__card-badge {
    color: var(--service-color, var(--cs-primary));
    background: rgba(var(--service-color, 123, 179, 26), 0.1);
    transform: translateY(-2px);
}

.services-section__card-detailed-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--cs-text-muted);
    margin: 0 0 1.5rem;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s ease-in-out;
    max-height: 0;
    overflow: hidden;
}

.services-section__card:hover .services-section__card-detailed-desc {
    opacity: 1;
    transform: translateY(0);
    max-height: 100px;
}

.services-section__card-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--service-color, var(--cs-primary));
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease-in-out;
    margin-top: auto;
}

.services-section__card:hover .services-section__card-button {
    opacity: 1;
    transform: translateY(0);
}

.services-section__card-button svg {
    transition: transform 0.3s ease;
}

.services-section__card:hover .services-section__card-button svg {
    transform: translateX(4px);
}

/* ── Domains Section ─────────────────────────────────────── */
.domains-section {
    padding: 6rem 0;
    background: rgba(155, 207, 74, 0.1);
}

.domains-section__header {
    margin-bottom: 4rem;
}

.domains-section__label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #7BB31A;
    margin-bottom: 1rem;
    display: block;
}

.domains-section__title {
    font-family: var(--cs-font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--cs-dark);
    margin: 0 0 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.domains-section__desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--cs-text-muted);
    margin: 0;
    max-width: 600px;
}

.domains-section__content {
    display: grid;
    grid-template-columns: 0.45fr 1fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 992px) {
    .domains-section__content {
        grid-template-columns: 1fr;
    }
}

.domains-section__left {
    position: sticky;
    top: 2rem;
}

@media (max-width: 992px) {
    .domains-section__left {
        position: static;
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .domains-section__left {
        margin-bottom: 2rem;
    }

    .domains-section__image-wrapper {
        display: none;
    }
}

.domains-section__image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease-in-out;
}

.domains-section__image-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 32px rgba(123, 179, 26, 0.2);
}

.domains-section__image {
    width: 100%;
    height: 700px;
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
}

@media (max-width: 768px) {
    .domains-section__image {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .domains-section__image {
        height: 300px;
    }
}

.domains-section__image-wrapper:hover .domains-section__image {
    transform: scale(1.05);
}

.domains-section__image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(123, 179, 26, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.4s ease-in-out;
}

.domains-section__image-wrapper:hover .domains-section__image-overlay {
    background: rgba(123, 179, 26, 0.2);
}

.domains-section__overlay-content {
    text-align: center;
    padding: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease-in-out;
}

.domains-section__image-wrapper:hover .domains-section__overlay-content {
    opacity: 1;
    transform: translateY(0);
}

.domains-section__overlay-title {
    font-family: var(--cs-font-display);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 1rem;
    line-height: 1.2;
}

.domains-section__overlay-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 1.5rem;
}

.domains-section__overlay-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.domains-section__overlay-button:hover {
    background: #fff;
    color: #7BB31A;
}

.domains-section__right {
    display: flex;
    flex-direction: column;
}

.domains-section__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .domains-section__grid {
        grid-template-columns: 1fr;
    }
}

.domains-section__card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 18px;
    padding: 1.5rem;
    transition: all 0.4s ease-in-out;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.domains-section__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.domains-section__card-image {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    background: #f8fafc;
}

.domains-section__card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s ease-in-out;
}

.domains-section__card:hover .domains-section__card-image img {
    transform: scale(1.08);
}

.domains-section__card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.4s ease-in-out;
}

.domains-section__card:hover .domains-section__card-overlay {
    background: rgba(0, 0, 0, 0.1);
}

.domains-section__card-icon {
    width: 50px;
    height: 50px;
    background: #7BB31A;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    transition: all 0.4s ease-in-out;
}

.domains-section__card:hover .domains-section__card-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(123, 179, 26, 0.3);
}

.domains-section__card-title {
    font-family: var(--cs-font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cs-dark);
    margin: 0 0 0.5rem;
    transition: color 0.4s ease-in-out;
}

.domains-section__card:hover .domains-section__card-title {
    color: #7BB31A;
}

.domains-section__card-desc {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--cs-text-muted);
    margin: 0 0 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.domains-section__card-button {
    font-size: 0.9rem;
    font-weight: 600;
    color: #7BB31A;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease-in-out;
}

.domains-section__card:hover .domains-section__card-button {
    opacity: 1;
    transform: translateY(0);
}

/* ── About Section ─────────────────────────────────────── */
.about-section {
    padding: 6rem 0;
    background: #fff;
}

.about-section__header {
    margin-bottom: 4rem;
    text-align: center;
}

.about-section__label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #7BB31A;
    margin-bottom: 1rem;
    display: block;
}

.about-section__title {
    font-family: var(--cs-font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--cs-dark);
    margin: 0 0 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.about-section__desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--cs-text-muted);
    margin: 0 auto;
    max-width: 700px;
}

.about-section__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 992px) {
    .about-section__content {
        grid-template-columns: 1fr;
    }
}

.about-section__left {
    position: relative;
}

.about-section__image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease-in-out;
}

.about-section__image-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(123, 179, 26, 0.2);
}

.about-section__image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
}

.about-section__image-wrapper:hover .about-section__image {
    transform: scale(1.05);
}

.about-section__image-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
}

.about-section__experience-badge {
    background: rgba(123, 179, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    color: #fff;
    box-shadow: 0 8px 24px rgba(123, 179, 26, 0.3);
}

.about-section__experience-number {
    font-family: var(--cs-font-display);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    display: block;
}

.about-section__experience-text {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

.about-section__right {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-section__stats {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .about-section__stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}

.about-section__stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(123, 179, 26, 0.05);
    border-radius: 16px;
    border: 2px solid rgba(123, 179, 26, 0.1);
    transition: all 0.4s ease-in-out;
    flex: 1;
}

.about-section__stat:hover {
    background: rgba(123, 179, 26, 0.1);
    border-color: #7BB31A;
    transform: translateY(-4px);
}

.about-section__stat-number {
    font-family: var(--cs-font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: #7BB31A;
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.about-section__stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--cs-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-section__features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-section__feature {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease-in-out;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.about-section__feature:hover {
    border-color: #7BB31A;
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(123, 179, 26, 0.15);
}

.about-section__feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(123, 179, 26, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7BB31A;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.4s ease-in-out;
}

.about-section__feature:hover .about-section__feature-icon {
    background: #7BB31A;
    color: #fff;
    transform: scale(1.1);
}

.about-section__feature-title {
    font-family: var(--cs-font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cs-dark);
    margin: 0 0 0.5rem;
    transition: color 0.4s ease-in-out;
}

.about-section__feature:hover .about-section__feature-title {
    color: #7BB31A;
}

.about-section__feature-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--cs-text-muted);
    margin: 0;
}

.about-section__button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: #7BB31A;
    padding: 1rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.4s ease-in-out;
    align-self: flex-start;
    box-shadow: 0 4px 12px rgba(123, 179, 26, 0.3);
}

.about-section__button:hover {
    background: var(--cs-dark);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.about-section__button svg {
    transition: transform 0.3s ease;
}

.about-section__button:hover svg {
    transform: translateX(4px);
}

/* ── Clients Section ─────────────────────────────────────── */

.services-section__card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--cs-dark);
    margin: 0;
    transition: color var(--cs-transition);
}

.services-section__card:hover .services-section__card-title {
    color: var(--cs-primary);
}

.services-section__card-desc {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--cs-text-muted);
    margin: 0;
}

/* Tablet */
@media (max-width: 991px) {
    .clients-section {
        padding: 4rem 0;
    }

    .clients-section__cols {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .clients-section__logos {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .clients-section__item {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .clients-section__client.first,
    .clients-section__client.second {
        padding: 0;
    }

    .realisations-section {
        padding: 4rem 0;
    }

    .realisations-section__cols {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .realisations-section__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .realisations-section__card-image {
        height: 180px;
    }

    .services-section {
        padding: 4rem 0;
    }

    .services-section__cols {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-section__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .services-section__card-image {
        height: 180px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .clients-section {
        padding: 3rem 0;
    }

    .clients-section__title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .clients-section__description {
        font-size: 0.95rem;
    }

    .clients-section__logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .clients-section__item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .clients-section__logo img {
        max-height: 80px;
    }

    .realisations-section {
        padding: 3rem 0;
    }

    .realisations-section__title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .realisations-section__description {
        font-size: 0.95rem;
    }

    .realisations-section__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .realisations-section__card-image {
        height: 200px;
    }

    .realisations-section__card-content {
        padding: 1.25rem;
    }

    .services-section {
        padding: 3rem 0;
    }

    .services-section__title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .services-section__description {
        font-size: 0.95rem;
    }

    .services-section__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services-section__card-image {
        height: 200px;
    }

    .services-section__card-content {
        padding: 1.25rem;
    }
}

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

/* ── About snippet ──────────────────────────────────────── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-grid__image img {
    border-radius: var(--cs-radius);
    box-shadow: var(--cs-shadow-lg);
}

.about-feature {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.about-feature__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(123, 179, 26, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cs-primary);
}

/* ── Page hero (inner pages) ────────────────────────────── */
.page-hero {
    background: var(--cs-bg-soft);
    padding: 2.5rem 0 3rem;
    border-bottom: 1px solid var(--cs-border);
}

.page-hero__title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.page-hero__subtitle {
    font-size: 1.1rem;
    color: var(--cs-text-muted);
    max-width: 600px;
}

/* ── Breadcrumb ─────────────────────────────────────────── */
.cs-breadcrumb { margin-bottom: 1rem; }
.cs-breadcrumb .breadcrumb {
    margin: 0;
    padding: 0;
    background: none;
    font-size: 0.875rem;
}
.cs-breadcrumb .breadcrumb-item a { color: var(--cs-text-muted); }
.cs-breadcrumb .breadcrumb-item a:hover { color: var(--cs-primary); }
.cs-breadcrumb .breadcrumb-item.active { color: var(--cs-primary); font-weight: 600; }
.cs-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: var(--cs-text-muted); }

/* ── Forms ──────────────────────────────────────────────── */
.cs-form-card {
    background: var(--cs-bg);
    border: 1px solid var(--cs-border);
    border-radius: var(--cs-radius);
    padding: 2rem;
    box-shadow: var(--cs-shadow);
}

.cs-form-card__title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cs-form-card__title span { color: var(--cs-primary); }

.cs-form-group { margin-bottom: 1rem; }

.cs-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--cs-border);
    border-radius: var(--cs-radius-sm);
    font-family: var(--cs-font);
    font-size: 0.95rem;
    background: var(--cs-bg-soft);
    transition: all var(--cs-transition);
}

.cs-input:focus {
    outline: none;
    border-color: var(--cs-primary);
    background: var(--cs-bg);
    box-shadow: 0 0 0 3px rgba(123, 179, 26, 0.12);
}

.cs-textarea { resize: vertical; min-height: 100px; }
.cs-error { color: #dc2626; font-size: 0.8rem; margin-top: 4px; }
.cs-form-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.25rem; }

/* ── Auth pages ─────────────────────────────────────────── */
.auth-page {
    min-height: calc(100vh - var(--cs-header-h));
    display: flex;
    align-items: center;
    padding: 3rem 0;
    background: linear-gradient(160deg, var(--cs-bg-soft) 0%, rgba(155, 207, 74, 0.1) 100%);
}

.auth-card {
    background: var(--cs-bg);
    border-radius: var(--cs-radius);
    padding: 2.5rem;
    box-shadow: var(--cs-shadow-lg);
    border: 1px solid var(--cs-border);
    max-width: 440px;
    width: 100%;
    margin: 0 auto;
}

.auth-card__icon {
    width: 64px;
    height: 64px;
    background: rgba(123, 179, 26, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--cs-primary);
    font-size: 1.5rem;
}

.auth-card h2 { text-align: center; font-size: 1.5rem; margin-bottom: 1.5rem; }

.auth-side h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.auth-side p { color: var(--cs-text-muted); font-size: 1.05rem; }

/* ── Contact page ───────────────────────────────────────── */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-layout--full {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info p { color: var(--cs-text-muted); font-size: 1.05rem; line-height: 1.7; }

.contact-details {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--cs-text);
}

.contact-detail i {
    width: 40px;
    height: 40px;
    background: rgba(123, 179, 26, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cs-primary);
}

/* ── Service detail ─────────────────────────────────────── */
.service-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem 0 5rem;
}

.service-hero__label {
    color: var(--cs-primary);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
}

.service-hero__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.service-hero__desc {
    color: var(--cs-text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-hero__image img {
    border-radius: var(--cs-radius);
    box-shadow: var(--cs-shadow-lg);
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

/* ── About page ─────────────────────────────────────────── */
.about-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem 0;
}

.about-block--reverse .about-block__image { order: -1; }

.about-block__image img {
    border-radius: 30% 70% 50% 50% / 40% 40% 60% 60%;
    box-shadow: var(--cs-shadow-lg);
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

/* ── Tech list ──────────────────────────────────────────── */
.tech-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 1.5rem;
    margin: 1.5rem 0;
}

.tech-list__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.tech-list__item::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--cs-primary);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
    background: var(--cs-dark);
    color: rgba(255,255,255,0.75);
    padding-top: 4rem;
}

.site-footer__cta {
    text-align: center;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 3rem;
}

.site-footer__cta h2 {
    color: #fff;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.site-footer__cta p { font-size: 1.1rem; margin-bottom: 1.5rem; }

.site-footer h5 {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1.25rem;
}

.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 0.65rem; }
.site-footer ul a {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--cs-transition);
}

.site-footer ul a:hover { color: var(--cs-primary-light); padding-left: 4px; }
.site-footer ul a i { width: 16px; color: var(--cs-primary); }

.site-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
    margin-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

/* ── Modal ──────────────────────────────────────────────── */
.cs-modal .modal-content {
    border: none;
    border-radius: var(--cs-radius);
    overflow: hidden;
}

.cs-modal .modal-body { display: grid; grid-template-columns: 1fr 1fr; padding: 0; }

.cs-modal__image {
    background: var(--cs-bg-muted);
    min-height: 200px;
}

.cs-modal__image img { width: 100%; height: 100%; object-fit: cover; }

.cs-modal__form { padding: 2rem; }

/* ── Legacy compat ──────────────────────────────────────── */
.containtSection { margin-top: 0; margin-left: 0; margin-right: 0; padding: 0; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 991px) {
    .mega-dropdown .dropdown-menu { min-width: 100%; max-width: 100%; }
    .realisation-card,
    .about-grid,
    .contact-layout,
    .service-hero,
    .about-block { grid-template-columns: 1fr; gap: 2rem; }
    .realisation-card:nth-child(even) .realisation-card__image { order: 0; }
    .product-showcase,
    .product-showcase:nth-child(even) .product-showcase__media { order: 0; }
    .product-showcase { grid-template-columns: 1fr; gap: 1.5rem; }
    .about-block--reverse .about-block__image { order: 0; }
    .cs-modal .modal-body { grid-template-columns: 1fr; }
    .cs-modal__image { display: none; }
}

@media (max-width: 767px) {
    :root { --cs-header-h: 68px; }
    .realisation-card__image img {
        max-height: 220px;
    }
    .product-carousel__img,
    .product-carousel__placeholder {
        height: 240px;
    }
    .product-carousel--compact .product-carousel__img,
    .product-carousel--compact .product-carousel__placeholder {
        height: 180px;
    }
    .product-card__actions .btn { flex: 1 1 auto; }
    .navbar-collapse {
        background: var(--cs-bg);
        padding: 1rem;
        border-radius: var(--cs-radius);
        box-shadow: var(--cs-shadow-lg);
        margin-top: 0.5rem;
    }
    .nav-cta { margin-left: 0 !important; margin-top: 0.5rem; text-align: center; }

    .page-home .hero {
        height: 360px;
    }

    .page-home .hero__content {
        padding: 1rem 0;
    }

    .page-home .hero__title {
        max-width: 100%;
        font-size: clamp(1.35rem, 6vw, 1.85rem);
    }

    .page-home .hero__desc {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }

    .page-home .hero__actions { flex-direction: column; }
    .page-home .hero__actions .btn { width: 100%; text-align: center; }

    .services-grid { grid-template-columns: 1fr; }
    .tech-list { grid-template-columns: 1fr; }
    .auth-page .row { flex-direction: column-reverse; }
    .stat-badges { flex-direction: column; }
    .cs-form-actions .btn { flex: 1; text-align: center; }
}

@media (max-width: 480px) {
    .page-home .hero {
        height: 250px;
        width: 350px;
    }

    .section { padding: 2.5rem 0; }
    .cs-form-card { padding: 1.25rem; }
    .auth-card { padding: 1.5rem; }
}
